/* ═══════════════════════════════════════════════════════════
   GOLD COAST LEGACY — Dark Gold Luxury Theme
   Warm dark tones with gold accents, lighter alternating panels
═══════════════════════════════════════════════════════════ */

:root {
    /* Gold Palette */
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A88A2D;
    --gold-glow: rgba(201,168,76,0.3);
    --gold-subtle: rgba(201,168,76,0.08);

    /* Backgrounds — LIGHTER than original */
    --bg-dark: #2A2A2E;
    --bg-mid: #323236;
    --bg-surface: #3A3A3F;
    --bg-card: #3E3E44;
    --bg-light: #484850;
    --bg-warm: #F5F0E8;
    --bg-warm-mid: #EDE7DB;

    /* Text */
    --white: #FFFFFF;
    --off-white: #F5F1E8;
    --text-bright: #F0ECE2;
    --text-dim: #B8B4AA;
    --text-muted: #8A867C;
    --text-on-light: #3A3632;
    --text-med-on-light: #5A5650;

    /* Borders */
    --border-subtle: rgba(201,168,76,0.12);
    --border-gold: rgba(201,168,76,0.35);
    --border-gold-strong: rgba(201,168,76,0.6);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.25);
    --shadow-gold: 0 8px 25px rgba(201,168,76,0.2);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 4rem;
    --sp-3xl: 6rem;

    /* Radius */
    --r-sm: 4px;
    --r-md: 8px;
    --r-lg: 12px;

    /* Transitions */
    --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-weight: 400; line-height: 1.6;
    color: var(--text-bright);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── DIAGONAL TEXTURE OVERLAY ── */
body::before {
    content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background: repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(201,168,76,0.012) 2px, rgba(201,168,76,0.012) 4px);
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
    position: fixed; top: 0; left: 0; width: 0; height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9999;
}

/* ── CONTAINER ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-lg); }

/* ── DECORATIVE DOT GRID ── */
.dot-grid {
    position: absolute;
    display: grid; grid-template-columns: repeat(4, 10px); gap: 8px;
    opacity: 0.2; z-index: 2;
}
.dot-grid span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.navbar {
    background: rgba(42,42,46,0.95);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky; top: 0; z-index: 1000;
    transition: all var(--ease);
}
.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    border-bottom-color: var(--border-gold);
}
.nav-container {
    max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-lg);
    display: flex; justify-content: space-between; align-items: center; height: 85px;
}
.nav-brand {
    font-family: var(--font-display);
    font-size: 1.85rem; font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em; position: relative;
    text-decoration: none;
}
.nav-brand::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 50px; height: 2px; background: var(--gold);
}
.nav-links {
    display: flex; list-style: none; gap: 2.25rem; align-items: center;
}
.nav-links a {
    color: var(--text-dim); text-decoration: none;
    font-weight: 600; font-size: 0.88rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: color var(--ease); position: relative; padding: 0.5rem 0;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0;
    background: var(--bg-card); min-width: 340px;
    padding: 1rem 0; opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--ease);
    border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(8px); }
.dropdown li { list-style: none; }
.dropdown a {
    display: block; padding: 0.75rem 1.5rem;
    font-size: 0.85rem; font-weight: 500;
    text-transform: none; letter-spacing: 0;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.dropdown a::after { display: none; }
.dropdown a:hover {
    background: var(--gold-subtle);
    border-left-color: var(--gold);
    color: var(--gold); padding-left: 1.75rem;
}

/* Nav CTA button */
.btn.btn-primary, .nav-links .btn.btn-primary {
    background: transparent !important;
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    -webkit-text-fill-color: var(--gold) !important;
    padding: 0.6rem 1.5rem !important;
    font-weight: 700; font-size: 0.82rem;
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all var(--ease);
}
.btn.btn-primary:hover, .nav-links .btn.btn-primary:hover {
    background: var(--gold) !important;
    color: var(--bg-dark) !important;
    -webkit-text-fill-color: var(--bg-dark) !important;
}
.btn.btn-primary::after { display: none !important; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 30px; height: 24px; position: relative;
    flex-direction: column; justify-content: space-between;
}
.hamburger-line {
    display: block; width: 100%; height: 2px;
    background: var(--gold); transition: all var(--ease);
}
.mobile-apply { display: none; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn-gold {
    background: var(--gold); color: var(--bg-dark);
    padding: 1rem 2.5rem; font-family: var(--font-body);
    font-weight: 700; font-size: 0.88rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    box-shadow: var(--shadow-gold);
    transition: all var(--ease);
}
.btn-gold:hover {
    background: var(--gold-light); transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201,168,76,0.3);
}
.btn-outline-gold {
    background: transparent; border: 2px solid var(--gold);
    color: var(--gold); padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 700; font-size: 0.88rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: inline-block;
    transition: all var(--ease);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--bg-dark); }
