/* ============================================================
   IRONZAP — PREMIUM SALES PAGE CSS
   White & Green · Ultra Professional
   ============================================================ */

/* ── TOKENS & RESET ── */
:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-primary: #18a84a;
    --green-dark: #0f7236;
    --green-light: #e8f9ee;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --dark: #0a0f0d;

    --font-main: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .10);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .12);
    --shadow-green: 0 8px 32px rgba(24, 168, 74, .25);
    --shadow-green-lg: 0 16px 48px rgba(24, 168, 74, .35);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: all .25s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: all .5s cubic-bezier(.4, 0, .2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

h4 {
    font-size: 1.15rem;
}

p {
    font-size: 1.05rem;
}

/* ── UTILITIES ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight-green {
    color: var(--green-primary);
}

.green {
    color: var(--green-primary);
}

.red {
    color: #ef4444;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-green-lg);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    color: var(--green-primary);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    border: 2px solid var(--green-primary);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
}

.btn-large {
    font-size: 1.1rem;
    padding: 16px 36px;
}

.btn-xlarge {
    font-size: 1.2rem;
    padding: 20px 44px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-white {
    background: var(--white) !important;
    color: var(--green-primary) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25) !important;
}

.btn-white:hover {
    background: var(--green-50) !important;
    box-shadow: 0 16px 50px rgba(0, 0, 0, .3) !important;
}

.section-eyebrow {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 12px;
}

.eyebrow-solid {
    background: var(--green-primary);
    color: white !important;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-desc {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-top: 12px;
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: linear-gradient(90deg, var(--green-700) 0%, var(--green-primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 48px;
    font-size: .9rem;
    font-weight: 500;
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.announcement-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse-dot 1.6s ease infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.announcement-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
    transition: color .2s;
}

.announcement-close:hover {
    color: #fff;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: relative;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    font-weight: 500;
    font-size: .95rem;
    color: var(--gray-600);
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--green-primary);
}

.nav-cta {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .9rem;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: var(--shadow-green);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-green-lg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 100px 0 90px;
    background: linear-gradient(160deg, #f0fdf4 0%, #ffffff 50%, #f0fdf4 100%);
    overflow: hidden;
    text-align: center;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 168, 74, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 168, 74, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero-image-top {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(24, 168, 74, .14) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, .10) 0%, transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -4s;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    color: var(--green-700);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fade-up .8s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse-dot 1.6s ease infinite;
}

.hero-title {
    max-width: 820px;
    margin: 0 auto 24px;
    animation: fade-up .8s .1s ease both;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-up .8s .2s ease both;
}



.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    animation: fade-up .8s .4s ease both;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-item strong {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--green-primary);
    line-height: 1;
}

.stat-item span {
    font-size: .85rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-200);
}

/* ============================================================
   PAIN SECTION
   ============================================================ */
.pain-section {
    padding: 60px 0 32px;
    background: var(--white);
}

.pain-intro {
    text-align: center;
    margin-bottom: 56px;
}

.pain-intro h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.2;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

/* 3 on top, 2 centered on bottom — 6-col grid (Desktop) */
.pain-grid-53 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 52px;
}

.pain-grid-53 .pain-card:nth-child(1) {
    grid-column: span 2;
}

.pain-grid-53 .pain-card:nth-child(2) {
    grid-column: span 2;
}

.pain-grid-53 .pain-card:nth-child(3) {
    grid-column: span 2;
}

.pain-grid-53 .pain-card:nth-child(4) {
    grid-column: 2 / 4;
}

.pain-grid-53 .pain-card:nth-child(5) {
    grid-column: 4 / 6;
}

/* Mobile fallback for pain grid */
@media (max-width: 900px) {
    .pain-grid-53 {
        grid-template-columns: 1fr;
    }

    .pain-grid-53 .pain-card {
        grid-column: span 1 !important;
    }
}


/* Connected flow wrapper */
/* ── PREMIUM ALERT FLOW ── */
/* ── REDESIGNED PAIN ALERT FLOW ── */
.pain-alert-flow {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: center;
}

