/* === Variables & Reset === */
:root {
    --orange: #e67e22;
    --orange-dark: #d35400;
    --cream: #fdf6ec;
    --brown: #3d2c1e;
    --brown-light: #5a4332;
    --white: #ffffff;
    --gray-light: #f5f0e8;
    --gray: #b8a999;
    --shadow: 0 4px 20px rgba(61, 44, 30, 0.1);
    --shadow-hover: 0 8px 30px rgba(61, 44, 30, 0.15);
    --radius: 12px;
    --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: 'Nunito', sans-serif;
    font-weight: 400;
    color: var(--brown);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
}

.btn-secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--brown);
}

.section-subtitle {
    text-align: center;
    color: var(--brown-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(253, 246, 236, 0.98);
    border-bottom-color: rgba(61, 44, 30, 0.1);
    box-shadow: 0 2px 20px rgba(61, 44, 30, 0.08);
}

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

.logo {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
}

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

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

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

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

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown);
    transition: all var(--transition);
    border-radius: 2px;
}

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

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

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

/* === Hero === */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, #fef9f0 100%);
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 1.15rem;
    color: var(--brown-light);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 340px;
}

.zodiac-symbol {
    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: all var(--transition);
    cursor: default;
}

.zodiac-symbol:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-hover);
    background: var(--orange);
    color: var(--white);
}

/* === Steps === */
.steps {
    padding: 100px 0;
    background: var(--white);
}

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

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

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

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

/* === Features === */
.features {
    padding: 100px 0;
    background: var(--cream);
}

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

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.feature-large {
    padding: 44px;
}

.feature-large .feature-icon {
    font-size: 3rem;
}

.feature-large h3 {
    font-size: 1.4rem;
}

.feature-large p {
    font-size: 1rem;
}

/* === Reviews === */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

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

.review-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.review-stars {
    color: var(--orange);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

.review-author strong {
    display: block;
    margin-bottom: 4px;
}

.review-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

/* === Plans === */
.plans {
    padding: 100px 0;
    background: var(--cream);
}

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

.plan-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    position: relative;
    border-top: 4px solid transparent;
}

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

.plan-featured {
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--orange), var(--orange-dark)) 1;
    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: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 20px;
    border-radius: 20px;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-light);
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.plan-desc {
    color: var(--brown-light);
    font-size: 0.9rem;
}

.plan-benefits {
    margin-bottom: 28px;
}

.plan-benefits li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--brown-light);
}

.plan-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.plan-btn {
    display: block;
    text-align: center;
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.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;
    padding-bottom: 20px;
}

.faq-answer p {
    color: var(--brown-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3e0 0%, var(--cream) 100%);
}

.cta-inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.cta-card {
    flex: 1.2;
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow);
    text-align: center;
}

.cta-card h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--brown-light);
    margin-bottom: 24px;
}

.cta-trust {
    flex: 0.8;
}

.cta-trust p {
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--brown-light);
    border-bottom: 1px solid rgba(61, 44, 30, 0.1);
}

.cta-trust p:last-child {
    border-bottom: none;
}

/* === Contact === */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-form {
    max-width: 680px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(61, 44, 30, 0.2);
    border-radius: 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--brown);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 4px;
    accent-color: var(--orange);
}

.form-checkbox label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--brown-light);
}

.contact-disclaimer {
    text-align: center;
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--gray);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo {
    color: var(--white);
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 30px 0;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.legal-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* === Cookie Banner === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brown);
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--orange);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

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

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

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-align: center;
}

.legal-page .legal-date {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.legal-page h2 {
    font-size: 1.4rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--brown);
}

.legal-page h3 {
    font-size: 1.15rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.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.back-link {
    display: inline-block;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 0.95rem;
}

.legal-page a.back-link::before {
    content: '← ';
}

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

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

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

.contact-card a {
    font-weight: 500;
}

/* === Form Success === */
.form-success {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius);
    max-width: 680px;
    margin: 0 auto;
}

.form-success h3 {
    color: var(--orange);
    margin-bottom: 10px;
}

/* === Responsive === */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-text p {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .plan-featured {
        transform: none;
    }

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

    .cta-inner {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-bottom: 1px solid rgba(61, 44, 30, 0.1);
        box-shadow: var(--shadow);
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(61, 44, 30, 0.05);
    }

    .nav-link::after {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 110px 0 60px;
    }

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

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

    .zodiac-grid {
        max-width: 280px;
        gap: 10px;
    }

    .zodiac-symbol {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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