/* ============================================================
   CSS Reset & Custom Properties
   ============================================================ */
:root {
    --primary: #2ecc71;
    --primary-dark: #27ae60;
    --primary-glow: rgba(46, 204, 113, 0.35);
    --danger: #ef4444;
    --danger-dark: #dc2626;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --text: #1e293b;
    --text-muted: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.13);
    --shadow-xl: 0 25px 60px rgba(0, 0, 0, 0.18);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
    --container: 1160px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--primary);
}

.text-red {
    color: var(--danger);
}

.text-muted {
    color: var(--text-muted);
}

.font-bold {
    font-weight: 700;
}

.section-padding {
    padding: 5rem 0;
}

.bg-dark {
    background-color: var(--dark);
}

.text-white {
    color: #fff;
}

.mt-2 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.75rem;
}

.mb-4 {
    margin-bottom: 1.25rem;
}

.mb-8 {
    margin-bottom: 2.25rem;
}

.mb-12 {
    margin-bottom: 3.5rem;
}

.strike {
    text-decoration: line-through;
}

.strike-red {
    text-decoration: line-through;
    color: var(--danger);
}

.text-green {
    color: var(--primary);
    font-weight: 700;
}

.text-xl {
    font-size: 1.1rem;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   Section Labels & Titles
   ============================================================ */
.section-label {
    display: inline-block;
    background: #ecfdf5;
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 1rem;
}

.underline {
    text-decoration: underline wavy var(--primary);
    text-underline-offset: 4px;
}

.underline-wave {
    position: relative;
    display: inline-block;
}

.underline-wave::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn:hover {
    background: linear-gradient(135deg, #27ae60, #219a52);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px var(--primary-glow);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-hero {
    max-width: 480px;
}

.pulse-animation {
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--primary-glow);
    }

    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 14px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* ============================================================
   Sticky Top Bar
   ============================================================ */
.sticky-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #0f172a, #1e293b);
    padding: 0.6rem 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.topbar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: nowrap;
    /* prevent wrapping to 2nd line */
    overflow: hidden;
}

.topbar-text {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
}

.topbar-text strong {
    color: #fbbf24;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 4px;
}

.timer-block {
    background: var(--danger);
    color: white;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    min-width: 44px;
    text-align: center;
    line-height: 1;
}

