@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --bg-primary: #061A33;
    --bg-secondary: #0B2345;
    --accent-gold: #F5B44B;
    --accent-gold-hover: #e09f3e;
    --text-white: #FFFFFF;
    --text-secondary: #C7D2E0;
    --border-color: rgba(245, 180, 75, 0.15);
    --border-color-light: rgba(199, 210, 224, 0.1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.4);
    --shadow-gold-glow: 0 0 25px rgba(245, 180, 75, 0.2);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-white);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography styling */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gold-text {
    color: var(--accent-gold);
    font-weight: 700;
}

p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Selection & Scrollbar */
::selection {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Utility Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Sticky Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(6, 26, 51, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 180, 75, 0.35);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(6, 26, 51, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Badges */
.badge {
    display: inline-block;
    background: rgba(245, 180, 75, 0.1);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.badge-bonus {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #EF4444;
    color: #EF4444;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-gold);
    color: #061A33;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium), 0 0 15px rgba(245, 180, 75, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--accent-gold-hover);
    box-shadow: var(--shadow-premium), 0 0 25px rgba(245, 180, 75, 0.55);
}

.btn:active {
    transform: translateY(-1px) scale(1.0);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(245, 180, 75, 0.1);
    box-shadow: var(--shadow-gold-glow);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Sections Base Styling */
section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background-color: var(--bg-primary);
}

.section-light {
    background-color: var(--bg-secondary);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: rgba(245, 180, 75, 0.05);
    border: 1px solid rgba(245, 180, 75, 0.2);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-white);
    text-align: center;
}

.section-title span {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Hero Layout */
.hero-section {
    padding-top: 170px;
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    order: 1;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content h1 span {
    color: var(--accent-gold);
    display: inline-block;
    animation: gold-popup 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.2s;
}

@keyframes gold-popup {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(10px);
        text-shadow: none;
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        text-shadow: 0 0 20px rgba(245, 180, 75, 0.4);
    }
}


.hero-content .subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 36px;
    color: var(--text-secondary);
}

/* Bullet Points */
.bullet-list {
    list-style: none;
    margin-bottom: 40px;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text-white);
}

.bullet-icon {
    color: var(--accent-gold);
    margin-right: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Offer Box in Hero */
.offer-box {
    background: rgba(11, 35, 69, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.offer-info h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.offer-prices {
    text-align: right;
}

.price-reg {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.price-now {
    color: var(--accent-gold);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
}

.price-save {
    background: var(--accent-gold);
    color: #061A33;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 4px;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-subtext {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Hero Mockups */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    order: 2;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 180, 75, 0.15) 0%, rgba(6, 26, 51, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.img-cover-main {
    position: absolute;
    width: 76%;
    z-index: 3;
    left: 0;
    bottom: 4%;
    border-radius: 8px;
    box-shadow: 10px 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(245, 180, 75, 0.1);
    transition: var(--transition-smooth);
}

.img-cover-sub {
    position: absolute;
    width: 72%;
    z-index: 2;
    right: -10%;
    top: 4%;
    border-radius: 8px;
    opacity: 0.85;
    box-shadow: 5px 15px 35px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.hero-mockup:hover .img-cover-main {
    transform: translate(-30px, -12px) rotate(-2.5deg);
    box-shadow: 15px 35px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(245, 180, 75, 0.2);
}

.hero-mockup:hover .img-cover-sub {
    transform: translate(70px, -18px) rotate(4deg);
    opacity: 0.98;
}

/* Timeline Footer styling */
.timeline-section {
    padding: 60px 0;
    border-top: 1px solid var(--border-color-light);
    border-bottom: 1px solid var(--border-color-light);
}

.timeline-title {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.timeline-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(245, 180, 75, 0.1) 0%, 
        rgba(245, 180, 75, 0.6) 50%, 
        rgba(245, 180, 75, 0.1) 100%);
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-node {
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
    border: 2px solid var(--border-color-light);
    border-radius: 9999px;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    text-align: center;
}

.timeline-node span {
    font-size: 0.7rem;
    display: block;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.timeline-node:hover {
    border-color: var(--accent-gold);
    color: var(--text-white);
    transform: scale(1.08);
    box-shadow: var(--shadow-gold-glow);
}

.timeline-arrow {
    font-size: 1.2rem;
    color: var(--accent-gold);
    z-index: 2;
    pointer-events: none;
}

/* Pain Cards - The Problem Section */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.pain-card-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

.pain-card {
    background: #0B2345;
    border: 1px solid rgba(199, 210, 224, 0.08);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.pain-card:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pain-icon-wrapper {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(239, 68, 68, 0.3);
    transition: var(--transition-smooth);
}

.pain-card:hover .pain-icon-wrapper {
    background: linear-gradient(135deg, #ff5c5c 0%, #ef4444 100%);
    transform: scale(1.08) rotate(90deg);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.45);
}

.pain-svg {
    width: 10px;
    height: 10px;
    stroke: #FFFFFF;
    stroke-width: 3.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* Pain Grid Responsiveness */
@media (max-width: 1024px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(11, 35, 69, 0.8) 0%, rgba(6, 26, 51, 0.8) 100%);
    border: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-gold-glow);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.highlight-box p {
    font-size: 1.2rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Phase cards - The System section */
.phases-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 850px;
    margin: 0 auto;
}

.phase-card {
    background: var(--bg-primary);
    border: 1px solid rgba(245, 180, 75, 0.08);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-smooth);
}

@media (min-width: 1025px) {
    .phase-card {
        position: sticky;
    }
    .phase-card:nth-child(1) { top: 90px; z-index: 1; }
    .phase-card:nth-child(2) { top: 115px; z-index: 2; }
    .phase-card:nth-child(3) { top: 140px; z-index: 3; }
    .phase-card:nth-child(4) { top: 165px; z-index: 4; }
    .phase-card:nth-child(5) { top: 190px; z-index: 5; }
    .phase-card:nth-child(6) { top: 215px; z-index: 6; }
}

.phase-card:hover {
    transform: translateX(10px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
}

.phase-header {
    border-right: 1px solid var(--border-color-light);
    padding-right: 40px;
}

.phase-number {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 8px;
}

.phase-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-white);
}

.phase-chapters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
}

.chapter-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.chapter-bullet {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 999px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Section: Everything Inside Grid */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 70px;
}

.inside-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color-light);
    border-radius: 12px;
    padding: 32px;
    transition: var(--transition-smooth);
}

.inside-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
    box-shadow: var(--shadow-premium), 0 5px 15px rgba(245, 180, 75, 0.05);
}

.inside-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(245, 180, 75, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.inside-card h4 {
    font-size: 1.35rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.inside-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    max-width: 1050px;
    margin: 0 auto;
    box-shadow: var(--shadow-premium);
}

.stat-item {
    border-right: 1px solid var(--border-color-light);
}

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

.stat-num {
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

/* Section Bonus Styling */
.bonus-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.bonus-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.bonus-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 180, 75, 0.1);
    transition: var(--transition-smooth);
    z-index: 2;
    position: relative;
}

.bonus-mockup:hover .bonus-img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 180, 75, 0.18);
}

