﻿/* ===================================
   GLOBAL STYLES & RESET
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-color: #1F4D2B;
    --primary-dark: #123C27;
    --primary-light: #2F6B3A;
    
    /* Accent Colors */
    --accent-green: #10B981;
    --accent-red: #EF4444;
    --accent-gold: #FFD700;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-900: #111827;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Center align all section content */
section {
    text-align: center;
}

section p,
section h1,
section h2,
section h3,
section h4,
section ul,
section div {
    text-align: center;
}

/* Flat Icon Styling */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.icon svg {
    width: 100%;
    height: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.section-title.center {
    text-align: center;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.subsection-title.center {
    text-align: center;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.lead-text.center {
    text-align: center;
}

.emphasis-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.emphasis-text.large {
    font-size: 1.5rem;
}

.emphasis-text.center {
    text-align: center;
}

.highlight {
    color: #FFD700;
    position: relative;
}

.warning-text {
    color: var(--accent-red);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reference {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-style: italic;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background-color: #FFD700;
    color: var(--gray-900);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(124, 45, 18, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(124, 45, 18, 0);
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, #1F4D2B 0%, #2F6B3A 100%);
    color: var(--white);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.trust-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 0;
}

.hero-feature svg {
    color: #FFD700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    min-width: 24px;
}

.hero-feature span {
    flex: 1;
    white-space: normal;
}

@media (max-width: 640px) {
    .hero-features {
        max-width: 100%;
    }
    
    .hero-feature {
        font-size: 0.95rem;
    }
}

.cta-container {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.hero-image {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.ebook-mockup {
    position: relative;
    max-width: 500px;
}

.ebook-cover {
    background: linear-gradient(135deg, #123C27 0%, #1F4D2B 100%);
    border: 8px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.ebook-badge {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: var(--accent-gold);
    color: var(--gray-900);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.ebook-image {
    width: auto;
    height: auto;
    max-width: 280px;
    max-height: 350px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.bonus-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 24px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bonus-icon {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: fit-content;
}

.bonus-icon svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ===================================
   PAIN & AGITATION SECTION
   =================================== */

.pain-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.pain-content {
    max-width: 900px;
    margin: 0 auto;
}

.pain-story {
    margin-top: 40px;
}

.pain-points {
    display: grid;
    gap: 20px;
    margin: 32px 0;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.pain-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-point p {
    font-size: 1.1rem;
    color: var(--gray-900);
    font-weight: 500;
    margin: 0;
}

.pain-narrative {
    margin-top: 32px;
}

.pain-narrative p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-box {
    background-color: var(--white);
    border-left: 4px solid;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: var(--shadow-md);
}

.highlight-box.danger {
    border-left-color: var(--accent-red);
    background-color: #FEF2F2;
}

.highlight-box.success {
    border-left-color: var(--accent-green);
    background-color: #F0FDF4;
}

.highlight-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.highlight-box p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.reality-check {
    margin-top: 48px;
}

.comparison-grid {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    background-color: var(--white);
}

.comparison-item.negative {
    border-left: 4px solid var(--accent-red);
}

.comparison-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.comparison-item p {
    margin: 0;
    font-size: 1.05rem;
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.solution-intro {
    max-width: 900px;
    margin: 0 auto 48px;
}

.benefits-grid {
    margin-top: 48px;
}

.benefits-grid .subsection-title {
    margin-bottom: 40px;
}

.benefits-grid > div:not(.subsection-title) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.benefit-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-100);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.author-destination {
    font-size: 0.875rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* ===================================
   WHAT'S INSIDE SECTION
   =================================== */

.whats-inside-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
}

.fascinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.fascination-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.fascination-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.fascination-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fascination-item p {
    margin: 0;
    line-height: 1.6;
}

.chapter-overview {
    max-width: 900px;
    margin: 48px auto 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.framework-preview {
    margin-top: 24px;
}

.framework-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 32px;
    text-align: center;
}

.framework-chapters {
    display: grid;
    gap: 16px;
}

.framework-chapter {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 20px 24px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.framework-chapter:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

.chapter-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.3;
    min-width: 50px;
    text-align: center;
}

.chapter-info {
    text-align: left;
}

.chapter-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    text-align: left;
}

.chapter-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
    text-align: left;
}

/* ===================================
   RESULTS / SOCIAL PROOF SECTION
   =================================== */

.results-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1F4D2B 0%, #2F6B3A 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.results-content {
    position: relative;
    z-index: 1;
}

.results-section .section-title {
    color: var(--white);
}

.results-section .lead-text {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.transformation-box {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 48px;
    margin-top: 48px;
}

.transformation-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 32px;
}

.transformation-grid {
    display: grid;
    gap: 24px;
}

.transformation-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--gray-50);
    border-radius: 10px;
}

.transform-before,
.transform-after {
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.5;
}

.transform-before {
    background-color: #FEF2F2;
    color: var(--accent-red);
    border: 2px solid rgba(239, 68, 68, 0.2);
    text-align: right;
}

.transform-after {
    background-color: #F0FDF4;
    color: var(--accent-green);
    border: 2px solid rgba(16, 185, 129, 0.2);
    text-align: left;
}

.transform-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* ===================================
   BONUSES SECTION
   =================================== */

.bonuses-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.bonuses-intro {
    max-width: 900px;
    margin: 0 auto 48px;
}

.bonus-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.bonus-summary-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.bonus-summary-card.highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.bonus-summary-card.highlight h3,
.bonus-summary-card.highlight p {
    color: var(--white);
}

.bonus-summary-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bonus-summary-card.highlight .bonus-summary-icon {
    color: var(--accent-gold);
}

.bonus-summary-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 12px;
}

.bonus-summary-card.highlight .bonus-summary-number {
    color: var(--accent-gold);
}

.bonus-summary-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.bonus-summary-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.bonuses-footer {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 2px solid var(--gray-200);
}

.bonuses-footer .emphasis-text {
    margin-bottom: 12px;
}

.bonuses-footer .lead-text {
    margin-bottom: 0;
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.value-stack {
    max-width: 800px;
    margin: 40px auto;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    border-bottom: 1px solid var(--gray-200);
    gap: 20px;
}

.value-item.main {
    background-color: var(--gray-50);
    font-weight: 600;
}

.value-name {
    flex: 1;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-name svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-name span {
    flex: 1;
}

.value-price {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1.125rem;
    white-space: nowrap;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background-color: var(--gray-900);
    color: var(--white);
    gap: 20px;
}

.value-total .value-name {
    font-size: 1.25rem;
}

.value-total .value-price {
    font-size: 1.5rem;
    color: var(--white);
}

.pricing-reveal {
    max-width: 900px;
    margin: 48px auto 0;
}

.pricing-narrative {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-narrative p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.strikethrough-price {
    text-decoration: line-through;
    color: var(--gray-600);
}

.scarcity-banner {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border: 2px solid var(--accent-red);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: subtle-pulse 2s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.scarcity-banner svg {
    color: var(--accent-red);
    flex-shrink: 0;
}

.scarcity-banner span {
    color: var(--gray-900);
    font-size: 1.05rem;
    line-height: 1.6;
}

.price-box {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border: 3px solid var(--primary-color);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    margin: 32px 0;
    box-shadow: var(--shadow-xl);
}

.price-not {
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-decoration: line-through;
}

.final-price {
    margin: 32px 0;
    padding: 32px;
    background-color: var(--primary-color);
    border-radius: 12px;
}

.price-label {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.price-savings {
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-top: 12px;
    font-weight: 600;
}

.price-explanation {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.value-promise {
    background-color: #F0FDF4;
    border: 2px solid var(--accent-green);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.value-promise svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.value-promise span {
    color: var(--gray-900);
    font-size: 1.05rem;
    line-height: 1.6;
    text-align: left;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.security-badges span {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-badges svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */

.guarantee-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-green);
}

.guarantee-badge {
    margin: 0 auto 24px;
    width: 60px;
    height: 60px;
}

.guarantee-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.guarantee-promise {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--accent-green) !important;
    margin: 24px 0 !important;
}

/* ===================================
   WHO IS THIS FOR SECTION
   =================================== */

.who-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.who-box {
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.who-box.perfect {
    background-color: #F0FDF4;
    border: 3px solid var(--accent-green);
}

.who-box.not-for {
    background-color: #FEF2F2;
    border: 3px solid var(--accent-red);
}

.who-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.who-box ul {
    list-style: none;
    padding: 0;
}

.who-box ul li {
    padding: 12px 0;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.who-box ul li:last-child {
    border-bottom: none;
}

/* ===================================
   OBJECTIONS SECTION
   =================================== */

.objections-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.objections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.objection-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.objection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.objection-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.objection-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.4;
}

.objection-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: var(--section-padding);
    background-color: var(--gray-50);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    line-height: 1.7;
    color: var(--gray-700);
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1F4D2B 0%, #2F6B3A 100%);
    color: var(--white);
}

.final-cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--white);
}

.urgency-text {
    font-size: 1.1rem;
    line-height: 2.2;
    margin-bottom: 32px;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 32px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.urgency-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.urgency-item strong {
    color: #FFD700;
}

.urgency-item svg {
    flex-shrink: 0;
    color: #FFD700;
    margin-top: 4px;
}

.decision-text {
    font-size: 1.35rem;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: var(--gray-900);
    color: var(--white);
    padding: 48px 0 32px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-ps {
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-ps p {
    line-height: 1.7;
    font-size: 1.05rem;
}

.footer-links {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    line-height: 1.6;
    margin-top: 16px !important;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .fascinations-grid {
        grid-template-columns: 1fr;
    }
    
    .who-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-large {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .value-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-badges {
        flex-direction: column;
        gap: 8px;
    }
    
    .final-cta-box h2 {
        font-size: 1.75rem;
    }
    
    .urgency-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    /* New responsive styles */
    .framework-chapter {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .chapter-number {
        font-size: 1.5rem;
        min-width: auto;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-box {
        padding: 24px;
    }
    
    .transformation-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .transform-before,
    .transform-after {
        text-align: center;
    }
    
    .transform-arrow {
        text-align: center;
        transform: rotate(90deg);
    }
    
    .bonus-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .ebook-cover {
        padding: 40px 24px;
    }
    
    .ebook-cover h3 {
        font-size: 2rem;
    }
    
    .bonus-icons {
        gap: 6px;
    }

    .bonus-icon {
        padding: 8px 9px;
        font-size: 0.78rem;
    }
    
    .guarantee-box,
    .price-box {
        padding: 24px;
    }
}

/* ===================================
   SMOOTH SCROLL
   =================================== */

html {
    scroll-behavior: smooth;
}

/* ===================================
   ACCESSIBILITY
   =================================== */

.btn:focus,
.faq-question:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ===================================
   CONVERSION UX REVAMP
   =================================== */

:root {
    --ink: #151515;
    --muted-ink: #52525B;
    --cream: #FFF8E7;
    --surface-warm: #FFFDF8;
    --line-soft: #E7E0D4;
    --success-soft: #EAF8EF;
    --warning-soft: #FFF2D7;
    --danger-soft: #FFF0EE;
    --blue-soft: #EAF3FF;
    --brand-brown: #1F4D2B;
    --brand-green: #15803D;
    --brand-gold: #F5C518;
    --brand-blue: #2563EB;
}

body {
    color: var(--ink);
    background: var(--surface-warm);
}

section p,
section h3,
section h4,
section ul,
section div {
    text-align: inherit;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--warning-soft);
    color: var(--brand-brown);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero {
    background: #1F4D2B;
    background-image: linear-gradient(135deg, #123C27 0%, #1F4D2B 48%, #14532D 100%);
    padding: 56px 0 72px;
}

.hero::before {
    background-image: linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
}

.hero-title {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0;
}

.hero-subtitle {
    max-width: 820px;
    font-size: 1.22rem;
}

.proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 760px;
    margin: 0 auto 32px;
}

.proof-strip div {
    display: grid;
    gap: 4px;
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
}

.proof-strip strong {
    color: #FFE08A;
    font-size: 1.7rem;
    line-height: 1;
}

.proof-strip span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 740px;
    gap: 12px;
}

.hero-feature {
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(255,255,255,0.11);
}

.hero-feature svg,
.bonus-icon svg,
.security-badges svg,
.value-name svg,
.value-promise svg,
.urgency-item svg {
    stroke-width: 2.5;
}

.ebook-cover {
    border-radius: 8px;
    background: #231815;
    border: 1px solid rgba(255,255,255,0.24);
}

.pain-story,
.solution-intro,
.results-content,
.bonuses-intro,
.pricing-narrative,
.footer-content {
    text-align: left;
}

.pain-content > .section-title,
.solution-content > .section-title,
.results-section .section-title,
.bonuses-intro,
.pricing-section > .container > .section-title,
.faq-section .section-title,
.who-section .section-title,
.objections-section .section-title,
.final-cta-box,
.testimonials-section {
    text-align: center;
}

.pain-point,
.benefit-card,
.fascination-item,
.bonus-summary-card,
.stat-card,
.objection-card,
.who-box,
.faq-item,
.value-item,
.transformation-item {
    border-radius: 8px;
}

.pain-icon,
.benefit-icon,
.fascination-icon,
.bonus-summary-icon,
.objection-icon,
.guarantee-badge,
.comparison-icon {
    border-radius: 8px;
    background: var(--warning-soft);
    color: var(--brand-brown);
    box-shadow: inset 0 0 0 1px rgba(124, 45, 18, 0.11);
}

.pain-icon,
.benefit-icon,
.bonus-summary-icon,
.objection-icon {
    width: 64px;
    height: 64px;
    padding: 14px;
}

.fascination-icon,
.comparison-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
}

.benefit-card:nth-child(2) .benefit-icon,
.fascination-item:nth-child(2) .fascination-icon,
.bonus-summary-card:nth-child(2) .bonus-summary-icon,
.objection-card:nth-child(2) .objection-icon {
    background: var(--blue-soft);
    color: var(--brand-blue);
}

.benefit-card:nth-child(3) .benefit-icon,
.fascination-item:nth-child(3) .fascination-icon,
.bonus-summary-card:nth-child(3) .bonus-summary-icon,
.objection-card:nth-child(3) .objection-icon {
    background: var(--success-soft);
    color: var(--brand-green);
}

.benefit-card:nth-child(4) .benefit-icon,
.fascination-item:nth-child(4) .fascination-icon,
.bonus-summary-card:nth-child(4) .bonus-summary-icon,
.objection-card:nth-child(4) .objection-icon {
    background: var(--danger-soft);
    color: #B42318;
}

.benefit-card,
.testimonial-card,
.bonus-summary-card,
.objection-card,
.value-stack,
.price-box,
.guarantee-box,
.who-box,
.faq-item,
.chapter-overview,
.transformation-box {
    border: 1px solid var(--line-soft);
    box-shadow: 0 18px 45px rgba(42, 32, 20, 0.08);
}

.benefit-card p,
.fascination-item p,
.objection-card p,
.faq-answer p,
.who-box li,
.comparison-item p,
.value-name,
.value-promise span {
    text-align: left;
}

.testimonials-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8E7 100%);
    overflow: hidden;
}

.testimonials-section .lead-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
}

.testimonial-viewport {
    overflow: hidden;
    padding: 8px 2px 18px;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 28px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(52, 38, 18, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-4px);
}

.testimonial-rating {
    justify-content: flex-start;
    color: var(--brand-gold);
    font-size: 1.05rem;
    letter-spacing: 0;
}

.testimonial-text {
    flex: 1;
    color: #3F3F46;
    text-align: left;
}

.testimonial-author {
    justify-content: flex-start;
    text-align: left;
}

.author-avatar {
    border-radius: 8px;
    background: #14532D;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    background: #FFFFFF;
    color: var(--brand-brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(42, 32, 20, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    background: var(--warning-soft);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #D6CAB8;
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.carousel-dot.active {
    width: 26px;
    background: var(--brand-brown);
}

.price-box {
    background: #FFFDF8;
}

.final-price {
    border-radius: 8px;
    background: linear-gradient(135deg, #1F4D2B 0%, #14532D 100%);
}

.security-badges span {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
}

.pricing-section .security-badges span {
    color: var(--ink);
    background: var(--success-soft);
}

.final-cta-section {
    background: linear-gradient(135deg, #14532D 0%, #1F4D2B 100%);
}

@media (max-width: 980px) {
    .testimonial-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .proof-strip,
    .hero-features {
        grid-template-columns: 1fr;
    }

    .testimonial-carousel {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .testimonial-viewport {
        order: 1;
    }

    .carousel-btn {
        position: relative;
        z-index: 2;
    }

    .carousel-btn-prev {
        order: 2;
        justify-self: start;
        margin-left: calc(50% - 56px);
    }

    .carousel-btn-next {
        order: 3;
        justify-self: end;
        margin-right: calc(50% - 56px);
        margin-top: -60px;
    }

    .testimonial-card {
        flex-basis: 100%;
        min-height: auto;
    }

    .price-box,
    .chapter-overview,
    .transformation-box,
    .guarantee-box {
        padding: 28px 20px;
    }
}
/* Spacing adjustment requested for the second-screen solution CTA */
.solution-section .cta-container {
    margin-top: 72px;
}

.solution-section .benefits-grid {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .solution-section .cta-container {
        margin-top: 48px;
    }
}
/* Final CTA full redesign */
.final-cta-section {
    padding: 88px 0;
    background: #123C27;
    background-image: linear-gradient(135deg, #123C27 0%, #315125 48%, #1F4D2B 100%);
    color: #FFFFFF;
    overflow: hidden;
}

.final-cta-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    gap: 42px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.final-cta-copy {
    text-align: left;
}

.final-cta-copy .section-kicker {
    background: rgba(255, 224, 138, 0.16);
    color: #FFE08A;
    border: 1px solid rgba(255, 224, 138, 0.24);
}

.final-cta-copy h2 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #FFFFFF;
    font-size: clamp(2.15rem, 4vw, 4.6rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
    text-align: left;
}

.final-cta-lead {
    max-width: 700px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.14rem;
    line-height: 1.75;
    text-align: left;
}

.final-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.final-benefit-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(10px);
    text-align: left;
}

.final-benefit-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    background: #FFF2D7;
    color: #1F4D2B;
}

.final-benefit-icon.blue {
    background: #EAF3FF;
    color: #2563EB;
}

.final-benefit-icon.green {
    background: #EAF8EF;
    color: #15803D;
}

.final-benefit-icon.red {
    background: #FFF0EE;
    color: #B42318;
}

.final-benefit-icon svg,
.final-trust-list svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.final-benefit-item strong {
    display: block;
    margin-bottom: 5px;
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.25;
}

.final-benefit-item span:not(.final-benefit-icon) {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.55;
}

.final-offer-panel {
    padding: 32px;
    border-radius: 8px;
    background: #FFFDF8;
    color: #151515;
    box-shadow: 0 26px 70px rgba(20, 20, 20, 0.24);
    border: 1px solid rgba(255, 224, 138, 0.45);
    text-align: center;
}

.offer-label {
    margin: 0 0 8px;
    color: #1F4D2B;
    font-weight: 900;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.offer-price {
    color: #111827;
    font-size: clamp(3rem, 6vw, 4.6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.offer-subcopy {
    max-width: 310px;
    margin: 0 auto 28px;
    color: #52525B;
    font-size: 1rem;
    line-height: 1.6;
}

.final-offer-panel .btn {
    width: 100%;
    margin-bottom: 22px;
}

.final-trust-list {
    display: grid;
    gap: 10px;
    text-align: left;
}

.final-trust-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    padding: 9px 11px;
    border-radius: 8px;
    background: #F4F7F2;
    color: #253329;
    font-weight: 750;
    font-size: 0.95rem;
}

.final-trust-list svg {
    width: 20px;
    height: 20px;
    color: #15803D;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .final-cta-layout {
        grid-template-columns: 1fr;
    }

    .final-cta-copy h2,
    .final-cta-lead,
    .final-cta-copy {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .final-benefit-grid {
        grid-template-columns: 1fr;
    }

    .final-offer-panel {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .final-cta-section {
        padding: 60px 0;
    }

    .final-benefit-item {
        grid-template-columns: 46px 1fr;
        padding: 15px;
    }

    .final-benefit-icon {
        width: 46px;
        height: 46px;
        padding: 10px;
    }

    .final-offer-panel {
        padding: 24px 18px;
    }
}
/* Final CTA single-column revision */
.final-cta-layout {
    grid-template-columns: 1fr;
    max-width: 940px;
    gap: 34px;
}

.final-cta-copy,
.final-cta-copy h2,
.final-cta-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.final-benefit-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
}

.final-benefit-item {
    grid-template-columns: 58px 1fr;
    align-items: center;
    padding: 18px 22px;
}

.final-offer-panel {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

.final-trust-list {
    max-width: 420px;
    margin: 0 auto;
}
/* Wider offer panel with inline trust row */
.final-offer-panel {
    max-width: 900px;
    padding: 42px 48px;
}

.final-trust-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 12px;
}

.final-trust-list span {
    justify-content: center;
    min-height: 52px;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .final-offer-panel {
        padding: 28px 20px;
    }

    .final-trust-list {
        grid-template-columns: 1fr;
    }

    .final-trust-list span {
        justify-content: flex-start;
        white-space: normal;
    }
}
/* Green brand theme refinement */
:root {
    --primary-color: #1F4D2B;
    --primary-dark: #123C27;
    --primary-light: #2F6B3A;
    --brand-brown: #1F4D2B;
    --brand-green: #15803D;
    --brand-gold: #FFD84D;
}

.hero,
.final-cta-section {
    background: #1F4D2B;
    background-image: linear-gradient(135deg, #123C27 0%, #1F4D2B 52%, #3D4A22 100%);
}

.ebook-cover {
    background: linear-gradient(135deg, #123C27 0%, #1F4D2B 100%);
}

.final-price {
    background: linear-gradient(135deg, #123C27 0%, #1F4D2B 100%);
}

.final-benefit-icon,
.pain-icon,
.benefit-icon,
.fascination-icon,
.bonus-summary-icon,
.objection-icon,
.guarantee-badge,
.comparison-icon {
    color: #1F4D2B;
}

.final-benefit-icon {
    background: #F2F7EA;
}

.final-cta-copy .section-kicker,
.section-kicker {
    color: #173E24;
}

.final-cta-copy .section-kicker {
    color: #FFE08A;
}

.carousel-btn {
    color: #1F4D2B;
}

.carousel-dot.active {
    background: #1F4D2B;
}

.offer-label {
    color: #1F4D2B;
}
/* Results section redesign */
.results-section {
    padding: 88px 0;
    background: #F4F7F2;
    color: #151515;
}

.results-section::before {
    display: none;
}

.results-header {
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.results-section .section-title {
    color: #111827;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.results-section .lead-text {
    color: #4B5563;
    max-width: 900px;
    margin: 0 auto;
}

.results-section .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto 42px;
}

.results-section .stat-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #DDE6D8;
    box-shadow: 0 18px 42px rgba(18, 60, 39, 0.08);
    text-align: left;
}

.results-section .stat-card:hover {
    transform: translateY(-4px);
    background: #FFFFFF;
    border-color: #BFD1B8;
}

.stat-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    border-radius: 8px;
    background: #F2F7EA;
    color: #1F4D2B;
}

.stat-icon.blue {
    background: #EAF3FF;
    color: #2563EB;
}

.stat-icon.green {
    background: #EAF8EF;
    color: #15803D;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.results-section .stat-number {
    color: #1F4D2B;
    font-size: 3.15rem;
    margin-bottom: 4px;
}

.results-section .stat-label {
    color: #111827;
    font-size: 1.15rem;
    margin-bottom: 7px;
}

.results-section .stat-card p {
    color: #5B645E;
    margin: 0;
    text-align: left;
}

.results-section .transformation-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px;
    background: #FFFFFF;
    border: 1px solid #DDE6D8;
    box-shadow: 0 22px 55px rgba(18, 60, 39, 0.09);
}

.transformation-heading {
    text-align: center;
    margin-bottom: 26px;
}

.results-section .transformation-box h3 {
    margin: 8px 0 0;
    color: #111827;
    font-size: 1.9rem;
}

.results-section .transformation-grid {
    gap: 14px;
}

.results-section .transformation-item {
    grid-template-columns: 1fr 46px 1fr;
    gap: 14px;
    padding: 14px;
    background: #F7FAF5;
    border: 1px solid #E1E8DC;
}

.results-section .transform-before,
.results-section .transform-after {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border: 0;
    font-size: 0.98rem;
    text-align: left;
}

.results-section .transform-before {
    background: #FFF4EF;
    color: #7A2C16;
}

.results-section .transform-after {
    background: #EAF8EF;
    color: #14532D;
}

.results-section .transform-before span,
.results-section .transform-after span {
    display: block;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    opacity: 0.75;
}

.results-section .transform-arrow {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #1F4D2B;
    color: #FFFFFF;
    font-size: 1.2rem;
    justify-self: center;
}

@media (max-width: 980px) {
    .results-section .stats-grid {
        grid-template-columns: 1fr;
        max-width: 760px;
    }
}

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

    .results-section .stat-card {
        grid-template-columns: 58px 1fr;
        padding: 18px;
    }

    .stat-icon {
        width: 58px;
        height: 58px;
        padding: 14px;
    }

    .results-section .transformation-box {
        padding: 22px 16px;
    }

    .results-section .transformation-item {
        grid-template-columns: 1fr;
    }

    .results-section .transform-before,
    .results-section .transform-after {
        text-align: center;
    }

    .results-section .transform-arrow {
        transform: rotate(90deg);
    }
}
/* Fix oversized results stat icons */
.results-section .stat-icon {
    flex: 0 0 72px;
    overflow: hidden;
}

.results-section .stat-icon svg {
    display: block;
    width: 38px !important;
    height: 38px !important;
    max-width: 38px;
    max-height: 38px;
    flex: 0 0 38px;
    fill: none !important;
    stroke: currentColor !important;
}

@media (max-width: 700px) {
    .results-section .stat-icon {
        flex-basis: 58px;
    }

    .results-section .stat-icon svg {
        width: 30px !important;
        height: 30px !important;
        max-width: 30px;
        max-height: 30px;
    }
}
/* Social proof purchase notification */
.social-proof-toast {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1200;
    width: min(380px, calc(100vw - 32px));
    display: grid;
    grid-template-columns: 46px 1fr 30px;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid #DDE6D8;
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.98);
    color: #111827;
    box-shadow: 0 22px 60px rgba(18, 60, 39, 0.22);
    transform: translateY(22px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-proof-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.social-proof-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #EAF8EF;
    color: #15803D;
}

.social-proof-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-proof-copy {
    min-width: 0;
    text-align: left;
}

.social-proof-title {
    margin: 0 0 4px;
    color: #111827;
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 800;
    text-align: left;
}

.social-proof-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    color: #5B645E;
    font-size: 0.78rem;
    line-height: 1.2;
    text-align: left;
}

.social-proof-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #F4F7F2;
    white-space: nowrap;
}

.social-proof-close {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #6B7280;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.social-proof-close:hover {
    background: #F4F7F2;
    color: #111827;
}

@media (max-width: 768px) {
    .social-proof-toast {
        right: 16px;
        bottom: 88px;
        grid-template-columns: 42px 1fr 28px;
        padding: 12px;
    }

    .social-proof-icon {
        width: 42px;
        height: 42px;
    }

    .social-proof-title {
        font-size: 0.88rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-proof-toast {
        transition: none;
    }
}
/* Smaller left-aligned social proof notification */
.social-proof-toast {
    left: 22px;
    right: auto;
    bottom: 22px;
    width: min(315px, calc(100vw - 32px));
    grid-template-columns: 38px 1fr 24px;
    gap: 10px;
    padding: 10px 11px;
}

.social-proof-icon {
    width: 38px;
    height: 38px;
    padding: 9px;
}

.social-proof-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.social-proof-title {
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.35;
}

.social-proof-meta {
    font-size: 0.72rem;
}

.social-proof-meta span {
    min-height: 18px;
    padding: 3px 7px;
}

.social-proof-close {
    width: 22px;
    height: 22px;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .social-proof-toast {
        left: 14px;
        right: auto;
        bottom: 86px;
        width: min(305px, calc(100vw - 28px));
        grid-template-columns: 36px 1fr 22px;
    }

    .social-proof-icon {
        width: 36px;
        height: 36px;
    }
}

