/* ============================================================
   ANSARI MANPOWER — PREMIUM GLOBAL STYLESHEET v3
   Brand: White + Navy #1e3a6e + Sky Blue — per logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ─── BRAND TOKENS ──────────────────────────────────────── */
:root {
    /* Primary brand — extracted from logo */
    --navy:        #1e3a6e;   /* deep logo navy */
    --navy-dark:   #122348;   /* darker shade */
    --navy-mid:    #2d4f8a;   /* mid navy */
    --blue:        #2563eb;   /* accent blue */
    --blue-light:  #3b82f6;   /* button blue */
    --blue-vivid:  #60a5fa;   /* highlight */

    /* Light tones — matching business card bg */
    --sky:         #dbeafe;   /* lightest blue tint */
    --sky-soft:    #eff6ff;   /* section bg */
    --sky-pale:    #f5f9ff;   /* hero area */

    /* Neutrals */
    --ink:         #0f172a;
    --ink-mid:     #1e293b;
    --muted:       #4b6080;
    --muted-light: #7b93b8;
    --line:        #d4e2f4;
    --line-soft:   #e8f1fb;
    --white:       #ffffff;
    --soft:        #f8faff;

    /* Semantic */
    --success-bg:    #f0fdf4;
    --success-text:  #166534;
    --success-border:#bbf7d0;
    --error-bg:      #fef2f2;
    --error-text:    #991b1b;
    --error-border:  #fecaca;

    /* Shadows — navy tinted */
    --shadow-sm:   0 2px 8px  rgba(30,58,110,.06);
    --shadow-md:   0 6px 24px rgba(30,58,110,.10);
    --shadow-lg:   0 16px 48px rgba(30,58,110,.14);
    --shadow-xl:   0 28px 72px rgba(30,58,110,.18);
    --shadow-btn:  0 6px 20px rgba(37,99,235,.35);
    --shadow-card: 0 2px 16px rgba(30,58,110,.07);

    /* Radii */
    --r-xs:    4px;
    --r-sm:    8px;
    --r-md:    12px;
    --r-lg:    16px;
    --r-xl:    24px;
    --r-2xl:   32px;
    --r-pill:  9999px;

    /* Typography */
    --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;

    /* Motion */
    --ease:      cubic-bezier(.22, 1, .36, 1);
    --dur-fast:  160ms;
    --dur-base:  260ms;
    --dur-slow:  440ms;

    /* Layout */
    --max-w:      1200px;
    --section-x:  clamp(18px, 5vw, 72px);
    --section-y:  clamp(56px, 8vw, 96px);
    --section-y-sm: clamp(32px, 5vw, 52px);
}

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: var(--r-xs); }
img, video { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    line-height: 1.1;
    margin: 0 0 .55em;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.015em;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); letter-spacing: -.025em; max-width: 820px; }
h2 { font-size: clamp(26px, 3.6vw, 42px); letter-spacing: -.02em; }
h3 { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 600; }

p { margin: 0 0 1em; color: var(--muted); line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    padding: 5px 14px;
    background: rgba(30,58,110,.07);
    border: 1px solid rgba(30,58,110,.14);
    border-radius: var(--r-pill);
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.section { padding: var(--section-y) var(--section-x); }
.section.compact { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }
.section.alt { background: linear-gradient(180deg, var(--soft) 0%, var(--sky-soft) 100%); }
.section.dark {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: white;
}
.section.dark h2, .section.dark h3 { color: white; }
.section.dark p { color: rgba(255,255,255,.72); }

.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: .35em; }
.section-head p { font-size: 17px; }

.grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 var(--section-x);
    height: 70px;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 var(--line-soft), 0 4px 20px rgba(30,58,110,.05);
    transition: box-shadow var(--dur-base) var(--ease);
}
.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(30,58,110,.11);
}

