*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

:root {
    --brand-green: #0A6840;
    --brand-green-dark: #053D25;
    --brand-green-light: #ECF7F1;

    --brand-orange: #E85D04;
    --brand-orange-light: #FFF3EE;

    --gold: #F4A300;
    --gold-light: #FFF8E6;

    --text-main: #111827;
    --text-muted: #4B5563;
    --border: #E5E7EB;
    --bg-main: #F9FAFB;
    --bg-card: #FFFFFF;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);

    --radius: 12px;
    --max-width: 540px;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.logo,
.btn-hero,
.price-main {
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
}

.page {
    display: none !important;
}

.page.active {
    display: block !important;
    animation: simpleFade 0.2s ease-out;
}

@keyframes simpleFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#urgencyBar {
    background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green));
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ub-gold {
    color: #FFD166;
    font-weight: 700;
}

#countdown {
    display: inline-block;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    padding: 2px 6px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.navbar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 40px;
    z-index: 999;
}

.logo {
    font-weight: 800;
    font-size: 20px;
    color: var(--brand-green);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--brand-orange);
}

.secure-tag {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.lock-icon {
    color: var(--brand-green);
}

.hero {
    background: linear-gradient(160deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
    padding: 40px 20px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-pill {
    display: inline-block;
    background: rgba(244, 163, 0, 0.15);
    border: 1px solid rgba(244, 163, 0, 0.3);
    color: #FFD166;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(28px, 7.5vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(90deg, #FFD166, #F4A300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 440px;
    margin-inline: auto;
}

.btn-hero {
    background: linear-gradient(135deg, #F4A300, var(--brand-orange));
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 24px;
    border-radius: 100px;
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto 12px;
    box-shadow: 0 8px 24px rgba(232, 93, 4, 0.4);
    transition: transform 0.15s;
}

.btn-hero:active {
    transform: scale(0.97);
}

.hero-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.hero-note strong {
    color: #FFD166;
}

@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(232, 93, 4, 0.4);
    }

    50% {
        box-shadow: 0 6px 36px rgba(232, 93, 4, 0.65), 0 0 0 6px rgba(232, 93, 4, 0.1);
    }
}

.pulse {
    animation: pulse-orange 2s ease-in-out infinite;
}

.trust-strip {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.stars {
    color: var(--gold);
    letter-spacing: -2px;
    font-size: 16px;
}

.proof-ticker {
    background: var(--brand-green-light);
    border-bottom: 1px solid #D1FAE5;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
    animation: blink 1.5s infinite;
}

.ticker-msg {
    transition: opacity 0.4s ease;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.section {
    padding: 48px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.bg-white {
    background: var(--bg-card);
}

.bg-light {
    background: var(--bg-main);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.sec-title {
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.sec-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.tag-red {
    display: inline-block;
    background: #FEE2E2;
    color: #DC2626;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.bg-red {
    background: #FEE2E2;
}

.bg-yellow {
    background: #FEF3C7;
}

.card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-content p {
    font-size: 14px;
    color: var(--text-muted);
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comp-header {
    display: flex;
    background: #F3F4F6;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
}

.comp-row {
    display: flex;
    border-top: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
}

.comp-col-bad,
.comp-col-good {
    padding: 16px;
    width: 50%;
}

.comp-col-bad {
    color: var(--text-muted);
    background: #FAFAFA;
    border-right: 1px solid var(--border);
}

.comp-col-good {
    color: var(--brand-green-dark);
    font-weight: 600;
    background: var(--brand-green-light);
}

.mockup-tag {
    display: inline-block;
    background: var(--gold);
    color: #111;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    margin: 0 auto;
    background: #000;
    border-radius: 40px;
    border: 8px solid #111;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #111;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.mockup-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.sticky-bottom-bar.visible {
    transform: translateY(0);
}

.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    padding: 12px 20px;
}

.sbb-info {
    display: flex;
    flex-direction: column;
}

.sbb-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--text-main);
    line-height: 1.2;
}

.sbb-left {
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-orange);
}

.btn-sbb {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 100px;
    box-shadow: 0 4px 12px rgba(10, 104, 64, 0.3);
}

.btn-sbb:active {
    transform: scale(0.96);
}

.pricing-block {
    background: var(--bg-main);
    border: 2px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 104, 64, 0.05), transparent);
    pointer-events: none;
}

.scarcity-bar {
    background: var(--brand-green-light);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
}

.progress-wrap {
    background: #C8E6D4;
    border-radius: 100px;
    height: 8px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--brand-green), #1AA060);
    height: 100%;
    border-radius: 100px;
}

.price-old {
    font-size: 15px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-main {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-main sup {
    font-size: 24px;
    vertical-align: top;
    margin-top: 8px;
    margin-right: 2px;
}

.price-save {
    display: inline-block;
    background: var(--gold-light);
    color: #A66900;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    margin: 12px 0 20px;
}

.guarantee-note {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.tag-green {
    display: inline-block;
    background: var(--brand-green-light);
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.tl-item {
    display: flex;
    gap: 16px;
    padding-bottom: 32px;
    position: relative;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-item::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    width: 2px;
    height: calc(100% - 16px);
    background: linear-gradient(180deg, var(--brand-green), transparent);
}

.tl-item:last-child::before {
    display: none;
}

.tl-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(10, 104, 64, 0.3);
    z-index: 2;
}

.tl-content {
    padding-top: 10px;
}

.tl-content h3 {
    font-size: 17px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.tl-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.modules-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mod-num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mod-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.mod-text p {
    font-size: 14px;
    color: var(--text-muted);
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
}

.testi-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 0px;
    right: 16px;
    font-size: 80px;
    color: var(--brand-green-light);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testi-stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.testi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.testi-loc {
    font-size: 12px;
    color: var(--text-muted);
}

.verified-badge {
    margin-left: auto;
    background: var(--brand-green-light);
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.faq-container {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-green-light);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--brand-green);
    color: #fff;
}

.faq-a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    padding-bottom: 20px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeIn 0.3s ease;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--brand-green-light), #E8F4F0);
    border: 1px solid #C8E6D4;
    border-radius: var(--radius);
    padding: 32px 20px;
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 12px;
    line-height: 1;
}

.guarantee-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-green);
    margin-bottom: 8px;
}

