/* ===================================
   LoveToRead.AI Landing Page Styles
   =================================== */

/* CSS Variables */
:root {
    --primary-green: #2e7d32;
    --primary-green-light: #4caf50;
    --primary-green-lighter: #66bb6a;
    --primary-green-dark: #1b5e20;
    --accent-green: #81c784;
    --bg-green-light: #e8f5e9;
    --bg-green-lighter: #f1f8e9;
    
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    
    --white: #ffffff;
    --off-white: #fafafa;
    --border-light: #e0e0e0;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container Utilities */
.container-large {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-medium {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn-primary-large,
.btn-secondary-large,
.btn-primary,
.btn-cta-primary {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary-large,
.btn-primary,
.btn-cta-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover,
.btn-primary:hover,
.btn-cta-primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary-large,
.btn-cta-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary-large:hover,
.btn-cta-secondary:hover {
    background: var(--bg-green-light);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-main {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--bg-green-lighter) 0%, var(--bg-green-light) 100%);
    overflow: hidden;
}

/* Snowflake animation for hero section - Multiple Snowflakes */
.hero-main::before,
.hero-main::after {
    content: '❄️';
    position: absolute;
    top: 0;
    font-size: 100px;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
    opacity: 0; /* Start invisible, animation controls opacity */
}

/* First snowflake - left side */
.hero-main::before {
    left: 15%;
    font-size: 80px;
    animation: snowfall1 12s linear infinite;
}

/* Second snowflake - right side */
.hero-main::after {
    left: 75%;
    font-size: 120px;
    animation: snowfall2 15s linear infinite 3s;
}

/* Additional snowflakes using background animation element */
.hero-background-animation::before,
.hero-background-animation::after {
    content: '❄️';
    position: absolute;
    top: 0;
    font-size: 100px;
    will-change: transform;
    pointer-events: none;
    z-index: 1;
    opacity: 0; /* Start invisible, animation controls opacity */
}

/* Third snowflake - center-left */
.hero-background-animation::before {
    left: 35%;
    font-size: 90px;
    animation: snowfall3 18s linear infinite 6s;
}

/* Fourth snowflake - center-right */
.hero-background-animation::after {
    left: 60%;
    font-size: 110px;
    animation: snowfall4 14s linear infinite 9s;
}

/* Different snowfall animations for variety */
@keyframes snowfall1 {
    0% { transform: translateY(-200px) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.1; }
    95% { opacity: 0.1; }
    100% { transform: translateY(100vh) translateX(20px) rotate(360deg); opacity: 0; }
}

@keyframes snowfall2 {
    0% { transform: translateY(-200px) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.08; }
    95% { opacity: 0.08; }
    100% { transform: translateY(100vh) translateX(-30px) rotate(-360deg); opacity: 0; }
}

@keyframes snowfall3 {
    0% { transform: translateY(-200px) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.1; }
    95% { opacity: 0.1; }
    100% { transform: translateY(100vh) translateX(15px) rotate(360deg); opacity: 0; }
}

@keyframes snowfall4 {
    0% { transform: translateY(-200px) translateX(0) rotate(0deg); opacity: 0; }
    5% { opacity: 0.09; }
    95% { opacity: 0.09; }
    100% { transform: translateY(100vh) translateX(-20px) rotate(-360deg); opacity: 0; }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero-main::before,
    .hero-main::after,
    .hero-background-animation::before,
    .hero-background-animation::after {
        animation: none;
    }
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
    background: 
        radial-gradient(circle at 20% 50%, var(--accent-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--primary-green-light) 0%, transparent 50%);
    pointer-events: none;
}

.hero-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-primary {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

/* Hero Badge - Enhanced & Animated */
.santa-badge,
.gift-badge {
    position: relative;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
    color: var(--primary-green);
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
    overflow: hidden;
    border: 2px solid transparent;
    text-decoration: none;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(46, 125, 50, 0.25), 0 0 20px rgba(46, 125, 50, 0.1);
    }
}

/* Animated gradient border effect */
.santa-badge::before,
.gift-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        var(--primary-green),
        var(--primary-green-light),
        var(--accent-green),
        var(--primary-green-lighter),
        var(--primary-green),
        var(--primary-green-light)
    );
    background-size: 400% 400%;
    border-radius: 50px;
    z-index: -1;
    animation: gradientShift 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.santa-badge::after,
.gift-badge::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
    border-radius: 50px;
    z-index: -1;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Shimmer effect on hover */
.santa-badge:hover::before,
.gift-badge:hover::before {
    opacity: 1;
}

.santa-badge:hover,
.gift-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.25);
}

