/* ============================================
   UNDERGROWTH - HANDCRAFTED WATERCOLOR STYLES
   ============================================ */

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

:root {
    /* Watercolor-inspired Colors */
    --sage-green: #9CAF88;
    --moss-green: #6B8E23;
    --earth-brown: #8B7355;
    --soil-dark: #5C4033;
    --cream: #F9F7F4;
    --paper-white: #FEFDFB;
    --watercolor-blue: #A8DADC;
    --terracotta: #D4A574;
    --leaf-green: #7FB069;
    --deep-green: #4A6741;

    /* Typography - Handwritten Fonts */
    --font-handwritten: 'Caveat', cursive;
    --font-sketchy: 'Architects Daughter', cursive;
    --font-casual: 'Patrick Hand', cursive;

    /* Spacing */
    --section-padding: clamp(2rem, 5vw, 3.5rem);
    --container-padding: clamp(1.5rem, 5vw, 3rem);

    /* Watercolor effects */
    --paint-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-casual);
    color: var(--soil-dark);
    background-color: var(--paper-white);
    background-image:
        linear-gradient(to bottom, rgba(156, 175, 136, 0.03) 0%, transparent 100%),
        var(--paint-texture);
    line-height: 1.7;
    font-size: 1.1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   HEADER & LOGO
   ============================================ */

.site-header {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.1) 0%, rgba(249, 247, 244, 0.95) 100%);
    border-bottom: 3px solid var(--sage-green);
    border-bottom-style: dashed;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.logo-container {
    text-align: center;
}

.site-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: rotate(-2deg) scale(1.05);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 {
    font-family: var(--font-handwritten);
    line-height: 1.3;
    font-weight: 700;
    color: var(--deep-green);
}

.section-title {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--deep-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--leaf-green), transparent);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION - Watercolor Splash
   ============================================ */

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding: var(--section-padding) 0;
    background:
        radial-gradient(ellipse at top left, rgba(156, 175, 136, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(168, 218, 220, 0.12) 0%, transparent 50%),
        var(--paper-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
}

.hero-headline {
    font-size: clamp(3.5rem, 11vw, 7rem);
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--earth-brown);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-sketchy);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder svg,
.hero-image-placeholder img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(74, 103, 65, 0.2));
}

.hero-image {
    border-radius: 20px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* ============================================
   FORMS - Hand-drawn Style
   ============================================ */

.waitlist-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input[type="email"] {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-family: var(--font-casual);
    border: 3px solid var(--sage-green);
    border-radius: 15px;
    background: white;
    color: var(--soil-dark);
    transition: all 0.3s ease;
    outline: none;
    box-shadow: 4px 4px 0 rgba(156, 175, 136, 0.2);
}

.form-group input[type="email"]:focus {
    border-color: var(--leaf-green);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 rgba(127, 176, 105, 0.3);
}

.form-group input[type="email"]::placeholder {
    color: var(--earth-brown);
    opacity: 0.6;
}

.btn-primary {
    padding: 1.2rem 3rem;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-handwritten);
    color: white;
    background: linear-gradient(135deg, var(--leaf-green) 0%, var(--moss-green) 100%);
    border: 3px solid var(--deep-green);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0 rgba(74, 103, 65, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0 rgba(74, 103, 65, 0.4);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(74, 103, 65, 0.3);
}

.btn-secondary {
    padding: 0.9rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-casual);
    color: var(--deep-green);
    background: white;
    border: 3px solid var(--leaf-green);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 rgba(127, 176, 105, 0.2);
}

.btn-secondary:hover {
    background: var(--leaf-green);
    color: white;
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 rgba(127, 176, 105, 0.3);
}

.btn-text {
    background: none;
    border: none;
    color: var(--earth-brown);
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: wavy;
    text-decoration-color: var(--sage-green);
    font-size: 1rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    font-family: var(--font-sketchy);
}

.btn-text:hover {
    color: var(--deep-green);
}

.form-hint {
    font-size: 1.15rem;
    color: var(--earth-brown);
    text-align: center;
    font-family: var(--font-sketchy);
}

/* ============================================
   HOW IT WORKS SECTION - Sketch Cards
   ============================================ */

.how-it-works {
    padding: var(--section-padding) 0;
    background:
        linear-gradient(135deg, rgba(249, 247, 244, 0.9) 0%, rgba(156, 175, 136, 0.1) 100%);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2.5rem;
    border-radius: 25px;
    background: white;
    border: 3px dashed var(--sage-green);
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 6px 6px 0 rgba(156, 175, 136, 0.2);
}

.step::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--sage-green), var(--leaf-green));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover::before {
    opacity: 0.15;
}