.btn-ghost {
    color: var(--gold); text-decoration: none;
    font-weight: 600; font-size: 0.95rem;
    padding: 1rem 0; border-bottom: 2px solid var(--border-gold);
    transition: all var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); }

/* ═══════════════════════════════════════════════════
   SPLIT HERO
═══════════════════════════════════════════════════ */
.split-hero {
    display: grid; grid-template-columns: 55% 45%;
    min-height: 90vh; position: relative; overflow: hidden;
}
.split-left {
    background: var(--bg-dark);
    display: flex; flex-direction: column; justify-content: center;
    padding: 6rem 5rem 6rem 4rem; position: relative; z-index: 2;
}
.split-left::after {
    content: ''; position: absolute; top: 20%; right: 0;
    width: 3px; height: 60%;
    background: linear-gradient(180deg, var(--gold), transparent);
    border-radius: 2px;
}
.hero-eyebrow {
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); margin-bottom: var(--sp-lg);
    display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--gold); }
.split-left h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 4.5vw, 4.5rem);
    font-weight: 700; color: var(--white);
    line-height: 1.08; margin-bottom: var(--sp-md);
}
.split-left h1 em { font-style: italic; color: var(--gold); }
.split-left > p {
    font-size: 1.1rem; color: var(--text-dim);
    line-height: 1.8; max-width: 460px; margin-bottom: var(--sp-xl);
}
.hero-actions { display: flex; gap: var(--sp-sm); align-items: center; }
.split-right {
    background-size: cover; background-position: center; position: relative;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.split-right::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(42,42,46,0.2));
}
/* Hexagonal badge */
.hero-badge {
    position: absolute; top: 50%; left: 5%; transform: translateY(-50%);
    width: 130px; height: 130px; background: var(--bg-dark);
    border: 3px solid var(--gold);
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 3;
}
.hero-badge .small { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-badge .big { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; }
.hero-badge .sub { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ═══════════════════════════════════════════════════
   CONTACT BAR
═══════════════════════════════════════════════════ */
.contact-bar {
    background: var(--bg-surface); padding: 1.75rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.contact-bar .container {
    display: grid; grid-template-columns: repeat(3, 1fr); text-align: center; gap: 2rem;
}
.contact-item .label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.3rem;
}
.contact-item .value {
    font-family: var(--font-display);
    font-size: 1.3rem; color: var(--white); font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   HORIZONTAL ROLE CARDS
═══════════════════════════════════════════════════ */
.roles-section { padding: var(--sp-3xl) 0; position: relative; z-index: 1; }
.roles-header { max-width: 1400px; margin: 0 auto; padding: 0 var(--sp-xl) var(--sp-xl); }
.section-label {
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 1rem;
}
.section-label::before { content: ''; width: 30px; height: 2px; background: var(--gold); }
.roles-header h2, .zigzag-header h2, .testimonials-list h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700; color: var(--white);
}
.roles-track {
    display: flex; gap: 1.25rem; padding: 0 var(--sp-xl) var(--sp-lg);
    overflow-x: auto; scroll-snap-type: x mandatory;
    -ms-overflow-style: none; scrollbar-width: none;
}
.roles-track::-webkit-scrollbar { display: none; }
.role-card {
    min-width: 330px; flex-shrink: 0; scroll-snap-align: start;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold);
    padding: 2.25rem 1.75rem; transition: all var(--ease);
    text-decoration: none; color: inherit;
    display: flex; flex-direction: column; position: relative;
}
.role-card:hover {
    border-color: var(--border-gold); transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.role-tag {
    display: inline-block; border: 1px solid var(--border-gold);
    color: var(--gold); padding: 0.3rem 0.85rem;
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1.25rem; align-self: flex-start;
}
.role-card h3 {
    font-family: var(--font-display);
    font-size: 1.55rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.5rem; line-height: 1.3;
}
.role-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.role-pay {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 600; color: var(--gold);
    padding-top: 1rem; margin-top: auto;
    border-top: 1px solid var(--border-subtle);
}
.role-arrow {
    position: absolute; bottom: 1.75rem; right: 1.75rem;
    width: 38px; height: 38px; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem;
    opacity: 0; transition: all var(--ease);
}
.role-card:hover .role-arrow { opacity: 1; }

/* ═══════════════════════════════════════════════════
   SPOTLIGHT TESTIMONIAL
═══════════════════════════════════════════════════ */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; min-height: 65vh; }
.spotlight-photo {
    background-size: cover; background-position: center; position: relative;
}
.spotlight-photo::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(42,42,46,0.4));
}
.spotlight-content {
    background: var(--bg-surface);
    display: flex; flex-direction: column; justify-content: center;
    padding: var(--sp-3xl); position: relative;
    border-left: 3px solid var(--gold);
}
.spotlight-quote {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-style: italic; color: var(--white);
    line-height: 1.6; margin-bottom: var(--sp-xl); position: relative;
}
.spotlight-quote::before {
    content: '"'; position: absolute; top: -1.5rem; left: -0.5rem;
    font-size: 6rem; color: var(--gold); opacity: 0.2; line-height: 1;
}
.spotlight-author { display: flex; align-items: center; gap: var(--sp-sm); }
.spotlight-author img {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--gold);
}
.spotlight-name { color: var(--gold); font-weight: 700; font-size: 1rem; }
.spotlight-role { color: var(--text-muted); font-size: 0.85rem; }

