/* ============================================================
   M&M Consulting — loyalty-landing.css  (v3 — refined)
   Energy Club · Landing Page
   ============================================================
   RULES:
   · Every color value uses an existing :root token from style.css
   · No hardcoded hex/rgba unless absolutely no token exists
     (in which case a comment justifies the exception)
   · Dark mode: zero new selectors — all surface vars already
     reassign in style.css @media (prefers-color-scheme: dark)
   · Navigation: reuses .site-header / .nav / .nav-link / .nav-burger
     / .mobile-menu / .mobile-link exactly as defined in style.css
   · Reveal animation: reuses .reveal / .visible / .reveal-delay-*
     exactly as defined in style.css
   · Footer: reuses .site-footer / .footer-* exactly from style.css
   · This file is additive only — no global selector overrides

   Sections:
   1.  Page shell
   2.  Hero (loyalty variant)
   3.  Stats strip
   4.  Section scaffold helpers
   5.  How it works
   6.  Benefits grid
   7.  Categories (dark section)
   8.  Social proof / reviews
   9.  Partner split + form
   10. FAQ accordion
   11. Final CTA band
   12. Keyframes
   13. Responsive
============================================================ */


/* ============================================================
   1. PAGE SHELL
============================================================ */

/* Loyalty page reuses body defaults from style.css.
   We only need the padding-top adjustment so content
   clears the fixed .site-header. */
.loyalty-page-body {
    padding-top: var(--nav-h);
}

/* Light section — matches .bg-soft from the main site */
.lc-section {
    padding: clamp(72px, 9vw, 110px) 0;
}

.lc-section--soft {
    background: var(--bg-soft);
}

/* Deep navy section — --navy is the darkest token in the system */
.lc-section--deep {
    background: var(--navy);
}

/* Mid navy — used for partner form section */
.lc-section--mid {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}


/* ============================================================
   2. HERO (loyalty variant)
   Mirrors .hero from style.css but the right panel
   holds the card visual instead of a photo.
============================================================ */
.lc-hero-section {
    background: var(--navy);
}
.lc-hero {
    display: grid;
    grid-template-columns: 55% 45%;

    min-height: 100vh;

    max-width: 1440px;
    margin-inline: auto;

    overflow: hidden;
    position: relative;
}

/* ── Left dark panel (mirrors .hero-panel--dark) ── */
.lc-hero-panel {
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: var(--sp-20) var(--sp-16) var(--sp-20) var(--sp-20);
    position: relative;
    justify-content: center;
}

/* Dot-grid texture (same as homepage hero) */
.lc-hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 160, 23, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Gold radial ambient */
.lc-hero-panel::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 160, 23, 0.05) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.lc-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

/* Heading — same scale as .hero-heading */
.lc-hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-5);
}

/* Reuse .hero-highlight from style.css for the <mark> */

/* Subtitle */
.lc-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: var(--sp-8);
    max-width: 580px;
}

/* Action row */
.lc-hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    align-items: center;
}

.lc-hero-btn-arrow {
    transition: transform var(--dur-fast) var(--ease);
}

.lc-hero-actions .btn:hover .lc-hero-btn-arrow {
    transform: translateX(4px);
}

/* ── Right card panel ── */
.lc-hero-visual {
    position: relative;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Diagonal clip — identical to .hero-panel--image::before */
.lc-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--navy);
    clip-path: polygon(0 0, 14% 0, 0 100%);
    z-index: 2;
}

/* Ambient glow behind card */
.lc-hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 65% 65% at 60% 50%,
        rgba(212, 160, 23, 0.09) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 1;
}

.lc-hero-visual-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--sp-10) var(--sp-8) var(--sp-20) var(--sp-6);
}

/* Scroll hint — same pattern as .hero-scroll-hint in style.css */
.lc-scroll-hint {
    position: absolute;
    bottom: var(--sp-8);
    left: 27.5%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.28);
    font-size: 18px;
    animation: bounce 2.4s ease-in-out infinite;
    cursor: pointer;
    z-index: 5;
    transition: opacity var(--dur-med);
}

.lc-scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}


/* ============================================================
   3. STATS STRIP
============================================================ */

.lc-stats-strip {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--sp-10) 0;
}

.lc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.lc-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--sp-4) var(--sp-6);
    border-right: 1px solid var(--border);
}

.lc-stat-item:last-child {
    border-right: none;
}

.lc-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    /* navy reassigns in dark mode automatically */
    letter-spacing: -0.025em;
    line-height: 1;
    margin-bottom: var(--sp-2);
}