/* Brand / Logo */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    text-decoration: none;
}
.brand-logo {
    display: block;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 10px;
    /* Show the circular logo from the business card image */
    background: white url('../img/ansari-business-card.jpeg') 18% 10% / 340% auto no-repeat;
    box-shadow: 0 2px 12px rgba(30,58,110,.14);
    border: 1.5px solid var(--line);
}
.brand strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    letter-spacing: -.01em;
}
.brand small {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted-light);
    font-weight: 600;
    margin-top: 2px;
}

/* Nav */
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.site-nav a {
    padding: 8px 13px;
    border-radius: var(--r-sm);
    color: var(--ink-mid);
    font-size: 14px;
    font-weight: 600;
    transition: color var(--dur-fast), background var(--dur-fast);
}
.site-nav a:hover { color: var(--navy); background: var(--sky-soft); }
.site-nav a.active { color: var(--blue); background: rgba(37,99,235,.08); font-weight: 700; }

/* Header CTA */
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 20px;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: white;
    font-size: 13.5px;
    font-weight: 700;
    box-shadow: var(--shadow-btn);
    transition: box-shadow var(--dur-base), transform var(--dur-fast);
    flex-shrink: 0;
}
.header-cta:hover { box-shadow: 0 10px 28px rgba(37,99,235,.45); transform: translateY(-1px); color: white; }

/* Hamburger */
.nav-toggle {
    display: none;
    margin-left: auto;
    border: 1.5px solid var(--line);
    background: white;
    border-radius: var(--r-sm);
    width: 42px; height: 42px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    transition: border-color var(--dur-fast);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform var(--dur-base) var(--ease), opacity var(--dur-fast); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 28px;
    border: none;
    border-radius: var(--r-pill);
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: white;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--shadow-btn);
    transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-fast) var(--ease);
    white-space: nowrap;
}
.btn:hover { box-shadow: 0 12px 32px rgba(37,99,235,.45); transform: translateY(-2px); color: white; }
.btn:active { transform: translateY(0); }

.btn.secondary {
    background: white;
    color: var(--navy);
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.btn.secondary:hover { background: var(--sky-soft); border-color: rgba(30,58,110,.25); box-shadow: var(--shadow-md); color: var(--navy); }

.btn.sm { min-height: 38px; padding: 0 18px; font-size: 13px; }
.btn.lg { min-height: 54px; padding: 0 34px; font-size: 16px; }
.btn.outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.4); box-shadow: none; }
.btn.outline:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); color: white; }

/* ─── HERO ───────────────────────────────────────────────── */
/*
   Design: clean white/sky-blue — matching the business card
   Left: dark navy content panel  |  Right: logo card floating
*/
.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100svh - 70px);
    display: flex;
    align-items: center;
    padding: clamp(56px, 7vw, 96px) var(--section-x);

    /* Light, premium — matches business card bg */
    background:
        radial-gradient(ellipse 55% 70% at 100% 0%,   rgba(37,99,235,.10),   transparent 55%),
        radial-gradient(ellipse 40% 50% at 0%  100%,  rgba(30,58,110,.06),   transparent 55%),
        linear-gradient(160deg, #f5f9ff 0%, #edf4ff 50%, #e8f2ff 100%);
}

/* Geometric polygon shapes (like business card bg) */
.hero::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 80% at 100% 50%, rgba(37,99,235,.08), transparent 65%);
    pointer-events: none;
}
/* Subtle mesh dots */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(30,58,110,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) 420px;
    gap: 56px;
    align-items: center;
}

/* Left content */
.hero-content .eyebrow {
    margin-bottom: 20px;
    color: var(--navy);
    background: rgba(30,58,110,.07);
    border-color: rgba(30,58,110,.16);
}
.hero-content h1 {
    font-size: clamp(38px, 5.5vw, 66px);
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.07;
}
.hero-content h1 em {
    font-style: normal;
    color: var(--blue);
}
.hero-content > p {
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: white;
    border: 1.5px solid var(--line);
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.trust-pill::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #16a34a;
    flex-shrink: 0;
}