.guarantee-box p {
    font-size: 14px;
    color: var(--text-muted);
}

.final-cta {
    background: linear-gradient(160deg, var(--brand-green-dark), var(--brand-green));
    padding: 56px 20px;
    text-align: center;
}

.final-inner {
    max-width: 440px;
    margin: 0 auto;
}

.tag-gold {
    display: inline-block;
    background: rgba(244, 163, 0, 0.2);
    border: 1px solid rgba(244, 163, 0, 0.4);
    color: #FFD166;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.final-cta h2 {
    font-size: clamp(28px, 7vw, 36px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
}

.final-cta h2 em {
    font-style: normal;
    background: linear-gradient(90deg, #FFD166, #F4A300);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-price-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 24px;
    margin: 0 auto 24px;
    max-width: 320px;
}

.final-old {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.final-main {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #FFD166;
    line-height: 1;
}

.final-save {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    font-weight: 500;
}

.footer {
    background: #111;
    padding: 32px 20px 90px;
    text-align: center;
    color: #888;
    font-size: 13px;
    line-height: 1.8;
}

.footer strong {
    color: #ccc;
}

.footer-links {
    margin: 12px 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-micro {
    margin-top: 16px;
    font-size: 11px;
    color: #555;
}

#emailPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
}

.email-nav {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}

.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: background 0.15s;
    flex-shrink: 0;
}

.back-btn:active {
    background: var(--border);
}

.email-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px 64px;
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.email-icon {
    font-size: 56px;
    margin-bottom: 16px;
    line-height: 1;
}

.email-body h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.email-body p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.order-summary-mini {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.osm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-bottom: 6px;
}

.osm-row.total {
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-bottom: 0;
}

.osm-label {
    color: var(--text-muted);
    font-weight: 500;
}

.osm-price {
    font-weight: 700;
    color: var(--text-main);
}

.input-wrap {
    position: relative;
    margin-bottom: 16px;
    text-align: left;
}

.input-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.input-wrap input {
    width: 100%;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    color: var(--text-main);
    background: var(--bg-card);
    outline: none;
    transition: border-color 0.2s;
}

.input-wrap input:focus {
    border-color: var(--brand-green);
}

.input-wrap input.error {
    border-color: #DC2626;
}

.err-msg {
    font-size: 12px;
    color: #DC2626;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

.err-msg.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.btn-submit {
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 24px;
    border-radius: 100px;
    width: 100%;
    box-shadow: 0 6px 20px rgba(10, 104, 64, 0.35);
    transition: transform 0.15s;
    margin-top: 8px;
}

.btn-submit:active {
    transform: scale(0.97);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.privacy-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.spinner {
    display: none;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#upsellPage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-main);
}

.upsell-header {
    background: linear-gradient(135deg, var(--brand-orange), #C44A00);
    padding: 16px 20px;
    text-align: center;
    color: #fff;
}

.upsell-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2px;
}

.upsell-header p {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.upsell-body {
    flex: 1;
    padding: 32px 20px 64px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.upsell-badge {
    background: var(--brand-orange-light);
    border: 1px solid rgba(232, 93, 4, 0.2);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.upsell-badge .emoji {
    font-size: 40px;
    margin-bottom: 8px;
}

.upsell-badge h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand-orange);
    margin-bottom: 6px;
    line-height: 1.2;
}

.upsell-badge p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.upsell-features {
    margin-bottom: 24px;
    background: var(--bg-card);
    padding: 16px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.upsell-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.45;
}

.upsell-feature:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.upsell-feature:first-child {
    padding-top: 0;
}

.upsell-feature .tick {
    color: var(--brand-green);
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

.upsell-price-note {
    background: var(--brand-green-light);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-green-dark);
    text-align: center;
    line-height: 1.5;
    border: 1px dashed var(--brand-green);
}

.btn-yes {
    background: linear-gradient(135deg, #F4A300, var(--brand-orange));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 17px;
    padding: 18px 24px;
    border-radius: 100px;
    width: 100%;
    box-shadow: 0 6px 24px rgba(232, 93, 4, 0.35);
    transition: transform 0.15s;
    margin-bottom: 16px;
    line-height: 1.3;
    text-align: center;
    display: block;
}

.btn-yes:active {
    transform: scale(0.97);
}

.btn-no {
    background: transparent;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    padding: 12px;
    border-radius: 100px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.upsell-micro {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.payu-objection-card {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF3EE 100%);
    border: 2px solid #E85D04;
    border-radius: 14px;
    padding: 22px 20px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.payu-objection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E85D04, #F4A300);
}

.payu-obj-tag {
    display: inline-block;
    background: #E85D04;
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.payu-objection-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.3;
}

.payu-objection-card p {
    font-size: 14px;
    color: #4B5563;
    line-height: 1.65;
    margin-bottom: 14px;
}

.payu-obj-resolve {
    background: white;
    border: 1.5px solid #E85D04;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.payu-obj-resolve-icon {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.payu-obj-resolve-text {
    font-size: 14px;
    font-weight: 600;
    color: #7C2D12;
    line-height: 1.55;
}

.payu-obj-resolve-text strong {
    color: #E85D04;
}

.rich-customers-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.rich-stat-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 16px;
}

.rich-stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1;
}

.rich-stat-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.3;
}

.rich-stat-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.rich-customers-callout {
    background: linear-gradient(135deg, #FFFBEB, #FFF8E6);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: #78350F;
    line-height: 1.6;
}

.rcc-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.rich-customers-callout strong {
    color: #92400E;
    font-weight: 800;
}

.influencer-comparison {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.inf-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inf-col-bad {
    background: #FAFAFA;
    border-right: 1px solid var(--border);
}

.inf-col-good {
    background: var(--bg-main);
}

.inf-col-header {
    padding: 12px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    background: #F3F4F6;
    border-bottom: 1px solid var(--border);
}

.inf-col-bad .inf-col-header {
    color: #DC2626;
    background: #FEE2E2;
}

.inf-col-good .inf-col-header {
    color: var(--brand-green);
    background: var(--brand-green-light);
}

.inf-row {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.inf-row:last-child {
    border-bottom: none;
}

.inf-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
}

.inf-val-bad {
    font-size: 12px;
    font-weight: 600;
    color: #DC2626;
    line-height: 1.4;
}

.inf-val-good {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-green-dark);
    line-height: 1.4;
}

.influencer-callout {
    background: linear-gradient(135deg, var(--brand-green-light), #E8F4F0);
    border: 1.5px solid var(--brand-green);
    border-radius: var(--radius);
    padding: 16px;
    font-size: 13px;
    color: var(--brand-green-dark);
    line-height: 1.7;
}

.influencer-callout strong {
    display: block;
    font-weight: 800;
    font-size: 14px;
}

.tag-gold-section {
    display: inline-block;
    background: var(--gold-light);
    color: #A66900;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ============================================================
   INSTAGRAM AESTHETIC - Clean & High-Converting
   Strategy: Solid dark backgrounds for readability. 
   Gradients reserved STRICTLY for interactive buttons.
   ============================================================ */
:root {
    --ig-pink: #E1306C;
    --ig-purple: #833AB4;
    --ig-gold: #FCAF45;
    --ig-dark: #09010F;
    /* Very deep, solid purple-black */
    --ig-light: #FDF0F5;
}

/* Urgency Bar - Solid dark, no gradient background */
#urgencyBar {
    background: var(--ig-dark);
    border-bottom: 1px solid rgba(225, 48, 108, 0.2);
}

.ub-gold {
    color: var(--ig-gold);
    font-weight: 700;
}

#countdown {
    background: rgba(225, 48, 108, 0.15);
    border: 1px solid rgba(225, 48, 108, 0.3);
    color: #FF85A2;
}

/* Hero - Solid dark for maximum readability */
.hero {
    background: var(--ig-dark);
    position: relative;
    overflow: hidden;
}

/* Optional: subtle radial glow behind everything, NOT a harsh linear gradient */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 48, 108, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-pill {
    background: rgba(252, 175, 69, 0.15);
    border: 1px solid rgba(252, 175, 69, 0.3);
    color: var(--ig-gold);
}

.hero h1 {
    color: #ffffff;
}

.hero h1 em {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--ig-gold);
    color: var(--ig-gold);
}

.hero-sub {
    color: rgba(255, 255, 255, 0.85);
}

.hero-note {
    color: rgba(255, 255, 255, 0.6);
}

.hero-note strong {
    color: var(--ig-gold);
}

/* CTA Buttons - The ONLY place for the heavy gradient */
.btn-hero {
    background: linear-gradient(135deg, #833AB4, #C13584, #E1306C);
    box-shadow: 0 8px 24px rgba(193, 53, 132, 0.4);
    color: #ffffff;
    border: none;
}

@keyframes pulse-orange {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(193, 53, 132, 0.4);
    }

    50% {
        box-shadow: 0 6px 36px rgba(193, 53, 132, 0.65), 0 0 0 6px rgba(193, 53, 132, 0.15);
    }
}

/* Navbar & Trust Strip */
.lock-icon {
    color: var(--ig-pink);
}

.stars {
    color: var(--ig-gold);
}

/* Ticker */
.proof-ticker {
    background: var(--ig-light);
    border-bottom-color: rgba(225, 48, 108, 0.15);
    color: var(--ig-purple);
}

.ticker-dot {
    background: var(--ig-pink);
}

/* Tags */
.tag-green {
    background: var(--ig-light);
    color: var(--ig-pink);
}

.tag-gold-section {
    background: rgba(252, 175, 69, 0.15);
    color: #A66900;
}

/* Comparison Table */
.comp-col-good {
    background: var(--ig-light);
    color: #5B1B6B;
}

/* Timeline (D1, D2) - Solid colors, no gradients */
.tl-dot {
    background: var(--ig-pink);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.tl-item::before {
    background: linear-gradient(180deg, var(--ig-pink), transparent);
}

/* Modules */
.mod-num {
    background: var(--ig-light);
    color: var(--ig-pink);
}

/* Pricing & Scarcity */
.pricing-block {
    border-color: var(--ig-pink);
}

.pricing-block::before {
    background: rgba(225, 48, 108, 0.03);
}

.scarcity-bar {
    background: var(--ig-light);
    color: var(--ig-purple);
}

.progress-wrap {
    background: #FECDD3;
}

.progress-fill {
    background: var(--ig-pink);
}

/* Guarantee Box */
.guarantee-box {
    background: var(--ig-light);
    border-color: rgba(225, 48, 108, 0.2);
}

.guarantee-box h3 {
    color: var(--ig-purple);
}

/* Final CTA - Matches Hero */
.final-cta {
    background: var(--ig-dark);
}

.final-cta h2 {
    color: #ffffff;
}

.final-cta h2 em {
    background: none;
    -webkit-text-fill-color: var(--ig-gold);
    color: var(--ig-gold);
}

.final-price-box {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.final-old {
    color: rgba(255, 255, 255, 0.5);
}

.final-main {
    color: var(--ig-gold);
}

.final-save {
    color: rgba(255, 255, 255, 0.8);
}

/* Sticky Bar */
.sbb-left {
    color: var(--ig-pink);
}

.btn-sbb {
    background: linear-gradient(135deg, #833AB4, #E1306C);
    box-shadow: 0 4px 12px rgba(193, 53, 132, 0.4);
    border: none;
}

/* Forms & Modals */
.input-wrap input:focus {
    border-color: var(--ig-pink);
}

.btn-submit {
    background: linear-gradient(135deg, #833AB4, #E1306C);
    box-shadow: 0 6px 20px rgba(193, 53, 132, 0.4);
    border: none;
}

/* Upsell Page */
.upsell-header {
    background: var(--ig-dark);
}

.upsell-badge {
    background: var(--ig-light);
    border-color: rgba(225, 48, 108, 0.2);
}

.upsell-badge h4 {
    color: var(--ig-pink);
}

.tick {
    color: var(--ig-pink);
}

.upsell-price-note {
    background: var(--ig-light);
    color: var(--ig-purple);
    border-color: var(--ig-pink);
}

/* FAQ */
.faq-icon {
    background: var(--ig-light);
    color: var(--ig-pink);
}

.faq-item.open .faq-icon {
    background: var(--ig-pink);
    color: #ffffff;
}

/* Additional touches: Rich grid, Influencer */
.rich-stat-card {
    border-left-color: var(--ig-pink);
}

.rich-customers-callout {
    background: var(--ig-light);
    border-color: rgba(225, 48, 108, 0.3);
    color: var(--text-main);
}

.rich-customers-callout strong {
    color: var(--ig-purple);
}

.inf-col-good .inf-col-header {
    background: var(--ig-light);
    color: var(--ig-purple);
}

.inf-val-good {
    color: var(--ig-purple);
}

.influencer-callout {
    background: var(--ig-light);
    border-color: rgba(225, 48, 108, 0.3);
    color: var(--text-main);
}

.influencer-callout strong {
    color: var(--ig-purple);
}

.boost-breakdown {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.bb-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bb-col-bad {
    background: #FAFAFA;
    border-right: 1px solid var(--border);
}

.bb-col-good {
    background: var(--ig-light);
}

.bb-col-header {
    padding: 12px 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bb-col-bad .bb-col-header {
    color: #DC2626;
    background: #FEE2E2;
}

.bb-col-good .bb-col-header {
    color: var(--ig-purple);
    background: var(--ig-light);
}

.bb-item {
    padding: 9px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-main);
    line-height: 1.45;
}

.bb-item:last-child {
    border-bottom: none;
}

.bb-item strong {
    color: var(--text-main);
}

.boost-verdict {
    background: var(--ig-light);
    border: 1.5px solid var(--ig-pink);
    border-radius: var(--radius);
    padding: 16px;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.7;
}

.boost-verdict strong {
    color: var(--ig-purple);
}

/* ── Objection Cards ── */
.obj-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
}

.obj-q {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    line-height: 1.35;
}

.obj-q-emoji {
    font-size: 20px;
    margin-right: 6px;
}

.obj-a p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 10px;
}

.obj-a p:last-child {
    margin-bottom: 0;
}

.obj-proof {
    background: var(--ig-light);
    border-radius: 8px;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.obj-proof-icon {
    color: var(--ig-pink);
    flex-shrink: 0;
    margin-top: 1px;
}

.obj-proof-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--ig-purple);
    line-height: 1.5;
}