.pain-alert-question-box {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 24px 24px 0 0;
    border: 2px solid #fee2e2;
    border-bottom: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pain-alert-pill-new {
    display: inline-block;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
    border: 1px solid #fee2e2;
}

.pain-alert-headline-new {
    color: #111827;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: -0.02em;
}

.pain-alert-headline-new span {
    color: #b91c1c;
}

/* Redesigned Arrow Divider */
.pain-alert-divider {
    height: 40px;
    position: relative;
    z-index: 2;
    margin-top: -20px;
    margin-bottom: -20px;
}

.pain-alert-arrow-new {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 6px solid #b91c1c;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pain-alert-arrow-new svg {
    color: #b91c1c;
}

.pain-alert-truth-box {
    background: #b91c1c;
    padding: 50px 40px;
    border-radius: 0 0 24px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(185, 28, 28, 0.25);
}

.pain-alert-truth-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.pain-truth-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.pain-truth-item:last-child {
    margin-bottom: 0;
}

.pain-truth-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pain-truth-text {
    text-align: left;
}

.pain-truth-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.2;
}

.pain-truth-text h4 {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 4px 0 0;
}







.pain-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    animation: fade-up .6s ease both;
}

.pain-card:nth-child(1) {
    animation-delay: .0s;
}

.pain-card:nth-child(2) {
    animation-delay: .1s;
}

.pain-card:nth-child(3) {
    animation-delay: .2s;
}

.pain-card:nth-child(4) {
    animation-delay: .3s;
}

.pain-card:nth-child(5) {
    animation-delay: .4s;
}

.pain-card:nth-child(6) {
    animation-delay: .5s;
}

.pain-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.pain-card p {
    font-weight: 500;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.4;
}

.pain-question {
    text-align: center;
    margin-bottom: 40px;
}

.pain-question-inner {
    display: inline-block;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    color: var(--white);
    padding: 40px 56px;
    border-radius: var(--radius-xl);
}

.pain-question-label {
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    margin-bottom: 12px;
    font-weight: 600;
}

.pain-question-inner h3 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.pain-truth {
    text-align: center;
    margin-top: 16px;
}

.pain-truth-inner {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 520px;
    width: 100%;
    text-align: left;
}

.pain-truth-line {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 36px;
    background: var(--white);
}

.pain-truth-line p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.3;
}

.pain-truth-line p strong {
    color: var(--gray-900);
    font-weight: 800;
    display: block;
    font-size: 1.35rem;
}

.pain-truth-highlight {
    background: linear-gradient(135deg, var(--gray-900), #111) !important;
}

.pain-truth-highlight p {
    color: rgba(255, 255, 255, .7) !important;
}

.pain-truth-highlight p strong {
    color: var(--green-400) !important;
    font-size: 1.5rem !important;
}

.pain-truth-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    background: var(--gray-50);
}

.pain-truth-highlight .pain-truth-icon {
    background: rgba(255, 255, 255, .08);
}

.pain-truth-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green-300), transparent);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
    padding: 40px 0;
    background: var(--gray-50);
}

.problem-header {
    text-align: center;
    margin-bottom: 48px;
}

.problem-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-top: 14px;
}

/* New bold problem title block */
.problem-title-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 48px 32px;
    background: linear-gradient(135deg, #0f1a11 0%, #1a3320 100%);
    border-radius: var(--radius-xl);
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.problem-title-block::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(24, 168, 74, .12), transparent 70%);
    border-radius: 50%;
}

.problem-title-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .1);
}

.problem-title-main {
    color: var(--white);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    line-height: 1.25;
    font-weight: 800;
}

.problem-title-main .highlight-green {
    color: var(--green-400) !important;
}

.problem-list {
    max-width: 600px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    transition: var(--transition);
}

.problem-item:hover {
    border-color: #fca5a5;
    box-shadow: var(--shadow-sm);
}

.problem-x {
    width: 32px;
    height: 32px;
    background: #fee2e2;
    color: #ef4444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
}

.problem-item p {
    font-weight: 500;
    color: var(--gray-700);
}

.problem-result {
    text-align: center;
    margin-bottom: 64px;
}

.result-box {
    display: inline-block;
    background: #fff1f2;
    border: 2px solid #fecdd3;
    border-radius: var(--radius-lg);
    padding: 32px 48px;
}

