/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --dark-gold: #B8941F;
    --light-gold: #F4E4B8;
    --dark-bg: #0A0E14;
    --darker-bg: #050810;
    --card-bg: #111827;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #6B7280;
    --border-color: #1F2937;
    --accent: #1E40AF;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10002;
    overflow: visible;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 15px clamp(18px, 3vw, 44px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 35px);
    align-items: center;
    min-width: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--gold);
}

.portal-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg) !important;
    padding: 10px clamp(14px, 1.8vw, 20px);
    border-radius: 2px;
    font-weight: 600;
}

.portal-btn:hover {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    transform: translateY(-2px);
}

@media (min-width: 969px) and (max-width: 1180px) {
    .nav-container {
        padding-left: 18px;
        padding-right: 18px;
        gap: 14px;
    }

    .logo-text {
        font-size: 17px;
        letter-spacing: 0.08em;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .portal-btn {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 20px 80px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 20, 0.7) 0%,
        rgba(10, 14, 20, 0.85) 50%,
        rgba(10, 14, 20, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 20px 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 15px;
}

.hero-logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0 auto;
}

.hero-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 15px;
}

.hero-tagline {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.hero-headline {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin: 30px 0;
    letter-spacing: 0.05em;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    padding: 16px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    margin-top: 15px;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-button.large {
    padding: 22px 55px;
    font-size: 13px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Stats Section */
.stats {
    background: var(--darker-bg);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* Mission Section */
.mission {
    padding: 100px 0;
    background: var(--dark-bg);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Section Styles */
.section-title {
    font-size: 42px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.section-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 50px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--darker-bg);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--dark-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (min-width: 1400px) {
    .portfolio-grid {
        gap: 40px;
    }
}

.portfolio-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.portfolio-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.portfolio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.portfolio-icon i {
    display: block;
}

.portfolio-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 44px;
    max-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
}

.portfolio-description {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 83px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 auto;
    width: 100%;
}

.portfolio-link:hover {
    gap: 12px;
    color: var(--light-gold);
}

.portfolio-link i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.portfolio-link:hover i {
    transform: translateX(4px);
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--darker-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.philosophy {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.philosophy-text {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 300;
}

.philosophy-text.emphasis {
    font-size: 28px;
    color: var(--gold);
    font-weight: 600;
}

/* Growth Section */
.growth {
    padding: 100px 0;
    background: var(--dark-bg);
}

.growth-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.growth-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.growth-objective {
    font-size: 22px;
    color: var(--gold);
    font-weight: 600;
    margin-top: 50px;
    padding: 30px;
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

/* Portal Section */
.portal-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.portal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.portal-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.portal-feature:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.portal-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--gold);
}

.portal-feature-icon svg {
    width: 100%;
    height: 100%;
}

.portal-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Offering Section */
.offering {
    padding: 100px 0;
    background: var(--dark-bg);
}

.offering-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.offering-intro {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.offering-class {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 600;
}

.offering-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.offering-benefits {
    list-style: none;
    margin: 40px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offering-benefits li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.offering-benefits li::before {
    content: "•";
    color: var(--gold);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 8px;
}

.offering-details {
    margin-top: 60px;
    padding: 40px;
    background: var(--card-bg);
    border: 1px solid var(--gold);
}

.offering-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.offering-detail:last-of-type {
    border-bottom: none;
}

.offering-detail-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.detail-value-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    font-weight: 400;
    text-align: left;
    max-width: 100%;
}

.detail-label {
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 24px;
    color: var(--gold);
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
}

.offering-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(10, 14, 20, 0.95));
    text-align: center;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

/* Homepage: hide accidental duplicate enrollment blocks (cache / translate widgets) */
body.pw-home [data-home-enrollment-cta] ~ [data-home-enrollment-cta],
body.pw-home .cta-section + .cta-section:has(.cta-title) {
    display: none !important;
}

.cta-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gold);
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 14, 20, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 30px;
        gap: 30px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 120px 20px 60px;
    }

    .hero-logo-icon {
        width: 50px;
        height: 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-headline {
        font-size: 24px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-trust {
        font-size: 16px;
        margin: 20px 0;
    }

    .cta-button {
        padding: 14px 35px;
        font-size: 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .portfolio-title {
        font-size: 15px;
        min-height: 41px;
        max-height: 41px;
        letter-spacing: 0.06em;
    }

    .portfolio-description {
        font-size: 12px;
        line-height: 1.5;
        max-height: 72px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 15px 50px;
    }

    .hero-logo-icon {
        width: 45px;
        height: 45px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .hero-tagline {
        font-size: 10px;
        margin-bottom: 20px;
    }

    .hero-headline {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .hero-trust {
        font-size: 15px;
        margin: 18px 0;
    }

    .cta-button {
        padding: 13px 30px;
        font-size: 10px;
        margin-top: 10px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-button.large {
        padding: 15px 35px;
        font-size: 11px;
    }

    .offering-detail {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 40px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .portfolio-card {
        padding: 30px 20px;
    }

    .portfolio-icon {
        width: 60px;
        height: 60px;
    }

    .portfolio-title {
        font-size: 14px;
        min-height: 38px;
        max-height: 38px;
        letter-spacing: 0.05em;
    }

    .portfolio-description {
        font-size: 13px;
        line-height: 1.5;
        max-height: 78px;
    }
}


/* ========================================
   QUALIFICATION APPLY PAGE
   ======================================== */

.qual-apply-page {
    min-height: 100vh;
    padding: 100px 0 64px;
    background:
        radial-gradient(ellipse 70% 45% at 0% 0%, rgba(212, 175, 55, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(30, 64, 175, 0.08), transparent 45%),
        var(--dark-bg);
}

.qual-apply-container {
    max-width: 1180px;
}

.qual-apply-layout {
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    gap: 28px;
    align-items: start;
}

.qual-apply-aside {
    position: sticky;
    top: 100px;
    padding: 28px 24px;
    background: linear-gradient(165deg, rgba(30, 35, 48, 0.9), rgba(17, 24, 39, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
}

.qual-apply-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 20px;
}

.qual-apply-back:hover {
    color: var(--gold);
}

.qual-apply-eyebrow {
    display: inline-block;
    margin: 0 0 10px;
    padding: 5px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
}

.qual-apply-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 14px;
    line-height: 1.2;
}

.qual-apply-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 20px;
}

.qual-apply-checklist {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
}

.qual-apply-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.qual-apply-checklist i {
    color: var(--gold);
    margin-top: 2px;
    font-size: 12px;
}

.qual-apply-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
    opacity: 0.85;
}

.qual-apply-panel {
    background: linear-gradient(165deg, rgba(30, 35, 48, 0.95), rgba(17, 24, 39, 0.98));
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.qual-apply-form .qual-apply-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.qual-apply-form .qual-apply-section--last {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.qual-apply-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 22px;
}

.qual-apply-section-num {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-radius: 8px;
}

.qual-required {
    color: var(--gold);
}

.qual-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-secondary);
    font-size: 11px;
}

.qual-apply-actions {
    margin-top: 8px;
}

.qual-apply-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border: 1px solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.qual-apply-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.28);
}

.qual-apply-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.qual-apply-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: var(--text-secondary);
}

.qual-apply-note i {
    color: var(--gold);
    font-size: 11px;
}

/* Form fields inside qualification apply panel */
.qual-apply-form .form-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.qual-apply-form .form-section:last-of-type {
    border-bottom: none;
}

.qual-apply-form .form-section-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.qual-apply-form .form-group label,
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.qual-apply-form .form-group input[type="text"],
.qual-apply-form .form-group input[type="email"],
.qual-apply-form .form-group input[type="tel"],
.qual-apply-form .form-group select,
.qual-apply-form .form-group textarea,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    text-transform: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.risk-checkbox {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
}

.risk-checkbox span {
    font-size: 13px;
    line-height: 1.7;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.submit-button {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    padding: 18px 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
}

/* ========================================
   QUALIFICATION SUCCESS PAGE
   ======================================== */

.qual-success-page {
    min-height: 100vh;
    padding: 110px 0 72px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
        var(--dark-bg);
}

.qual-success-container {
    max-width: 720px;
}

.qual-success-card {
    background: linear-gradient(165deg, rgba(30, 35, 48, 0.95) 0%, rgba(17, 24, 39, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 20px;
    padding: 40px 40px 32px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.qual-success-hero {
    text-align: center;
    margin-bottom: 36px;
}

.qual-success-icon {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-size: 28px;
}

.qual-success-icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8d5a3, var(--gold), var(--dark-gold));
    animation: qualSuccessPop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

.qual-success-icon i {
    position: relative;
    z-index: 1;
    animation: qualSuccessPop 0.55s 0.08s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}

@keyframes qualSuccessPop {
    from {
        opacity: 0;
        transform: scale(0.6);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.qual-success-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
}

.qual-success-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 14px;
    line-height: 1.2;
}

.qual-success-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 auto;
    max-width: 520px;
}

.qual-success-lead strong {
    color: var(--text-primary);
    font-weight: 600;
}

.qual-success-ref {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.qual-success-ref-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.qual-success-ref-code {
    font-family: 'Montserrat', ui-monospace, monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.06em;
}

.qual-success-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.qual-success-copy:hover,
.qual-success-copy.is-copied {
    background: rgba(212, 175, 55, 0.25);
    color: #fff;
}

.qual-success-progress {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 8px;
}

.qual-success-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 72px;
    flex: 0 0 auto;
}

.qual-success-step-dot {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(212, 175, 55, 0.25);
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.2);
}

.qual-success-step--done .qual-success-step-dot {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border-color: var(--gold);
    color: var(--dark-bg);
    font-size: 14px;
}

.qual-success-step--current .qual-success-step-dot {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.qual-success-step-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-align: center;
}

.qual-success-step--done .qual-success-step-label,
.qual-success-step--current .qual-success-step-label {
    color: var(--text-primary);
}

.qual-success-step-line {
    flex: 1;
    height: 2px;
    margin-top: 18px;
    min-width: 24px;
    max-width: 56px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 1px;
}

.qual-success-step-line--active {
    background: linear-gradient(90deg, var(--gold), rgba(212, 175, 55, 0.2));
}

.qual-success-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.qual-success-info {
    padding: 18px 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: left;
}

.qual-success-info-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
    font-size: 16px;
}

.qual-success-info h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.qual-success-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
}

.qual-success-info p strong {
    color: var(--gold);
    font-weight: 600;
}

.qual-success-details {
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.qual-success-details summary {
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qual-success-details summary::-webkit-details-marker {
    display: none;
}

.qual-success-details summary::after {
    content: '+';
    font-size: 18px;
    color: var(--gold);
    transition: transform 0.2s ease;
}

.qual-success-details[open] summary::after {
    transform: rotate(45deg);
}

.qual-success-details > *:not(summary) {
    padding: 0 18px 16px;
}

.qual-success-list {
    margin: 0 0 14px;
    padding-left: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.qual-success-note,
.qual-success-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 10px;
}

.qual-success-disclaimer {
    margin-bottom: 0;
    font-style: italic;
    opacity: 0.9;
}

.qual-success-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.qual-success-contact-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.qual-success-contact-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
}

.qual-success-contact-link:hover {
    text-decoration: underline;
}

.qual-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qual-success-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.qual-success-btn--primary {
    color: var(--dark-bg);
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    border: 1px solid var(--gold);
}

.qual-success-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.28);
}

.qual-success-btn--ghost {
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.qual-success-btn--ghost:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
}

.qual-success-legal {
    margin-top: 24px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    opacity: 0.75;
}

/* Legacy class aliases (other pages) */
.success-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--dark-bg);
}

