:root {
    --bg: #f7f9fc;
    --surface: #ffffff;
    --surface-soft: #f3f6fb;
    --text: #111827;
    --muted: #5b6472;
    --line: #dbe6f5;
    --blue: #1d4ed8;
    --blue-2: #2563eb;
    --blue-3: #0f3fb7;
    --gold: #f4c95d;
    --dark: #0b1220;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.06);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.45;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* TOP */
.topbar {
    background: #0d1320;
    color: #f8fbff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
}

.alert-strip {
    background: #f6efdc;
    border-bottom: 1px solid #eadfbd;
}

.alert-strip-inner {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
}

.alert-strip-inner span {
    font-size: 15px;
    color: #5b4a1b;
}

.alert-strip-inner a {
    font-weight: 800;
    color: #5a4311;
    white-space: nowrap;
}

/* HEADER */
.site-header {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e7eef8;
    position: sticky;
    top: 0;
    z-index: 30;
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
}

/* HERO */
.hero {
    padding: 42px 0 20px;
}

.hero-v9 {
    padding-top: 38px;
    padding-bottom: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 42px;
    align-items: center;
}

.hero-copy {
    padding: 4px 0;
}

.eyebrow,
.section-kicker,
.mini-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eef3fb;
    color: #334155;
    border: 1px solid #dbe6f5;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-copy h1 {
    margin: 18px 0 18px;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 0.95;
    letter-spacing: -2.2px;
    font-weight: 900;
    max-width: 760px;
}

.subheadline {
    margin: 0;
    font-size: 22px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 760px;
}

.hero-actions,
.final-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn,
.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 18px;
    letter-spacing: -0.2px;
    border: 1px solid transparent;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover,
.btn-large:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.btn-primary {
    background: linear-gradient(180deg, var(--blue-2) 0%, var(--blue) 100%);
    color: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #111827;
    border-color: #dbe6f5;
    box-shadow: none;
}

.btn-large {
    min-height: 68px;
    padding: 0 32px;
    font-size: 19px;
}

.hero-tags,
.offer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero-tags span,
.offer-tags span {
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 700;
    color: #374151;
}

.social-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.proof-pill,
.proof-box {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid #dbe6f5;
    border-radius: 18px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
}

.proof-pill strong,
.proof-box strong {
    display: block;
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 8px;
}

.proof-pill span,
.proof-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-visual-v9 {
    align-items: flex-start;
    padding-top: 6px;
}

.hero-image-card,
.hero-image-card-v9 {
    width: 100%;
    max-width: 660px;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid #dbe6f5;
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.10), 0 8px 18px rgba(15, 23, 42, 0.05);
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* GENERAL SECTIONS */
.section {
    padding: 26px 0;
}

.section-head {
    margin-bottom: 24px;
}

.section-head.center {
    text-align: center;
}

.section-head h2,
.offer-main h2,
.final-cta-box h2,
.mid-cta-box h2 {
    margin: 14px 0 0;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -1.5px;
}

/* COMPARISON / BENEFITS / REVIEWS CARDS */
.benefits-grid,
.reviews-grid,
.objection-grid,
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.benefit-card,
.review-card,
.objection-card,
.comparison-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.card h3,
.benefit-card h3,
.review-card h3,
.objection-card h3,
.comparison-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.25;
}

.card p,
.benefit-card p,
.review-card p,
.objection-card p,
.comparison-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

/* OFFER SECTION */
.offer-section {
    padding: 34px 0 30px;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    align-items: start;
}

.offer-main,
.offer-card,
.offer-card-dark {
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.offer-main h2 {
    margin-top: 14px;
}

.offer-main p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.price-row {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 8px;
}

.old-price {
    font-size: 32px;
    font-weight: 900;
    color: #1f2937;
    text-decoration: line-through;
    opacity: 0.85;
}

.new-price {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.95;
}

.save-tag {
    display: inline-flex;
    align-items: center;
    background: #f6e3a8;
    color: #5b4311;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 900;
    margin-top: 10px;
}

.offer-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.offer-note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.offer-side {
    display: grid;
    gap: 18px;
}

.offer-card h3,
.offer-card-dark h3 {
    margin: 0 0 16px;
    font-size: 20px;
}

.offer-card ul,
.offer-card-dark ul {
    margin: 0;
    padding-left: 20px;
}

.offer-card li,
.offer-card-dark li {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.55;
    color: #1f2937;
}

.offer-card-dark {
    background: linear-gradient(180deg, #07101e 0%, #0b1425 100%);
    border-color: rgba(96, 165, 250, 0.16);
    color: #e8f0fb;
}

.offer-card-dark h3 {
    color: #ffffff;
}

.offer-card-dark ul,
.offer-card-dark li {
    color: #d5e1f2;
}

/* FAQ */
.faq-section {
    padding: 32px 0 36px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #dbe6f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    border: 0;
    background: #ffffff;
    text-align: left;
    padding: 20px 22px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    color: #111827;
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 16px;
}

/* FOOTER */
.site-footer {
    background: #0c1320;
    color: #d7dfeb;
    margin-top: 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 34px 0;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 12px;
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    line-height: 1.7;
    color: #cbd5e1;
}

/* STICKY CTA */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 14px;
    padding: 0 14px;
    z-index: 40;
}

.sticky-cta-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
    background: linear-gradient(180deg, #050b16 0%, #0a1220 100%);
    border: 1px solid rgba(96, 165, 250, 0.16);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
    border-radius: 24px;
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
}

.sticky-copy strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

.sticky-copy span {
    display: block;
    color: #c4d1e5;
    font-size: 15px;
    line-height: 1.45;
}

/* UTIL */
.hidden {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .hero-grid,
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .hero-image-card,
    .hero-image-card-v9 {
        max-width: 760px;
    }
}

@media (max-width: 1080px) {
    .social-proof-strip,
    .benefits-grid,
    .reviews-grid,
    .objection-grid,
    .comparison-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        min-height: auto;
        padding: 16px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        gap: 14px 18px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 10vw, 64px);
        line-height: 0.98;
    }

    .subheadline {
        font-size: 19px;
    }

    .new-price {
        font-size: 56px;
    }

    .sticky-cta-inner {
        align-items: stretch;
        flex-direction: column;
        text-align: center;
    }

    .sticky-copy {
        text-align: center;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--max), calc(100% - 24px));
    }

    .hero {
        padding-top: 22px;
    }

    .hero-image-card,
    .hero-image-card-v9 {
        max-width: 100%;
        padding: 12px;
        border-radius: 22px;
    }

    .hero-copy h1 {
        margin-top: 16px;
        font-size: clamp(36px, 11vw, 54px);
        letter-spacing: -1.4px;
    }

    .subheadline {
        font-size: 18px;
    }

    .btn,
    .btn-large {
        width: 100%;
    }

    .hero-actions,
    .final-actions,
    .offer-actions {
        flex-direction: column;
    }

    .alert-strip-inner {
        min-height: auto;
        padding: 12px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .price-row {
        align-items: flex-start;
    }

    .old-price {
        font-size: 28px;
    }

    .new-price {
        font-size: 52px;
    }

    .section-head h2,
    .offer-main h2,
    .final-cta-box h2,
    .mid-cta-box h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .sticky-cta {
        bottom: 10px;
        padding: 0 10px;
    }

    .sticky-cta-inner {
        border-radius: 20px;
    }
}