.result-box p {
    font-size: .9rem;
    color: #9f1239;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.result-box h3 {
    color: #be123c;
    font-size: 1.6rem;
}

.solution-bridge {
    text-align: center;
}

.bridge-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gray-200), var(--green-primary));
    margin: 0 auto 32px;
}

.bridge-label {
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--green-primary);
    margin-bottom: 16px;
}

.bridge-sub {
    color: var(--gray-700);
    font-size: 1.15rem;
    margin-top: 16px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    padding: 40px 0;
    background: var(--white);
}

/* Creative How-Section Header */
.how-section-header {
    margin-bottom: 72px;
}

.how-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    box-shadow: var(--shadow-green);
}

.how-header-icon {
    font-size: 1.2rem;
}

.how-header-steps-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.how-preview-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--green-50);
    border: 2px solid var(--green-200);
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .95rem;
    color: var(--gray-700);
    min-width: 100px;
    transition: var(--transition);
}

.how-preview-step:hover {
    background: var(--green-primary);
    color: white;
    border-color: var(--green-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-green);
}

.how-preview-step span {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--green-primary);
    line-height: 1;
}

.how-preview-step:hover span {
    color: rgba(255, 255, 255, .8);
}

.how-preview-arrow {
    font-size: 1.4rem;
    color: var(--green-300);
    font-weight: 700;
}


.how-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.how-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.how-step-left .how-step-visual {
    order: -1;
}

.how-step-right .how-step-visual {
    order: 1;
}

/* Vertical layout — visual below the text */
.how-step-down {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 680px;
    margin: 0 auto;
}

.how-step-visual-below {
    display: flex;
    justify-content: center;
}

.how-step-visual-below .phone-frame {
    max-width: 320px;
}

.step-real-screenshot-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .18),
        0 6px 20px rgba(0, 0, 0, .10);
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .15));
}

.how-step-visual-below .step-real-screenshot-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.step-number {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 4rem;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--green-200), var(--green-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-step-content h3 {
    margin-bottom: 14px;
}

.how-step-content>p {
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.step-benefit {
    color: var(--green-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-top: 16px;
}

/* Highlighted benefit banner */
.step-benefit-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    margin-top: 20px;
    box-shadow: var(--shadow-green);
}

.step-benefit-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* Profile photo in phone avatar */
.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Dashboard screenshot */
.step-dashboard-screenshot {
    margin-top: 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gray-100);
}

.dashboard-screenshot-img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
}


/* Chat bubbles in step content */
.step-messages {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 4px;
}

.msg {
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 70%;
}

.msg-user {
    background: var(--gray-100);
    color: var(--gray-700);
    align-self: flex-start;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
}

.msg-bot {
    background: var(--green-50);
    color: var(--green-700);
    align-self: flex-end;
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}


/* Step highlight */
.step-highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--green-50);
    border: 1.5px solid var(--green-200);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 20px 0;
}

.step-highlight-icon {
    font-size: 1.5rem;
}

.step-highlight p {
    font-weight: 700;
    color: var(--gray-800);
    font-size: 1rem;
}

/* Step list */
.step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.step-list li {
    font-size: .98rem;
    color: var(--gray-800);
    font-weight: 600;
}

/* Report preview */
.report-preview {
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.report-header-mini {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    font-weight: 700;
    padding: 14px 20px;
    font-size: .95rem;
    font-family: var(--font-main);
}

.report-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--gray-100);
    font-size: .95rem;
}

.report-line span {
    color: var(--gray-600);
    font-weight: 500;
}

.report-line strong {
    font-weight: 700;
    font-family: var(--font-main);
}

.report-total {
    background: var(--green-50);
    border-bottom: none;
}

.report-total span {
    font-weight: 700;
    color: var(--gray-800);
}

/* ── Phone Frame ── */
.phone-frame {
    background: var(--gray-900);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    max-width: 300px;
    margin: 0 auto;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gray-700);
    border-radius: 2px;
}

