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

:root {
    /* Warm Earth Tone Palette */
    --coral: #FF6B6B;
    --coral-dark: #EE5A52;
    --peach: #FFA07A;
    --gold: #FFD93D;
    --sage: #95B8A9;
    --sage-dark: #6B9080;
    --cream: #FFF8E7;
    --sand: #F4E8D8;
    --terracotta: #D97850;
    --mint: #A8E6CF;
    
    /* Neutrals */
    --dark: #2D3436;
    --dark-gray: #4A5568;
    --medium-gray: #718096;
    --light-gray: #CBD5E0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFA07A 50%, #FFD93D 100%);
    --gradient-nature: linear-gradient(135deg, #95B8A9 0%, #A8E6CF 100%);
    --gradient-sunset: linear-gradient(to right, #FF6B6B, #FFA07A, #FFD93D);
    
    /* Effects */
    --shadow: 0 10px 40px rgba(45, 52, 54, 0.12);
    --shadow-lg: 0 20px 60px rgba(45, 52, 54, 0.18);
    --radius: 20px;
    --radius-lg: 30px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
header {
    background: var(--white);
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(255, 107, 107, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transform: rotate(-5deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.5px;
}

.ad-label {
    background: var(--dark);
    color: var(--cream);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==================== HERO ==================== */
.hero {
    padding: 100px 0 60px;
    position: relative;
    background: linear-gradient(to bottom, var(--cream) 0%, var(--sand) 100%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: var(--mint);
    color: var(--sage-dark);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-title .accent {
    color: var(--coral);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--coral);
    border: 2px solid var(--coral);
}

.btn-ghost:hover {
    background: var(--coral);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--coral);
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-warm);
    opacity: 0.15;
    z-index: 1;
}

.hero-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==================== FEATURES WAVE ==================== */
.features-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-label {
    font-size: 14px;
    color: var(--coral);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
}

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

.feature-box {
    background: linear-gradient(to bottom, var(--sand) 0%, var(--cream) 100%);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.4s ease;
    border: 3px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--coral);
    box-shadow: var(--shadow-lg);
}

.feature-emoji {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.feature-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ==================== PROCESS ==================== */
.process-section {
    padding: 80px 0;
    background: var(--gradient-nature);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '🌿';
    position: absolute;
    font-size: 300px;
    opacity: 0.1;
    top: -50px;
    right: -50px;
    transform: rotate(25deg);
}

.process-wrapper {
    position: relative;
    z-index: 2;
}

.process-intro {
    text-align: center;
    margin-bottom: 70px;
}

.process-intro .section-title {
    color: var(--white);
}

.process-intro .section-text {
    color: rgba(255, 255, 255, 0.9);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    background: var(--white);
    padding: 50px 35px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
}

.step-num {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
}

.step-icon {
    font-size: 50px;
    margin-bottom: 24px;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
}

.step-description {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.testimonial {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--coral);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-content {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-details {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-location {
    font-size: 13px;
    color: var(--medium-gray);
}

/* ==================== BENEFITS COMPARISON ==================== */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sand) 0%, var(--cream) 100%);
}

.comparison-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    background: var(--gradient-warm);
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.comparison-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--light-gray);
}

.comparison-grid:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-cell:first-child {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--dark);
}

.comparison-check {
    font-size: 28px;
}

.check-yes { color: var(--sage-dark); }
.check-no { color: var(--light-gray); }

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    padding: 100px 0;
    background: var(--gradient-sunset);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    left: -100px;
}

.promo-banner::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -150px;
    right: -80px;
}

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: var(--white);
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.promo-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.promo-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.promo-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-white {
    background: var(--white);
    color: var(--coral);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--coral);
}

/* ==================== FAQ ==================== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--sand);
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 28px 32px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-toggle {
    font-size: 24px;
    color: var(--coral);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-text {
    padding: 0 32px 28px;
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--dark);
    color: var(--cream);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    color: var(--coral);
    margin-bottom: 16px;
}

.footer-brand-section p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 107, 107, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--coral);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* ==================== DISCLAIMER ==================== */
.disclaimer-section {
    background: var(--sand);
    padding: 60px 0;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 6px solid var(--terracotta);
}

.disclaimer-heading {
    font-weight: 700;
    color: var(--terracotta);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.disclaimer-box p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.disclaimer-box strong {
    color: var(--dark);
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 52px;
    }

    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-masonry {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .section-title {
        font-size: 36px;
    }

    .promo-title {
        font-size: 40px;
    }

    .hero-buttons,
    .promo-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .comparison-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 13px;
    }

    .comparison-cell {
        padding: 16px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}