/* ── Right side: Logo Card (matches the real business card) ── */
.hero-trust-panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255,255,255,.9);
}

/* The panel mimics the actual white business card aesthetic */
.hero-trust-panel-inner {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Top area — matches the navy bottom strip of business card */
.hero-trust-logo {
    position: relative;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;

    /* White background with light-blue geometric texture — like the card */
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(37,99,235,.10), transparent 50%),
        radial-gradient(ellipse 60% 60% at 0% 100%, rgba(30,58,110,.08), transparent 50%),
        linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
    border-bottom: 1px solid var(--line);
}
/* Geometric polygon accent top-right like business card */
.hero-trust-logo::before {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 140px; height: 140px;
    background:
        linear-gradient(135deg, rgba(37,99,235,.10) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-trust-logo::after {
    content: '';
    position: absolute;
    bottom: -10px; right: 20px;
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(30,58,110,.07), transparent);
    border-radius: 50%;
    pointer-events: none;
}

/* THE ACTUAL LOGO IMAGE — large, prominent, real */
.hero-logo-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 18% 10%;
    border: 3px solid white;
    box-shadow: 0 8px 32px rgba(30,58,110,.18);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    /* Crop to just the logo circle from business card */
    background: white;
}
.hero-trust-logo strong {
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.hero-trust-logo small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 5px;
    position: relative;
    z-index: 1;
}

/* Metrics row below logo */
.trust-metric-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--line);
}
.trust-metric-row div {
    padding: 16px 10px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.trust-metric-row div:last-child { border-right: none; }
.trust-metric-row strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
}
.trust-metric-row span {
    display: block;
    color: var(--muted-light);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: 2px;
}

/* Process steps row */
.hero-process-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--soft);
}
.hero-process-mini span {
    padding: 6px 13px;
    border-radius: var(--r-pill);
    background: white;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

/* CTA inside panel */
.hero-trust-panel-inner .btn {
    display: flex;
    margin: 0;
    width: 100%;
    border-radius: 0 0 24px 24px;
    min-height: 54px;
    font-size: 15px;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    box-shadow: none;
}
.hero-trust-panel-inner .btn:hover {
    box-shadow: none;
    transform: none;
    opacity: .92;
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
    background: var(--navy);
    position: relative;
    z-index: 2;
}
.stats-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--section-x);
    display: flex;
    align-items: stretch;
}
.stats-bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 16px;
    text-align: center;
    transition: background var(--dur-fast);
}
.stats-bar-item:hover { background: rgba(255,255,255,.06); }
.stats-bar-item strong {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    display: block;
}
.stats-bar-item span {
    font-size: 12px;
    color: rgba(255,255,255,.60);
    font-weight: 600;
    letter-spacing: .3px;
    margin-top: 3px;
    display: block;
}
.stats-bar-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    margin: 14px 0;
    flex-shrink: 0;
}

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero {
    padding: clamp(60px, 7vw, 88px) var(--section-x) clamp(40px, 5vw, 56px);
    background:
        radial-gradient(ellipse 50% 70% at 100% 0%,  rgba(37,99,235,.09), transparent 55%),
        radial-gradient(ellipse 30% 40% at 0%  100%, rgba(30,58,110,.05), transparent 55%),
        linear-gradient(160deg, #f5f9ff 0%, #edf4ff 100%);
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    right: -40px; top: -40px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.07), transparent 70%);
    pointer-events: none;
}
.page-hero.compact-page { padding-top: 38px; padding-bottom: 32px; }
.page-hero .inner { max-width: var(--max-w); }
.page-hero h1 { font-size: clamp(26px, 3.6vw, 48px); max-width: 780px; margin-bottom: 14px; color: var(--navy-dark); }
.page-hero p { max-width: 620px; font-size: 17px; }