.phone-frame-alt {
    background: linear-gradient(160deg, #1a2e1e, #0f1a11);
}

.phone-screen {
    background: #f0f0f0;
    border-radius: 22px;
    overflow: hidden;
    min-height: 400px;
}

.phone-header {
    background: #075e54;
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-avatar {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: .8rem;
    color: white;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-info strong {
    font-size: .9rem;
    font-weight: 700;
}

.phone-info span {
    font-size: .75rem;
    opacity: .8;
}

.phone-chat {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #e5ddd5;
    min-height: 320px;
}

.chat-msg {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: .82rem;
    line-height: 1.6;
    font-family: var(--font-body);
    color: var(--gray-800);
}

.chat-out {
    background: #dcf8c6;
    color: #1a2e1e;
    align-self: flex-end;
    border-radius: 12px 12px 4px 12px;
    font-weight: 600;
    font-size: .82rem;
}

.chat-in {
    background: var(--white);
    color: var(--gray-800);
    align-self: flex-start;
    border-radius: 12px 12px 12px 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    font-size: .82rem;
}

/* Unified line within chat bubbles */
.chat-msg-line {
    display: block;
    font-size: .82rem;
    line-height: 1.6;
    color: var(--gray-800);
    font-family: var(--font-body);
    font-weight: 500;
}

.chat-msg-line strong {
    font-weight: 700;
    color: var(--gray-900);
}

.chat-msg-muted {
    color: var(--gray-500);
    font-size: .78rem;
}

/* Alert bubble override (keeps yellow background but same text treatment) */
.chat-alert {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.chat-alert .chat-msg-line {
    color: #78350f;
}

.chat-alert .chat-msg-line strong {
    color: #78350f;
}

/* Legacy small inside chat — normalize */
.chat-in small {
    display: block;
    font-size: .78rem;
    line-height: 1.6;
    color: var(--gray-500);
    font-family: var(--font-body);
}


/* ── Dashboard Preview ── */
.dashboard-preview {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}

.dash-header {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: var(--white);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-logo-img {
    height: 24px;
    width: auto;
    display: block;
}

.dash-period {
    font-size: .85rem;
    opacity: .8;
    font-weight: 500;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.dash-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dash-card span {
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--gray-400);
}

.dash-card strong {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.1rem;
}

.dash-card-green strong {
    color: var(--green-primary);
}

.dash-card-red strong {
    color: #ef4444;
}

.dash-card-blue strong {
    color: #3b82f6;
}

.dash-chart {
    padding: 24px;
}

.chart-bar-group {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 120px;
    margin-bottom: 10px;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 6px;
}

.chart-bar-wrap span {
    font-size: .68rem;
    color: var(--gray-400);
    font-weight: 600;
}

.chart-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    transition: height .6s ease;
}

.chart-bar-income {
    background: linear-gradient(to top, var(--green-800), var(--green-400));
}

.chart-bar-expense {
    background: linear-gradient(to top, #b91c1c, #f87171);
}

.chart-legend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--gray-500);
    font-weight: 500;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.legend-green {
    background: var(--green-primary);
}

.legend-red {
    background: #ef4444;
}


/* ============================================================
   TESTIMONIALS SECTION (replaces benefits)
   ============================================================ */
.testimonials-section {
    padding: 48px 0 32px;
    background: var(--gray-50);
}

.testimonials-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
}

.testimonials-videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.testimonial-video-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
    aspect-ratio: 9/16;
    display: flex;
    align-items: stretch;
}

.testimonial-video-wrap vturb-smartplayer {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* ============================================================
   BENEFITS SECTION (kept for legacy — hidden)
   ============================================================ */
.benefits-section {
    padding: 96px 0;
    background: var(--gray-50);
}


.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 72px;
}

.benefit-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
    border-color: var(--green-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.benefit-card h4 {
    margin-bottom: 10px;
    color: var(--gray-900);
    font-size: 1.1rem;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: .95rem;
    line-height: 1.6;
}

/* ============================================================
   BONUSES SECTION (new premium card design)
   ============================================================ */
.bonuses-section {
    padding: 48px 0 32px;
    background: var(--gray-50);
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
    margin-top: 56px;
}

/* 3 on top (cols 1-2, 3-4, 5-6) */
.bonuses-grid .bonus-card:nth-child(1) {
    grid-column: span 2;
}

.bonuses-grid .bonus-card:nth-child(2) {
    grid-column: span 2;
}

.bonuses-grid .bonus-card:nth-child(3) {
    grid-column: span 2;
}

/* 2 on bottom centered (cols 2-3, 4-5) */
.bonuses-grid .bonus-card:nth-child(4) {
    grid-column: 2 / 4;
}

.bonuses-grid .bonus-card:nth-child(5) {
    grid-column: 4 / 6;
}

@media (max-width: 900px) {
    .bonuses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonuses-grid .bonus-card {
        grid-column: span 1 !important;
    }
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

/* Image styling */
.bonus-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* More neutral for ebooks and tablets */
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid var(--gray-100);
    background: #f8fafc;
    /* Light gray background to frame 'contain' images */
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* SHOW COMPLETE IMAGE */
    padding: 10px;
    /* Bit of breathing room */
    transition: transform .5s ease;
}

.bonus-card:hover .bonus-image {
    transform: scale(1.08);
}

/* Body content */
.bonus-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    /* RED GRADIENT */
    color: white;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(185, 28, 28, 0.2);
}

.bonus-tag-ebook {
    background: linear-gradient(135deg, #7c3aed, #4c1d95);
}

.bonus-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.bonus-body p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.65;
}




/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom-section {
    padding: 80px 0;
    background: var(--white);
}

.forwhom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.forwhom-card {
    text-align: center;
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 36px 20px;
    transition: var(--transition);
    cursor: default;
}

.forwhom-card:hover {
    border-color: var(--green-200);
    background: var(--green-50);
    transform: translateY(-4px);
}

.forwhom-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.forwhom-card h4 {
    font-size: .95rem;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.4;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
    padding: 40px 0;
    background: var(--gray-50);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    max-width: 720px;
    margin: 0 auto;
}



.why-content>p.section-eyebrow {
    margin-bottom: 12px;
}

.why-content h2 {
    margin-bottom: 40px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 40px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-num {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    border-radius: var(--radius-md);
    display: grid;
    place-items: center;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-green);
}

.why-item h4 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.why-item p {
    color: var(--gray-500);
    font-size: .95rem;
}

.why-truth {
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.why-truth p {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.8;
}

.why-truth p strong {
    color: var(--white);
    font-size: 1.2rem;
}

/* Hero version — green gradient like why-card-big */
.why-truth-hero {
    background: linear-gradient(160deg, var(--green-primary) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px 40px;
    box-shadow: var(--shadow-green-lg);
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.why-truth-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.why-truth-hero p {
    color: rgba(255, 255, 255, .8);
    font-size: 1.15rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.why-truth-hero p strong {
    color: var(--white);
    font-size: 1.35rem;
    display: block;
    margin-top: 8px;
}

.why-card-big {
    background: linear-gradient(160deg, var(--green-primary) 0%, var(--green-dark) 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-green-lg);
    position: relative;
    overflow: hidden;
}

.why-card-big::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.why-card-big::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.why-card-logo-wrap {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.why-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.why-card-big h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-card-big p {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.why-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.why-tags span {
    background: rgba(255, 255, 255, .15);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(4px);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    padding: 96px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 840px;
    margin: 0 auto;
}

/* Scarcity Timer */
.pricing-timer {
    text-align: center;
    background: #fef2f2;
    border: 1px dashed #ef4444;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto 36px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.timer-label {
    color: #b91c1c;
    font-weight: 700;
    font-size: .95rem;
}

#countdown {
    background: #ef4444;
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.2rem;
    min-width: 80px;
    display: inline-block;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--green-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card-featured {
    background: linear-gradient(160deg, var(--green-primary) 0%, var(--green-dark) 100%);
    border-color: var(--green-dark);
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.25);
    color: white;
}

.pricing-card-featured .pricing-name,
.pricing-card-featured .price-value,
.pricing-card-featured .price-currency,
.pricing-card-featured .price-period,
.pricing-card-featured .pricing-features li,
.pricing-card-featured .pricing-note {
    color: white !important;
}

.pricing-card-featured .pricing-savings {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-featured .btn-primary {
    background: white;
    color: var(--green-dark);
}

.pricing-card-featured:hover {
    box-shadow: 0 25px 50px rgba(22, 163, 74, 0.35);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .08em;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: var(--shadow-green);
}

.pricing-name {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0;
    margin-bottom: 8px;
}

.price-currency {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gray-500);
}

.price-value {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 3.2rem;
    color: var(--gray-900);
    line-height: 1;
}

.price-decimal {
    font-size: 1.8rem;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-left: 4px;
}

.pricing-savings {
    display: inline-block;
    background: var(--green-50);
    color: var(--green-700);
    font-weight: 700;
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    border: 1px solid var(--green-200);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: .95rem;
    color: var(--gray-700);
    font-weight: 500;
    padding-left: 4px;
}

.feature-extra {
    color: var(--green-700) !important;
    font-weight: 600 !important;
}

.pricing-payments {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.pricing-note {
    text-align: center;
    font-size: .82rem;
    color: var(--gray-400);
    margin-top: 12px;
    font-weight: 500;
}

.payment-methods {
    text-align: center;
    margin-top: 24px;
}

.payment-methods p {
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-icon {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ============================================================
   GUARANTEE SECTION
   ============================================================ */
.guarantee-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 840px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--green-100);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-green);
}

.guarantee-badge {
    flex-shrink: 0;
}

.guarantee-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green-lg);
    border: 4px solid var(--white);
    outline: 3px solid var(--green-200);
}

.guarantee-days {
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 2.8rem;
    color: white;
    line-height: 1;
}

.guarantee-label {
    font-family: var(--font-main);
    font-weight: 800;
    font-size: .7rem;
    letter-spacing: .12em;
    color: rgba(255, 255, 255, .8);
    text-transform: uppercase;
}

.guarantee-content h2 {
    margin-bottom: 14px;
    font-size: 1.8rem;
}

.guarantee-content p {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 10px;
}

.guarantee-content p strong {
    color: var(--gray-900);
}

/* ============================================================
   URGENCY / FINAL CTA
   ============================================================ */
.urgency-section {
    padding: 100px 0;
    background: linear-gradient(160deg, #0a1a0f 0%, #0f7236 50%, #0a1a0f 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(74, 222, 128, .08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(74, 222, 128, .06) 0%, transparent 50%);
    pointer-events: none;
}

.urgency-section .container {
    position: relative;
    z-index: 1;
}

.urgency-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.urgency-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 28px;
}

.urgency-list {
    margin-bottom: 48px;
}

.urgency-list p {
    color: rgba(255, 255, 255, .75);
    font-size: 1.15rem;
    line-height: 2;
}

.urgency-list p strong {
    color: var(--white);
    font-size: 1.3rem;
}

.urgency-guarantee {
    margin-top: 20px;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .6);
    text-align: center;
    padding: 48px 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo .logo-img {
    height: 36px;
    width: auto;
}

.footer-tagline {
    color: rgba(255, 255, 255, .4);
    font-size: .9rem;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    font-weight: 500;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--green-400);
}

.footer-copy {
    font-size: .8rem;
    color: rgba(255, 255, 255, .25);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    70% {
        transform: scale(1.03);
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.animate-pulse {
    animation: pulse-soft 2s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .how-step {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .how-step-left .how-step-visual {
        order: 0;
    }

    .how-step-right .how-step-visual {
        order: 0;
    }

    .testimonials-videos {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .why-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

    .guarantee-inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
        gap: 32px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-container {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 0 70px;
    }

    .pain-question-inner {
        padding: 28px 24px;
    }

    .hero-stats {
        gap: 28px;
    }

    .stat-divider {
        display: none;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .phone-frame {
        max-width: 90%;
    }

    .chat-msg {
        font-size: .77rem;
    }

    .chat-msg small {
        font-size: .68rem;
        line-height: 1.55;
    }

    .dashboard-preview {
        max-width: 320px;
    }

    .dash-cards {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
    }

    .announcement-bar {
        display: none;
    }

    .problem-title-block {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-100);
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--gray-900);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--green-primary);
}

.faq-question svg {
    color: var(--gray-400);
    transition: transform .3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--green-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    /* Big enough for multi-line */
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 18px 0;
        font-size: 1.05rem;
    }
}