/* ══════════════════════════════════════════════════════════════
   SOVEREIGN TRUST GROUP — Public Website Design System
   STDS v2.0 • Enterprise Banking • Minimalist Premium
   ══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1B2A4A;
    background: #ffffff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
    /* Sovereign Trust Palette */
    --navy:       #1B2A4A;
    --navy-deep:  #0F1A30;
    --navy-light: #243656;
    --gold:       #C5A55A;
    --gold-light: #D4B96A;
    --gold-pale:  #F5EDDA;
    --emerald:    #2D8A6F;
    --emerald-lt: #4ABA96;
    --slate:      #5A6378;
    --slate-lt:   #7A8299;
    --platinum:   #F0EDE8;
    --ivory:      #F8F6F2;
    --white:      #ffffff;
    --red:        #C0392B;

    /* Semantic */
    --text-primary:   #1B2A4A;
    --text-secondary: #5A6378;
    --text-muted:     #7A8299;
    --border:         #D6CFC2;
    --border-light:   #E8E4DD;

    /* Shadows — Layered depth system */
    --shadow-xs:   0 1px 2px rgba(27,42,74,.04);
    --shadow-sm:   0 2px 8px rgba(27,42,74,.06);
    --shadow-md:   0 4px 16px rgba(27,42,74,.08);
    --shadow-lg:   0 8px 32px rgba(27,42,74,.10);
    --shadow-xl:   0 16px 48px rgba(27,42,74,.14);
    --shadow-gold: 0 4px 20px rgba(197,165,90,.18);

    /* Typography */
    --font-body:    'Inter', system-ui, sans-serif;
    --font-heading: 'Montserrat', 'Inter', system-ui, sans-serif;

    /* Spacing (8px grid) */
    --sp-1: 0.25rem;  /* 4 */
    --sp-2: 0.5rem;   /* 8 */
    --sp-3: 0.75rem;  /* 12 */
    --sp-4: 1rem;     /* 16 */
    --sp-5: 1.5rem;   /* 24 */
    --sp-6: 2rem;     /* 32 */
    --sp-7: 3rem;     /* 48 */
    --sp-8: 4rem;     /* 64 */
    --sp-9: 6rem;     /* 96 */
    --sp-10: 7.5rem;  /* 120 */

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(.25,.46,.45,.94);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
    --t-fast: 150ms;
    --t-base: 250ms;
    --t-slow: 400ms;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); font-weight: 800; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-secondary); max-width: 65ch; }
.text-lg { font-size: 1.125rem; line-height: 1.75; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-muted { color: var(--text-muted); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 600; }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}
.container-narrow { max-width: 900px; }
.container-wide { max-width: 1400px; }

section {
    padding: var(--sp-9) 0;
    position: relative;
}
section.section-lg { padding: var(--sp-10) 0; }

/* ── GRID ──────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--sp-6);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* ── FLEX ──────────────────────────────────────────────────── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); }
.gap-6 { gap: var(--sp-6); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: background var(--t-base) var(--ease-out),
                box-shadow var(--t-base) var(--ease-out);
}
.site-nav.nav-transparent {
    background: transparent;
}
.site-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-light), var(--shadow-sm);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--sp-5);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 1px;
    color: var(--white);
    transition: color var(--t-base);
    white-space: nowrap;
}
.nav-scrolled .nav-logo { color: var(--navy); }
.nav-logo svg { width: 36px; height: 40px; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}
.nav-links a {
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    border-radius: var(--radius-sm);
    transition: color var(--t-fast), background var(--t-fast);
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-scrolled .nav-links a {
    color: var(--text-secondary);
}
.nav-scrolled .nav-links a:hover {
    color: var(--navy);
    background: var(--platinum);
}
.nav-links a.active {
    color: var(--gold);
}
.nav-scrolled .nav-links a.active {
    color: var(--gold);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

/* Language Selector */
.lang-selector {
    position: relative;
}
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    border-radius: 50%;
    transition: all var(--t-fast);
    cursor: pointer;
}
.lang-btn:hover { color: var(--white); }
.nav-scrolled .lang-btn { color: var(--text-secondary); }
.nav-scrolled .lang-btn:hover { color: var(--navy); }
.lang-btn i { font-size: 1rem; }
.lang-selector.open .lang-btn i.fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--t-base) var(--ease-out);
    overflow: hidden;
}
.lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.lang-dropdown button {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--t-fast);
    text-align: left;
}
.lang-dropdown button:hover {
    background: var(--platinum);
    color: var(--navy);
}
.lang-dropdown button.active {
    color: var(--gold);
    font-weight: 600;
}

