/* BASE STYLES & VARIABLES */
:root {
    --bg-primary: #faf8f5; /* Light pastel off-white */
    --bg-secondary: #f0ebe1; /* Soft beige */
    --bg-card: #ffffff;
    --text-primary: #2d3748; /* Dark gray for high readability */
    --text-secondary: #4a5568;
    --accent-primary: #9f7aea; /* Pastel Purple */
    --accent-hover: #805ad5;
    --accent-glow: rgba(159, 122, 234, 0.3);
    --coral: #f6ad55; /* Soft Orange/Coral */
    --border-color: #e2e8f0;
    --success: #48bb78;
    
    --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
    
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 18px; /* Slightly larger base font for mobile readability */
}

/* TYPOGRAPHY */
h1, h2, h3 { line-height: 1.2; letter-spacing: -0.02em; color: var(--text-primary); }
h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; font-weight: 800; }
h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; color: var(--text-secondary); }
strong { color: var(--text-primary); font-weight: 600; }
.text-center { text-align: center; }

.highlight {
    background: linear-gradient(135deg, var(--accent-hover), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container.narrow { max-width: 800px; }
section { padding: 5rem 0; position: relative; }
section:nth-child(even) { background-color: var(--bg-secondary); }

/* BUTTONS */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    width: 100%; /* Default full width for mobile */
    max-width: 400px; /* Limit on larger screens */
    margin: 0 auto;
}

.primary-cta {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
    color: white;
    box-shadow: 0 8px 25px var(--accent-glow);
}
.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 35px var(--accent-glow); color: white; }

.secondary-cta {
    background-color: var(--bg-card);
    color: var(--accent-hover);
    border: 2px solid var(--accent-primary);
}
.secondary-cta:hover { background-color: var(--accent-primary); color: white; }

/* HERO */
.hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; padding-top: 4rem; }
.pre-title { color: var(--coral); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; font-size: 1rem; margin-bottom: 1.5rem; }
.hero .sub-headline { font-size: 1.25rem; max-width: 700px; margin: 0 auto 3rem auto; color: var(--text-secondary); }
.hero-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80vw; height: 80vw; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); z-index: -1; filter: blur(60px); opacity: 0.6; }

/* PAIN VALIDATION */
.absolution-box { background: rgba(159, 122, 234, 0.1); border-left: 4px solid var(--accent-primary); padding: 2rem; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-top: 3rem; }
.absolution-box p { margin-bottom: 0; color: var(--text-primary); font-size: 1.25rem; font-weight: 500;}

.pain-list { list-style: none; margin-bottom: 2rem; }
.pain-list li { margin-bottom: 1.5rem; padding-left: 2rem; position: relative; color: var(--text-secondary); }
.pain-list li::before { content: "✕"; position: absolute; left: 0; top: 2px; color: var(--coral); font-weight: 800; font-size: 1.2rem;}
.pain-list li strong { color: var(--text-primary); display: block; margin-bottom: 0.2rem; font-size: 1.15rem; }

/* TIMELINE */
.timeline { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; } /* Mobile first grid */
.day-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border-color); position: relative; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.day-num { font-size: 5rem; font-weight: 800; color: var(--bg-secondary); position: absolute; top: -15px; right: 10px; line-height: 1; user-select: none; opacity: 0.5; }

/* BUNDLE */
.bundle-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; } /* Mobile first */
.bundle-image { order: -1; text-align: center; position: relative; } /* Image on top on mobile */
.bundle-image img { width: 100%; max-width: 500px; height: auto; border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.08); position: relative; z-index: 2; }
.image-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 500px; height: 100%; background: var(--accent-glow); filter: blur(50px); z-index: 1; border-radius: 50%; }

.bonus-list { list-style: none; margin: 2rem 0; }
.bonus-list li { display: flex; align-items: flex-start; margin-bottom: 1rem; background: var(--bg-card); padding: 1.25rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.bonus-list .icon { font-size: 1.5rem; margin-right: 1rem; }

.price-box { background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%); padding: 2rem 1.5rem; border-radius: var(--radius-lg); border: 2px solid var(--accent-primary); text-align: center; margin-top: 2rem; box-shadow: 0 15px 35px rgba(159, 122, 234, 0.15); }
.price-text { font-size: 1.1rem; color: var(--text-secondary); font-weight: 600;}
.price-original { text-decoration: line-through; color: var(--text-secondary); font-size: 1.5rem; margin-top: 0.5rem; opacity: 0.7;}
.price-value { font-size: 4rem; font-weight: 800; color: var(--text-primary); margin: 0 0 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; gap: 10px; }
.discount-badge { font-size: 1.2rem; color: var(--success); font-weight: 800; background: rgba(72, 187, 120, 0.15); padding: 4px 12px; border-radius: 30px; }
.stripe-note { font-size: 0.9rem; color: var(--text-secondary); margin-top: 1rem; margin-bottom: 0; }

/* CLOSING */
.closing-thought { font-size: 1.5rem; color: var(--text-primary); font-style: italic; font-weight: 500; }

/* FAQ */
.accordion { margin-top: 2rem; }
.accordion-item { margin-bottom: 1rem; border: 1px solid var(--border-color); border-radius: var(--radius-md); background: var(--bg-card); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.accordion-header { width: 100%; text-align: left; padding: 1.5rem; background: none; border: none; color: var(--text-primary); font-size: 1.1rem; font-weight: 700; font-family: inherit; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.accordion-header .icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; color: var(--accent-primary); }
.accordion-item.active .accordion-header .icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-content p { padding: 0 1.5rem 1.5rem 1.5rem; margin-bottom: 0; }

/* FOOTER */
footer { padding: 3rem 0; background: var(--bg-primary); border-top: 1px solid var(--border-color); }
.footer-links { margin-top: 1rem; display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* DESKTOP ENHANCEMENTS */
@media (min-width: 768px) {
    .timeline { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .bundle-grid { grid-template-columns: 1fr 1fr; }
    .bundle-image { order: 1; } /* Image back to right on desktop */
    .cta-button { width: auto; }
}
