/* =========================================================================
   Anatolink Global — Design System
   Brand (from logo): Primary Deep Navy #052043 · Secondary Gold #C39C5E
   Text colour is chosen per background: deep navy on light surfaces,
   white / gold on dark surfaces (WCAG-minded contrast).
   ========================================================================= */

:root {
    /* Brand palette (navy + gold, from the logo) */
    --primary: #052043;          /* exact primary — dark surfaces, headings, dark buttons */
    --navy: #052043;             /* deep navy — dark backgrounds, headings, dark buttons */
    --royal: #16406f;            /* mid-navy accent for links/icons/small UI (high contrast) */
    --gold: #c39c5e;             /* exact secondary — accents, eyebrows, gold buttons */
    --light-gold: #d9b884;       /* lighter gold — accents on dark backgrounds */
    --white: #FFFFFF;
    --charcoal: #333333;

    /* Derived tints */
    --navy-90: #0a2c54;
    --royal-10: #eaf0f8;
    --royal-20: #d3e0f0;
    --gold-10: #f7f1e4;
    --ink: #12223b;
    --muted: #5a6a80;
    --line: #e2e7ef;
    --bg-soft: #f5f7fb;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(11, 31, 58, .06), 0 2px 8px rgba(11, 31, 58, .05);
    --shadow-md: 0 8px 24px rgba(11, 31, 58, .10);
    --shadow-lg: 0 20px 48px rgba(11, 31, 58, .16);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 22px;
    --gold-grad: linear-gradient(120deg, #c39c5e, #d9b884);
    --navy-grad: linear-gradient(140deg, #052043, #143a68);

    /* Type */
    --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --header-h: 76px;
    --container: 1200px;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--royal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy); }
ul, ol { padding-left: 1.2em; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { color: var(--charcoal); }
:focus-visible { outline: 3px solid var(--royal); outline-offset: 2px; border-radius: 4px; }

/* -------------------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-grad); color: #e9eef6; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }

.eyebrow {
    display: inline-block; font-family: var(--font-body); font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase; font-size: .74rem;
    color: #8a6a2f; margin-bottom: 14px; /* deeper gold for AA text on light bg */
}
.section--navy .eyebrow { color: var(--light-gold); }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 12px; }
.section--navy .section-head p { color: #c6d2e4; }

.lead { font-size: 1.18rem; color: var(--muted); }

/* -------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex; align-items: center; gap: .55em; justify-content: center;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
    cursor: pointer; transition: transform .18s, box-shadow .2s, background .2s, color .2s;
    line-height: 1; text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--gold { background: var(--gold-grad); color: var(--navy); box-shadow: 0 6px 18px rgba(200,162,74,.35); }
.btn--gold:hover { color: var(--navy); box-shadow: 0 10px 26px rgba(200,162,74,.45); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--royal); color: var(--white); }
.btn--royal { background: var(--royal); color: var(--white); }
.btn--royal:hover { background: var(--navy); color: var(--white); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: var(--white); color: var(--navy); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* -------------------------------------------------------------- Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px);
    border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__logo--footer { height: 42px; background: #fff; padding: 8px 14px; border-radius: 10px; }
@media (max-width: 560px) { .brand__logo { height: 36px; } }
.brand__mark {
    width: 42px; height: 42px; border-radius: 11px; background: var(--navy-grad);
    display: grid; place-items: center; color: var(--light-gold);
    font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.brand__name { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.18rem; line-height: 1.05; }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.main-nav a {
    display: block; padding: 9px 13px; border-radius: 8px; font-weight: 500;
    font-size: .96rem; color: var(--ink);
}
.main-nav a:hover { background: var(--royal-10); color: var(--navy); }
.main-nav a.active { color: var(--royal); background: var(--royal-10); }
.header-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }
.mobile-nav { display: none; }

/* -------------------------------------------------------------- Hero */
.hero { position: relative; color: #eaf0f9; overflow: hidden; background: var(--navy); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(120deg, rgba(11,31,58,.94) 30%, rgba(31,78,140,.82));
}
.hero__inner { position: relative; z-index: 2; padding: clamp(70px, 11vw, 130px) 0; max-width: 820px; }
.hero h1 { color: var(--white); }
.hero .gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: 1.22rem; color: #c9d5e8; margin: 22px 0 32px; max-width: 620px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.trust-strip { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 48px; }
.trust-strip .stat { position: relative; padding-left: 18px; }
.trust-strip .stat::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--gold-grad); }
.stat__value { font-family: var(--font-head); font-size: 2.1rem; font-weight: 600; color: var(--white); line-height: 1; }
.stat__label { font-size: .9rem; color: #b6c4db; margin-top: 6px; }

/* Page hero (inner pages) */
.page-hero { position: relative; background: var(--navy-grad); color: #e9eef6; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(200,162,74,.22), transparent 45%); }
.page-hero__inner { position: relative; padding: clamp(48px, 7vw, 88px) 0; max-width: 780px; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: #c6d2e4; font-size: 1.14rem; margin-top: 14px; }
.breadcrumbs { font-size: .85rem; color: #b6c7dd; margin-bottom: 16px; }
.breadcrumbs a { color: var(--light-gold); }
.breadcrumbs span { opacity: .6; margin: 0 6px; }

/* -------------------------------------------------------------- Grid utils */
.grid { display: grid; gap: 24px; }
.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(260px, 1fr)); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }

/* -------------------------------------------------------------- Cards */
.card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s, box-shadow .22s, border-color .22s;
    height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--royal-20); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }
.card__icon {
    width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
    background: var(--royal-10); color: var(--royal); margin-bottom: 18px;
}
.card__icon svg { width: 26px; height: 26px; }
.card--link { display: flex; flex-direction: column; }
.card__more { margin-top: auto; padding-top: 16px; font-weight: 600; color: var(--royal); display: inline-flex; align-items: center; gap: 6px; }
.card--media { padding: 0; overflow: hidden; }
.card--media .card__img { aspect-ratio: 16/10; overflow: hidden; }
.card--media .card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card--media:hover .card__img img { transform: scale(1.05); }
.card--media .card__body { padding: 24px; }

.feature-icon { color: var(--gold); background: var(--gold-10); }

/* -------------------------------------------------------------- Tags / pills */
.tag {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 13px; border-radius: 999px;
    background: var(--royal-10); color: var(--royal); font-size: .82rem; font-weight: 600;
    border: 1px solid var(--royal-20);
}
.tag--gold { background: var(--gold-10); color: #7a5c26; border-color: #e6d4ac; }
.tag--muted { background: var(--bg-soft); color: var(--muted); border-color: var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* -------------------------------------------------------------- Industry tiles */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.industry-tile {
    display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-radius: var(--radius);
    background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    color: var(--ink); font-weight: 600; transition: all .2s;
}
.industry-tile:hover { border-color: var(--gold); color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-tile .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-10); color: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.industry-tile .ico svg { width: 22px; height: 22px; }

/* -------------------------------------------------------------- Process timeline */
.timeline { display: grid; gap: 22px; }
.step {
    display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px 28px; box-shadow: var(--shadow-sm); position: relative;
}
.step__n {
    font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--white);
    width: 62px; height: 62px; border-radius: 16px; background: var(--navy-grad);
    display: grid; place-items: center; flex-shrink: 0;
}
.step h3 { margin-bottom: 4px; }
.step p { color: var(--muted); }
.timeline--h { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.timeline--h .step { grid-template-columns: 1fr; text-align: left; }
/* Step cards stay light (white) even on dark sections — keep their text dark & legible */
.section--navy .step h3 { color: var(--navy); }
.section--navy .step p { color: var(--muted); }

/* -------------------------------------------------------------- Stats band */
.stats-band { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; text-align: center; }
.stats-band .num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 600; color: var(--light-gold); }
.stats-band .lbl { color: #c6d2e4; font-size: .96rem; margin-top: 4px; }
.section--soft .stats-band .num { color: var(--royal); }
.section--soft .stats-band .lbl { color: var(--muted); }

/* -------------------------------------------------------------- Job cards */
.job-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex; flex-direction: column; gap: 14px; height: 100%;
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--royal-20); }
.job-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.job-card h3 { font-size: 1.2rem; }
.job-card .company { color: var(--muted); font-size: .92rem; margin-top: 2px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; font-size: .88rem; color: var(--muted); }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 15px; height: 15px; color: var(--royal); }
.job-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 6px; }
.posted { font-size: .82rem; color: var(--muted); }

/* -------------------------------------------------------------- Filters */
.filter-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); }
.filter-bar .field { margin: 0; }
.results-count { color: var(--muted); font-size: .95rem; margin: 20px 0; }