.timer-block small {
    display: block;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.timer-sep {
    color: #fbbf24;
    font-weight: 800;
    font-size: 1.1rem;
}

.topbar-btn {
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    white-space: nowrap;
    transition: background 0.2s;
}

.topbar-btn:hover {
    background: var(--primary-dark);
}

/* ============================================================
   Live Buyer Toast
   ============================================================ */
.live-toast {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    background: var(--white);
    padding: 0.9rem 1.3rem;
    border-radius: 14px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    border-left: 4px solid var(--primary);
    max-width: 300px;
    transform: translateX(-110%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.live-toast.show {
    transform: translateX(0);
}

.live-toast.hidden {
    display: none;
}

.toast-dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ============================================================
   Exit Intent Popup
   ============================================================ */
.exit-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.exit-popup-box {
    background: white;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.85);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.exit-popup-overlay.active .exit-popup-box {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: background 0.2s;
}

.exit-popup-close:hover {
    background: #e2e8f0;
}

.exit-popup-badge {
    background: #fff7ed;
    color: #c2410c;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

.exit-popup-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.exit-popup-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-popup-btn {
    width: 100%;
    max-width: 100%;
    font-size: 1.05rem;
}

.exit-popup-skip {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    cursor: pointer;
    text-decoration: underline;
}

.exit-popup-skip:hover {
    color: var(--text-muted);
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
    text-align: center;
    padding-top: 8rem;
    /* account for topbar — extra space for mobile wrap */
    padding-bottom: 4rem;
}

.hero-eyebrow {
    margin-bottom: 1.25rem;
}

.eyebrow-badge {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    border: 1px solid #a7f3d0;
}

.headline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.subheadline {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 1.75rem;
    line-height: 1.75;
}

.subheadline strong {
    color: var(--dark);
}

.hero-image-container {
    max-width: 860px;
    margin: 0 auto 1.75rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-main-img {
    width: 100%;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-avatars {
    display: flex;
}

.hero-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    object-fit: cover;
}

.hero-avatars img:first-child {
    margin-left: 0;
}

.hero-proof-text {
    text-align: left;
}

.hero-proof-text span {
    font-size: 0.88rem;
    color: var(--text-muted);
    display: block;
}

.stars-sm {
    color: #f59e0b;
    font-size: 0.85rem;
    line-height: 1;
}

.cta-container {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================================
   Pain / Transformation Section
   ============================================================ */
.pain-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 820px;
    margin: 0 auto;
}

.pain-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.pain-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.pain-card ul li {
    padding: 0.45rem 0;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}

.pain-card ul li:last-child {
    border-bottom: none;
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.pain-bad {
    border-top: 4px solid var(--danger);
}

.pain-good {
    border-top: 4px solid var(--primary);
}

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.testimonial-item img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
}

/* ============================================================
   Marquee
   ============================================================ */
.material-demo {
    background: var(--light-bg);
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 2rem 0;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee-content img {
    height: 280px;
    margin: 0 12px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    display: inline-block;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   Features
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

/* ============================================================
   What You Get Box
   ============================================================ */
.section-badge {
    background: var(--dark);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    display: inline-block;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.mockup-box {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.mockup-img {
    width: 100%;
}

.box-header {
    padding: 2rem;
    text-align: center;
}

.item-tag {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.box-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin: 1rem 0;
}

.box-subtitle {
    color: var(--text-muted);
}

.divider {
    border: 0;
    border-top: 1px solid var(--border);
    width: 60%;
    margin: 1rem auto;
}

.check-list-left {
    padding: 1.5rem 2rem 2rem;
    text-align: left;
}

.check-list-left li {
    margin-bottom: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.check {
    color: var(--primary);
    font-weight: 800;
    flex-shrink: 0;
}

/* ============================================================
   Bonuses Grid
   ============================================================ */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5rem 2rem;
    margin-top: 5rem;
}

.bonus-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 5rem 1.5rem 2rem;
    text-align: center;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.bonus-img-wrapper {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}

.bonus-badge {
    background: var(--danger);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.bonus-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.bonus-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ============================================================
   Value Stack Section
   ============================================================ */
.value-stack-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    color: white;
}

.value-stack-section .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: #a7f3d0;
}

.value-stack-section .section-title {
    color: white;
}

.value-stack-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.value-stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.95rem;
    color: #cbd5e1;
}

.value-price {
    font-weight: 700;
    color: #94a3b8;
}

.value-stack-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    font-size: 1.05rem;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.value-total-price {
    color: var(--danger);
    font-size: 1.1rem;
}

.value-stack-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.75rem;
    background: linear-gradient(90deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.05));
}

.value-stack-final>span:first-child {
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.value-final-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
}

/* ============================================================
   Pricing Section
   ============================================================ */
.pricing-single-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 30px 60px -12px rgba(46, 204, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.best-value-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: white;
    padding: 0.45rem 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    margin-top: 2rem;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.promo-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-img {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.pricing-img img {
    height: 190px;
}

.pricing-list {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-list li {
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-list li em {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.check-green {
    color: var(--primary);
    font-weight: 800;
}

.price-box {
    margin-bottom: 1.5rem;
}

.old-price {
    font-size: 1rem;
    color: #94a3b8;
}

.strike {
    text-decoration: line-through;
    color: var(--danger);
}

.final-price {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin: 0.25rem 0;
}

.save-badge {
    background: #dcfce7;
    color: #166534;
    display: inline-block;
    padding: 0.3rem 1.1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.checkout-btn {
    font-size: 1.1rem;
    padding: 1.2rem;
}

.urgency-text {
    font-size: 0.82rem;
    color: var(--danger);
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.5;
}

.payment-icons {
    margin: 1rem auto 0;
    max-width: 240px;
}

/* ============================================================
   Guarantee Section
   ============================================================ */
.guarantee-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 3rem 2rem;
}

.guarantee-badge img {
    width: 160px;
}

.guarantee-text h2 {
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.guarantee-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-details {
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1.1rem 1.25rem;
    transition: box-shadow 0.2s;
}

.faq-details[open] {
    box-shadow: var(--shadow-md);
}

.faq-details summary {
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.97rem;
}

.faq-details summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--primary);
    flex-shrink: 0;
}

.faq-details[open] summary::after {
    content: '−';
}

.faq-details p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   Final CTA Section
   ============================================================ */
.final-cta {
    background: linear-gradient(135deg, #064e3b, #065f46, #047857);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 30%, rgba(46, 204, 113, 0.1) 0%, transparent 50%);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    margin: 1rem 0;
    line-height: 1.2;
}

.final-cta-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-btn {
    background: white;
    color: var(--dark);
    max-width: 480px;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-btn:hover {
    background: #f0fdf4;
    color: var(--dark);
}

.final-cta-guarant {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2rem 0;
    font-size: 0.88rem;
}

footer p strong {
    color: white;
}

.py-6 {
    padding: 1.5rem 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .guarantee-flex {
        flex-direction: row;
        text-align: left;
    }

    .final-cta-title {
        font-size: 2.8rem;
    }

    .hero {
        padding-top: 5.5rem;
    }

    /* topbar fits in 1 line on desktop */
}

@media (max-width: 640px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .topbar-inner {
        gap: 0.5rem;
    }

    .topbar-text {
        font-size: 0.78rem;
    }

    .live-toast {
        max-width: calc(100vw - 3rem);
        left: 1rem;
    }

    .final-price {
        font-size: 3.2rem;
    }
}