/* ═══════════════════════════════════════════════════
   ZIGZAG CONTENT BLOCKS
═══════════════════════════════════════════════════ */
.zigzag { padding: var(--sp-3xl) var(--sp-xl); max-width: 1400px; margin: 0 auto; }
.zigzag-header { text-align: center; margin-bottom: var(--sp-3xl); }
.zig-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--sp-2xl); align-items: center; margin-bottom: var(--sp-3xl);
}
.zig-row:last-child { margin-bottom: 0; }
.zig-row:nth-child(even) .zig-visual { order: -1; }
.zig-num {
    font-family: var(--font-display); font-size: 5rem; line-height: 1;
    color: var(--gold); margin-bottom: var(--sp-sm); font-weight: 700;
}
.zig-text h3 {
    font-family: var(--font-display); font-size: 1.55rem; font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-sm);
}
.zig-text p { color: var(--text-dim); line-height: 1.9; font-size: 1.05rem; }
.zig-visual {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; min-height: 260px;
    transition: all var(--ease);
}
.zig-visual:hover { border-color: var(--border-gold); box-shadow: var(--shadow-lg); }
.zig-stat {
    font-family: var(--font-display); font-size: 4.5rem;
    color: var(--gold); font-weight: 700;
}
.zig-stat-label { font-size: 1rem; color: var(--text-dim); font-weight: 600; margin-top: var(--sp-xs); }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS LIST
═══════════════════════════════════════════════════ */
.testimonials-list {
    background: var(--bg-surface); padding: var(--sp-3xl) var(--sp-xl);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.testimonials-list .container { max-width: 900px; margin: 0 auto; }
.tl-item {
    padding: var(--sp-xl) 0; border-bottom: 1px solid var(--border-subtle);
    display: grid; grid-template-columns: 70px 1fr;
    gap: var(--sp-lg); align-items: start;
}
.tl-item:last-child { border-bottom: none; }
.tl-item img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.tl-quote {
    font-family: var(--font-display); font-size: 1.3rem;
    font-style: italic; line-height: 1.7;
    color: var(--text-bright); margin-bottom: 0.75rem;
}
.tl-meta { font-size: 0.85rem; color: var(--text-muted); }
.tl-meta strong { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════════════
   CTA SECTION WITH FLOATING CARD
═══════════════════════════════════════════════════ */
.cta-section {
    padding: var(--sp-3xl) var(--sp-xl); position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    border-radius: 50%;
}
.cta-inner {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 380px;
    gap: var(--sp-2xl); align-items: center; position: relative; z-index: 1;
}
.cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white); font-weight: 700;
    margin-bottom: var(--sp-sm); line-height: 1.2;
}
.cta-text p {
    color: var(--text-dim); font-size: 1.1rem;
    line-height: 1.7; margin-bottom: var(--sp-lg); max-width: 500px;
}
.cta-card {
    background: var(--bg-card); border: 1px solid var(--border-gold);
    padding: var(--sp-xl); box-shadow: var(--shadow-lg);
}
.cta-card h3 {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
    color: var(--gold); margin-bottom: var(--sp-xs);
}
.cta-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--sp-md); line-height: 1.6; }
.cta-card .btn-gold { width: 100%; text-align: center; }
.cta-card-stats {
    display: flex; gap: 1.25rem; margin-top: var(--sp-md);
    padding-top: var(--sp-md); border-top: 1px solid var(--border-subtle);
}
.cta-card-stat { text-align: center; flex: 1; }
.cta-card-stat .num { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.cta-card-stat .lbl { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (sub-pages)
═══════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
    padding: 8rem 2rem 4rem; text-align: center;
    position: relative; overflow: hidden;
    border-bottom: 2px solid var(--gold);
}
.page-hero::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 60%; height: 200%;
    background: radial-gradient(ellipse, rgba(201,168,76,0.06), transparent 70%);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-sm);
    position: relative; z-index: 1;
}
.page-hero p {
    font-size: 1.15rem; color: var(--text-dim);
    max-width: 600px; margin: 0 auto;
    position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════════
   SPLIT CONTENT BLOCKS (about, training)
   Right-side panels use lighter warm background
═══════════════════════════════════════════════════ */
.split-block { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.split-block:nth-child(even) .split-block-img { order: 1; }
.split-block-img { background-size: cover; background-position: center; position: relative; }
.split-block-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(42,42,46,0.3));
}
.split-block-body {
    padding: var(--sp-3xl); display: flex; flex-direction: column; justify-content: center;
    background: var(--bg-mid);
}
/* LIGHTER variant for alternating panels */
.split-block-body.light-panel {
    background: var(--bg-warm);
    color: var(--text-on-light);
}
.split-block-body.light-panel h2,
.split-block-body.light-panel h3 { color: var(--text-on-light); }
.split-block-body.light-panel p { color: var(--text-med-on-light); }
.split-block-body.light-panel .feature-tag { color: var(--gold-dark); }
.split-block-body.light-panel .check-list li { color: var(--text-on-light); }

