:root {
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #ede9fe;
    --accent: #a78bfa;
    --bg: #faf8ff;
    --bg-alt: #f3f0ff;
    --text: #1e1b4b;
    --text-light: #6b7280;
    --white: #ffffff;
    --border: #e5e7eb;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(124,58,237,0.08);
    --shadow-lg: 0 12px 48px rgba(124,58,237,0.12);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.3; }

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

/* Header */
.header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(250,248,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.nav { display: flex; gap: 32px; }
.nav a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: color 0.3s; }
.nav a:hover { color: var(--primary); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); transition: 0.3s; }

/* Buttons */
.btn {
    display: inline-block; padding: 14px 32px; border-radius: 50px; font-weight: 600;
    text-decoration: none; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-full { width: 100%; text-align: center; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Hero */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-light) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-text h1 { font-size: 3.2rem; margin-bottom: 20px; }
.hero-text .accent { color: var(--primary); }
.hero-text p { font-size: 1.15rem; color: var(--text-light); margin-bottom: 32px; }
.hero-text .btn { margin-right: 12px; margin-bottom: 12px; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.zodiac-circle {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.zodiac-icon {
    width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow); transition: transform 0.3s;
}
.zodiac-icon:hover { transform: scale(1.1); }

/* Sections common */
section { padding: 80px 0; }
section:nth-child(even) { background: var(--bg-alt); }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: var(--text-light); margin-bottom: 48px; font-size: 1.05rem; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
    background: var(--white); padding: 40px 32px; border-radius: var(--radius);
    box-shadow: var(--shadow); text-align: center; transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.feature-card p { color: var(--text-light); }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step { text-align: center; }
.step-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--accent); opacity: 0.6; }
.step h3 { font-size: 1.2rem; margin: 8px 0; }
.step p { color: var(--text-light); }

/* Plans */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.plan-card {
    background: var(--white); padding: 40px 32px; border-radius: var(--radius);
    box-shadow: var(--shadow); position: relative; transition: transform 0.3s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-card.featured { border: 2px solid var(--primary); transform: scale(1.04); }
.plan-card.featured:hover { transform: scale(1.06); }
.plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: var(--white); padding: 6px 20px;
    border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}
.plan-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.plan-desc { color: var(--text-light); margin-bottom: 20px; }
.plan-card ul { list-style: none; margin-bottom: 28px; }
.plan-card li { padding: 6px 0; color: var(--text-light); }
.plan-card .btn { width: 100%; text-align: center; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.review-card {
    background: var(--white); padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.review-stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 12px; }
.review-text { font-style: italic; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.review-author strong { display: block; color: var(--text); }
.review-author span { font-size: 0.85rem; color: var(--text-light); }

/* CTA */
.cta-section { background: var(--primary); padding: 80px 0; }
.cta-box { text-align: center; color: var(--white); }
.cta-box h2 { color: var(--white); margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.1rem; }
.cta-box .btn-primary { background: var(--white); color: var(--primary); border-color: var(--white); }
.cta-box .btn-primary:hover { background: transparent; color: var(--white); }

/* FAQ */
.faq-list { max-width: 768px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%; background: none; border: none; padding: 20px 0; font-size: 1.05rem;
    font-weight: 600; text-align: left; cursor: pointer; color: var(--text);
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Inter', sans-serif;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--text-light); }
.faq-answer a { color: var(--primary); }

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem; transition: border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.contact-info { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.disclaimer { background: var(--primary-light); padding: 20px; border-radius: var(--radius); font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.info-block h4 { font-size: 1rem; margin-bottom: 4px; }
.info-block p { color: var(--text-light); }
.success-icon { font-size: 3rem; color: var(--primary); margin-bottom: 12px; }
.form-success { text-align: center; padding: 40px 0; }
.form-success h3 { margin-bottom: 8px; }

/* Footer */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-col h4 { color: var(--white); margin-bottom: 16px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; }
.footer-legal { margin-top: 16px; font-size: 0.78rem; line-height: 1.6; opacity: 0.6; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--white); box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
    padding: 20px; display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cookie-inner p { font-size: 0.9rem; color: var(--text-light); }
.cookie-inner a { color: var(--primary); }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }

/* Legal pages */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2.4rem; margin-bottom: 24px; text-align: left; }
.legal-page h2 { text-align: left; font-size: 1.5rem; margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--text-light); margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; }
.legal-page a { color: var(--primary); }
.back-link { display: inline-block; margin-bottom: 32px; color: var(--primary); text-decoration: none; font-weight: 500; }
.back-link:hover { text-decoration: underline; }

/* Contact page cards */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.contact-card {
    background: var(--white); padding: 32px; border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-light); }

/* Responsive */
@media (max-width: 768px) {
    .nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; box-shadow: var(--shadow); }
    .nav.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-visual { order: -1; }
    .features-grid, .plans-grid, .reviews-grid, .steps-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-inner { flex-direction: column; text-align: center; }
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-4px); }
    .contact-cards { grid-template-columns: 1fr; }
}
