/* ==========================================================================
   Sentinel Compliance Group — Design System
   Modern corporate healthcare / compliance styling
   ========================================================================== */

:root {
    /* Brand palette */
    --navy:        #1E3A5F;
    --deep-blue:   #0F2742;
    --slate:       #334155;
    --slate-600:   #475569;
    --slate-400:   #94A3B8;
    --light-gray:  #F8FAFC;
    --gray-100:    #F1F5F9;
    --gray-200:    #E2E8F0;
    --gray-300:    #CBD5E1;
    --gold:        #C9A227;
    --gold-soft:   #F4ECCF;
    --green:       #2F6F4E;
    --green-soft:  #E3F0E8;
    --white:       #FFFFFF;
    --ink:         #0B1B2B;

    --danger:      #B42318;

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* Layout */
    --container: 1180px;
    --radius:    14px;
    --radius-sm: 10px;
    --radius-lg: 22px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 39, 66, .06), 0 1px 3px rgba(15, 39, 66, .08);
    --shadow:    0 4px 12px rgba(15, 39, 66, .08), 0 2px 4px rgba(15, 39, 66, .04);
    --shadow-md: 0 12px 28px rgba(15, 39, 66, .12);
    --shadow-lg: 0 24px 50px rgba(15, 39, 66, .16);

    --transition: .2s ease;
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--slate);
    background: var(--white);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

h1, h2, h3, h4 {
    color: var(--deep-blue);
    line-height: 1.2;
    margin: 0 0 .5em;
    font-weight: 700;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--navy); color: #fff; padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ------------------------------------------------------------- Layout util */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.section-tight { padding: 64px 0; }
