/* === Variables & Reset === */
:root {
    --primary: #0d9488;
    --primary-dark: #0a7a70;
    --primary-light: #14b8a6;
    --bg: #ecfdf5;
    --bg-white: #ffffff;
    --text: #1a2e35;
    --text-light: #4a6670;
    --text-muted: #6b8a95;
    --border: #d1e7e0;
    --shadow: rgba(13, 148, 136, 0.1);
    --shadow-glow: rgba(13, 148, 136, 0.35);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text);
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--bg);
    border-color: var(--bg);
    color: var(--primary-dark);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.logo:hover {
    color: var(--primary-dark);
}

.nav {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav a:hover {
    color: var(--primary);
}

.nav a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.zodiac-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.zodiac-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.zodiac-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.zodiac-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 6px;
}

.zodiac-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* === Features === */
.features {
    padding: 100px 0;
}

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

.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 30px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-offset-1 {
    margin-top: 0;
}

.feature-offset-2 {
    margin-top: 30px;
}

.feature-offset-3 {
    margin-top: 60px;
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === Reviews === */
.reviews {
    padding: 100px 0;
    background: #fff;
}

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

.review-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 32px 28px;
    border-left: 4px solid var(--primary);
    transition: transform var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
    font-style: italic;
}

.review-author strong {
    display: block;
    color: var(--text);
    margin-bottom: 4px;
}

.review-badge {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(13, 148, 136, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

/* === Steps === */
.steps {
    padding: 100px 0;
}

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

.step-card {
    text-align: center;
    padding: 40px 30px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* === Plans === */
.plans {
    padding: 100px 0;
    background: #fff;
}

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

.plan-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: transform var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-4px);
}

.plan-featured {
    background: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 40px var(--shadow-glow);
    transform: scale(1.04);
}

.plan-featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.plan-price {
    font-family: 'Merriweather', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.plan-features {
    text-align: left;
    margin-bottom: 28px;
}

.plan-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.plan-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

.plan-card .btn {
    width: 100%;
}

/* === CTA Banner === */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #fff;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.92;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
}

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

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-question:hover {
    color: var(--primary);
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

/* === Contact === */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background: var(--bg);
    padding: 36px;
    border-radius: var(--radius);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    padding: 36px;
}

.contact-info p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.disclaimer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

/* === Footer === */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: #fff;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-bottom: 24px;
}

.footer-legal p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text);
    color: rgba(255, 255, 255, 0.9);
    padding: 18px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

/* === Legal Pages === */
.legal-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.legal-page .container {
    max-width: 820px;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text);
}

.legal-page .legal-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--text);
}

.legal-page h3 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--text);
}

.legal-page p,
.legal-page li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul {
    list-style: disc;
}

.legal-page ol {
    list-style: decimal;
}

.legal-page a {
    color: var(--primary);
    text-decoration: underline;
}

/* === Contact Page Cards === */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: 0 4px 16px var(--shadow);
    border-top: 3px solid var(--primary);
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--primary);
}

/* === Form Success === */
.form-success {
    text-align: center;
    padding: 30px;
    background: var(--bg);
    border-radius: var(--radius);
    display: none;
}

.form-success.show {
    display: block;
}

.form-success p {
    color: var(--primary);
    font-weight: 600;
}

/* === Responsive === */
@media (max-width: 992px) {
    .features-grid,
    .reviews-grid,
    .steps-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .feature-offset-1,
    .feature-offset-2,
    .feature-offset-3 {
        margin-top: 0;
    }

    .plan-featured {
        transform: none;
    }

    .plan-featured:hover {
        transform: translateY(-4px);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 20px var(--shadow);
        transform: translateY(-120%);
        transition: transform 0.4s ease;
    }

    .nav.open {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 130px 0 70px;
    }

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

    .zodiac-cards {
        flex-wrap: wrap;
        gap: 12px;
    }

    .zodiac-card {
        padding: 14px 18px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 36px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .legal-page {
        padding: 100px 0 60px;
    }
}