.bonus-content h3 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.bonus-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.bonus-value-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px 30px;
    margin-bottom: 36px;
    max-width: 440px;
}

.val-item {
    display: flex;
    flex-direction: column;
}

.val-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.val-amt {
    font-size: 1.5rem;
    font-weight: 700;
}

.val-amt.strike {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.val-amt.free {
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-weight: 800;
}

.val-separator {
    height: 40px;
    width: 1px;
    background: var(--border-color-light);
}

/* Section Testimonials */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(245, 180, 75, 0.05);
    border: 1px solid rgba(245, 180, 75, 0.2);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.testimonials-title {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
}

.testimonials-title span {
    color: var(--accent-gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #071326;
    border: 1px solid var(--border-color-light);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 180, 75, 0.25);
    box-shadow: var(--shadow-premium), 0 5px 20px rgba(245, 180, 75, 0.04);
}

.testimonial-card .stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.testimonial-card .quote-content {
    color: var(--text-white);
    font-size: 1.05rem;
    line-height: 1.65;
    font-style: italic;
    border-left: 2px solid rgba(245, 180, 75, 0.25);
    padding-left: 20px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.testimonial-card .author-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent-gold);
    color: #061A33;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.testimonial-card .author-info h4 {
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.2;
}

.testimonial-card .author-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.2;
}