/* Dark mode: navy token re-assigns to #0E1E3A — text needs to be light */
@media (prefers-color-scheme: dark) {
    .lc-stat-value {
        color: var(--text-primary);
    }
}

.lc-stat-value em {
    font-style: normal;
    color: var(--gold);
}

.lc-stat-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
}


/* ============================================================
   4. SECTION SCAFFOLD HELPERS
   Mirrors the naming from style.css (.section-title, etc.)
   but scoped to loyalty page to avoid any collision.
============================================================ */

.lc-section-header {
    text-align: center;
    margin-bottom: var(--sp-16);
}

.lc-section-header--left {
    text-align: left;
}

/* Eyebrow — same as .hero-eyebrow pattern */
.lc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--sp-4);
}

/* Reuse .eyebrow-line from style.css for the decorative dash */

/* Decorative underline beneath title */
/* Reuse .section-title-line from style.css */

/* Sub-text */
/* Reuse .section-sub and .section-sub--light from style.css */


/* ============================================================
   5. HOW IT WORKS
   Mirrors .how-steps from style.css numerically.
============================================================ */

.lc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
    position: relative;
}

/* Dashed connector line */
.lc-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--gold) 0px,
        var(--gold) 6px,
        transparent 6px,
        transparent 16px
    );
    opacity: 0.30;
    pointer-events: none;
    z-index: 0;
}

.lc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.lc-step-num {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--gold-border);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    box-shadow: 0 0 0 6px var(--gold-glow), var(--shadow-sm);
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.lc-step:hover .lc-step-num {
    border-color: var(--gold);
    box-shadow: 0 0 0 8px var(--gold-glow), var(--shadow-md);
}

.lc-step-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
}

.lc-step-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}


/* ============================================================
   6. BENEFITS GRID
============================================================ */

.lc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

/* Reuses .service-card visual style from style.css */
.lc-benefit-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-8) var(--sp-6);
    transition:
        transform    var(--dur-med) var(--ease),
        box-shadow   var(--dur-med) var(--ease),
        border-color var(--dur-med);
}

.lc-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-border);
}

.lc-benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: var(--sp-5);
    transition: background var(--dur-med), border-color var(--dur-med);
}

.lc-benefit-card:hover .lc-benefit-icon {
    background: rgba(212, 160, 23, 0.20);
    /* Justified: stronger gold glow on hover, beyond --gold-glow token */
    border-color: rgba(212, 160, 23, 0.40);
    /* Justified: same reason */
}

.lc-benefit-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
}

.lc-benefit-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================================
   7. CATEGORIES (dark section)
============================================================ */

.lc-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.lc-cat-card {
    background: rgba(255, 255, 255, 0.04);
    /* Justified: dark glass surface — no token for this transparency level */
    border: 1px solid rgba(255, 255, 255, 0.07);
    /* Justified: same */
    border-radius: var(--r-xl);
    padding: var(--sp-8) var(--sp-5);
    text-align: center;
    transition:
        background     var(--dur-med),
        border-color   var(--dur-med),
        transform      var(--dur-med) var(--ease);
}

.lc-cat-card:hover {
    background: var(--gold-glow);
    border-color: var(--gold-border);
    transform: translateY(-4px);
}

.lc-cat-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: var(--sp-4);
    line-height: 1;
}

.lc-cat-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--sp-1);
    letter-spacing: -0.01em;
}

.lc-cat-count {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
}

.lc-categories-cta {
    text-align: center;
    margin-top: var(--sp-12);
}


/* ============================================================
   8. SOCIAL PROOF / REVIEWS (dark section)
============================================================ */

.lc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.lc-review-card {
    background: rgba(255, 255, 255, 0.04);
    /* Justified: dark glass surface */
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r-xl);
    padding: var(--sp-8) var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.lc-review-stars {
    display: flex;
    gap: 3px;
    color: var(--gold);
    font-size: 0.8rem;
}

.lc-review-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.68);
    /* Justified: no token for this level of white transparency */
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

.lc-review-footer {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.lc-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy-light);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    flex-shrink: 0;
}

.lc-review-name {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.lc-review-verified {
    font-size: 0.70rem;
    color: var(--green);
    font-family: var(--font-display);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 1px;
}


/* ============================================================
   9. PARTNER SPLIT LAYOUT + FORM
============================================================ */

.lc-partner-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: start;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

/* Copy side */
.lc-partner-headline {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: var(--sp-4);
}

.lc-partner-sub {
    font-size: 0.975rem;
    color: rgba(255, 255, 255, 0.58);
    /* Justified: same as .section-sub--light in style.css is 0.60 */
    line-height: 1.75;
    margin-bottom: var(--sp-8);
    max-width: 440px;
}

.lc-partner-perks {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.lc-perk {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
}

.lc-perk-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-glow);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
    transition: background var(--dur-med);
}