.success-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.return-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--dark-bg);
    padding: 18px 45px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.return-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* ========================================
   RESPONSIVE OVERRIDES FOR ADDITIONAL PAGES
   ======================================== */

@media (max-width: 768px) {
    .success-section,
    .qual-success-page,
    .qual-apply-page {
        padding: 100px 0 48px;
    }

    .qual-apply-layout {
        grid-template-columns: 1fr;
    }

    .qual-apply-aside {
        position: static;
    }

    .qual-apply-panel {
        padding: 24px 18px;
    }

    .qual-apply-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .qual-success-card {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }

    .qual-success-grid {
        grid-template-columns: 1fr;
    }

    .qual-success-progress {
        padding: 0;
    }

    .qual-success-step {
        min-width: 56px;
    }

    .qual-success-step-line {
        max-width: 28px;
        min-width: 12px;
    }

    .qual-success-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .qual-success-actions {
        flex-direction: column;
    }

    .qual-success-btn {
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section-title {
        font-size: 20px;
    }

    .message-heading {
        font-size: 22px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-box {
        flex-direction: column;
        text-align: center;
    }
}


/* ========================================
   LEGAL & TEAM PAGES STYLES
   ======================================== */

.legal-section,
.team-section {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--dark-bg);
}

.page-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.legal-content {
    max-width: 900px;
    margin: 60px auto 0;
}

.legal-block {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    margin-bottom: 30px;
}

.legal-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.legal-block p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
}