/* Mid page CTA & Final CTA styling */
.cta-banner {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #05162b 100%);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-banner-badge {
    display: inline-block;
    background: rgba(245, 180, 75, 0.05);
    border: 1px solid rgba(245, 180, 75, 0.2);
    color: var(--accent-gold);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: var(--font-sans);
}

.cta-banner h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-banner p {
    max-width: 680px;
    margin: 0 auto 24px auto;
    font-size: 1.15rem;
}

/* FAQ Accordion Styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(245, 180, 75, 0.3);
}

.faq-question {
    padding: 24px 30px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 30px;
}

.faq-answer p {
    font-size: 1.02rem;
    color: var(--text-secondary);
    padding-bottom: 24px;
}

.faq-item.active {
    border-color: var(--border-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 250px; /* arbitrary height to slide down */
    padding: 0 30px;
}

/* Pricing block styling in Final CTA */
.final-pricing-box {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-pricing-wrap {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.final-price-reg {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.final-price-now {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.final-price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
footer {
    background: #041224;
    border-top: 1px solid var(--border-color-light);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 30px;
    opacity: 0.8;
}

.footer-text {
    font-size: 0.85rem;
    color: rgba(199, 210, 224, 0.5);
}

/* Popup Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 11, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--accent-gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), var(--shadow-gold-glow);
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-box {
    transform: translateY(0) scale(1);
}

/* Checkout modal — wider to fit embedded payment */
.modal-checkout-box {
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 180, 75, 0.2) var(--bg-primary);
}

.modal-checkout-box::-webkit-scrollbar {
    width: 6px;
}
.modal-checkout-box::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 10px;
}
.modal-checkout-box::-webkit-scrollbar-thumb {
    background: rgba(245, 180, 75, 0.25);
    border-radius: 10px;
}

#whop-checkout-container {
    margin-top: 20px;
    border-radius: 14px;
    min-height: 520px;
    background-color: #061A33;
    position: relative;
}

#whop-checkout-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--bg-secondary);
    z-index: 10;
    border-radius: 0 0 14px 14px;
}

#whop-checkout-container iframe,
#whop-checkout-container div {
    border-radius: 14px;
    background-color: #061A33 !important;
    width: 100% !important;
    min-height: 520px;
    color-scheme: dark;
}