/* ─── CARDS ──────────────────────────────────────────────── */
.card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,110,.18); }

.glass-card {
    background: rgba(255,255,255,.95);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 50px; height: 50px;
    border-radius: var(--r-md);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sky-soft) 0%, rgba(37,99,235,.08) 100%);
    border: 1px solid rgba(37,99,235,.12);
    color: var(--navy);
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

/* ─── JOB CARDS ──────────────────────────────────────────── */
.job-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 24px 26px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base), border-color var(--dur-base);
}
.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(30,58,110,.2); }
.job-card .eyebrow { margin-bottom: 4px; }
.job-card h3 { margin-bottom: 4px; }
.job-card p { margin-bottom: 0; font-size: 14px; }
.job-card .btn { margin-top: auto; align-self: flex-start; }

/* ─── REVIEW CARDS ───────────────────────────────────────── */
.review-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--r-md); margin-bottom: 18px; }
.review-card h3 { font-size: 16px; margin-bottom: 8px; }
.review-card p { font-size: 14.5px; font-style: italic; }

/* ─── PROCESS STEPS ──────────────────────────────────────── */
.process { counter-reset: step; }
.process .card { position: relative; padding-top: 62px; }
.process .card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: 20px; left: 24px;
    width: 34px; height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(37,99,235,.30);
}

/* ─── COUNTRIES ──────────────────────────────────────────── */
.countries { display: flex; flex-wrap: wrap; gap: 12px; }
.country {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1.5px solid var(--line);
    background: white;
    border-radius: var(--r-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
    transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
}
.country:hover { background: var(--sky-soft); border-color: rgba(37,99,235,.3); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-shell, .candidate-marquee {
    overflow: hidden;
    border-radius: var(--r-lg);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    width: max-content;
    display: flex;
    gap: 16px;
    animation: marqueeLeft 38s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.client-logo {
    width: 148px; min-height: 92px;
    display: grid;
    place-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: white;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.client-logo:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.client-logo img { max-height: 62px; width: 100%; object-fit: contain; }

/* ─── CANDIDATE MARQUEE ──────────────────────────────────── */
.candidate-track {
    width: max-content;
    display: flex;
    gap: 16px;
    animation: marqueeLeft 46s linear infinite;
}
.candidate-track:hover { animation-play-state: paused; }
.candidate-slide {
    width: 240px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    background: white;
    box-shadow: var(--shadow-md);
    transition: transform var(--dur-base) var(--ease);
}
.candidate-slide:hover { transform: translateY(-4px); }
.candidate-slide img { width: 100%; height: 285px; object-fit: cover; display: block; }
.candidate-slide figcaption {
    padding: 12px 16px;
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 12.5px;
    border-top: 1px solid var(--line-soft);
    background: var(--soft);
}

/* ─── MEDIA STRIP ────────────────────────────────────────── */
.placement-section { overflow: hidden; }
.media-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0,1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.media-strip img {
    width: 100%; aspect-ratio: 4/5; object-fit: cover;
    border-radius: var(--r-lg);
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: var(--shadow-md);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.media-strip img:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.media-strip img:nth-child(odd)  { animation: floatA 9s ease-in-out infinite alternate; }
.media-strip img:nth-child(even) { animation: floatB 11s ease-in-out infinite alternate; }

/* ─── PHOTO GALLERY ──────────────────────────────────────── */
.photo-gallery { column-count: 3; column-gap: 18px; }
.photo-card {
    break-inside: avoid;
    margin: 0 0 18px;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.photo-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.photo-card figcaption { padding: 12px 16px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--navy); background: var(--soft); border-top: 1px solid var(--line-soft); }

/* ─── VIDEO GALLERY ──────────────────────────────────────── */
.video-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 20px; }
.video-card {
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-card);
    transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-card video { width: 100%; aspect-ratio: 16/9; background: var(--ink); border-radius: var(--r-md); display: block; }
.video-card h3 { margin: 12px 0 0; font-size: 15px; }

/* ─── LOGO GRID ──────────────────────────────────────────── */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px,1fr)); gap: 16px; }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-section { padding-top: 16px; padding-bottom: var(--section-y); }
.form-grid .field,
.form-panel .field { min-width: 0; overflow: hidden; }
.form-panel input,
.form-panel select,
.form-panel textarea { width: 100%; min-width: 0; box-sizing: border-box; }
.form-panel {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px 22px; }
.dense-form .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px 22px; }
.field.full { grid-column: 1 / -1; }
.contact-form .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }

label { display: block; margin-bottom: 6px; color: var(--ink-mid); font-size: 13.5px; font-weight: 700; letter-spacing: .01em; }

input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 15px;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    font-family: var(--font-body);
    font-size: 14.5px;
    background: var(--soft);
    color: var(--ink);
    transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
    outline: none;
}
input:hover, select:hover, textarea:hover { border-color: rgba(30,58,110,.3); }
input:focus, select:focus, textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
input[type="file"] {
    padding: 10px 14px;
    font-size: 13px;
    cursor: pointer;
    min-height: 44px;
    background: #f8faff;
    border: 2px dashed var(--line);
    border-radius: var(--r);
    transition: border-color .2s;
}
input[type="file"]:hover { border-color: var(--blue); background: #eef4ff; }
input[type="file"]:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.12); outline: none; }
select {
    cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' fill='none' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%234b6080' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
textarea { min-height: 128px; resize: vertical; line-height: 1.6; }
.dense-form input, .dense-form select, .dense-form textarea { min-height: 42px; padding: 9px 13px; font-size: 13.5px; }
.dense-form label { font-size: 12.5px; margin-bottom: 5px; }
.dense-form textarea { min-height: 78px; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.notice {
    padding: 14px 18px;
    border-radius: var(--r-md);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14.5px;
}
.notice.success { background: var(--success-bg); color: var(--success-text); border: 1px solid var(--success-border); }
.notice.error { background: var(--error-bg); color: var(--error-text); border: 1px solid var(--error-border); }

/* ─── FILTERS ────────────────────────────────────────────── */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
    border: 1.5px solid var(--line);
    background: white;
    border-radius: var(--r-pill);
    padding: 9px 18px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    color: var(--ink-mid);
    transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.filter-btn:hover { background: var(--sky-soft); border-color: rgba(30,58,110,.25); color: var(--navy); }
.filter-btn.active { background: linear-gradient(135deg, var(--blue), var(--navy)); color: white; border-color: transparent; box-shadow: var(--shadow-btn); }

/* ─── MAP ────────────────────────────────────────────────── */
.map { width: 100%; height: 300px; border: 0; border-radius: var(--r-xl); box-shadow: var(--shadow-md); display: block; }
.map-section { padding-top: 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq details { background: white; border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--dur-fast), box-shadow var(--dur-fast); }
.faq details:hover { border-color: rgba(37,99,235,.22); }
.faq details[open] { border-color: rgba(37,99,235,.28); box-shadow: var(--shadow-card); }
.faq details + details { margin-top: 12px; }
.faq summary {
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15.5px;
    color: var(--navy);
    padding: 18px 22px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    width: 18px; height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath d='M4 7l5 5 5-5' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform var(--dur-base) var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { margin: 0; padding: 0 22px 18px; font-size: 14.5px; border-top: 1px solid var(--line-soft); padding-top: 14px; }

/* ─── TABLE ──────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
th, td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; font-size: 14px; }
th { color: var(--navy); background: var(--soft); font-weight: 800; font-family: var(--font-display); font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px; }
tr:last-child td { border-bottom: 0; }
tr:hover td { background: var(--sky-soft); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: white;
    padding: clamp(48px, 7vw, 80px) var(--section-x) 28px;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    right: -80px; top: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,.12), transparent 70%);
    pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; position: relative; }
.footer .brand strong { color: white; font-size: 15px; }
.footer .brand small  { color: rgba(255,255,255,.45); }
.footer .brand-logo   { border-color: rgba(255,255,255,.15); }
.footer-brand { margin-bottom: 16px; }
.footer p { color: rgba(219,234,254,.72); font-size: 14px; line-height: 1.65; margin-bottom: 10px; }
.footer h3 { color: white; font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer a { display: block; margin-bottom: 10px; color: rgba(219,234,254,.70); font-size: 14px; transition: color var(--dur-fast); }
.footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 22px; color: rgba(219,234,254,.45); font-size: 13px; position: relative; }
.footer-bottom a { color: rgba(219,234,254,.65); margin-bottom: 0; display: inline; }
.footer-bottom a:hover { color: white; }

/* ─── FLOATING WIDGETS ───────────────────────────────────── */
.sticky-enquiry, .whatsapp-float {
    position: fixed;
    z-index: 200;
    right: 18px;
    border-radius: var(--r-pill);
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 28px rgba(15,23,42,.22);
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast);
}
.sticky-enquiry:hover, .whatsapp-float:hover { transform: translateY(-2px); }

.sticky-enquiry {
    bottom: 92px;
    padding: 13px 22px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    font-size: 14px;
    font-family: var(--font-display);
    display: grid;
    place-items: center;
}
.sticky-enquiry:hover { box-shadow: 0 14px 36px rgba(37,99,235,.45); }

.whatsapp-float {
    bottom: 18px;
    min-width: 176px;
    min-height: 60px;
    padding: 10px 18px 10px 56px;
    background: #16a34a;
    text-align: left;
    display: flex;
    align-items: center;
}
.whatsapp-float:hover { box-shadow: 0 14px 36px rgba(22,163,74,.45); }
.whatsapp-float::before {
    content: '';
    position: absolute;
    left: 14px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M.057 24l1.687-6.163c-1.041-1.804-1.588-3.849-1.587-5.946.003-6.556 5.338-11.891 11.893-11.891 3.181.001 6.167 1.24 8.413 3.488 2.245 2.248 3.481 5.236 3.48 8.414-.003 6.557-5.338 11.892-11.893 11.892-1.99-.001-3.951-.5-5.688-1.448l-6.305 1.654zm6.597-3.807c1.676.995 3.276 1.591 5.392 1.592 5.448 0 9.886-4.434 9.889-9.885.002-5.462-4.415-9.89-9.881-9.892-5.452 0-9.887 4.434-9.889 9.884-.001 2.225.651 3.891 1.746 5.634l-.999 3.648 3.742-.981zm11.387-5.464c-.074-.124-.272-.198-.57-.347-.297-.149-1.758-.868-2.031-.967-.272-.099-.47-.149-.669.149-.198.297-.768.967-.941 1.165-.173.198-.347.223-.644.074-.297-.149-1.255-.462-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.521.151-.172.2-.296.3-.495.099-.198.05-.372-.025-.521-.075-.148-.669-1.611-.916-2.206-.242-.579-.487-.501-.669-.51l-.57-.01c-.198 0-.52.074-.792.372s-1.04 1.016-1.04 2.479 1.065 2.876 1.213 3.074c.149.198 2.095 3.2 5.076 4.487.709.306 1.263.489 1.694.626.712.226 1.36.194 1.872.118.571-.085 1.758-.719 2.006-1.413.248-.695.248-1.29.173-1.414z'/%3E%3C/svg%3E") center no-repeat;
    background-size: 18px;
}
.whatsapp-float span, .whatsapp-float strong { display: block; line-height: 1.15; }
.whatsapp-float span { font-size: 12px; opacity: .82; }
.whatsapp-float strong { font-size: 15px; font-family: var(--font-display); }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── STAT GRID ──────────────────────────────────────────── */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.stat { padding: 20px 16px; background: var(--soft); border: 1px solid var(--line); border-radius: var(--r-lg); text-align: center; transition: box-shadow var(--dur-base); }
.stat:hover { box-shadow: var(--shadow-md); }
.stat strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 26px; font-weight: 900; line-height: 1.1; }
.stat span { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes floatA { from { transform: translate(-5px, 5px); } to { transform: translate(5px, -6px); } }
@keyframes floatB { from { transform: translate(5px, -4px); } to { transform: translate(-4px, 7px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* ─── TABLET ≤1060px ─────────────────────────────────────── */
@media (max-width: 1060px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-trust-panel { max-width: 500px; }
    .grid.cols-4, .grid.cols-5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .dense-form .form-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 18px; }
    .media-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .photo-gallery { column-count: 2; }
    .stats-bar-item strong { font-size: 19px; }
    .stats-bar-item span   { font-size: 11px; }

    .site-nav {
        position: fixed;
        inset: 70px 12px auto 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow-xl);
        border-radius: var(--r-xl);
        z-index: 99;
    }
    .site-nav.open { display: flex; animation: fadeUp var(--dur-base) var(--ease) both; }
    .site-nav a { padding: 12px 16px; font-size: 15px; }
    .nav-toggle { display: flex; }
    .header-cta { display: none; }
}

/* ─── MOBILE ≤768px ──────────────────────────────────────── */
@media (max-width: 768px) {
    :root { --section-x: 18px; --section-y: clamp(44px, 10vw, 64px); }

    h1 { font-size: clamp(30px, 8vw, 42px); }
    h2 { font-size: clamp(22px, 6vw, 30px); }

    .site-header { padding: 0 18px; height: 64px; }
    .brand-logo { width: 42px; height: 42px; }
    .brand strong { font-size: 13px; }
    .brand small  { font-size: 9px; }

    .hero { min-height: auto; padding: 44px 18px 52px; }
    .hero-inner { gap: 28px; }
    .hero-content > p { font-size: 15px; }
    .hero-trust-panel { max-width: 100%; }

    .grid.cols-2, .grid.cols-3, .grid.cols-4, .grid.cols-5 { grid-template-columns: 1fr; }
    .form-grid, .dense-form .form-grid, .contact-form .form-grid { grid-template-columns: 1fr 1fr; }
    .form-section .grid.cols-2 { grid-template-columns: 1fr; }
    .glass-card[style*="sticky"] { position: static !important; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stat-grid { grid-template-columns: 1fr; }
    .media-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .photo-gallery { column-count: 1; }

    .stats-bar-inner { flex-wrap: wrap; }
    .stats-bar-item  { flex: 1 1 calc(33% - 1px); min-width: 0; padding: 16px 8px; }
    .stats-bar-item strong { font-size: 16px; }
    .stats-bar-divider { display: none; }

    .candidate-slide { width: 200px; }
    .candidate-slide img { height: 248px; }
    .sticky-enquiry { display: none; }
    .whatsapp-float { right: 14px; bottom: 14px; min-width: 156px; }
    .form-panel { padding: 24px 20px; border-radius: var(--r-lg); }
    .map { height: 220px; }
    .page-hero h1 { font-size: clamp(22px, 6vw, 32px); }
    .field { min-width: 0; }
    .field label { white-space: normal; word-break: break-word; }
    input, select, textarea { width: 100%; min-width: 0; }
}

/* ─── SMALL MOBILE ≤420px ────────────────────────────────── */
@media (max-width: 420px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .trust-row { gap: 8px; }
    .trust-pill { font-size: 12px; padding: 7px 12px; }
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-navy    { color: var(--navy); }
.text-blue    { color: var(--blue); }
.text-muted   { color: var(--muted); }
.fw-700       { font-weight: 700; }
.fw-800       { font-weight: 800; }
.mt-auto      { margin-top: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