/* Login Button */
.nav-login {
    padding: var(--sp-2) var(--sp-5);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--gold);
    border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease-out);
    white-space: nowrap;
}
.nav-login:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    cursor: pointer;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t-base) var(--ease-out);
}
.nav-scrolled .nav-hamburger span { background: var(--navy); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: var(--sp-6) var(--sp-5);
    flex-direction: column;
    gap: var(--sp-2);
    overflow-y: auto;
    z-index: 999;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity var(--t-base), transform var(--t-base);
}
.nav-mobile.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.nav-mobile a {
    display: block;
    padding: var(--sp-4) var(--sp-4);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--t-fast);
    border-bottom: 1px solid var(--border-light);
}
.nav-mobile a:hover,
.nav-mobile a.active {
    color: var(--navy);
    background: var(--platinum);
}
.nav-mobile .mobile-lang {
    margin-top: var(--sp-4);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
}
.nav-mobile .mobile-lang button {
    padding: var(--sp-2) var(--sp-3);
    font-size: 0.8rem;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: all var(--t-fast);
}
.nav-mobile .mobile-lang button.active {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-pale);
}
.nav-mobile .mobile-login {
    display: block;
    margin-top: var(--sp-4);
    padding: var(--sp-4);
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    background: var(--gold);
    border-radius: var(--radius-md);
    border: none;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 40%, var(--navy) 100%);
    overflow: hidden;
    padding-top: var(--nav-height);
}
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,165,90,.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,138,111,.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: var(--sp-9) 0;
}
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-2) var(--sp-4);
    background: rgba(197,165,90,.12);
    border: 1px solid rgba(197,165,90,.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--sp-6);
}
.hero h1 {
    color: var(--white);
    margin-bottom: var(--sp-5);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
}
.hero h1 .accent { color: var(--gold); }
.hero-desc {
    color: rgba(255,255,255,.6);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--sp-7);
    max-width: 540px;
}
.hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

/* Hero Geometric Accents */
.hero-geo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}
.hero-geo .geo-ring {
    position: absolute;
    border: 1px solid var(--gold);
    border-radius: 50%;
}
.hero-geo .geo-ring:nth-child(1) { width: 100%; height: 100%; }
.hero-geo .geo-ring:nth-child(2) { width: 75%; height: 75%; top: 12.5%; left: 12.5%; }
.hero-geo .geo-ring:nth-child(3) { width: 50%; height: 50%; top: 25%; left: 25%; }
.hero-geo .geo-line {
    position: absolute;
    background: var(--gold);
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
}
.hero-geo .geo-line:nth-child(5) { transform: rotate(45deg); }
.hero-geo .geo-line:nth-child(6) { transform: rotate(90deg); }
.hero-geo .geo-line:nth-child(7) { transform: rotate(135deg); }

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--t-base) var(--ease-out);
    white-space: nowrap;
}
.btn-primary {
    color: var(--navy);
    background: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}
.btn-outline {
    color: rgba(255,255,255,.85);
    border: 1px solid rgba(255,255,255,.25);
    background: transparent;
}
.btn-outline:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
}
.btn-outline-dark {
    color: var(--navy);
    border: 1px solid var(--border);
    background: transparent;
}
.btn-outline-dark:hover {
    border-color: var(--navy);
    background: var(--platinum);
}
.btn-navy {
    color: var(--white);
    background: var(--navy);
}
.btn-navy:hover {
    background: var(--navy-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.btn-lg {
    padding: var(--sp-4) var(--sp-7);
    font-size: 1rem;
}
.btn i { font-size: 0.8em; }

/* ══════════════════════════════════════════════════════════════
   SECTION HEADERS
   ══════════════════════════════════════════════════════════════ */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--sp-8);
}
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-4);
}
.section-header h2 {
    margin-bottom: var(--sp-4);
}
.section-header p {
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.75;
}
.section-divider {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: var(--sp-5) auto 0;
}

