/* --- Variables & Reset --- */
:root {
    --bg-light: #FCFAF8;
    --bg-warm: #F4EFEB;
    --lavender-light: #EFE9F6;
    --lavender-main: #D3C3E5;
    --brand-dark: #3F3A3A;
    --text-main: #5C5555;
    --text-muted: #8F8888;
    
    --primary-btn: #715C8F;
    --primary-btn-hover: #5A4B75;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-soft: 0 10px 30px rgba(113, 92, 143, 0.05);
    --shadow-hover: 0 15px 40px rgba(113, 92, 143, 0.12);
    
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo, .eyebrow {
    font-family: var(--font-heading);
    color: var(--brand-dark);
    font-weight: 400;
}

h1 { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.1; letter-spacing: -0.02em; }
h1 em { font-style: italic; color: #8F7CA8; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1.5rem; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

.text-center { text-align: center; }
.bg-warm { background-color: var(--bg-warm); }
.bg-lavender { background-color: var(--lavender-light); }
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1.125rem; }

.btn-primary {
    background-color: var(--primary-btn);
    color: #fff;
    box-shadow: 0 4px 15px rgba(113, 92, 143, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(113, 92, 143, 0.3);
}

/* --- Header --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
    background: rgba(252, 250, 248, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(211, 195, 229, 0.2);
    transition: var(--transition);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.navbar .btn {
    border: 1px solid var(--primary-btn);
    color: var(--primary-btn);
    background: transparent;
}
.navbar .btn:hover {
    background: var(--primary-btn);
    color: #fff;
}

/* --- Hero Section --- */
.hero {
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    margin: 1.5rem 0 2.5rem;
    max-width: 480px;
    color: var(--text-main);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    animation: floating 6s ease-in-out infinite;
}

.hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    aspect-ratio: 4/5;
}

/* --- Benefits Section --- */
.benefits { padding: 6rem 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-card .icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #A38CBE;
    margin-bottom: 1.5rem;
}

/* --- How It Works --- */
.how-it-works { padding: 8rem 0; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }

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

.step-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.step-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--lavender-light);
    line-height: 1;
    margin-bottom: 1rem;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    opacity: 0.8;
}

.step-card h4 {
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-card p {
    position: relative;
    z-index: 1;
}


/* --- Product Description --- */
.product-description { padding: 8rem 0; border-radius: var(--radius-xl) 0 var(--radius-xl) 0;}
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}
.feature-list span {
    color: #A38CBE;
    margin-right: 1rem;
    font-weight: bold;
}

.product-visual {
    padding: 2rem;
}

.abstract-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #FCFAF8 0%, #EFE9F6 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.abstract-card .circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
}
.c1 { width: 300px; height: 300px; background: rgba(211, 195, 229, 0.4); top: -50px; right: -50px; }
.c2 { width: 250px; height: 250px; background: rgba(244, 239, 235, 0.8); bottom: -20px; left: -20px; }

.glass-overlay {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.8);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    width: 70%;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.glass-overlay h4 { font-family: var(--font-heading); margin-bottom: 1.5rem; text-align: center; }

.lines .line {
    height: 4px; border-radius: 2px; background: rgba(63,58,58,0.1); margin-bottom: 0.75rem;
}
.w-long { width: 100%; } .w-med { width: 80%; } .w-short { width: 60%; }

/* --- Testimonials --- */
.testimonials { padding: 8rem 0; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars { color: #D6B75A; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 2px; }

.review-text { font-style: italic; font-size: 1.125rem; margin-bottom: 2rem; color: var(--brand-dark); }

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer strong { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 500; }
.reviewer span { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;}

/* --- Input Form & Pricing --- */
.form-section { padding: 6rem 0; overflow: hidden; border-radius: 0 var(--radius-xl) 0 0; }
.form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.form-intro { padding-right: 2rem; padding-top: 2rem; }
.pricing-card {
    display: inline-flex;
    flex-direction: column;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-btn);
}

.price { font-family: var(--font-heading); font-size: 3rem; color: var(--brand-dark); line-height: 1; margin-bottom: 0.5rem; }

.form-wrapper { padding: 3rem; }

.form-group { margin-bottom: 1.5rem; }
.form-row { display: flex; gap: 1rem; }
.half { flex: 1; }

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--brand-dark);
}