.step:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 10px 10px 0 rgba(156, 175, 136, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    color: var(--leaf-green);
    filter: drop-shadow(2px 2px 4px rgba(127, 176, 105, 0.3));
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-title {
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-family: var(--font-handwritten);
}

.step-description {
    font-size: 1.5rem;
    color: var(--soil-dark);
    line-height: 1.8;
    font-family: var(--font-casual);
}

/* ============================================
   WHY BOTHER SECTION - Watercolor Wash
   ============================================ */

.why-bother {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(ellipse at center, rgba(168, 218, 220, 0.15) 0%, transparent 70%),
        linear-gradient(to bottom, var(--paper-white) 0%, rgba(156, 175, 136, 0.08) 100%);
    position: relative;
}

.why-bother::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(156, 175, 136, 0.1), transparent);
    pointer-events: none;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.why-text p {
    font-size: 1.25rem;
    color: var(--soil-dark);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-family: var(--font-casual);
}

.benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    font-size: 1.9rem;
    color: var(--soil-dark);
    font-family: var(--font-casual);
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 3px dashed var(--sage-green);
    box-shadow: 5px 5px 0 rgba(156, 175, 136, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateX(5px);
    box-shadow: 6px 6px 0 rgba(156, 175, 136, 0.3);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--leaf-green);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid var(--deep-green);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: white;
}

.why-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compost-illustration {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.compost-illustration svg,
.compost-illustration img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(74, 103, 65, 0.2));
}

.seed-image {
    border-radius: 20px;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--leaf-green) 100%);
    border-top: 4px dashed white;
    border-bottom: 4px dashed white;
}

.waitlist-count {
    text-align: center;
}