.lc-perk:hover .lc-perk-icon {
    background: rgba(212, 160, 23, 0.20);
    /* Justified: stronger hover state beyond --gold-glow */
}

.lc-perk-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.lc-perk-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    /* Same as .section-sub--light approximation */
    line-height: 1.65;
}

/* Form card — glass surface on dark bg */
.lc-form-card {
    background: rgba(255, 255, 255, 0.03);
    /* Justified: dark glass layer — no token at this opacity */
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--r-2xl);
    padding: var(--sp-10) var(--sp-8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lc-form-heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: var(--sp-2);
}

.lc-form-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.55;
    margin-bottom: var(--sp-6);
}

/* Two-column grid within form */
.lc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
}

.lc-form-field {
    margin-bottom: var(--sp-3);
}

.lc-form-field--full {
    grid-column: 1 / -1;
}

.lc-form-field label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: var(--sp-1);
}

.lc-form-field input,
.lc-form-field select,
.lc-form-field textarea {
    width: 100%;
    padding: 11px 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--r-md);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition:
        border-color var(--dur-fast),
        background   var(--dur-fast),
        box-shadow   var(--dur-fast);
    min-height: 44px;
    -webkit-appearance: none;
}

.lc-form-field input::placeholder,
.lc-form-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.lc-form-field select option {
    background: var(--navy-mid);
    color: #fff;
}

.lc-form-field input:focus,
.lc-form-field select:focus,
.lc-form-field textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.lc-form-field textarea {
    resize: vertical;
    min-height: 84px;
    line-height: 1.6;
}

/* Feedback banners — match site-wide error token pattern */
.lc-form-error {
    display: none;
    align-items: flex-start;
    gap: var(--sp-2);
    padding: 10px 14px;
    background: var(--err-bg);
    border: 1px solid var(--err-border);
    border-radius: var(--r-md);
    font-size: 0.85rem;
    color: var(--err);
    margin-bottom: var(--sp-4);
    line-height: 1.45;
}

.lc-form-error.visible  { display: flex; }

.lc-form-success {
    display: none;
    align-items: flex-start;
    gap: var(--sp-2);
    padding: 10px 14px;
    background: rgba(15, 122, 60, 0.08);
    /* Justified: --green is a single hex, no bg token for green tints */
    border: 1px solid rgba(15, 122, 60, 0.25);
    border-radius: var(--r-md);
    font-size: 0.85rem;
    color: var(--green);
    margin-bottom: var(--sp-4);
    line-height: 1.45;
}

.lc-form-success.visible { display: flex; }

/* Submit button — full width, uses .btn .btn-gold from style.css */
.lc-form-submit {
    width: 100%;
    margin-top: var(--sp-2);
    padding: 14px;
    font-size: 0.9rem;
    position: relative;
    min-height: 50px;
}

/* Loading spinner — matches style.css .btn .btn-dots approach */
.lc-form-submit .lc-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(10, 22, 40, 0.25);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: lc-spin 0.7s linear infinite;
    position: absolute;
}

.lc-form-submit.loading .lc-btn-label { opacity: 0; }
.lc-form-submit.loading .lc-spinner   { display: block; }

.lc-form-submit:disabled {
    opacity: 0.60;
    cursor: not-allowed;
}


/* ============================================================
   10. FAQ ACCORDION
   Mirrors .faq-item / .faq-question pattern from style.css.
============================================================ */

.lc-faq-list {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.lc-faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    background: var(--bg-surface);
    overflow: hidden;
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}

.lc-faq-item:hover {
    border-color: var(--gold-border);
}

.lc-faq-item.open {
    border-color: var(--gold-border);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

/* Matches .faq-question from style.css */
.lc-faq-q {
    width: 100%;
    background: var(--bg-surface);
    border: none;
    padding: var(--sp-5) var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
    transition: background var(--dur-fast);
    letter-spacing: -0.01em;
}

.lc-faq-q:hover {
    background: var(--bg-soft);
}

.lc-faq-chevron {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--text-secondary);
    transition:
        transform     var(--dur-med) var(--ease),
        background    var(--dur-fast),
        border-color  var(--dur-fast);
}