.santa-badge:active,
.gift-badge:active {
    transform: translateY(0);
}

.badge-icon,
.badge-sparkle {
    font-size: 18px;
    animation: float 2s ease-in-out infinite;
}

.badge-sparkle {
    animation-delay: 1s;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2) rotate(180deg);
    }
}

.badge-text {
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-arrow {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    transition: transform 0.3s ease;
    display: inline-block;
}

.santa-badge:hover .badge-arrow,
.gift-badge:hover .badge-arrow {
    transform: translateX(4px);
}



.hero-headline {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-headline-highlight {
    color: var(--primary-green);
    position: relative;
}

.hero-description {
    font-size: 22px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.btn-arrow {
    font-size: 0.85em;
    margin-left: 6px;
    transition: transform 0.25s ease;
}

.btn-secondary-large:hover .btn-arrow {
    transform: translateX(3px);
}

.hero-trust-line {
    list-style: none;
    padding: 0;
    margin: 0 0 48px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    align-items: center;
}

.hero-trust-line li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.01em;
}

.hero-trust-line li i {
    font-size: 11px;
    color: var(--primary-green);
    background: rgba(46, 125, 50, 0.10);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-trust-line {
        justify-content: center;
        gap: 8px 16px;
        margin-bottom: 32px;
    }

    .hero-trust-line li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-trust-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
}

.proof-item {
    display: flex;
    flex-direction: column;
}

.proof-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 14px;
    color: var(--text-light);
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    background: var(--primary-green-light);
    border-radius: 6px;
}

.floating-feature {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
    z-index: 2; /* Add this to keep them above the image */
}

.feature-1 {
    top: 8%;
    right: 8%;  /* Changed from -10% */
    animation-delay: 0s;
}

.feature-2 {
    top: 45%;
    left: 8%;  /* Changed from -15% */
    animation-delay: 1s;
}

.feature-3 {
    bottom: 12%;
    right: 8%;  /* Changed from -5% */
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   SOCIAL PROOF TICKER
   =================================== */

.social-proof-ticker {
    background: var(--primary-green);
    color: var(--white);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    padding: 0 48px;
    font-size: 16px;
}

.ticker-separator {
    color: var(--accent-green);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   PROBLEM/SOLUTION SECTION
   =================================== */

.problem-solution {
    padding: 100px 0;
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.comparison-column {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.solution-column {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border: 2px solid var(--primary-green-light);
    position: relative;
}

.comparison-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-light);
}

.comparison-header.highlight {
    border-bottom-color: var(--primary-green-light);
    position: relative;
}

.header-badge {
    position: absolute;
    top: -30px;
    right: -25px;
    background: var(--primary-green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.comparison-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comparison-item {
    display: flex;
    gap: 16px;
}

.item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}

.comparison-item.negative .item-icon {
    background: #ef5350;
}

.comparison-item.positive .item-icon {
    background: var(--primary-green-light);
}

.item-icon::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.comparison-item.negative .item-icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.item-content strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.item-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.5;
}

/* ===================================
   PROCESS FLOW SECTION
   =================================== */

.process-flow {
    padding: 100px 0;
    background: var(--off-white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-visual {
    position: relative;
}

.step-visual img {
    width: 80%;
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-details {
    padding: 20px 0;
}

.step-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-description {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.step-example {
    background: var(--bg-green-light);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-green);
    font-size: 15px;
    color: var(--text-medium);
    margin-top: 24px;
}

.step-example strong {
    color: var(--primary-green);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.feature-pill {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--primary-green-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 500;
}

.step-actions {
    margin-top: 32px;
}

.process-connector {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-green-light), transparent);
    margin: 0 auto;
    width: 80%;
    opacity: 0.3;
}

/* ===================================
   INTERACTIVE DEMO SECTION
   =================================== */

.interactive-demo {
    padding: 100px 0;
    background: var(--white);
}

.demo-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    background: var(--off-white);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.demo-book-viewer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.book-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius-md);
}

.control-group {
    display: flex;
    flex-direction: column;
}

.book-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.book-meta {
    font-size: 14px;
    color: var(--text-light);
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.control-btn {
    padding: 8px 16px;
    background: var(--primary-green-light);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.control-btn:hover {
    background: var(--primary-green);
}

.page-indicator {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 500;
}

.book-page-display {
    background: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.page-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-text {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-paragraph {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.spelling-word {
    color: var(--primary-green);
    font-weight: 600;
    background: var(--bg-green-light);
    padding: 2px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.spelling-word:hover {
    background: var(--primary-green-light);
    color: var(--white);
}

.book-features-showcase {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--bg-green-light);
    border-radius: var(--border-radius-md);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-medium);
}

.showcase-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Demo Customization Panel */
.demo-customization-panel {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.panel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.demo-input,
.demo-select {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    transition: var(--transition-fast);
}

.demo-input:focus,
.demo-select:focus {
    outline: none;
    border-color: var(--primary-green-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.demo-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: -8px;
}

/* ===================================
   FEATURES BENEFITS SECTION
   =================================== */

.features-benefits {
    padding: 100px 0;
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green-light);
}

.benefit-card.featured {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 48px;
}

.benefit-card.featured .benefit-title,
.benefit-card.featured .benefit-description,
.benefit-card.featured .benefit-list {
    color: var(--white);
}

.benefit-icon,
.benefit-icon-large {
    margin-bottom: 20px;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-icon-large img {
    width: 80px;
    height: 80px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-list li {
    font-size: 15px;
    color: var(--text-medium);
    padding-left: 24px;
    position: relative;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.benefit-card.featured .benefit-list li::before {
    color: var(--accent-green);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-showcase {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
    background: var(--bg-green-light);
    border-color: var(--primary-green-light);
}

.testimonial-rating {
    color: #ffa726;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   USE CASES SECTION
   =================================== */

.use-cases {
    padding: 100px 0;
    background: var(--off-white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.use-case-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.use-case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.05);
}

.use-case-content {
    padding: 32px;
}

.use-case-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.use-case-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 20px;
}

.use-case-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.use-case-bullets li {
    font-size: 15px;
    color: var(--text-medium);
    padding-left: 24px;
    position: relative;
}

.use-case-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active {
    background: var(--bg-green-light);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(46, 125, 50, 0.05);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding-right: 20px;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-green);
    font-weight: 300;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px 24px;
    display: none;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-preview {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border-color: var(--primary-green);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-light);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-medium);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.feature-included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.pricing-button {
    width: 100%;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.pricing-button.primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.pricing-button.primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-button.secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.pricing-button.secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.pricing-guarantee {
    text-align: center;
    padding: 32px;
    background: var(--bg-green-light);
    border-radius: var(--border-radius-md);
}

.pricing-guarantee p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   IMPACT STATS SECTION
   =================================== */

.impact-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
}

.impact-stats .section-title-large {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
    display: block;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 12px;
    display: block;
}

.stat-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */

.final-cta {
    padding: 100px 0;
    background: var(--off-white);
}

.cta-box {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border-radius: var(--border-radius-xl);
    padding: 80px 60px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-green-light);
}

.cta-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-subheadline {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features-inline {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.inline-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.check-icon {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.cta-actions-large {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-testimonial-snippet {
    background: var(--white);
    padding: 24px 32px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--primary-green);
    max-width: 600px;
    margin: 0 auto;
}

.cta-testimonial-snippet p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cta-testimonial-snippet span {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

/* ===================================
   COMIC BOOK CALLOUT
   =================================== */

.comic-callout {
    padding: 48px 24px;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0f9ff 100%);
    border-top: 1px solid #e5e7eb;
}

.comic-callout-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.comic-callout-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.comic-callout-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 10px;
}

.comic-callout-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 20px;
}

.comic-callout-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-green);
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.comic-callout-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.comic-callout-btn span {
    transition: transform 0.2s ease;
}

.comic-callout-btn:hover span {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .comic-callout {
        padding: 36px 20px;
    }

    .comic-callout-title {
        font-size: 20px;
    }

    .comic-callout-desc {
        font-size: 14px;
    }
}

/* ===================================
   FOOTER
   =================================== */

.footer-main {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    margin-bottom: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-green-light);
}

.footer-sister-row {
    text-align: center;
    padding-bottom: 32px;
    margin-bottom: 0;
}

.footer-sister-link {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-sister-link strong {
    color: rgba(255, 255, 255, 0.85);
}

.footer-sister-link:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-green-light);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--primary-green-light);
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */

@media (max-width: 1024px) {
    .section-title-large {
        font-size: 40px;
    }

    .hero-headline {
        font-size: 52px;
    }

    .hero-wrapper {
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-card.featured {
        grid-column: span 2;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section-header-center {
        margin-bottom: 48px;
    }
    
.step-visual img {
    width: 100%;
}
    .section-title-large {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    /* Hero Mobile */
    .hero-main {
        padding: 80px 0 60px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-headline {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* Hero Badge Mobile */
    .santa-badge,
    .gift-badge {
        padding: 10px 20px;
        font-size: 14px;
    }

    .badge-icon,
    .badge-sparkle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        text-align: center;
    }

    .hero-proof {
        flex-wrap: wrap;
        justify-content: center;
    }

    .proof-divider {
        display: none;
    }

    .floating-feature {
        position: static;
        margin-bottom: 12px;
    }

    .feature-1,
    .feature-2,
    .feature-3 {
        animation: none;
    }

    /* Problem/Solution Mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Process Flow Mobile */
    .process-step,
    .process-step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 32px;
        padding: 40px 0;
    }

    .step-title {
        font-size: 28px;
    }

    .step-description {
        font-size: 16px;
    }

    /* Demo Mobile */
    .demo-container {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .page-content {
        grid-template-columns: 1fr;
    }

    .page-text {
        padding: 24px;
    }

    .book-controls {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .control-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .book-features-showcase {
        flex-direction: column;
        gap: 12px;
    }

    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card.featured {
        grid-column: span 1;
        padding: 32px;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Use Cases Mobile */
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* CTA Mobile */
    .cta-box {
        padding: 48px 32px;
    }

    .cta-headline {
        font-size: 32px;
    }

    .cta-subheadline {
        font-size: 18px;
    }

    .cta-features-inline {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .cta-actions-large {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container-large,
    .container-medium {
        padding: 0 16px;
    }

    .section-title-large {
        font-size: 28px;
    }

    .hero-headline {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Hero Badge Small Mobile */
    .santa-badge,
    .gift-badge {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .badge-icon,
    .badge-sparkle {
        font-size: 15px;
    }

    .proof-number {
        font-size: 24px;
    }

    .proof-label {
        font-size: 12px;
    }

    .step-title {
        font-size: 24px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .cta-headline {
        font-size: 28px;
    }

    .btn-primary-large,
    .btn-secondary-large,
    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 24px 20px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount {
        font-size: 48px;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Smooth Scroll */
html {
    scroll-padding-top: 80px;
}

/* Print Styles */
@media print {
    .hero-background-animation,
    .floating-feature,
    .social-proof-ticker,
    .cta-actions-large,
    footer {
        display: none;
    }
}

/* ===================================
   COMMUNITY STORIES SECTION
   =================================== */

.community-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-green-lighter) 0%, var(--bg-green-light) 100%);
}

.community-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.community-loading p {
    font-size: 16px;
    color: var(--text-medium);
}

.community-empty {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: var(--text-medium);
}

.community-stories .section-eyebrow {
    color: var(--primary-green);
}

.community-stories .section-title-large {
    color: var(--text-dark);
}

.community-stories .section-subtitle {
    color: var(--text-medium);
}

.stories-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 8px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.carousel-nav:hover:not(:disabled) {
    background: var(--primary-green);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.carousel-nav:disabled {
    cursor: not-allowed;
    border-color: var(--border-light);
    color: var(--text-light);
}

.carousel-nav.prev {
    order: -1;
}

.carousel-nav.next {
    order: 1;
}

/* Community Story Card */
.community-story-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.community-story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.story-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.story-card-cover {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-green-light);
}

.story-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.community-story-card:hover .story-card-cover img {
    transform: scale(1.05);
}

.story-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.community-story-card:hover .story-card-overlay {
    opacity: 1;
}

.read-story-btn {
    background: var(--white);
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(10px);
    transition: transform var(--transition-normal);
}

.community-story-card:hover .read-story-btn {
    transform: translateY(0);
}

.story-card-info {
    padding: 16px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.story-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
    height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.story-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-medium);
    white-space: nowrap;
}

.meta-item i {
    color: var(--primary-green);
    font-size: 12px;
}

.story-card-author {
    font-size: 13px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.story-card-author i {
    font-size: 11px;
    flex-shrink: 0;
}

.community-cta {
    text-align: center;
    margin-top: 32px;
}

/* Responsive Adjustments */
@media (max-width: 1280px) {
    .community-story-card {
        min-width: 260px;
        max-width: 260px;
    }
}

@media (max-width: 1024px) {
    .community-story-card {
        min-width: 240px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .community-stories {
        padding: 60px 0;
    }

    .stories-carousel {
        gap: 12px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .carousel-track {
        gap: 12px;
    }

    .community-story-card {
        min-width: 200px;
        max-width: 200px;
    }

    .story-card-info {
        padding: 14px;
        min-height: 110px;
    }

    .story-card-title {
        font-size: 15px;
        height: 40px;
    }

    .story-card-cover {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .carousel-nav {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .stories-carousel {
        gap: 8px;
    }

    .carousel-track {
        gap: 12px;
    }

    .meta-item {
        font-size: 12px;
    }

    .community-story-card {
        min-width: 180px;
        max-width: 180px;
    }

    .story-card-cover {
        height: 160px;
    }

    .story-card-info {
        padding: 12px;
        min-height: 100px;
    }

    .story-card-title {
        font-size: 14px;
        height: 38px;
    }
}








/* ===================================
   LANDING PAGE PRICING SECTION
   (Matching /pricing page style)
   =================================== */

.pricing-preview {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 2px solid var(--border-light);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green-light);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border-color: var(--primary-green);
    border-width: 3px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.coming-soon {
    opacity: 0.7;
    position: relative;
}

.pricing-card.coming-soon:hover {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.pricing-badge,
.coming-soon-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.coming-soon-badge {
    background: var(--text-medium);
}

/* Card Icon */
.card-icon-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.card-icon.unlock-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
}

/* Card Content */
.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-align: center;
}

.card-description {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 24px;
    text-align: center;
}

/* Card Price */
.card-price-wrapper {
    margin-bottom: 24px;
    text-align: center;
}

.card-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 6px;
}

.card-price-subtitle {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
}

/* Card Includes */
.card-includes {
    width: 100%;
    margin-bottom: 28px;
    text-align: left;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.include-item i {
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

.include-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 0;
}

/* Old pricing styles (for free trial and printed books) */
.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-light);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.pricing-description {
    font-size: 15px;
    color: var(--text-medium);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
}

.feature-included::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 18px;
}

.feature-divider {
    height: 2px;
    background: var(--border-light);
    margin: 8px 0;
    list-style: none;
    padding: 0;
}

.feature-divider::before {
    content: none;
}

/* Card Button */
.card-button,
.pricing-button {
    width: 100%;
    padding: 16px 32px;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.card-button.primary-button,
.pricing-button.primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.card-button.primary-button:hover,
.pricing-button.primary:hover {
    background: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-button.secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.pricing-button.secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.pricing-button:disabled {
    background: var(--border-light);
    color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.pricing-button:disabled:hover {
    background: var(--border-light);
    color: var(--text-light);
    transform: none;
    box-shadow: none;
}

.pricing-guarantee {
    text-align: center;
    padding: 32px;
    background: var(--bg-green-light);
    border-radius: var(--border-radius-md);
}

.pricing-guarantee p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .pricing-preview {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-amount,
    .card-price {
        font-size: 48px;
    }

    .pricing-features li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pricing-preview {
        padding: 60px 0;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-title,
    .card-title {
        font-size: 22px;
    }

    .price-amount,
    .card-price {
        font-size: 44px;
    }

    .pricing-button,
    .card-button {
        padding: 14px 24px;
        font-size: 15px;
    }

    .pricing-guarantee p {
        font-size: 14px;
    }
}



/* Book Preview Styling - Square Format */
.card-book-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 20px 0;
}

.book-preview-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    
    /* 3D Book Effect */
    box-shadow: 
        /* Main shadow */
        0 10px 30px rgba(0, 0, 0, 0.3),
        /* Book spine effect */
        -8px 0 15px rgba(0, 0, 0, 0.15),
        /* Right edge highlight */
        2px 0 5px rgba(255, 255, 255, 0.1) inset,
        /* Depth shadow */
        0 0 0 1px rgba(0, 0, 0, 0.1);
    
    /* Subtle 3D rotation */
    transform: perspective(1000px) rotateY(-8deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for interactivity */
.book-preview-img:hover {
    transform: perspective(1000px) rotateY(-3deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.35),
        -10px 0 20px rgba(0, 0, 0, 0.2),
        2px 0 5px rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a subtle page edge effect */
.card-book-preview::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 5%,
        rgba(255, 255, 255, 0) 10%
    );
    pointer-events: none;
    border-radius: 4px;
    transform: perspective(1000px) rotateY(-8deg);
}

/* Alternative: More pronounced book spine effect */
.book-preview-img.enhanced-3d {
    position: relative;
    box-shadow: 
        /* Deep shadow */
        0 15px 40px rgba(0, 0, 0, 0.4),
        /* Spine shadow */
        -12px 0 20px rgba(0, 0, 0, 0.25),
        /* Inner glow */
        inset 3px 0 8px rgba(255, 255, 255, 0.15),
        /* Border definition */
        0 0 0 2px rgba(0, 0, 0, 0.1);
    
    transform: perspective(1200px) rotateY(-12deg) scale(1.05);
}

/* For cards that should have the book centered with proper spacing */
.pricing-card .card-book-preview {
    position: relative;
    min-height: 280px;
}

/* Hero Book 3D Effect - EXACT COPY of Pricing Book */
.hero-book-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 20px 0;
}

.hero-book-3d {
    width: 550px;
    height: 550px;
    object-fit: cover;
    border-radius: 4px;
    
    /* 3D Book Effect */
    box-shadow: 
        /* Main shadow */
        0 10px 30px rgba(0, 0, 0, 0.3),
        /* Book spine effect */
        -8px 0 15px rgba(0, 0, 0, 0.15),
        /* Right edge highlight */
        2px 0 5px rgba(255, 255, 255, 0.1) inset,
        /* Depth shadow */
        0 0 0 1px rgba(0, 0, 0, 0.1);
    
    /* Subtle 3D rotation */
    transform: perspective(1000px) rotateY(-8deg);
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for interactivity */
.hero-book-3d:hover {
    transform: perspective(1000px) rotateY(-3deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.35),
        -10px 0 20px rgba(0, 0, 0, 0.2),
        2px 0 5px rgba(255, 255, 255, 0.1) inset,
        0 0 0 1px rgba(0, 0, 0, 0.1);
}

/* Optional: Add a subtle page edge effect */
.hero-book-mockup::after {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 5%,
        rgba(255, 255, 255, 0) 10%
    );
    pointer-events: none;
    border-radius: 4px;
    transform: perspective(1000px) rotateY(-8deg);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-book-3d {
        width: 450px;
        height: 450px;
    }
    
    .hero-book-mockup::after {
        width: 450px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-book-3d {
        width: 350px;
        height: 350px;
    }
    
    .hero-book-mockup::after {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-book-3d {
        width: 280px;
        height: 280px;
    }
    
    .hero-book-mockup::after {
        width: 280px;
        height: 280px;
    }
}


.card-credits-highlight {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    text-align: center;
}

.credits-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #15803d;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.credits-subtitle {
    font-size: 0.875rem;
    color: #16a34a;
    font-weight: 500;
    margin-top: 4px;
}

/* Subtle hover effect */
.pricing-card:hover .card-credits-highlight {
    border-color: #4ade80;
    transition: border-color 0.2s ease;
}





/* ===================================
   VIDEOBOOK SHOWCASE SECTION
   =================================== */

.video-showcase-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--text-dark);
}

.videobook-preview {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-lg);
}

.video-play-indicator {
    position: absolute;
    bottom: 16px;
    right: 16px;
    color: var(--white);
    font-size: 32px;
    opacity: 0.7;
    pointer-events: none;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Story Options Grid */
.story-options-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 32px 0;
}

.story-option {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-light);
    transition: all var(--transition-normal);
}

.story-option:hover {
    background: var(--bg-green-light);
    border-color: var(--primary-green-light);
    transform: translateX(4px);
}

.story-option.featured-option {
    background: linear-gradient(135deg, var(--bg-green-light) 0%, var(--bg-green-lighter) 100%);
    border-color: var(--primary-green);
    border-width: 2px;
}

.story-option.featured-option:hover {
    box-shadow: var(--shadow-md);
}

.option-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-normal);
}

.story-option:hover .option-icon {
    transform: scale(1.1);
}

.pdf-icon {
    background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
    color: var(--white);
}

.book-icon {
    background: linear-gradient(135deg, #42a5f5 0%, #1e88e5 100%);
    color: var(--white);
}

.video-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    color: var(--white);
}

.option-content {
    flex: 1;
}

.option-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.option-content p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 8px;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition-fast);
}

.inline-link:hover {
    color: var(--primary-green-dark);
    gap: 8px;
}

.inline-link i {
    font-size: 12px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .video-showcase-container {
        max-width: 100%;
    }
    
    .story-options-grid {
        gap: 16px;
        margin: 24px 0;
    }
    
    .story-option {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }
    
    .option-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .option-content h4 {
        font-size: 17px;
    }
    
    .option-content p {
        font-size: 14px;
    }
    
    .video-play-indicator {
        font-size: 24px;
        bottom: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .story-option {
        padding: 16px;
    }
    
    .option-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .option-content h4 {
        font-size: 16px;
    }
    
    .option-content p {
        font-size: 13px;
    }
}