/* -------------------------------------------------------------- Testimonials */
.quote-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 30px; box-shadow: var(--shadow-sm); height: 100%; display: flex; flex-direction: column;
    position: relative;
}
.quote-card::before { content: "\201C"; font-family: var(--font-head); font-size: 4rem; color: var(--light-gold); line-height: .6; position: absolute; top: 22px; right: 26px; opacity: .5; }
.quote-card p { font-size: 1.05rem; color: var(--ink); font-style: italic; }
.quote-card__by { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 22px; }
.quote-card__by img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.quote-card__by .n { font-weight: 700; color: var(--navy); font-size: .98rem; }
.quote-card__by .r { color: var(--muted); font-size: .85rem; }

/* -------------------------------------------------------------- Team */
.team-card { text-align: center; }
.team-card .avatar { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; }
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .avatar img { transform: scale(1.05); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--royal); font-weight: 600; font-size: .92rem; }
.team-card .spec { color: var(--muted); font-size: .86rem; margin-top: 4px; }

/* -------------------------------------------------------------- CTA band */
.cta-band { background: var(--navy-grad); color: var(--white); border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 30%, rgba(200,162,74,.28), transparent 50%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: #cdd8ea; max-width: 560px; margin: 14px auto 26px; }
.cta-band .btn-row { justify-content: center; }

/* -------------------------------------------------------------- Accordion (FAQ) */
.accordion { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.accordion + .accordion { margin-top: 14px; }
.acc-item + .acc-item { border-top: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 20px 24px; font-size: 1.05rem; font-weight: 600; color: var(--navy); font-family: var(--font-body); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.acc-q:hover { color: var(--royal); }
.acc-q .chev { flex-shrink: 0; transition: transform .25s; color: var(--gold); }
.acc-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.acc-a__inner { padding: 0 24px 22px; color: var(--muted); }

/* -------------------------------------------------------------- Forms */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 7px; }
.field .req { color: #c0392b; margin-left: 2px; }
.field .hint { display: block; font-weight: 400; color: var(--muted); font-size: .82rem; margin-top: 4px; }
.field input, .field select, .field textarea {
    width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
    padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
    background: var(--white); transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px var(--royal-20); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: #c0392b; box-shadow: 0 0 0 3px rgba(192,57,43,.12); }
.field .error-msg { display: none; color: #c0392b; font-size: .82rem; margin-top: 5px; }
.field .error-msg.show { display: flex; align-items: center; gap: 5px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; }
.checkbox input { width: auto; margin-top: 4px; flex-shrink: 0; }
.checkbox span { font-size: .92rem; color: var(--muted); }

/* File upload */
.file-drop { border: 1.5px dashed var(--royal-20); border-radius: var(--radius-sm); padding: 22px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s; background: var(--royal-10); }
.file-drop:hover { border-color: var(--royal); }
.file-drop input { display: none; }
.file-drop .fi-icon { color: var(--royal); margin: 0 auto 8px; }
.file-drop small { color: var(--muted); }
.file-preview { display: none; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg-soft); }
.file-preview.show { display: flex; }
.file-preview .fp-name { font-weight: 600; color: var(--navy); font-size: .9rem; word-break: break-all; }
.file-preview .fp-size { color: var(--muted); font-size: .8rem; }
.file-remove { background: none; border: 0; color: #c0392b; cursor: pointer; font-weight: 600; font-size: .85rem; }

/* Form status */
.form-status { display: none; padding: 16px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-weight: 600; }
.form-status.show { display: block; }
.form-status.success { background: #e8f6ee; color: #1e7d47; border: 1px solid #bce6cd; }
.form-status.error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6c0; }
.form-success-panel { display: none; text-align: center; padding: 30px 10px; }
.form-success-panel.show { display: block; }
.form-success-panel .check { width: 64px; height: 64px; border-radius: 50%; background: #e8f6ee; color: #1e7d47; display: grid; place-items: center; margin: 0 auto 18px; }
.btn.loading { position: relative; color: transparent !important; pointer-events: none; }
.btn.loading::after { content:""; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(11,31,58,.4); border-top-color: var(--navy); border-radius: 50%; animation: spin .7s linear infinite; }
.btn--navy.loading::after, .btn--royal.loading::after { border-color: rgba(255,255,255,.4); border-top-color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Newsletter (footer) */
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-form input[type=email] { flex: 1; min-width: 180px; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; }
.newsletter-form input[type=email]::placeholder { color: #9fb2cf; }
.newsletter-form input[type=email]:focus { outline: none; border-color: var(--light-gold); }
.newsletter-msg { font-size: .85rem; margin-top: 8px; color: var(--light-gold); }

/* -------------------------------------------------------------- Content pages */
.prose { max-width: 760px; }
.prose h2 { margin-top: 40px; margin-bottom: 14px; }
.prose h3 { margin-top: 28px; margin-bottom: 10px; }
.prose p, .prose li { color: var(--charcoal); margin-bottom: 14px; }
.prose ul { margin-bottom: 18px; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-10); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c39c5e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Logos strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.logo-chip { padding: 16px 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--muted); font-weight: 700; letter-spacing: .04em; font-size: .95rem; }

/* Value props */
.vp { display: flex; gap: 16px; align-items: flex-start; }
.vp .vp-ico { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: var(--gold-10); color: var(--gold); display: grid; place-items: center; }
.vp .vp-ico svg { width: 24px; height: 24px; }
.vp h3 { font-size: 1.12rem; margin-bottom: 4px; }
.vp p { color: var(--muted); font-size: .95rem; }

/* Sticky apply (job detail) */
.job-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.apply-panel { position: sticky; top: calc(var(--header-h) + 20px); }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; border: 1px dashed var(--line); border-radius: var(--radius); background: var(--bg-soft); }
.empty-state svg { color: var(--muted); margin: 0 auto 14px; }

/* -------------------------------------------------------------- Footer */
.site-footer { background: var(--navy); color: #b9c6dc; padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 34px; }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: #b9c6dc; font-size: .94rem; }
.site-footer a:hover { color: var(--light-gold); }
.footer-blurb { color: #9fb2cf; font-size: .95rem; margin: 16px 0 20px; max-width: 300px; }
.footer-contact { font-size: .92rem; color: #9fb2cf; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-brand .brand__name { color: var(--white); }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: #cdd8ea; }
.socials a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: #8296b4; }
.footer-bottom a { color: #8296b4; }

/* Floating "Talk to us" (mobile) */
.floating-cta { display: none; position: fixed; right: 18px; bottom: 18px; z-index: 90; box-shadow: var(--shadow-lg); }

/* Cookie banner */
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; background: var(--navy); color: #dbe4f2; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow-lg); display: none; gap: 20px; align-items: center; justify-content: space-between; flex-wrap: wrap; max-width: 980px; margin: 0 auto; }
.cookie-banner.show { display: flex; }
.cookie-banner p { color: #c6d2e4; font-size: .92rem; margin: 0; flex: 1; min-width: 240px; }
.cookie-banner a { color: var(--light-gold); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* -------------------------------------------------------------- Responsive */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .job-layout { grid-template-columns: 1fr; }
    .apply-panel { position: static; }
}
@media (max-width: 900px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; }
    .split .media-frame { order: -1; }
}
@media (max-width: 860px) {
    :root { --header-h: 66px; }
    .main-nav, .header-cta.desktop { display: none; }
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
        width: 46px; height: 46px; border-radius: 11px; border: 1px solid var(--line);
        background: var(--white); cursor: pointer; color: var(--navy);
    }
    .nav-toggle svg { width: 24px; height: 24px; }
    .mobile-nav {
        position: fixed; inset: var(--header-h) 0 0; z-index: 99; background: var(--white);
        transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
        padding: 24px 22px 40px; display: flex; flex-direction: column; gap: 6px;
    }
    .mobile-nav.open { transform: translateX(0); }
    body.nav-open { overflow: hidden; }
    .mobile-nav a.nav-link { padding: 14px 12px; border-radius: 10px; font-weight: 600; font-size: 1.08rem; color: var(--navy); border-bottom: 1px solid var(--line); }
    .mobile-nav a.nav-link:hover, .mobile-nav a.nav-link.active { background: var(--royal-10); color: var(--royal); }
    .mobile-nav .mob-cta { margin-top: 18px; display: grid; gap: 12px; }
    .floating-cta { display: inline-flex; }
    .hero__cta .btn, .cta-band .btn { flex: 1; }
}
@media (max-width: 600px) {
    body { font-size: 16px; }
    .grid-4, .grid-3, .grid-2, .field-2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .trust-strip { gap: 24px; }
    .trust-strip .stat { flex: 1; min-width: 40%; }
    .step { grid-template-columns: 1fr; }
    .step__n { width: 52px; height: 52px; font-size: 1.4rem; }
    .btn-row .btn { width: 100%; }
    .container { padding-inline: 18px; }
}

/* Reveal-on-scroll (respect reduced motion) */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
}