.split-block-body h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-sm); line-height: 1.2;
}
.split-block-body p {
    color: var(--text-dim); font-size: 1.05rem;
    line-height: 1.8; margin-bottom: var(--sp-md);
}
.feature-tag {
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.feature-tag::before { content: ''; width: 20px; height: 2px; background: var(--gold); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.check-list li {
    display: flex; align-items: center; gap: 0.75rem;
    font-weight: 600; font-size: 0.95rem; color: var(--text-bright);
}
.check-list .check {
    width: 24px; height: 24px; background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--bg-dark); font-size: 0.75rem; flex-shrink: 0; font-weight: 900;
}

/* ═══════════════════════════════════════════════════
   VALUES GRID (about page)
═══════════════════════════════════════════════════ */
.values-section { background: var(--bg-surface); padding: var(--sp-3xl) 0; }
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-md); padding: 0 var(--sp-lg);
    max-width: 1400px; margin: 0 auto;
}
.value-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl);
    transition: all var(--ease);
}
.value-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card .icon { font-size: 2.5rem; margin-bottom: var(--sp-sm); }
.value-card h3 {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-xs);
}
.value-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════
   TIMELINE (training page)
═══════════════════════════════════════════════════ */
.timeline-section { padding: var(--sp-3xl) var(--sp-lg); max-width: 1000px; margin: 0 auto; }
.timeline-section h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700; text-align: center; color: var(--white);
    margin-bottom: var(--sp-2xl);
}
.timeline-item {
    padding: var(--sp-lg) 0 var(--sp-lg) var(--sp-xl);
    border-left: 3px solid var(--gold);
    position: relative; margin-left: 1.5rem;
}
.timeline-item::before {
    content: ''; position: absolute; left: -10px; top: var(--sp-lg);
    width: 18px; height: 18px; background: var(--gold);
    border-radius: 50%; border: 3px solid var(--bg-dark);
}
.timeline-item h3 {
    font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
    color: var(--gold); margin-bottom: var(--sp-xs);
}
.timeline-item p { color: var(--text-dim); line-height: 1.7; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════
   FORMS (careers + jobs)
═══════════════════════════════════════════════════ */
.form-section { padding: var(--sp-3xl) var(--sp-lg); max-width: 800px; margin: 0 auto; }
.form-section h2 {
    font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--white); margin-bottom: var(--sp-sm); text-align: center;
}
.form-section > p { text-align: center; color: var(--text-dim); margin-bottom: var(--sp-xl); }
.form-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl);
}
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { margin-bottom: 1.25rem; }
.field label {
    display: block; font-weight: 600; margin-bottom: 0.4rem;
    font-size: 0.92rem; color: var(--text-bright);
}
.field input, .field select, .field textarea {
    width: 100%; padding: 0.85rem 1rem;
    border: 1px solid var(--border-subtle);
    background: var(--bg-mid); color: var(--text-bright);
    font-family: var(--font-body); font-size: 1rem;
    transition: all 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.field input::placeholder { color: var(--text-muted); }
.consent-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: var(--sp-sm) 0; }
.consent-text a { color: var(--gold); }
.submit-btn {
    background: var(--gold); color: var(--bg-dark);
    padding: 1rem 2.5rem; border: none;
    font-family: var(--font-body); font-size: 1rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; width: 100%; transition: all var(--ease);
    box-shadow: var(--shadow-gold);
}
.submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(42,42,46,.3); border-top-color: var(--bg-dark); border-radius: 50%; animation: spin .6s linear infinite; vertical-align: middle; margin-right: 6px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   JOB DETAIL
═══════════════════════════════════════════════════ */
.job-detail { max-width: 800px; margin: 0 auto; padding: var(--sp-xl) var(--sp-lg); }
.job-detail-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl);
    margin-bottom: var(--sp-xl);
}
.job-badge {
    display: inline-block; border: 1px solid var(--border-gold);
    color: var(--gold); padding: 0.3rem 0.9rem;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: var(--sp-sm);
}
.job-detail-card h2 {
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-xs);
}
.job-detail-card .job-location { color: var(--text-muted); font-size: 0.95rem; margin-bottom: var(--sp-md); }
.job-detail-card p { color: var(--text-dim); line-height: 1.8; font-size: 1rem; margin-bottom: var(--sp-sm); }
.job-detail-card strong { color: var(--gold); font-weight: 700; }