/* ══════════════════════════════════════════════════════════════
   CARDS
   ══════════════════════════════════════════════════════════════ */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--sp-7);
    border: 1px solid var(--border-light);
    transition: all var(--t-base) var(--ease-out);
    position: relative;
}
.card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
}
.card-icon i {
    font-size: 1.25rem;
    color: var(--gold);
}
.card h3 {
    margin-bottom: var(--sp-3);
}
.card p {
    font-size: 0.925rem;
    line-height: 1.7;
}
.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-5);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: gap var(--t-base);
}
.card-link:hover { gap: var(--sp-3); }
.card-link i { font-size: 0.7rem; }

/* Card variants */
.card-dark {
    background: var(--navy);
    border-color: rgba(197,165,90,.15);
}
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,.6); }
.card-dark .card-icon {
    background: rgba(197,165,90,.12);
}
.card-dark:hover {
    border-color: rgba(197,165,90,.3);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.card-featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}
.card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ══════════════════════════════════════════════════════════════
   STATS SECTION
   ══════════════════════════════════════════════════════════════ */
.stats {
    background: var(--navy);
    padding: var(--sp-9) 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    text-align: center;
}
.stat-item {
    padding: var(--sp-5);
}
.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--sp-3);
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.stat-divider {
    width: 24px;
    height: 1px;
    background: rgba(197,165,90,.3);
    margin: var(--sp-3) auto 0;
}

/* ══════════════════════════════════════════════════════════════
   TRUST / SECURITY SECTION
   ══════════════════════════════════════════════════════════════ */
.trust-section {
    background: var(--ivory);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-6);
    text-align: center;
}
.trust-item {
    padding: var(--sp-5);
}
.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--sp-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}
.trust-icon i {
    font-size: 1.5rem;
    color: var(--emerald);
}
.trust-item h4 {
    margin-bottom: var(--sp-2);
    font-size: 0.95rem;
}
.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.cta-section {
    background: var(--navy);
    text-align: center;
    padding: var(--sp-9) 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197,165,90,.08) 0%, transparent 70%);
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--sp-4);
}
.cta-content p {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    margin: 0 auto var(--sp-7);
}
.cta-actions {
    display: flex;
    gap: var(--sp-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   PAGE HERO (Interior pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(165deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: calc(var(--nav-height) + var(--sp-9)) 0 var(--sp-9);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,165,90,.3), transparent);
}
.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}
.page-hero h1 {
    color: var(--white);
    margin-bottom: var(--sp-4);
    font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero p {
    color: rgba(255,255,255,.6);
    font-size: 1.1rem;
    line-height: 1.75;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    margin-bottom: var(--sp-5);
    font-size: 0.8rem;
    color: rgba(255,255,255,.4);
}
.page-hero .breadcrumb a {
    color: rgba(255,255,255,.5);
    transition: color var(--t-fast);
}
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb i { font-size: 0.55rem; }

/* ══════════════════════════════════════════════════════════════
   FEATURE SPLIT (Two-column)
   ══════════════════════════════════════════════════════════════ */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }
.feature-visual {
    background: var(--ivory);
    border-radius: var(--radius-xl);
    padding: var(--sp-8);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    border: 1px solid var(--border-light);
}
.feature-visual-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.4;
}
.feature-text h2 { margin-bottom: var(--sp-4); }
.feature-text .section-label { margin-bottom: var(--sp-3); }
.feature-text p { margin-bottom: var(--sp-5); }
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-top: var(--sp-5);
}
.feature-list-item {
    display: flex;
    gap: var(--sp-4);
}
.feature-list-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-list-icon i {
    font-size: 0.9rem;
    color: var(--gold);
}
.feature-list-item h4 { margin-bottom: var(--sp-1); font-size: 0.95rem; }
.feature-list-item p { font-size: 0.875rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
}
.contact-form { max-width: 100%; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}
.form-group {
    margin-bottom: var(--sp-5);
}
.form-group label {
    display: block;
    margin-bottom: var(--sp-2);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--sp-3) var(--sp-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--white);
    transition: all var(--t-base);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197,165,90,.1);
}
.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info {
    padding: var(--sp-7);
    background: var(--navy);
    border-radius: var(--radius-xl);
    color: var(--white);
}
.contact-info h3 {
    color: var(--white);
    margin-bottom: var(--sp-5);
}
.contact-info-item {
    display: flex;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
}
.contact-info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: rgba(197,165,90,.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-info-icon i { color: var(--gold); font-size: 1rem; }
.contact-info-item h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: var(--sp-1);
}
.contact-info-item p {
    color: rgba(255,255,255,.5);
    font-size: 0.875rem;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,.5);
    padding: var(--sp-9) 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--sp-7);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand {
    max-width: 300px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: var(--sp-4);
    letter-spacing: 0.5px;
}
.footer-logo svg { width: 32px; height: 36px; }
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,.4);
}
.footer-col h4 {
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--sp-5);
}
.footer-col a {
    display: block;
    padding: var(--sp-2) 0;
    font-size: 0.875rem;
    color: rgba(255,255,255,.45);
    transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding: var(--sp-5) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,.3);
}
.footer-legal {
    display: flex;
    gap: var(--sp-5);
}
.footer-legal a {
    color: rgba(255,255,255,.3);
    transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ══════════════════════════════════════════════════════════════
   ALTERNATING SECTIONS
   ══════════════════════════════════════════════════════════════ */
.bg-ivory { background: var(--ivory); }
.bg-platinum { background: var(--platinum); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* Gold accent line on section top */
.gold-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   LEADERSHIP / TEAM GRID
   ══════════════════════════════════════════════════════════════ */
.team-card {
    text-align: center;
    padding: var(--sp-6);
}
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    margin: 0 auto var(--sp-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
    border: 2px solid var(--border-light);
}
.team-card h4 {
    margin-bottom: var(--sp-1);
    font-size: 1rem;
}
.team-card .team-role {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-3);
}
.team-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 280px;
}

/* ══════════════════════════════════════════════════════════════
   TIMELINE
   ══════════════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    padding-left: var(--sp-7);
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}
.timeline-item {
    position: relative;
    padding-bottom: var(--sp-7);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--sp-7) - 4px);
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold-pale);
}
.timeline-year {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: var(--sp-2);
}
.timeline-item h4 { margin-bottom: var(--sp-2); }
.timeline-item p { font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   OFFICES GRID
   ══════════════════════════════════════════════════════════════ */
.office-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    transition: all var(--t-base);
}
.office-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}
.office-card h4 { margin-bottom: var(--sp-3); }
.office-meta {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.office-meta span {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.office-meta i {
    width: 16px;
    color: var(--gold);
    font-size: 0.8rem;
}

/* ══════════════════════════════════════════════════════════════
   RTL SUPPORT
   ══════════════════════════════════════════════════════════════ */
[dir="rtl"] body { text-align: right; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .feature-list-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }
[dir="rtl"] .card-link { flex-direction: row-reverse; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .timeline { padding-left: 0; padding-right: var(--sp-7); }
[dir="rtl"] .timeline::before { left: auto; right: 0; }
[dir="rtl"] .timeline-item::before { left: auto; right: calc(-1 * var(--sp-7) - 4px); }
[dir="rtl"] .office-meta span { flex-direction: row-reverse; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-split { grid-template-columns: 1fr; gap: var(--sp-6); }
    .feature-split.reverse { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-geo { display: none; }
}

@media (max-width: 768px) {
    section { padding: var(--sp-8) 0; }
    section.section-lg { padding: var(--sp-8) 0; }

    .nav-links { display: none; }
    .lang-selector { display: none; }
    .nav-hamburger { display: flex; }

    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

    .hero { min-height: auto; padding-top: calc(var(--nav-height) + var(--sp-6)); padding-bottom: var(--sp-8); }
    .hero h1 { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }

    .page-hero { padding: calc(var(--nav-height) + var(--sp-7)) 0 var(--sp-7); }

    .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
    .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }
    .footer-legal { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }

    .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    :root { --sp-5: 1.25rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .stat-number { font-size: 2rem; }
}

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ══════════════════════════════════════════════════════════════ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
