/* ════════════════════════════════════════════════════════════════
   Main stylesheet — Trust & Authority dark theme.
   Deep navy base, cream accent reserved for CTAs/icons/highlights.
   Mobile-first; breakpoints 768 / 1024 / 1440.
   ════════════════════════════════════════════════════════════════ */
:root {
    --navy:           #050912;
    --surface:        #0D1626;
    --surface-raised: #16243C;
    --accent:         #EEDFB8;
    --accent-dark:    #D8C898;
    --accent-soft:    rgba(238, 223, 184, 0.10);

    --text:           #E6EAF0;
    --text-secondary: #C9D0DB;
    --text-muted:     #A8B0BE;
    --text-on-accent: #1A1F2E;
    --danger:         #FF6B6B;

    --border:        rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --shadow:    0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.35);

    --radius:    10px;
    --radius-lg: 14px;
    --radius-xl: 18px;

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    background-color: var(--navy);
    background-image: radial-gradient(1200px 600px at 70% -10%, #0c1a30 0%, var(--navy) 60%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
    text-decoration: none;
}
.btn--primary {
    background: var(--accent);
    color: var(--text-on-accent);
}
.btn--primary:hover {
    background: var(--accent-dark);
    color: var(--text-on-accent);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(238, 223, 184, 0.22);
}
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.btn--primary:disabled {
    background: var(--surface-raised);
    color: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn--lg {
    padding: 18px 40px;
    font-size: 18px;
}

/* ── TOPBAR ─────────────────────────────────────────────────── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 26, 46, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
}
.topbar__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}
.topbar__logo img { height: 36px; width: auto; }
.topbar__firm-name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 18px;
    color: var(--accent);
    letter-spacing: 0.3px;
}
.topbar__contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}
.topbar__phone {
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
}
.topbar__phone:hover { color: var(--accent); }
.topbar__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--navy);
    border-radius: 50%;
    transition: background-color .12s ease;
}
.topbar__wa:hover { background: var(--accent-dark); color: var(--navy); }
.topbar__cta { padding: 9px 18px; font-size: 14px; }
@media (max-width: 720px) { .topbar__cta { display: none; } }

@media (max-width: 600px) {
    .topbar__phone, .topbar__firm-name { display: none; }
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding: 72px 0 84px;
    background:
        linear-gradient(90deg, rgba(5,9,18,.90) 0%, rgba(5,9,18,.55) 50%, rgba(5,9,18,.20) 100%),
        linear-gradient(0deg, rgba(5,9,18,.80) 0%, rgba(5,9,18,0) 60%),
        url('/assets/images/hero-soldiers.jpg'),
        url('/assets/images/hero-soldiers-fallback.svg'),
        var(--navy);
    background-size: cover;
    background-position: center, center, right center, right center, center;
    background-repeat: no-repeat;
}
/* Mobile: shift the photo crop onto the saluting soldiers so all three
   stay framed instead of the far-right buildings. */
@media (max-width: 600px) {
    .hero {
        background-position: center, center, 72% center, 72% center, center;
    }
}
.hero__inner { max-width: 720px; }
.hero__kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
@media (min-width: 900px) { .hero { padding: 110px 0 120px; } }
.hero__h1 {
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.hero__sub {
    font-size: clamp(15px, 2vw, 19px);
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 560px;
}
.hero__cta { margin-bottom: 22px; }
.hero__quick-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    color: var(--text-muted);
    font-size: 15px;
}
.quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color .12s ease, color .12s ease;
}
.quick-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.quick-link--phone { color: var(--accent); border-color: var(--accent-soft); }

.hero__trust {
    margin-top: 22px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: .3px;
}

/* ── SECTION TITLES ─────────────────────────────────────────── */
.section-title {
    font-family: var(--font-sans);
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text);
    text-align: center;
    margin-bottom: 14px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 18px auto 0;
    border-radius: 3px;
}
.section-sub {
    text-align: center;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 16px;
}

section { padding: 70px 0; }
@media (min-width: 900px) {
    section { padding: 90px 0; }
}

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust { background: rgba(13, 22, 38, 0.55); padding: 50px 0; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.trust__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}
@media (min-width: 700px) {
    .trust__grid { grid-template-columns: repeat(3, 1fr); }
}
.trust__number {
    font-family: var(--font-sans);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 8px;
}
.trust__label { color: var(--text-muted); font-size: 15px; }