.helper-text { display: block; margin-top: 0.25rem; font-size: 0.8rem; color: var(--text-muted); }

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(211, 195, 229, 0.5);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brand-dark);
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-btn);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(113, 92, 143, 0.1);
}

textarea { resize: vertical; min-height: 80px; }

.submit-btn { width: 100%; margin-top: 1rem; font-size: 1.125rem; }

.form-success {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: var(--radius-md);
    animation: fadeIn 0.5s ease-out;
}

.form-success h3 { color: var(--primary-btn); margin-bottom: 1rem; }
.form-success p { margin-bottom: 0; }

/* --- FAQ --- */
.faq-section { padding: 8rem 0; }
.faq-container { max-width: 800px; }
.faq-container h2 { text-align: center; margin-bottom: 3rem; }

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--brand-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-family: var(--font-body);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after { content: '-'; transform: rotate(180deg); }

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

.faq-answer p { padding-bottom: 1.5rem; color: var(--text-main); margin-bottom: 0; }

/* --- Final CTA --- */
.final-cta { padding: 8rem 0; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.cta-container h2 { margin-bottom: 1rem; }
.cta-container p { font-size: 1.25rem; margin-bottom: 2.5rem; }

/* --- Footer --- */
.footer {
    background: #fff;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0;}

.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a:hover { color: var(--primary-btn); }

.footer-legal {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-legal p { margin-bottom: 0; }

.legal-links { display: flex; gap: 1rem; }
.legal-links a:hover { color: var(--brand-dark); }

/* --- Animations & Utilities --- */
.loader {
    width: 20px; height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* --- Responsive Layout --- */
@media (max-width: 900px) {
    .hero-container, .product-container, .form-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-text { text-align: center; }
    .hero-text p { margin: 1.5rem auto 2.5rem; }
    .hero { padding: 8rem 0 4rem; text-align: center;}
    .cta-group { justify-content: center; }
    .steps-container { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .product-container { display: flex; flex-direction: column-reverse; }
    .hero-image-wrapper { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 600px) {
    body { font-size: 15px; }
    .container { padding: 0 1.5rem; }
    .form-wrapper { padding: 2rem 1.5rem; }
    .form-row { flex-direction: column; gap: 0; }
    .footer-container { flex-direction: column; text-align: center; }
    .footer-links { flex-direction: column; gap: 1rem; align-items: center; }
    .footer-legal { flex-direction: column; gap: 1rem; text-align: center; }
    h1 { font-size: 2.5rem; }
    .hero { padding: 7rem 0 3rem; }
}

@media (max-width: 400px) {
    .step-card { padding: 2.5rem 1.5rem; }
    .product-description, .how-it-works, .testimonials, .form-section { padding: 5rem 0; }
}

/* --- Legal Pages --- */
.page-legal { padding-top: 80px; }
.legal-content { padding: 4rem 0 6rem; }
.container-sm { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(2.5rem, 4vw, 3rem); margin-bottom: 2rem; color: var(--brand-dark); line-height: 1.2; }
.legal-content h3 { font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--brand-dark); }
.legal-content p { margin-bottom: 1.5rem; font-size: 1.125rem; }
.legal-content ul { margin-bottom: 2rem; padding-left: 1.5rem; }
.legal-content li { margin-bottom: 0.75rem; font-size: 1.125rem; }
.legal-content a { color: var(--primary-btn); text-decoration: underline; text-underline-offset: 4px; }
.legal-content a:hover { color: var(--primary-btn-hover); }