.count-text {
    font-size: 1.4rem;
    color: white;
    font-family: var(--font-handwritten);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.count-number {
    font-weight: 700;
    font-size: 2rem;
    color: var(--paper-white);
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: var(--deep-green);
    border-radius: 10px;
    margin: 0 0.3rem;
    border: 2px solid white;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* ============================================
   PRICING SECTION - Handcrafted Card
   ============================================ */

.pricing {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: white;
    border-radius: 30px;
    box-shadow:
        8px 8px 0 rgba(156, 175, 136, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 4px solid var(--leaf-green);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '✿';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--sage-green);
    opacity: 0.3;
}

.pricing-card::after {
    content: '✿';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 3rem;
    color: var(--sage-green);
    opacity: 0.3;
}

.price {
    margin-bottom: 2.5rem;
}

.price-anchor {
    font-size: 1.8rem;
    color: var(--terracotta);
    font-weight: 700;
    font-family: var(--font-sketchy);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 4.5rem;
    font-weight: 700;
    font-family: var(--font-handwritten);
    color: var(--deep-green);
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: var(--earth-brown);
    font-family: var(--font-sketchy);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1.2rem 0;
    font-size: 1.5rem;
    color: var(--soil-dark);
    border-bottom: 2px dashed var(--sage-green);
    font-family: var(--font-casual);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '🌱';
    margin-right: 0.8rem;
}

.pricing-bonus {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(156, 175, 136, 0.2) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px dashed var(--terracotta);
}

.pricing-bonus p {
    font-size: 1.45rem;
    color: var(--soil-dark);
    font-weight: 600;
    font-family: var(--font-sketchy);
}

/* ============================================
   FOOTER CTA SECTION - Painted Wash
   ============================================ */

.footer-cta {
    padding: var(--section-padding) 0;
    background:
        linear-gradient(135deg, var(--deep-green) 0%, var(--moss-green) 100%),
        var(--paint-texture);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta .container {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-headline {
    color: white;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.footer-cta .waitlist-form {
    position: relative;
    z-index: 1;
}

.footer-cta .form-group input[type="email"] {
    background: rgba(255, 255, 255, 0.95);
    border-color: white;
}

.footer-cta .btn-primary {
    background: white;
    color: var(--deep-green);
    border-color: white;
}

/* ============================================
   FOOTER - Organic Footer
   ============================================ */

.footer {
    padding: 3rem 0;
    background:
        linear-gradient(to bottom, var(--soil-dark) 0%, var(--deep-green) 100%);
    text-align: center;
    border-top: 5px solid var(--sage-green);
}

.footer-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-family: var(--font-handwritten);
    font-weight: 600;
}

.footer-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-family: var(--font-sketchy);
}

/* ============================================
   MODAL - Handcrafted Popup
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 103, 65, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--paper-white);
    border-radius: 30px;
    max-width: 550px;
    width: 100%;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.3),
        8px 8px 0 rgba(156, 175, 136, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid var(--leaf-green);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-body {
    padding: 3.5rem 3rem;
    text-align: center;
}

.modal-body h3 {
    font-size: 2.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-family: var(--font-handwritten);
}

.modal-body > p {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 2.5rem;
    font-family: var(--font-sketchy);
}

.survey-question {
    margin-bottom: 2rem;
}

.survey-question label {
    display: block;
    font-size: 1.05rem;
    color: var(--soil-dark);
    margin-bottom: 1rem;
    text-align: left;
    font-family: var(--font-casual);
}

.survey-question textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    font-family: var(--font-casual);
    border: 3px solid var(--sage-green);
    border-radius: 15px;
    resize: vertical;
    margin-bottom: 1.2rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}

.survey-question textarea:focus {
    border-color: var(--leaf-green);
    box-shadow: 0 0 0 4px rgba(127, 176, 105, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .hero-content {
        text-align: left;
    }

    .hero-subheadline,
    .waitlist-form {
        margin-left: 0;
    }

    .form-group {
        flex-direction: row;
    }

    .form-group input[type="email"] {
        flex: 1;
    }

    .form-group .btn-primary {
        flex-shrink: 0;
    }

    .form-hint {
        text-align: left;
    }

    .steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .why-content {
        grid-template-columns: 1.3fr 1fr;
        gap: 5rem;
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
    .hero .container {
        gap: 6rem;
    }

    .steps {
        gap: 3rem;
    }

    .step {
        padding: 3rem 2.5rem;
    }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

::selection {
    background-color: var(--leaf-green);
    color: white;
}

/* ============================================
   CUSTOM WATERCOLOR ACCENTS
   ============================================ */

.watercolor-accent {
    position: relative;
}

.watercolor-accent::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

/* ============================================
   URGENCY BADGE (Hero)
   ============================================ */

.urgency-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--terracotta) 0%, rgba(212, 165, 116, 0.9) 100%);
    color: white;
    font-family: var(--font-sketchy);
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--earth-brown);
    box-shadow: 4px 4px 0 rgba(139, 115, 85, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================
   STORY CAROUSEL SECTION
   ============================================ */

.story-carousel-section {
    padding: var(--section-padding) 0;
    background:
        radial-gradient(ellipse at top, rgba(168, 218, 220, 0.15) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(156, 175, 136, 0.05) 0%, var(--paper-white) 100%);
}

.story-swiper {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.story-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 3px solid var(--sage-green);
    box-shadow: 8px 8px 0 rgba(156, 175, 136, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0 rgba(156, 175, 136, 0.3);
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.story-title {
    font-size: 2.3rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-family: var(--font-handwritten);
}

.story-stat {
    font-size: 1.4rem;
    color: var(--terracotta);
    font-weight: 700;
    font-family: var(--font-sketchy);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 165, 116, 0.15);
    border-radius: 15px;
    display: inline-block;
}

.story-description {
    font-size: 1.25rem;
    color: var(--soil-dark);
    line-height: 1.8;
    font-family: var(--font-casual);
}

/* Swiper Navigation */
.story-swiper .swiper-button-prev,
.story-swiper .swiper-button-next {
    color: var(--leaf-green);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--sage-green);
    box-shadow: 4px 4px 0 rgba(156, 175, 136, 0.2);
}

.story-swiper .swiper-button-prev:after,
.story-swiper .swiper-button-next:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.story-swiper .swiper-button-prev:hover,
.story-swiper .swiper-button-next:hover {
    background: var(--leaf-green);
    color: white;
}

/* Swiper Pagination */
.story-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--sage-green);
    opacity: 0.5;
    border: 2px solid var(--leaf-green);
}

.story-swiper .swiper-pagination-bullet-active {
    background: var(--leaf-green);
    opacity: 1;
    transform: scale(1.3);
}

.carousel-cta {
    text-align: center;
    margin-top: 2rem;
}

.carousel-cta-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 1.3rem;
}

/* ============================================
   ENHANCED PRICING
   ============================================ */

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--earth-brown) 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-family: var(--font-sketchy);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% {
        transform: translateX(-50%) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) rotate(-2deg);
    }
    75% {
        transform: translateX(-50%) rotate(2deg);
    }
}

.price-strike {
    display: block;
    font-size: 1.8rem;
    color: var(--earth-brown);
    text-decoration: line-through;
    opacity: 0.6;
    margin-bottom: 0.5rem;
    font-family: var(--font-casual);
}

.pricing-timer {
    font-size: 0.9rem;
    color: var(--terracotta);
    font-weight: 600;
    margin-top: 0.75rem;
    font-style: italic;
}

.pricing-features li strong {
    color: var(--deep-green);
}

/* ============================================
   ENHANCED BENEFITS
   ============================================ */