/* ═══════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════ */
.legal-content { max-width: 900px; margin: 0 auto; padding: var(--sp-3xl) var(--sp-lg); }
.legal-content h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--gold); margin-top: var(--sp-xl); margin-bottom: var(--sp-sm); }
.legal-content h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-top: var(--sp-lg); margin-bottom: var(--sp-xs); }
.legal-content p { color: var(--text-dim); line-height: 1.8; font-size: 1rem; margin-bottom: var(--sp-sm); }
.legal-content ul, .legal-content ol { color: var(--text-dim); line-height: 1.8; margin-bottom: var(--sp-sm); padding-left: var(--sp-lg); }
.legal-content a { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   THANK YOU / 404
═══════════════════════════════════════════════════ */
.message-page {
    min-height: 60vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: var(--sp-3xl) var(--sp-lg);
}
.message-page h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6rem); font-weight: 700; color: var(--gold); margin-bottom: var(--sp-sm); }
.message-page h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: var(--sp-sm); }
.message-page p { color: var(--text-dim); font-size: 1.1rem; line-height: 1.7; margin-bottom: var(--sp-lg); max-width: 500px; }

/* ═══════════════════════════════════════════════════
   PRACTICE TESTS
═══════════════════════════════════════════════════ */
.exam-cards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-lg); margin: var(--sp-lg) 0;
}
.exam-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl) var(--sp-lg);
    transition: all var(--ease); text-decoration: none; color: inherit;
    display: flex; flex-direction: column;
}
.exam-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exam-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-sm); }
.exam-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: var(--sp-xs); }
.exam-meta { font-size: 0.88rem; color: var(--text-muted); margin-bottom: var(--sp-md); }
.exam-progress { background: var(--bg-mid); padding: var(--sp-sm); margin-bottom: var(--sp-md); }
.progress-text { font-size: 0.88rem; margin-bottom: var(--sp-xs); color: var(--text-dim); font-weight: 500; }
.progress-bar { background: var(--bg-dark); height: 8px; overflow: hidden; }
.progress-fill { background: linear-gradient(90deg, var(--gold-dark), var(--gold)); height: 100%; transition: width 0.3s; }
.exam-button {
    background: var(--gold); color: var(--bg-dark);
    border: none; padding: 0.875rem 1.5rem;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    text-align: center; margin-top: auto;
    box-shadow: var(--shadow-gold); transition: all var(--ease);
}
.exam-card:hover .exam-button { background: var(--gold-light); }
.exam-section-title {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    color: var(--white); margin-bottom: var(--sp-xs); margin-top: var(--sp-xl);
    padding-bottom: 0.75rem; border-bottom: 2px solid var(--gold);
}
.exam-section-subtitle { font-size: 1rem; color: var(--text-muted); margin-top: 0; margin-bottom: var(--sp-lg); }
.stats-highlight {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl) var(--sp-lg);
    text-align: center; margin: var(--sp-lg) 0;
}
.stats-number { font-family: var(--font-display); font-size: 4.5rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: var(--sp-sm); }
.stats-text { font-size: 1.1rem; color: var(--text-dim); font-weight: 500; line-height: 1.6; }
.features-section { background: var(--bg-surface); padding: var(--sp-3xl) 0; margin-top: var(--sp-xl); border-top: 1px solid var(--border-subtle); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--sp-lg); margin-top: var(--sp-xl); }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-top: 3px solid var(--gold); padding: var(--sp-xl);
    text-align: center; transition: all var(--ease);
}
.feature-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.5rem; margin-bottom: var(--sp-sm); }
.feature-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.feature-description { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer {
    background: var(--bg-surface); color: var(--text-muted);
    padding: 4rem 2rem 2rem; border-top: 2px solid var(--gold);
}
.footer-content {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
    margin-bottom: 3rem;
}
.footer-brand h3 { font-family: var(--font-display); color: var(--gold); font-size: 1.5rem; margin-bottom: 0.75rem; }
.footer-links h4, .footer-contact h4 {
    color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 1rem;
}
.footer ul { list-style: none; }
.footer a { color: var(--text-muted); text-decoration: none; display: block; padding: 0.35rem 0; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-bottom {
    max-width: 1400px; margin: 0 auto; padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex; justify-content: space-between; font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 968px) {
    .split-hero { grid-template-columns: 1fr; min-height: auto; }
    .split-left { padding: 8rem 2rem 4rem; }
    .split-left::after { display: none; }
    .split-right { clip-path: none; height: 50vh; }
    .hero-badge { display: none; }
    .contact-bar .container { grid-template-columns: 1fr; gap: 1.25rem; }
    .spotlight { grid-template-columns: 1fr; }
    .spotlight-photo { height: 40vh; }
    .spotlight-content { padding: var(--sp-xl) var(--sp-lg); border-left: none; border-top: 3px solid var(--gold); }
    .zig-row { grid-template-columns: 1fr; gap: var(--sp-lg); }
    .zig-row:nth-child(even) .zig-visual { order: 0; }
    .cta-inner { grid-template-columns: 1fr; }
    .tl-item { grid-template-columns: 55px 1fr; }
    .split-block { grid-template-columns: 1fr; min-height: auto; }
    .split-block-img { height: 300px; }
    .split-block:nth-child(even) .split-block-img { order: 0; }
    .split-block-body { padding: var(--sp-xl) var(--sp-lg); }
    .values-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .nav-links { display: none; }
    .mobile-menu-toggle { display: flex; }
    .row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .cta-card-stats { flex-direction: column; gap: var(--sp-sm); }
    .exam-cards-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
