/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-dark: #1a1a2e;
    --secondary-dark: #2d2d44;
    --accent-gold: #d4af37;
    --accent-sage: #8b9d83;
    --cream: #f5f1e8;
    --text-light: #e8e8e8;
    --text-dark: #2d2d44;
    --shadow: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    padding: 8rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 157, 131, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.product-image-hero {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.1s forwards;
}

.bundle-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.bundle-cover:hover {
    transform: scale(1.05);
}

.hero-subtitle {
    color: var(--accent-gold);
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-family: 'Cormorant Garamond', serif;
}

.price-subtitle {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
    background: #e0bd44;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-sage);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   PROBLEM/SOLUTION SECTION
   ============================================ */
.problem-solution {
    background: white;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.problem-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.problem-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.problem-list {
    list-style: none;
    padding-left: 0;
}

.problem-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(139, 157, 131, 0.2);
    color: var(--text-dark);
    font-size: 1.05rem;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: "✗";
    color: var(--accent-sage);
    font-weight: bold;
    margin-right: 1rem;
}

.solution-list li::before {
    content: "✓";
    color: var(--accent-gold);
}

/* ============================================
   WHAT'S INCLUDED SECTION
   ============================================ */
.whats-included {
    background: var(--primary-dark);
    color: var(--text-light);
}

.whats-included .section-title {
    color: var(--text-light);
}

.whats-included .section-subtitle {
    color: var(--accent-gold);
}

.product-showcase {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.product-showcase.visible {
    opacity: 1;
    transform: scale(1);
}

.bundle-image-large {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.bundle-image-large:hover {
    transform: translateY(-10px);
}

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.bundle-item {
    background: var(--secondary-dark);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

.bundle-item.visible {
    opacity: 1;
    transform: scale(1);
}

.bundle-item:hover {
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.bundle-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.bundle-item h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.bundle-item p {
    margin-bottom: 1.5rem;
    color: rgba(232, 232, 232, 0.9);
    line-height: 1.7;
}

.bundle-item h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.bundle-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.bundle-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(232, 232, 232, 0.9);
}

.bundle-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-sage);
}

.bundle-footer {
    margin-top: 1.5rem;
    opacity: 0.9;
    font-style: italic;
}

.instant-delivery {
    text-align: center;
    margin-top: 3rem;
}

.value-prop-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.instant-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial.visible {
    opacity: 1;
    transform: translateY(0);
}

.testimonial::before {
    content: '"';
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--accent-gold);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.3rem;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--accent-sage);
    font-style: italic;
}

/* ============================================
   FOR YOU IF SECTION
   ============================================ */
.for-you {
    background: white;
}

.for-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.for-you-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    background: var(--cream);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.for-you-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.for-you-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.for-you-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.for-you-card p {
    color: var(--text-dark);
    line-height: 1.7;
}

/* ============================================
   WHAT MAKES DIFFERENT SECTION
   ============================================ */
.different {
    background: var(--secondary-dark);
    color: var(--text-light);
}

.different .section-title {
    color: var(--text-light);
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.different-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.different-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.different-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.different-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(232, 232, 232, 0.9);
}

/* ============================================
   TRANSFORMATION SECTION
   ============================================ */
.transformation {
    background: linear-gradient(135deg, var(--accent-sage) 0%, #6b7d65 100%);
    color: white;
    text-align: center;
}

.transformation .section-title {
    color: white;
    margin-bottom: 2rem;
}

.transformation-question {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.transformation-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
    padding: 0;
}

.transformation-list li {
    padding: 1rem 0;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.transformation-list li:nth-child(1) { animation-delay: 0.4s; }
.transformation-list li:nth-child(2) { animation-delay: 0.5s; }
.transformation-list li:nth-child(3) { animation-delay: 0.6s; }
.transformation-list li:nth-child(4) { animation-delay: 0.7s; }
.transformation-list li:nth-child(5) { animation-delay: 0.8s; }

.transformation-list li::before {
    content: "✓";
    color: var(--accent-gold);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.4rem;
}

.transformation-cta {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards;
}

.transformation-cta-sub {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.transformation .cta-button {
    opacity: 0;
    animation: fadeInUp 1s ease 1.2s forwards;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: var(--primary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

.final-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.value-prop {
    text-align: center;
}

.value-prop-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.value-prop-text {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.final-note {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--secondary-dark);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   SCROLL REVEAL UTILITY
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 5rem 1.5rem 4rem;
        min-height: auto;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .bundle-grid,
    .problem-grid,
    .testimonials-grid,
    .for-you-grid,
    .different-grid {
        grid-template-columns: 1fr;
    }

    .value-props {
        gap: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .transformation-list {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .bundle-cover {
        max-width: 250px;
    }

    .bundle-image-large {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .bundle-item,
    .testimonial {
        padding: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .testimonial::before {
        font-size: 3rem;
    }

    .for-you-icon {
        font-size: 2rem;
    }

    .bundle-cover {
        max-width: 200px;
    }

    .bundle-image-large {
        max-width: 250px;
    }
}