.checkout-secure-note {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 16px;
    opacity: 0.7;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-badge {
    display: inline-block;
    background: rgba(245, 180, 75, 0.1);
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

/* Pricing Grid in Modal */
.modal-pricing-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-primary);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.modal-pricing-label {
    font-size: 1rem;
    font-weight: 600;
}

.modal-pricing-values {
    text-align: right;
}

.modal-price-reg {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-right: 8px;
}

.modal-price-now {
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1.5rem;
}

/* Timer Countdown Section */
.timer-container {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    margin-bottom: 28px;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}

.timer-clock {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: #EF4444;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

/* Email Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-input {
    background: var(--bg-primary);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(245, 180, 75, 0.15);
}

.form-error {
    color: #EF4444;
    font-size: 0.8rem;
    margin-top: 4px;
    display: none;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(6, 26, 51, 0.3);
    border-top: 3px solid #061A33;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success screen state */
.modal-success-screen {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
    display: block;
}

.modal-success-screen h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

/* Framer-Motion-like Scroll-triggered Animation classes (Vanilla JS intersection observer) */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: none;
}

/* Responsiveness adjustments (Mobile First & Tablet sizes) */

@media (max-width: 1024px) {
    .phase-card {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
    }
    .phase-header {
        border-right: none;
        border-bottom: 1px solid var(--border-color-light);
        padding-right: 0;
        padding-bottom: 20px;
    }
    .inside-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
        overflow: hidden;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-mockup {
        order: -1;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .subheadline {
        font-size: 1.15rem;
    }
    .hero-mockup:hover .img-cover-main {
        transform: translate(-10px, -4px) rotate(-1deg);
    }
    .hero-mockup:hover .img-cover-sub {
        transform: translate(20px, -6px) rotate(1.5deg);
    }
    .timeline-features-row {
        justify-content: center !important;
        gap: 16px 24px !important;
    }
    .timeline-flow {
        flex-direction: column;
        gap: 16px;
    }
    .timeline-flow::before {
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 80%;
        top: 10%;
    }
    .timeline-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
    .inside-grid {
        grid-template-columns: 1fr;
    }
    .phase-chapters-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .phase-title {
        font-size: 1.8rem;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 30px 20px;
    }
    .stat-item {
        border-right: none;
    }
    .stat-item:nth-child(odd) {
        border-right: 1px solid var(--border-color-light);
    }
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .bonus-mockup {
        order: 2;
    }
    .bonus-content {
        order: 1;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonials-title {
        font-size: 2.0rem;
    }
    .section-title {
        font-size: 2.0rem;
    }
    .highlight-box {
        padding: 30px 20px;
        margin: 30px auto 0 auto;
    }
    .highlight-box h3 {
        font-size: 1.4rem;
    }
    .highlight-box p {
        font-size: 1.05rem;
    }
    .cta-banner {
        padding: 40px 24px;
    }
    .cta-banner h2 {
        font-size: 2.2rem;
    }
    .final-price-now {
        font-size: 3.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .testimonials-title {
        font-size: 1.8rem;
    }
    .phase-title {
        font-size: 1.5rem;
    }
    .pain-card {
        padding: 16px 20px;
        gap: 12px;
    }
    .inside-card {
        padding: 20px;
    }
    .phase-card {
        padding: 24px 20px;
    }
    .stats-row {
        grid-template-columns: 1fr;
    }
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color-light);
        padding-top: 16px;
        padding-bottom: 16px;
    }
    .stat-item:first-child {
        padding-top: 0;
    }
    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .offer-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .offer-prices {
        text-align: left;
    }
    .modal-box {
        padding: 30px 20px;
    }
}

/* Legal Modal Styling */
.legal-modal-box {
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(245, 180, 75, 0.25);
    box-shadow: var(--shadow-premium), var(--shadow-gold-glow);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 180, 75, 0.2) var(--bg-primary);
}

.legal-modal-box::-webkit-scrollbar {
    width: 6px;
}
.legal-modal-box::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 10px;
}
.legal-modal-box::-webkit-scrollbar-thumb {
    background: rgba(245, 180, 75, 0.25);
    border-radius: 10px;
}
.legal-modal-box::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

.legal-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color-light);
    padding-bottom: 20px;
}

.legal-badge {
    display: inline-block;
    background: rgba(245, 180, 75, 0.05);
    border: 1px solid rgba(245, 180, 75, 0.3);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.legal-title {
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--text-white);
    margin-bottom: 6px;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

.legal-body {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.legal-section {
    background: rgba(6, 26, 51, 0.4);
    border: 1px solid var(--border-color-light);
    border-radius: 8px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.legal-section:hover {
    border-color: rgba(245, 180, 75, 0.15);
    background: rgba(6, 26, 51, 0.6);
}

.legal-section h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-section h4 span {
    color: var(--accent-gold);
    font-weight: 800;
}

.legal-section p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.legal-section li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 20px;
}

.legal-section li::before {
    content: "•";
    color: var(--accent-gold);
    position: absolute;
    left: 6px;
    top: 0;
    font-weight: 800;
}

@media (max-width: 480px) {
    .legal-modal-box {
        padding: 30px 20px;
        max-height: 90vh;
    }
    .legal-title {
        font-size: 1.6rem;
    }
    .legal-section {
        padding: 16px;
    }
}
