/* ============================================================================
   landing.css — shared design system for the public marketing site
   (Index / Contact / Privacy). Standalone pages link this single file.
   Do NOT confuse with site.css, which styles the admin dashboard.

   Visual direction: clean, minimal, professional. Deep navy + teal primary,
   one calm blue accent, neutral greys, near-white surfaces. Inter typeface.
   ========================================================================== */

/* ── Design tokens ──────────────────────────────────────────────────────── */
:root {
    /* neutrals / text */
    --ink:          #2a2c46;   /* headings (deep indigo-slate) */
    --body:         #565b78;   /* body text */
    --muted:        #888da8;   /* secondary text */

    /* primary — set PER CLIENT from config (BrandColorPrimary) on each page.
       Everything below is derived from it, so one override re-themes the site.
       These two values are fallbacks only. */
    --primary:      #5d5fc4;
    --brand-light:  #9b9ef0;   /* BrandColorLight — decorative gradient stop */

    --primary-600:  color-mix(in srgb, var(--primary) 85%, #000);
    --primary-700:  color-mix(in srgb, var(--primary) 70%, #000);
    --primary-050:  color-mix(in srgb, var(--primary)  8%, #fff);
    --primary-100:  color-mix(in srgb, var(--primary) 16%, #fff);

    /* accent tracks the brand colour (kept on-brand + readable) */
    --accent:       var(--primary);
    --accent-050:   color-mix(in srgb, var(--primary) 10%, #fff);

    /* surfaces / lines */
    --line:         #e7e8f3;
    --surface:      #ffffff;
    --surface-2:    #f7f8fd;   /* near-white section bg */
    --dark:         #232544;   /* footer / dark section (soft indigo-navy) */
    --dark-2:       #2d3056;

    /* shape / rhythm */
    --card-radius:  16px;
    --section-gap:  100px;

    /* type */
    --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--body);
    background: var(--surface);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Accessible focus states (WCAG) */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible,
.btn-nav-cta:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible,
.btn-white:focus-visible,
.btn-white-outline:focus-visible,
.btn-submit:focus-visible,
.store-badge:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ── Reveal-on-scroll (progressive enhancement; visible without JS) ──────── */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(35,37,68,0.07); }
.navbar-brand .brand-text { font-weight: 700; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.01em; }
.app-logo { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 3px 8px color-mix(in srgb, var(--primary) 22%, transparent); }
.nav-link { color: var(--body) !important; font-weight: 500; font-size: 0.9rem; padding: 6px 14px !important; border-radius: 8px; transition: background 0.2s, color 0.2s; }
.nav-link:hover { background: var(--primary-050); color: var(--primary) !important; }
.btn-nav-cta { background: var(--primary); color: #fff !important; font-weight: 600; font-size: 0.875rem; padding: 8px 22px !important; border-radius: 50px; border: none; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-nav-cta:hover { background: var(--primary-600); transform: translateY(-1px); }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn-cta-primary { background: var(--primary); color: #fff; font-weight: 600; padding: 13px 30px; border-radius: 50px; border: none; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 28%, transparent); }
.btn-cta-primary:hover { background: var(--primary-600); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 34%, transparent); }
.btn-cta-secondary { background: transparent; color: var(--body); font-weight: 600; padding: 13px 26px; border-radius: 50px; border: 1.5px solid #cdd4df; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s, transform 0.15s; }
.btn-cta-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(160deg, var(--primary-050) 0%, #fff 55%);
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px; border-radius: 50%;
    background: color-mix(in srgb, var(--primary) 6%, transparent); pointer-events: none;
}
.hero::after {
    content: ""; position: absolute;
    bottom: -80px; left: -60px;
    width: 320px; height: 320px; border-radius: 50%;
    background: color-mix(in srgb, var(--brand-light) 12%, transparent); pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary-050); color: var(--primary-700);
    font-size: 0.8rem; font-weight: 600;
    padding: 5px 14px; border-radius: 50px;
    border: 1px solid var(--primary-100);
    margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.18; color: var(--ink); letter-spacing: -0.025em; }
.hero h1 .highlight { color: var(--primary); }
.hero .lead { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 520px; }

/* store badges */
.store-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--dark); color: #fff; padding: 10px 20px; border-radius: 12px; text-decoration: none; transition: background 0.2s, transform 0.15s; border: 1px solid #2a3a57; }
.store-badge:hover { background: var(--dark-2); color: #fff; transform: translateY(-2px); }
.store-badge .store-label { line-height: 1.2; }
.store-badge .store-sub { font-size: 0.6rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.04em; }
.store-badge .store-name { font-size: 0.88rem; font-weight: 700; }

/* trust pills */
.trust-pills { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 28px; }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.trust-pill i { color: var(--primary); }

/* ── Hero / dashboard mockups (built in HTML/CSS) ───────────────────────── */
.hero-visual { position: relative; }
.device-card { background: #fff; border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(35,37,68,0.1); padding: 20px; }
.device-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.device-dot { width: 10px; height: 10px; border-radius: 50%; }
.floating-pill {
    position: absolute; background: #fff;
    border: 1px solid var(--line); border-radius: 50px;
    padding: 8px 16px; font-size: 0.78rem; font-weight: 600;
    display: flex; align-items: center; gap: 6px;
    box-shadow: 0 4px 16px rgba(35,37,68,0.1);
}
.floating-pill.top-right { top: -18px; right: 10px; }
.floating-pill.bottom-left { bottom: -18px; left: 10px; }

/* ── Section headers ────────────────────────────────────────────────────── */
.section-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 8px; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--ink); line-height: 1.25; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; margin: 12px auto 0; }

/* ── Feature cards (uniform iconography — single accent) ────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--card-radius); padding: 28px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(35,37,68,0.08); border-color: var(--primary-100); }
.feat-card .feat-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--primary-050); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.feat-card h5 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feat-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Quiz mode cards ────────────────────────────────────────────────────── */
.mode-card { background: #fff; border: 1px solid var(--line); border-radius: var(--card-radius); padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start; transition: transform 0.2s, box-shadow 0.2s; }
.mode-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(35,37,68,0.07); }
.mode-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.mode-card h6 { font-weight: 700; font-size: 0.95rem; margin-bottom: 4px; color: var(--ink); }
.mode-card p { font-size: 0.83rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* ── Admin section ──────────────────────────────────────────────────────── */
.section-tint { background: var(--surface-2); }
.admin-section { background: linear-gradient(180deg, var(--surface-2) 0%, #fff 100%); }
.admin-list { list-style: none; padding: 0; margin: 0; }
.admin-list li { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.admin-list li:last-child { border-bottom: none; }
.admin-list .al-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: var(--primary-050); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.admin-list h6 { font-size: 0.9rem; font-weight: 700; margin: 0 0 2px; color: var(--ink); }
.admin-list p { font-size: 0.82rem; color: var(--muted); margin: 0; line-height: 1.55; }

.panel-preview { background: #fff; border-radius: 20px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(35,37,68,0.08); overflow: hidden; }
.panel-header { background: var(--surface-2); border-bottom: 1px solid var(--line); padding: 14px 20px; display: flex; align-items: center; gap: 10px; }
.panel-header .ph-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-nav { display: flex; gap: 4px; margin-left: 16px; flex-wrap: wrap; }
.panel-nav span { font-size: 0.7rem; padding: 3px 10px; border-radius: 6px; color: var(--muted); font-weight: 500; cursor: default; }
.panel-nav span.active { background: var(--primary-050); color: var(--primary); font-weight: 600; }
.panel-body { padding: 20px; }
.metric-row { display: flex; gap: 12px; margin-bottom: 16px; }
.metric-box { flex: 1; background: var(--surface-2); border-radius: 12px; padding: 14px; border: 1px solid var(--line); }
.metric-box .m-val { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.metric-box .m-val.accent { color: var(--accent); }
.metric-box .m-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.data-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.data-row:last-child { border-bottom: none; }
.data-row .dr-name { color: var(--body); font-weight: 500; }
.data-row .dr-score { font-weight: 700; color: var(--ink); }
.progress-thin { height: 5px; border-radius: 3px; background: var(--line); overflow: hidden; margin-top: 4px; }
.progress-fill { height: 100%; border-radius: 3px; background: linear-gradient(135deg, var(--primary) 0%, var(--brand-light) 100%); }
.mini-card { flex: 1; background: var(--surface-2); border-radius: 12px; padding: 14px; border: 1px solid var(--line); }
.mini-card-head { font-size: 0.75rem; font-weight: 600; color: var(--body); margin-bottom: 10px; display: flex; justify-content: space-between; }
.dropzone { border: 2px dashed #c5cedb; border-radius: 10px; padding: 20px; text-align: center; color: var(--muted); }
.dropzone i { font-size: 1.5rem; display: block; margin-bottom: 6px; }
.btn-mini { background: var(--primary); color: #fff; border: none; border-radius: 8px; font-size: 0.78rem; padding: 6px; width: 100%; margin-top: 8px; }

/* ── Security section ───────────────────────────────────────────────────── */
.security-section { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); color: #fff; position: relative; overflow: hidden; }
.security-section::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, color-mix(in srgb, var(--primary) 25%, transparent) 0%, transparent 60%);
    pointer-events: none;
}
.security-section .section-label { color: color-mix(in srgb, var(--primary) 45%, #fff); }
.security-section .section-title { color: #fff; }
.security-section .section-sub { color: #aab6cc; }
.sec-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--card-radius); padding: 24px; transition: background 0.2s, border-color 0.2s; height: 100%; }
.sec-card:hover { background: rgba(255,255,255,0.09); border-color: color-mix(in srgb, var(--primary) 45%, transparent); }
.sec-card .sec-icon { width: 48px; height: 48px; border-radius: 14px; background: color-mix(in srgb, var(--primary) 30%, transparent); color: color-mix(in srgb, var(--primary) 55%, #fff); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.sec-card h6 { font-size: 0.95rem; font-weight: 700; color: #f1f5fb; margin-bottom: 6px; }
.sec-card p { font-size: 0.82rem; color: #aab6cc; margin: 0; line-height: 1.65; }

/* ── CTA / contact banner ───────────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%); border-radius: 24px; padding: 60px 40px; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: -60px; right: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,0.09); pointer-events: none; }
.cta-banner::after { content: ""; position: absolute; bottom: -40px; left: -40px; width: 160px; height: 160px; border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none; }
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; line-height: 1.25; letter-spacing: -0.01em; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1rem; }
.btn-white { background: #fff; color: var(--primary-700); font-weight: 700; padding: 13px 30px; border-radius: 50px; border: none; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(35,37,68,0.18); }
.btn-white:hover { color: var(--primary-700); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(35,37,68,0.25); }
.btn-white-outline { background: transparent; color: #fff; font-weight: 600; padding: 13px 26px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.6); font-size: 0.95rem; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s, transform 0.15s; }
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,0.12); color: #fff; transform: translateY(-2px); }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer { background: var(--dark); color: #aab6cc; padding: 60px 0 30px; }
footer .footer-brand { font-weight: 700; font-size: 1.05rem; color: #f1f5fb; }
footer p.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-top: 10px; max-width: 280px; color: #8b98b3; }
footer .footer-heading { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #d6deeb; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a { color: #8b98b3; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
footer ul li a:hover { color: color-mix(in srgb, var(--primary) 55%, #fff); }
footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px; padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.8rem; }
footer .footer-logo { width: 30px; height: 30px; border-radius: 8px; }
/* low-profile development team credit */
.dev-credit { font-size: 0.78rem; color: #7c89a4; }
.dev-credit a { color: #8b98b3; text-decoration: none; border-bottom: 1px dotted #475571; transition: color 0.2s; }
.dev-credit a:hover { color: color-mix(in srgb, var(--primary) 55%, #fff); }

/* ── Page header strip (Contact / Privacy) ──────────────────────────────── */
.page-header {
    background: linear-gradient(160deg, var(--primary-050) 0%, #fff 60%);
    padding: 56px 0 40px;
    border-bottom: 1px solid var(--line);
}
.page-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.page-header p { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 560px; }
.page-header .header-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--primary-100); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 16px;
}

/* ── Contact form ───────────────────────────────────────────────────────── */
.form-section { padding: 56px 0 80px; }
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--card-radius);
    box-shadow: 0 4px 24px rgba(35,37,68,0.05);
    padding: 40px;
}
.form-label { font-weight: 600; font-size: 0.875rem; color: var(--ink); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--ink);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
    outline: none;
}
.form-control::placeholder { color: var(--muted); }
.form-hint { font-size: 0.78rem; color: var(--muted); }
.optional-badge {
    font-size: 0.72rem; font-weight: 500;
    color: var(--muted); margin-left: 6px;
    background: var(--surface-2); padding: 2px 8px; border-radius: 20px;
}
.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    color: #fff; border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 0.95rem; font-weight: 600;
    width: 100%;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--primary) 28%, transparent);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--primary) 36%, transparent); }

.captcha-box {
    background: var(--surface-2);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.captcha-question {
    font-size: 1.05rem; font-weight: 700; color: var(--ink);
    background: #fff; border: 1.5px solid var(--line);
    border-radius: 10px; padding: 10px 20px;
    white-space: nowrap; letter-spacing: 0.04em;
}
.captcha-equals { font-size: 1.2rem; color: var(--muted); font-weight: 700; }
.captcha-input { width: 90px; }

.info-card {
    background: var(--primary-050);
    border: 1px solid var(--primary-100);
    border-radius: var(--card-radius);
    padding: 28px;
}
.info-card h5 { font-weight: 800; color: var(--ink); margin-bottom: 4px; }
.info-card .info-lead { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid color-mix(in srgb, var(--primary) 12%, transparent); }
.info-item:last-child { border-bottom: none; padding-bottom: 0; }
.info-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--primary-100); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.info-item h6 { font-size: 0.85rem; font-weight: 700; color: var(--ink); margin: 0 0 2px; }
.info-item p { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.55; }
.info-item p a { color: var(--primary-700); font-weight: 600; text-decoration: none; }
.info-item p a:hover { text-decoration: underline; }

/* subtle development team note */
.dev-note { margin-top: 20px; font-size: 0.78rem; color: var(--muted); line-height: 1.55; text-align: center; }
.dev-note a { color: var(--body); text-decoration: none; border-bottom: 1px dotted #aab3c4; }
.dev-note a:hover { color: var(--primary); }

/* alerts */
.alert-success-custom {
    background: #e4f4ef; color: #1d6b4e;
    border: 1px solid #bce4d4;
    border-radius: 12px; padding: 16px 20px;
    display: flex; align-items: flex-start; gap: 12px;
}
.alert-danger-custom {
    background: #fdecec; color: #a23636;
    border: 1px solid #f5c6c6;
    border-radius: 12px; padding: 16px 20px;
}

/* honeypot — visually hidden, not display:none (some bots check) */
.hp-field { opacity: 0; position: absolute; top: 0; left: 0; height: 0; width: 0; z-index: -1; }

/* ── Privacy (long-form legal) ──────────────────────────────────────────── */
.policy-container {
    max-width: 820px;
    margin: -30px auto 0;
    background: #fff;
    padding: 44px;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(35,37,68,0.05);
    line-height: 1.75;
}
.policy-container h2 { color: var(--ink); font-weight: 700; font-size: 1.35rem; margin-top: 2rem; margin-bottom: 0.85rem; }
.policy-container h3 { color: var(--primary-700); font-weight: 700; font-size: 1.08rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.policy-container p, .policy-container li { color: var(--body); }
.policy-container ul { margin-bottom: 1rem; }
.policy-container li { margin-bottom: 0.5rem; }
.policy-container strong { color: var(--ink); }
.last-updated {
    display: inline-block;
    font-size: 0.82rem;
    color: var(--primary-700);
    background: var(--primary-050);
    border: 1px solid var(--primary-100);
    padding: 5px 14px; border-radius: 50px;
    margin-bottom: 1.75rem;
}
.contact-box {
    background: var(--primary-050);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 2.25rem;
}
.contact-box h3 { margin-top: 0; color: var(--primary-700); }
.contact-box a { color: var(--primary-700); font-weight: 700; text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

/* ── Spacing helpers ────────────────────────────────────────────────────── */
.section-pad { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    :root { --section-gap: 72px; }
}
@media (max-width: 576px) {
    .contact-card { padding: 28px 20px; }
    .policy-container { padding: 28px 20px; }
    .hero { padding: 64px 0 50px; }
}