.benefit {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit span {
    font-size: 1rem;
    line-height: 1.6;
}

.benefit strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* ============================================
   FOOTER CTA ENHANCEMENTS
   ============================================ */

.cta-subtext {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-family: var(--font-sketchy);
}

/* ============================================
   MOBILE OPTIMIZATIONS FOR CAROUSEL
   ============================================ */

@media (max-width: 767px) {
    .story-card {
        padding: 2rem 1.5rem;
    }

    .story-icon {
        font-size: 3rem;
    }

    .story-title {
        font-size: 1.6rem;
    }

    .story-stat {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
    }

    .story-description {
        font-size: 1rem;
    }

    .story-swiper .swiper-button-prev,
    .story-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .story-swiper .swiper-button-prev:after,
    .story-swiper .swiper-button-next:after {
        font-size: 1.2rem;
    }

    .urgency-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .pricing-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ============================================
   TABLET RESPONSIVE FOR CAROUSEL
   ============================================ */

@media (min-width: 768px) {
    .story-card {
        min-height: 450px;
    }

    .benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* ============================================
   SUCCESS PAGE
   ============================================ */

.success-page {
    min-height: 80vh;
    padding: var(--section-padding) 0;
    background:
        radial-gradient(ellipse at top, rgba(156, 175, 136, 0.15) 0%, transparent 60%),
        var(--paper-white);
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.success-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-family: var(--font-handwritten);
}

.success-message {
    font-size: 1.3rem;
    color: var(--earth-brown);
    margin-bottom: 3rem;
    font-family: var(--font-casual);
}

.success-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 3px solid var(--sage-green);
    box-shadow: 8px 8px 0 rgba(156, 175, 136, 0.2);
    margin-bottom: 3rem;
    text-align: left;
}

.success-card h2 {
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-handwritten);
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.success-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--leaf-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-handwritten);
    border: 3px solid var(--deep-green);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
    font-family: var(--font-sketchy);
}

.step-content p {
    font-size: 1.05rem;
    color: var(--soil-dark);
    line-height: 1.6;
    font-family: var(--font-casual);
}

.success-bonus {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(156, 175, 136, 0.15) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px dashed var(--terracotta);
    text-align: center;
}

.success-bonus p {
    font-size: 1.1rem;
    color: var(--deep-green);
    font-family: var(--font-sketchy);
    margin: 0;
}

.success-actions {
    margin-top: 2rem;
}

.success-actions .btn-primary {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.success-help {
    font-size: 1rem;
    color: var(--earth-brown);
    font-family: var(--font-casual);
}

.success-help a {
    color: var(--leaf-green);
    text-decoration: none;
    font-weight: 600;
}

.success-help a:hover {
    text-decoration: underline;
}

/* Mobile responsive for success page */
@media (max-width: 767px) {
    .success-card {
        padding: 2rem 1.5rem;
    }

    .success-step {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ============================================
   HERO CTA UPDATES
   ============================================ */

.hero-cta {
    max-width: 600px;
    margin: 0 auto;
}

.hero-cta .btn-primary {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1rem;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: var(--section-padding) 0;
    background: var(--paper-white);
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.9;
    color: var(--soil-dark);
    margin-bottom: 2rem;
    font-family: var(--font-casual);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 700px;
}

.stat-callout {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.1) 0%, rgba(156, 175, 136, 0.1) 100%);
    border-radius: 20px;
    border: 3px dashed var(--leaf-green);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-green);
    font-family: var(--font-handwritten);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1.3rem;
    color: var(--soil-dark);
    font-family: var(--font-casual);
    line-height: 1.4;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(249, 247, 244, 0.9) 0%, rgba(156, 175, 136, 0.05) 100%);
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px dashed var(--sage-green);
    box-shadow: 5px 5px 0 rgba(156, 175, 136, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 rgba(156, 175, 136, 0.3);
}

.stars {
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--soil-dark);
    font-family: var(--font-casual);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--leaf-green);
    flex-shrink: 0;
}

.avatar-initial {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--leaf-green);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-handwritten);
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--deep-green);
    font-family: var(--font-handwritten);
}

.author-location {
    font-size: 1rem;
    color: var(--earth-brown);
    font-family: var(--font-casual);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

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

.faq-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    border: 3px dashed var(--sage-green);
    box-shadow: 5px 5px 0 rgba(156, 175, 136, 0.2);
}

.faq-question {
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1.2rem;
    font-family: var(--font-handwritten);
    font-weight: 700;
}

.faq-answer {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--soil-dark);
    font-family: var(--font-casual);
}

.pricing-subtitle {
    font-size: 1.4rem;
    color: var(--earth-brown);
    margin-bottom: 2rem;
    font-family: var(--font-sketchy);
}

.pricing-card .btn-primary {
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .intro-text {
        font-size: 1.4rem;
    }

    .faq-item {
        padding: 2rem 1.5rem;
    }

    .faq-question {
        font-size: 1.85rem;
    }

    .faq-answer {
        font-size: 1.35rem;
    }

    .step-description {
        font-size: 1.3rem;
    }
}