.legal-block ul li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.legal-block ul li::before {
    content: "•";
    color: var(--gold);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 8px;
}

.disclaimer-text {
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    padding: 20px;
    margin: 20px 0;
}

/* Team Page Styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.team-member.team-role {
    text-align: left;
    padding: 35px 30px;
}

.team-role .role-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.team-role .role-description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 60px;
}

.member-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.member-title {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.member-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

.advisory-board {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.advisor-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
}

.advisor-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.advisor-item p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }

    .legal-block {
        padding: 30px 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   ANIMATED PORTFOLIO CARDS
   =================================== */

.portfolio-grid-animated {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.portfolio-card-animated {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-card-animated:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}

.portfolio-card-animated:hover .card-gradient {
    opacity: 0.5;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: 40px 30px;
}

.portfolio-icon-animated {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.portfolio-card-animated:hover .portfolio-icon-animated {
    transform: scale(1.1) rotate(5deg);
    background: rgba(212, 175, 55, 0.2);
}

.portfolio-icon-animated i {
    font-size: 36px;
    color: var(--gold);
}

.portfolio-title-animated {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-description-animated {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 25px;
    min-height: 110px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-link-animated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link-animated i {
    transition: transform 0.3s ease;
}

.portfolio-link-animated:hover {
    color: #fff;
}

.portfolio-link-animated:hover i {
    transform: translateX(5px);
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   DIVISIONS PAGE STYLES
   =================================== */

.divisions-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.page-intro.emphasis {
    color: var(--gold);
    font-style: italic;
    margin-top: 30px;
}

.division-details {
    padding: 80px 0;
}

.division-block {
    margin-bottom: 80px;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.division-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.division-icon-large {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.division-icon-large i {
    font-size: 48px;
    color: var(--gold);
}

.division-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
}

.division-content {
    padding-left: 130px;
}

.content-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin: 30px 0 15px;
}

.content-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.content-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.content-emphasis {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 25px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

.portfolio-structure {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.subsection-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 20px;
}

.structure-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.return-drivers {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.driver-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.driver-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.driver-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.driver-arrow {
    font-size: 24px;
    color: var(--gold);
}

.driver-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.structure-conclusion {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    font-style: italic;
}

.shareholder-benefits {
    padding: 80px 0;
}

.benefits-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-detailed {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-detailed:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}

.benefit-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.benefit-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   SUCCESS PAGE EMAIL PREVIEW
   =================================== */

.email-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin: 40px 0;
}

.email-header {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.email-from {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.email-from strong {
    color: var(--gold);
}

.email-body {
    padding: 40px 30px;
}

.email-greeting {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.email-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.email-text.emphasis {
    color: var(--gold);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.05);
    padding: 15px 20px;
    border-left: 3px solid var(--gold);
}

.email-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 20px 20px;
}

.email-list li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.email-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.email-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.email-signature strong {
    color: var(--gold);
}

/* ===================================
   QUALIFICATION FORM ENHANCEMENTS
   =================================== */

.qualification-intro.selective {
    color: var(--gold);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.qualification-intro.institutional-header {
    color: var(--gold);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.funds-confirmation {
    background: rgba(212, 175, 55, 0.05);
    padding: 20px;
    border-left: 3px solid var(--gold);
    margin-top: 20px;
}

.form-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.company-narrative {
    margin-top: 30px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

.company-narrative p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.company-narrative p:last-child {
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .portfolio-grid-animated {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .division-block {
        padding: 30px 20px;
    }
    
    .division-header {
        flex-direction: column;
        text-align: center;
    }
    
    .division-content {
        padding-left: 0;
    }
    
    .return-drivers {
        gap: 15px;
    }
    
    .driver-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px;
    }
    
    .driver-arrow {
        transform: rotate(90deg);
    }
    
    .benefits-detailed {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .email-body {
        padding: 30px 20px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .portfolio-grid-animated {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}


/* ===================================
   STRATEGY SECTION
   =================================== */

.strategy {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.strategy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.strategy-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pillar-item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.pillar-icon i {
    font-size: 36px;
    color: var(--gold);
}

.pillar-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.pillar-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.strategy-conclusion {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

.strategy-conclusion p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   SHAREHOLDERS SECTION ENHANCEMENTS
   =================================== */

.shareholder-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.shareholder-benefit {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.shareholder-benefit:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.benefit-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.benefit-icon-large i {
    font-size: 36px;
    color: var(--gold);
}

.shareholder-benefit h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.shareholder-benefit p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   INSIGHTS SECTION
   =================================== */

.insights-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.insight-card {
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.insight-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.insight-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.insight-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.insight-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: #fff;
}

.insights-cta {
    text-align: center;
    margin-top: 60px;
}

.insights-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.contact-detail i {
    color: var(--gold);
    font-size: 20px;
    width: 24px;
}

.contact-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.contact-text strong {
    color: var(--gold);
}

.contact-note {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    font-style: italic;
}

.contact-note-box {
    margin-top: 60px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
}

.contact-note-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-note-box strong {
    color: var(--gold);
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */

@media (max-width: 768px) {
    .strategy-pillars,
    .shareholder-benefits-grid,
    .insights-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}


/* ===================================
   INSIGHTS PAGE
   =================================== */

.insights-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.featured-insight {
    padding: 80px 0;
}

.featured-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 30px;
}

.featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.meta-date,
.meta-category,
.meta-read {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.meta-category {
    color: var(--gold);
}

.featured-content {
    max-width: 900px;
    margin: 0 auto;
}

.featured-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin: 40px 0 20px;
}

.featured-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.insight-disclaimer {
    margin-top: 60px;
    padding: 25px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.insight-disclaimer strong {
    color: var(--gold);
}

.more-insights {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.insight-content-preview {
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.insight-content-preview p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.insight-content-preview p:last-child {
    margin-bottom: 0;
}

.shareholder-access {
    padding: 80px 0;
}

.access-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
}

.access-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.access-icon i {
    font-size: 36px;
    color: var(--gold);
}

.access-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.access-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 32px;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .access-box {
        padding: 40px 25px;
    }
}


/* ===================================
   LEGAL PAGES (Privacy, Terms, etc)
   =================================== */

.legal-page {
    padding: 150px 0 80px;
}

.page-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 10px;
}

/* ===================================
   FAQ PAGE
   =================================== */

.faq-page {
    padding: 150px 0 80px;
}

.faq-content {
    max-width: 1000px;
    margin: 60px auto 0;
}

.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-item.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 16px;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-cta {
    margin-top: 80px;
    padding: 60px 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
}

.faq-cta h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.faq-cta p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ===================================
   CAREERS PAGE
   =================================== */

.careers-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.careers-content {
    padding: 80px 0;
}

.careers-about,
.careers-values,
.careers-positions,
.careers-benefits,
.careers-application {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.value-icon i {
    font-size: 32px;
    color: var(--gold);
}

.value-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

.value-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.position-item {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.position-item:hover {
    border-color: var(--gold);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.position-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
}

.position-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.position-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.position-requirements {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 2px solid rgba(212, 175, 55, 0.3);
}

.position-apply {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.position-apply:hover {
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
}

.benefit-item i {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.benefit-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.benefit-item p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.process-step p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.careers-contact {
    margin-top: 60px;
}

.contact-box {
    padding: 50px 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    text-align: center;
}

.contact-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 25px;
}

@media (max-width: 768px) {
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .values-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   INDIVIDUAL DIVISION PAGES
   =================================== */

.division-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 20px 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.division-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 14, 20, 0.2), rgba(10, 14, 20, 0.4));
    z-index: 0;
}

.division-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.division-hero-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 3px solid var(--gold);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.division-hero-icon i {
    font-size: 60px;
    color: var(--gold);
}

.division-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.division-hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.division-overview {
    padding: 100px 0;
    background: var(--dark-bg);
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.overview-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.division-images {
    padding: 80px 0;
    background: var(--darker-bg);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.division-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.division-image:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.division-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.division-image:hover img {
    transform: scale(1.05);
}

.value-creation {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
}

.value-icon i {
    font-size: 42px;
    color: var(--gold);
}

.value-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.value-card-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.why-matters {
    padding: 100px 0;
    background: var(--dark-bg);
}

.matters-content {
    max-width: 1000px;
    margin: 0 auto;
}

.matter-item {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.matter-item:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.03);
}

.matter-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 25px;
}

.matter-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.matter-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.division-emphasis {
    margin-top: 60px;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    text-align: center;
}

.division-emphasis p {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.division-emphasis strong {
    color: var(--gold);
    font-weight: 700;
}

.performance-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.characteristic-box {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.characteristic-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.characteristic-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.characteristic-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive Design for Division Pages */
@media (max-width: 768px) {
    .division-hero {
        min-height: 400px;
        padding: 120px 20px 80px;
    }
    
    .division-hero-icon {
        width: 90px;
        height: 90px;
    }
    
    .division-hero-icon i {
        font-size: 45px;
    }
    
    .division-hero-title {
        font-size: 32px;
    }
    
    .division-hero-tagline {
        font-size: 18px;
    }
    
    .division-images {
        padding: 60px 20px;
    }
    
    .images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .division-image {
        margin: 0 10px;
    }
    
    .division-image img {
        height: 300px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .matter-item {
        padding: 30px 25px;
    }
    
    .matter-title {
        font-size: 20px;
    }
    
    .matter-text {
        font-size: 16px;
    }
    
    .division-emphasis {
        padding: 25px 20px;
    }
    
    .division-emphasis p {
        font-size: 18px;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .division-hero-title {
        font-size: 26px;
    }
    
    .division-hero-tagline {
        font-size: 16px;
    }
    
    .division-images {
        padding: 50px 15px;
    }
    
    .division-image {
        margin: 0 5px;
    }
    
    .division-image img {
        height: 250px;
    }
}


/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

/* Legacy public-site toasts only — portal/admin use assets/css/toast.css */
body:not(.portal-app):not(.admin-body) .toast-container .toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 320px;
    max-width: 500px;
    padding: 16px 20px;
    background: rgba(26, 26, 46, 0.98);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4),
                0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#primwest-toast-container .toast {
    opacity: 1;
    transform: translateX(0);
    transition: none;
}

.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-message {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.toast-close {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0;
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Toast Types */
.toast-success {
    border-left: 4px solid #10b981;
}

.toast-success .toast-icon {
    color: #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-error .toast-icon {
    color: #ef4444;
}

.toast-warning {
    border-left: 4px solid #f59e0b;
}

.toast-warning .toast-icon {
    color: #f59e0b;
}

.toast-info {
    border-left: 4px solid #3b82f6;
}

.toast-info .toast-icon {
    color: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        align-items: stretch;
    }

    body:not(.portal-app):not(.admin-body) .toast-container .toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}

/* Animation for multiple toasts */
.toast:not(:last-child) {
    margin-bottom: 0;
}

/* Progress bar (optional) */
.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 0 0 12px 12px;
    animation: toast-progress 5s linear forwards;
}

@keyframes toast-progress {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}