.lc-faq-item.open .lc-faq-chevron {
    transform: rotate(180deg);
    background: var(--gold-glow);
    border-color: var(--gold-border);
    color: var(--gold-dark);
}

/* Matches .faq-answer from style.css */
.lc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s var(--ease);
    background: var(--bg-surface);
}

.lc-faq-item.open .lc-faq-answer {
    max-height: 320px;
}

.lc-faq-answer-inner {
    padding: 0 var(--sp-6) var(--sp-5);
    border-top: 1px solid var(--border);
    padding-top: var(--sp-4);
}

.lc-faq-answer-inner p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

.lc-faq-answer-inner a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.lc-faq-answer-inner a:hover {
    text-decoration: underline;
}


/* ============================================================
   11. FINAL CTA BAND
============================================================ */
#loyalty-contact {
   position: relative;
}

#loyalty-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--r-full);
}
.lc-cta-band {
    background: var(--navy);
    padding: clamp(80px, 10vw, 120px) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Reuse dot-grid texture pattern */
.lc-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(212, 160, 23, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* Gold radial ambient */
.lc-cta-band::after {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 160, 23, 0.09) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.lc-cta-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--sp-6);
}

.lc-cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: var(--sp-4);
}

.lc-cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    max-width: 500px;
    margin: 0 auto var(--sp-10);
    line-height: 1.75;
}

.lc-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.lc-cta-note {
    margin-top: var(--sp-6);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.30);
    font-family: var(--font-display);
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
}

.lc-cta-note i {
    font-size: 0.70rem;
}


/* ============================================================
   12. KEYFRAMES
   New: lc-spin (for form submit spinner).
   All others (bounce, float, pulse) already in style.css.
============================================================ */

@keyframes lc-spin {
    to { transform: rotate(360deg); }
}


/* ============================================================
   13. RESPONSIVE
   Matches breakpoints from style.css (1200, 1024, 900, 768, 480).
============================================================ */

/* ── 1200px ── */
@media (max-width: 1200px) {
    .lc-hero-panel {
        padding: var(--sp-16) var(--sp-12) var(--sp-16) var(--sp-16);
    }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
    .lc-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .lc-hero-panel {
        padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-10) var(--sp-16);
        min-height: 65vh;
        justify-content: center;
    }

    .lc-hero-inner {
        text-align: center;
        max-width: 640px;
    }

    .lc-hero-sub {
        max-width: 100%;
    }

    .lc-hero-actions {
        justify-content: center;
    }

    /* Reuse .hero-trust responsive handling (it already flex-wraps) */

    /* .lc-hero-visual {
        height: 420px;
        order: -1;
    } */

    .lc-hero-visual::before {
        clip-path: polygon(0 0, 100% 0, 100% 14%, 0 0);
    }

    .lc-scroll-hint {
        display: none;
    }

    .lc-partner-split {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }

    .lc-partner-sub {
        max-width: 100%;
    }
}

/* ── 900px ── */
@media (max-width: 900px) {
    .lc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Divider adjustments for 2-col stats */
    .lc-stat-item:nth-child(2) { border-right: none; }
    .lc-stat-item:nth-child(3) {
        border-right: 1px solid var(--border);
        border-top: 1px solid var(--border);
    }
    .lc-stat-item:nth-child(4) {
        border-right: none;
        border-top: 1px solid var(--border);
    }
}

/* ── 768px ── */
@media (max-width: 768px) {
    .lc-hero-panel {
        padding: calc(var(--nav-h) + var(--sp-8)) var(--sp-6) var(--sp-12);
        min-height: auto;
    }

    .lc-hero-heading {
        font-size: clamp(1.8rem, 5vw, 2.6rem);
    }

    .lc-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .lc-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* .lc-hero-visual {
        height: 340px;
    } */

    .lc-steps {
        grid-template-columns: 1fr;
        max-width: 380px;
        gap: var(--sp-10);
    }

    .lc-steps::before { display: none; }

    .lc-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: var(--sp-5);
    }

    .lc-step-num {
        flex-shrink: 0;
        width: 52px;
        height: 52px;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .lc-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .lc-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lc-reviews-grid {
        grid-template-columns: 1fr;
    }

    .lc-form-row {
        grid-template-columns: 1fr;
    }
}

/* ── 480px ── */
@media (max-width: 480px) {
    .lc-cta-actions {
        flex-direction: column;
    }

    .lc-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /*.lc-hero-visual {
        display: none;
         On very small screens the card visual adds no value
           and hurts layout — matches the pattern of .hero-panel--image
           on mobile in style.css 
    }*/
}