/* ── AUDIENCE ───────────────────────────────────────────────── */
.audience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
@media (min-width: 900px) {
    .audience__grid { grid-template-columns: repeat(4, 1fr); }
}
.audience__card {
    background: rgba(13, 22, 38, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    text-align: center;
    color: var(--text);
    transition: border-color .12s ease, transform .12s ease, background-color .12s ease;
    text-decoration: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.audience__card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.audience__icon { width: 40px; height: 40px; margin: 0 auto 14px; color: var(--accent); }
.audience__icon svg, .grounds__icon svg, .trust__icon svg { width: 100%; height: 100%; display: block; }
.trust__icon   { width: 28px; height: 28px; margin: 0 auto 10px; color: var(--accent); opacity: .9; }
.grounds__icon { width: 34px; height: 34px; margin-bottom: 14px; color: var(--accent); }
.audience__title { font-weight: 600; font-size: 16px; margin-bottom: 10px; line-height: 1.35; }
.audience__hint { color: var(--accent); font-size: 14px; }

/* ── GROUNDS ────────────────────────────────────────────────── */
.grounds__list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 800px) {
    .grounds__list { grid-template-columns: 1fr 1fr; }
}
.grounds__item {
    display: flex;
    flex-direction: column;
    background: rgba(13, 22, 38, 0.7);
    border-left: 4px solid var(--accent);
    padding: 28px 30px;
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.grounds__item h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 12px;
}
.grounds__item p { color: var(--text); margin-bottom: 10px; font-size: 15px; }
.grounds__cite {
    color: var(--text-muted);
    font-size: 13px;
    font-style: italic;
}

/* ── PROCESS ────────────────────────────────────────────────── */
.process { background: rgba(13, 22, 38, 0.55); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.process__steps {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    counter-reset: step;
}
@media (min-width: 900px) {
    .process__steps { grid-template-columns: repeat(4, 1fr); }
}
.process__steps li {
    background: rgba(5, 9, 18, 0.75);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.process__num {
    font-family: var(--font-sans);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 14px;
}
.process__step h3 { font-size: 17px; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.process__step p { color: var(--text-muted); font-size: 14px; }

/* ── REVIEWS (auto-scroll carousel) ─────────────────────────── */
.reviews__viewport {
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
            mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews__track {
    display: flex;
    width: max-content;
    animation: reviews-scroll 50s linear infinite;
}
/* Pause when the visitor hovers, so they can read a card. */
.reviews__viewport:hover .reviews__track { animation-play-state: paused; }
@keyframes reviews-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.review {
    flex: 0 0 auto;
    width: 320px;
    margin-right: 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
}
.review__stars { color: var(--accent); display: flex; gap: 2px; margin-bottom: 14px; }
.review__text { color: var(--text-secondary); font-size: 15px; line-height: 1.65; margin-bottom: 16px; }
.review__author { color: var(--accent); font-weight: 600; font-size: 14px; }
/* Reduced motion: no scroll — show the unique reviews as a static centered grid. */
@media (prefers-reduced-motion: reduce) {
    .reviews__viewport { -webkit-mask: none; mask: none; }
    .reviews__track { flex-wrap: wrap; justify-content: center; width: auto; gap: 20px; }
    .review { margin-right: 0; }
    .review[aria-hidden="true"] { display: none; }
}

/* ── QUIZ ───────────────────────────────────────────────────── */
.quiz { background: transparent; }
.quiz__box {
    background: rgba(8, 14, 26, 0.78);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
@media (min-width: 700px) {
    .quiz__box { padding: 44px 50px; }
}
.quiz__progress {
    height: 4px;
    background: var(--surface-raised);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}
.quiz__progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width .3s ease;
}
.quiz__step-counter {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 28px;
}
.quiz__step { animation: fadeIn .25s ease; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.quiz__q {
    font-family: var(--font-sans);
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.3;
}
.quiz__options {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}
.quiz__opt {
    background: rgba(20, 30, 48, 0.65);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 16px 22px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: border-color .12s ease, background-color .12s ease, transform .08s ease;
}
.quiz__opt:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.quiz__opt:active { transform: scale(0.99); }
.quiz__opt[data-selected="true"] {
    border-color: var(--accent);
    background: var(--accent-soft);
}
.quiz__opt:focus-visible,
.quiz__input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.quiz__input-wrap { margin-bottom: 18px; }
.quiz__input {
    width: 100%;
    padding: 16px 18px;
    background: rgba(20, 30, 48, 0.65);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 16px;
    border-radius: var(--radius);
    font-family: var(--font-sans);
}
.quiz__input:focus {
    outline: none;
    border-color: var(--accent);
}
.quiz__error {
    color: #FF6B6B;
    font-size: 13px;
    margin-top: 8px;
}

.quiz__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 20px;
    cursor: pointer;
    line-height: 1.5;
}
.quiz__consent input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.quiz__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.quiz__back {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 8px 4px;
    font-family: var(--font-sans);
}
.quiz__back:hover { color: var(--accent); }

.quiz__step--done, .quiz__step--error {
    text-align: center;
    padding: 20px 10px;
}
.quiz__step--done h3, .quiz__step--error h3 {
    font-family: var(--font-sans);
    font-size: 22px;
    color: var(--text);
    margin-bottom: 16px;
}
.quiz__step--done p, .quiz__step--error p {
    color: var(--text-muted);
    margin-bottom: 18px;
}
.quiz__spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--surface-raised);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 24px;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item {
    background: rgba(13, 22, 38, 0.7);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.faq__item summary {
    padding: 20px 24px;
    cursor: pointer;
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    list-style: none;
    position: relative;
    padding-right: 50px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 24px;
    font-weight: 300;
    transition: transform .15s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
    padding: 0 24px 22px;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ── STICKY MOBILE CTA ──────────────────────────────────────── */
.mobile-cta { display: none; }
@media (max-width: 767px) {
    .mobile-cta {
        display: flex;
        gap: 10px;
        align-items: center;
        position: fixed;
        left: 0; right: 0; bottom: 0;
        z-index: 200;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(5, 9, 18, 0.96);
        border-top: 1px solid var(--border-strong);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .mobile-cta__quiz { flex: 1; padding: 14px; }
    body { padding-bottom: 76px; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: rgba(3, 7, 14, 0.85);
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}
@media (min-width: 700px) {
    .footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__col { color: var(--text-muted); font-size: 14px; }
.footer__firm-name {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
    font-weight: 700;
}
.footer__line { margin-bottom: 6px; line-height: 1.5; }
.footer__contact {
    display: block;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 14px;
}
.footer__contact:hover { color: var(--accent); }
.footer__col--legal-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 14px;
}
.footer__col--legal-links a:hover { color: var(--accent); }
.footer__copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}
.footer__disclaimer {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── ADMIN STYLES (used by /admin/ pages) ──────────────────── */
.admin-body {
    background: #F5F6FA;
    color: #1A1F2E;
    font-family: var(--font-sans);
    min-height: 100vh;
}
.admin-shell { max-width: 1200px; margin: 0 auto; padding: 30px 20px; }
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 24px;
}
.admin-header h1 {
    font-family: var(--font-sans);
    font-size: 26px;
    color: var(--navy);
}
.admin-header a, .admin-header button {
    color: var(--navy);
    background: none;
    border: 1px solid #D1D5DB;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-family: var(--font-sans);
    cursor: pointer;
    margin-left: 8px;
}
.admin-header a:hover, .admin-header button:hover { background: #fff; }

.admin-login-card {
    max-width: 380px;
    margin: 100px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.admin-login-card h1 {
    font-family: var(--font-sans);
    color: var(--navy);
    margin-bottom: 24px;
    text-align: center;
}
.admin-login-card input[type="password"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 16px;
    font-family: var(--font-sans);
}
.admin-login-card button {
    width: 100%;
    padding: 12px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-family: var(--font-sans);
}
.admin-login-card button:hover { background: var(--surface); }
.admin-login-error {
    color: #DC2626;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.admin-table {
    width: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    padding: 14px 16px;
    background: #F9FAFB;
    color: #6B7280;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-bottom: 1px solid #E5E7EB;
}
.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
    color: #1F2937;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: #F9FAFB; }
.admin-table .lead-status {
    padding: 6px 10px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
    font-family: var(--font-sans);
}
.admin-table a.lead-open {
    color: var(--navy);
    font-weight: 500;
    text-decoration: none;
    padding: 6px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 5px;
    background: #fff;
    font-size: 13px;
    transition: background-color .12s ease;
}
.admin-table a.lead-open:hover { background: #F3F4F6; }

.admin-lead-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.admin-lead-card h2 {
    font-family: var(--font-sans);
    color: var(--navy);
    margin-bottom: 20px;
}
.admin-lead-meta { color: #6B7280; font-size: 14px; margin-bottom: 24px; }
.admin-lead-qa { margin-top: 24px; }
.admin-lead-qa-item {
    padding: 14px 0;
    border-bottom: 1px solid #F3F4F6;
}
.admin-lead-qa-item:last-child { border-bottom: none; }
.admin-lead-qa-q { font-weight: 600; color: #6B7280; font-size: 13px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.3px; }
.admin-lead-qa-a { color: #1F2937; font-size: 16px; }

.admin-copy-btn {
    background: var(--accent);
    color: var(--navy);
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background-color .12s ease;
}
.admin-copy-btn:hover { background: var(--accent-dark); }
.admin-copy-btn--copied { background: #10B981; color: #fff; }

.admin-empty {
    background: #fff;
    padding: 60px 30px;
    text-align: center;
    color: #6B7280;
    border-radius: 8px;
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
    /* keep the submit spinner — it's loading feedback, not decoration */
    .quiz__spinner { animation: spin 0.9s linear infinite !important; }
}