.bg-light { background: var(--light-gray); }
.bg-navy  { background: var(--deep-blue); color: #cfe0f0; }
.bg-gray  { background: var(--gray-100); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { color: var(--slate-600); font-size: 1.075rem; margin-bottom: 0; }

.eyebrow {
    display: inline-block;
    font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 14px;
}
.bg-navy .eyebrow { color: var(--gold); }
.bg-navy h2 { color: #fff; }

.lead { font-size: 1.2rem; color: var(--slate-600); }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* -------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: inherit; font-weight: 600; font-size: 1rem; line-height: 1;
    padding: 15px 26px; border-radius: var(--radius-sm); border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); text-align: center;
    white-space: nowrap;
}
.btn-sm { padding: 11px 18px; font-size: .9rem; }
.btn-lg { padding: 18px 34px; font-size: 1.075rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--deep-blue); border-color: var(--deep-blue); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); }
.btn-gold:hover { background: #b8941f; border-color: #b8941f; color: var(--deep-blue); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--gray-100); }

.btn-ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff; border-color: #fff; }

.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------------------------------------------------------- Topbar */
.topbar { background: var(--deep-blue); color: #b9cbe0; font-size: .85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar-contact { display: flex; gap: 22px; }
.topbar-link { color: #cfe0f0; }
.topbar-link:hover { color: #fff; }
.topbar-meta { color: #8fa9c4; }

/* --------------------------------------------------------------- Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--deep-blue); }
.brand:hover { color: var(--deep-blue); }
.brand-mark { display: inline-flex; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.18rem; letter-spacing: -.02em; color: var(--deep-blue); }
.brand-sub { font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--slate-400); }

.primary-nav { display: flex; align-items: center; gap: 28px; }
.primary-nav ul { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.primary-nav ul a {
    display: inline-block; padding: 8px 12px; font-weight: 500; font-size: .96rem;
    color: var(--slate); border-radius: 8px; position: relative;
}
.primary-nav ul a:hover { color: var(--navy); background: var(--gray-100); }
.primary-nav ul a.active { color: var(--navy); font-weight: 600; }
.primary-nav ul a.active::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 0; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.nav-cta { display: flex; gap: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------- Hero */
.hero {
    position: relative; overflow: hidden;
    background-color: var(--deep-blue);
    background-image:
        linear-gradient(106deg, rgba(11,27,43,.96) 0%, rgba(15,39,66,.90) 42%, rgba(30,58,95,.66) 72%, rgba(30,58,95,.40) 100%),
        var(--hero-img, none);
    background-size: cover; background-position: center right;
    color: #dce8f5; padding: 104px 0 112px;
}
.hero-fallback {
    /* used when no photo is supplied */
    background-image:
        radial-gradient(1100px 540px at 78% -10%, rgba(201,162,39,.18), transparent 60%),
        linear-gradient(160deg, var(--deep-blue) 0%, var(--navy) 55%, #234a76 100%);
}
.hero::after {
    content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(900px 480px at 70% 0%, #000, transparent 75%);
            mask-image: radial-gradient(900px 480px at 70% 0%, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
    color: #e7f0fa; padding: 7px 14px; border-radius: 999px; font-size: .82rem; font-weight: 600;
    margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.2rem; color: #c4d6ea; max-width: 560px; margin-bottom: 30px; }
.hero .btn-group { margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: .9rem; color: #aec6e0; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .check { color: var(--gold); font-weight: 700; }

/* Hero side card */
.hero-card {
    background: rgba(255,255,255,.97); color: var(--slate);
    border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.5);
}
.hero-card h3 { color: var(--deep-blue); font-size: 1.15rem; margin-bottom: 6px; }
.hero-card .muted { color: var(--slate-400); font-size: .9rem; margin-bottom: 18px; }
.hero-card ul { list-style: none; padding: 0; margin: 0 0 22px; }
.hero-card li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--gray-200); font-size: .96rem; }
.hero-card li:last-child { border-bottom: 0; }
.hero-card .ic {
    flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    background: var(--green-soft); color: var(--green); font-weight: 700;
}

/* --------------------------------------------------------- Logos / strip */
.logo-strip { padding: 30px 0; border-bottom: 1px solid var(--gray-200); }
.logo-strip .container { display: flex; align-items: center; justify-content: center; gap: 14px 44px; flex-wrap: wrap; }
.logo-strip .label { font-size: .82rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
.logo-strip .lab { font-weight: 700; color: var(--slate-600); font-size: 1.05rem; letter-spacing: .02em; opacity: .85; }

/* ----------------------------------------------------------------- Cards */
.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); }

.card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
    padding: 28px; transition: all var(--transition); height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-300); }
.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { color: var(--slate-600); margin-bottom: 0; font-size: .98rem; }

.card-icon {
    width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
    margin-bottom: 18px; background: var(--navy); color: #fff;
}
.card-icon.gold { background: var(--gold-soft); color: #8a6d12; }
.card-icon.green { background: var(--green-soft); color: var(--green); }
.card-icon svg { width: 26px; height: 26px; }

/* Feature list cards (icon + text inline) */
.feature {
    display: flex; gap: 16px; padding: 22px; background: #fff;
    border: 1px solid var(--gray-200); border-radius: var(--radius); height: 100%;
    transition: all var(--transition);
}
.feature:hover { box-shadow: var(--shadow); border-color: var(--gray-300); }
.feature .feature-ic {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
    background: var(--gray-100); color: var(--navy);
}
.feature .feature-ic svg { width: 24px; height: 24px; }
.feature h3 { font-size: 1.06rem; margin-bottom: 4px; }
.feature p { font-size: .94rem; color: var(--slate-600); margin: 0; }

/* ----------------------------------------------------------- Split blocks */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
    background: var(--navy);
}
.split h2 { margin-bottom: 16px; }

/* Stat panel (used as media) */
.stat-panel {
    background: linear-gradient(160deg, var(--navy), var(--deep-blue));
    color: #fff; padding: 40px; border-radius: var(--radius-lg);
}
.stat-panel .stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.stat-panel .num { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-panel .num .unit { color: var(--gold); }
.stat-panel .lbl { font-size: .92rem; color: #bcd0e6; }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { display: flex; gap: 12px; padding: 9px 0; align-items: flex-start; color: var(--slate); }
.checklist li::before {
    content: ""; flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
    background: var(--green-soft) 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='%232F6F4E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checklist.gold li::before {
    background: var(--gold-soft) 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='%238a6d12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------------------------------------------------------- How it works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); }
.step-num {
    width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff;
    display: grid; place-items: center; font-weight: 800; font-size: 1.15rem; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .92rem; color: var(--slate-600); margin: 0; }
.steps.on-navy .step { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); }
.steps.on-navy .step h3 { color: #fff; }
.steps.on-navy .step p { color: #bcd0e6; }

/* --------------------------------------------------------------- Pills */
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
    display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px;
    background: #fff; border: 1px solid var(--gray-200); border-radius: 999px;
    font-weight: 500; font-size: .96rem; color: var(--slate); box-shadow: var(--shadow-sm);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pill.green .dot { background: var(--green); }

/* ----------------------------------------------------------------- CTA */
.cta {
    position: relative; overflow: hidden; text-align: center;
    background: linear-gradient(160deg, var(--navy), var(--deep-blue));
    color: #d6e4f3; border-radius: var(--radius-lg); padding: 64px 40px;
}
.cta::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(700px 320px at 50% -20%, rgba(201,162,39,.22), transparent 65%);
}
.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { max-width: 620px; margin: 0 auto 28px; color: #c4d6ea; font-size: 1.1rem; }
.cta .btn-group { justify-content: center; }

/* Full-bleed CTA section */
.cta-band { background: linear-gradient(160deg, var(--navy), var(--deep-blue)); color: #d6e4f3; }
.cta-band h2 { color: #fff; }

/* --------------------------------------------------------------- Notice */
.notice {
    display: flex; gap: 16px; padding: 22px 24px; border-radius: var(--radius);
    background: var(--gold-soft); border: 1px solid #ecdca6; color: #6b540f;
}
.notice .notice-ic { flex-shrink: 0; font-size: 1.3rem; line-height: 1.2; }
.notice strong { color: #5a4609; }
.notice p { margin: 0; font-size: .96rem; }
.notice.blue { background: #eaf1f9; border-color: #cdddf0; color: var(--slate-600); }
.notice.blue strong { color: var(--navy); }

/* --------------------------------------------------------------- Tables */
.info-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); }
.info-table th, .info-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--gray-200); font-size: .96rem; }
.info-table th { background: var(--light-gray); color: var(--deep-blue); font-weight: 700; }
.info-table tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------- Page header */
.page-hero {
    position: relative; overflow: hidden;
    background-color: var(--deep-blue);
    background-image:
        linear-gradient(104deg, rgba(11,27,43,.95) 0%, rgba(15,39,66,.88) 50%, rgba(30,58,95,.62) 100%),
        var(--hero-img, none),
        radial-gradient(800px 380px at 85% -30%, rgba(201,162,39,.16), transparent 60%),
        linear-gradient(160deg, var(--deep-blue), var(--navy));
    background-size: cover; background-position: center;
    color: #dce8f5; padding: 84px 0 76px;
}
.page-hero::after {
    content: ""; position: absolute; inset: 0; opacity: .4; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(700px 360px at 80% 0%, #000, transparent 75%);
            mask-image: radial-gradient(700px 360px at 80% 0%, #000, transparent 75%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: .85rem; color: #9fb8d4; margin-bottom: 14px; }
.page-hero .breadcrumb a { color: #cfe0f0; }
.page-hero h1 { color: #fff; margin-bottom: 14px; max-width: 760px; }
.page-hero p { color: #c4d6ea; font-size: 1.15rem; max-width: 680px; margin: 0; }

/* TOC / anchor offset */
:target { scroll-margin-top: 100px; }

/* ----------------------------------------------------------------- Forms */
.form-wrap { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow); }
.form-section { margin-bottom: 34px; }
.form-section:last-of-type { margin-bottom: 0; }
.form-section-title {
    font-size: 1.05rem; color: var(--deep-blue); font-weight: 700; margin: 0 0 4px;
    padding-bottom: 12px; border-bottom: 2px solid var(--gray-100);
    display: flex; align-items: center; gap: 10px;
}
.form-section-title .step-dot {
    width: 26px; height: 26px; border-radius: 8px; background: var(--navy); color: #fff;
    display: grid; place-items: center; font-size: .82rem; font-weight: 700;
}
.form-section-note { font-size: .9rem; color: var(--slate-400); margin: 8px 0 20px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 22px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 4px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: .9rem; color: var(--deep-blue); }
.field .req { color: var(--danger); }
.field .hint { font-size: .82rem; color: var(--slate-400); font-weight: 400; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
    font-family: inherit; font-size: 1rem; color: var(--slate);
    padding: 13px 14px; border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm);
    background: #fff; transition: border-color var(--transition), box-shadow var(--transition); width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,95,.12);
}
.field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}

/* Radio / checkbox groups */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.choice {
    display: flex; align-items: center; gap: 11px; padding: 13px 16px;
    border: 1.5px solid var(--gray-300); border-radius: var(--radius-sm); cursor: pointer;
    transition: all var(--transition); font-size: .95rem; background: #fff;
}
.choice:hover { border-color: var(--navy); background: var(--light-gray); }
.choice input { width: 18px; height: 18px; accent-color: var(--navy); cursor: pointer; flex-shrink: 0; }
.choice:has(input:checked) { border-color: var(--navy); background: #eef3f9; }

.radio-inline { display: flex; flex-wrap: wrap; gap: 12px; }
.radio-inline .choice { flex: 1; min-width: 140px; }

/* Agreement box */
.agreement {
    display: flex; gap: 14px; padding: 20px; background: var(--light-gray);
    border: 1.5px solid var(--gray-200); border-radius: var(--radius); align-items: flex-start;
}
.agreement input { width: 20px; height: 20px; accent-color: var(--navy); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.agreement label { font-size: .94rem; color: var(--slate-600); }

.form-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.form-required-note { font-size: .85rem; color: var(--slate-400); }

.field-error { border-color: var(--danger) !important; }
.error-text { color: var(--danger); font-size: .82rem; margin-top: -2px; }

/* Form alerts */
.alert { padding: 18px 22px; border-radius: var(--radius); margin-bottom: 26px; font-size: .96rem; }
.alert-success { background: var(--green-soft); border: 1px solid #b9d8c6; color: #1f5236; }
.alert-error   { background: #fdecea; border: 1px solid #f5c4be; color: #8a261c; }

/* Success panel */
.success-panel {
    text-align: center; background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg); padding: 56px 40px; box-shadow: var(--shadow);
}
.success-panel .success-ic {
    width: 76px; height: 76px; border-radius: 50%; background: var(--green-soft); color: var(--green);
    display: grid; place-items: center; margin: 0 auto 22px;
}
.success-panel .success-ic svg { width: 40px; height: 40px; }
.success-panel h2 { margin-bottom: 12px; }
.success-panel p { color: var(--slate-600); max-width: 520px; margin: 0 auto 10px; }

/* ----------------------------------------------------------- Contact info */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-info-card { display: flex; gap: 16px; padding: 22px; background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); }
.contact-info-card .ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 11px; background: var(--navy); color: #fff; display: grid; place-items: center; }
.contact-info-card .ic svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 3px; }
.contact-info-card p, .contact-info-card a { margin: 0; font-size: .95rem; color: var(--slate-600); }
.contact-info-card a:hover { color: var(--gold); }

/* --------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 14px; background: #fff; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 20px 24px; font-family: inherit;
    font-size: 1.05rem; font-weight: 600; color: var(--deep-blue); cursor: pointer; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q .chev { transition: transform var(--transition); color: var(--gold); flex-shrink: 0; font-size: 1.3rem; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a p { color: var(--slate-600); margin: 0 0 18px; }
.faq-item.open .faq-a { padding-top: 2px; }

/* --------------------------------------------------------------- Legal */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-size: 1.35rem; margin-top: 38px; }
.legal h3 { font-size: 1.1rem; margin-top: 24px; }
.legal p, .legal li { color: var(--slate-600); }
.legal .updated { color: var(--slate-400); font-size: .9rem; margin-bottom: 30px; }

/* TOC sidebar */
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-toc { position: sticky; top: 100px; }
.legal-toc h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); margin-bottom: 12px; }
.legal-toc ul { list-style: none; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { display: block; padding: 6px 12px; font-size: .9rem; color: var(--slate-600); border-left: 2px solid var(--gray-200); }
.legal-toc a:hover { color: var(--navy); border-color: var(--gold); background: var(--light-gray); }

/* --------------------------------------------------------------- Misc */
.divider { height: 1px; background: var(--gray-200); border: 0; margin: 0; }
.muted { color: var(--slate-400); }
.small { font-size: .88rem; }
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-item h3 { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; }
.value-item .v-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex-shrink: 0; }

/* ============================================================== FOOTER */
.site-footer { background: var(--deep-blue); color: #a9c1da; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: 64px 24px 48px; }
.brand-footer .brand-name { color: #fff; }
.footer-desc { font-size: .92rem; color: #93acc8; margin: 16px 0 18px; max-width: 360px; }
.footer-contact { list-style: none; padding: 0; margin: 0; font-size: .92rem; }
.footer-contact li { margin-bottom: 6px; }
.footer-contact a { color: #c2d5ea; }
.footer-contact a:hover { color: var(--gold); }
.footer-col h3 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #a9c1da; font-size: .93rem; }
.footer-col a:hover { color: var(--gold); }

.footer-disclaimer { background: #0a1f37; border-top: 1px solid rgba(255,255,255,.06); }
.footer-disclaimer p { font-size: .82rem; color: #7e98b6; margin: 0; padding: 24px 0; line-height: 1.7; }

.footer-bottom { background: #081a2f; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 24px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; font-size: .85rem; color: #7e98b6; }
.footer-legal { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.footer-legal a { color: #97afca; font-size: .85rem; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================== RESPONSIVE */
@media (max-width: 1000px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card { max-width: 520px; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md);
        padding: 12px 24px 24px; transform: translateY(-130%); transition: transform .28s ease;
        max-height: calc(100vh - 76px); overflow-y: auto; z-index: 99;
    }
    .primary-nav.open { transform: translateY(0); }
    .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
    .primary-nav ul a { padding: 13px 8px; border-radius: 0; border-bottom: 1px solid var(--gray-100); }
    .primary-nav ul a.active::after { display: none; }
    .nav-cta { flex-direction: column; margin-top: 16px; }
    .nav-cta .btn { width: 100%; }
    .topbar-email { display: none; }
    .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
    .split.reverse .split-media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 680px) {
    body { font-size: 16px; }
    .section { padding: 60px 0; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .form-grid, .choice-grid, .choice-grid.cols-3, .stat-panel .stat-grid, .value-row { grid-template-columns: 1fr; }
    .form-wrap { padding: 24px; }
    .topbar-meta { display: none; }
    .topbar-inner { justify-content: center; }
    .cta { padding: 48px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .btn-group .btn { width: 100%; }
    .hero { padding: 64px 0 72px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ==========================================================================
   PREMIUM COMMERCIAL ENHANCEMENTS
   ========================================================================== */

/* --- Refined hero side card (glassy, elevated) --- */
.hero-card {
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(255,255,255,.6);
    box-shadow: 0 30px 60px rgba(5,16,30,.45);
}
.hero-card .ic {
    background: linear-gradient(160deg, #eef4fb, #e2ecf7);
    color: var(--navy); border: 1px solid #dbe7f4;
}
.hero-card .ic svg { width: 18px; height: 18px; }

/* Hero trust badges row upgrade */
.hero-trust span { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
    padding: 7px 13px; border-radius: 999px; }

/* --- Photo media blocks for split sections --- */
.media {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; background: var(--navy);
}
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.media:hover img { transform: scale(1.04); }
.media::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(11,27,43,.55) 100%);
}
.media .media-tag {
    position: absolute; left: 22px; bottom: 22px; z-index: 2; color: #fff;
    display: flex; align-items: center; gap: 12px;
}
.media .media-tag .badge {
    width: 50px; height: 50px; border-radius: 13px; flex-shrink: 0;
    background: rgba(255,255,255,.16); backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center;
}
.media .media-tag .badge svg { width: 24px; height: 24px; }
.media .media-tag b { display: block; font-size: 1.02rem; }
.media .media-tag span { font-size: .85rem; color: #cdddf0; }

/* Floating stat chip over a photo */
.media .stat-chip {
    position: absolute; right: 18px; top: 18px; z-index: 2;
    background: rgba(255,255,255,.96); border-radius: 14px; padding: 14px 18px;
    box-shadow: var(--shadow-md); text-align: center; min-width: 104px;
}
.media .stat-chip .n { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.media .stat-chip .n .u { color: var(--gold); }
.media .stat-chip small { color: var(--slate-600); font-size: .76rem; font-weight: 600; }

/* --- Refined cards: top accent bar on hover --- */
.card { position: relative; overflow: hidden; }
.card::before {
    content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
    background: linear-gradient(90deg, var(--gold), var(--navy)); transform: scaleX(0);
    transform-origin: left; transition: transform .35s ease;
}
.card:hover::before { transform: scaleX(1); }
.card-icon { box-shadow: 0 8px 18px rgba(30,58,95,.18); }
.card-icon.gold { box-shadow: 0 8px 18px rgba(201,162,39,.22); }
.card-icon.green { box-shadow: 0 8px 18px rgba(47,111,78,.18); }

/* Feature icon polish */
.feature .feature-ic {
    background: linear-gradient(160deg, #eef4fb, #e3edf7);
    border: 1px solid #dde9f5; color: var(--navy);
}

/* --- Trust / logo strip upgrade --- */
.logo-strip { padding: 26px 0; background: #fff; }
.logo-strip .container { gap: 12px 36px; }
.logo-strip .label { position: relative; padding-right: 30px; }
.logo-strip .label::after {
    content: ""; position: absolute; right: 0; top: 50%; height: 22px; width: 1px;
    background: var(--gray-300); transform: translateY(-50%);
}
.logo-strip .lab {
    display: inline-flex; align-items: center; gap: 9px; color: var(--deep-blue);
    font-weight: 700; opacity: 1; font-size: 1.06rem;
}
.logo-strip .lab::before {
    content: ""; width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
    background: var(--gold-soft) 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='%238a6d12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 3v4M15 3v4M9 7h6l1 4a4 4 0 0 1-8 0z'/%3E%3Cpath d='M12 11v7a2 2 0 0 1-2 2H7'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* --- Stats band (photo background) --- */
.stats-band {
    position: relative; overflow: hidden; color: #fff; padding: 72px 0;
    background-color: var(--deep-blue);
    background-image: linear-gradient(120deg, rgba(11,27,43,.93), rgba(15,39,66,.86)), var(--band-img, none);
    background-size: cover; background-position: center;
}
.stats-band .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .s-num { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stats-band .s-num .u { color: var(--gold); }
.stats-band .s-lbl { color: #b9cee5; font-size: .95rem; margin-top: 8px; }
.stats-band .s-item { position: relative; }
.stats-band .s-item:not(:last-child)::after {
    content: ""; position: absolute; right: -15px; top: 14%; height: 72%; width: 1px; background: rgba(255,255,255,.14);
}

/* --- Section eyebrow with rule --- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }
.section-head .eyebrow { justify-content: center; }
.section-head.left .eyebrow, .split .eyebrow { justify-content: flex-start; }

/* --- Buttons: subtle sheen --- */
.btn-gold { box-shadow: 0 10px 24px rgba(201,162,39,.30); }
.btn-primary { box-shadow: 0 10px 24px rgba(15,39,66,.22); }

/* --- Quote / testimonial style note --- */
.quote {
    background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--gold);
    border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow);
}
.quote p { font-size: 1.15rem; color: var(--slate); font-style: italic; margin-bottom: 14px; }
.quote .by { font-weight: 700; color: var(--deep-blue); font-style: normal; font-size: .95rem; }

/* --- About intro image collage --- */
.media-tall { aspect-ratio: 3 / 4; }

@media (max-width: 1000px) {
    .stats-band .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
    .stats-band .s-item:nth-child(2)::after { display: none; }
}
@media (max-width: 680px) {
    .stats-band .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-band .s-item::after { display: none !important; }
    .media { aspect-ratio: 16 / 10; }
}
