/* ===== VARIABLES ===== */
:root {
    --primary: #166534;
    --primary-dark: #14532d;
    --primary-light: #22c55e;
    --accent: #ca8a04;
    --accent-light: #eab308;
    --accent-dark: #a16207;
    --bg: #f0fdf4;
    --bg-white: #ffffff;
    --text: #1a1a1a;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --border: #d1d5db;
    --shadow: 0 4px 24px rgba(22, 101, 52, 0.10);
    --shadow-lg: 0 8px 40px rgba(22, 101, 52, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
    --font-heading: 'Libre Baskerville', Georgia, serif;
    --font-body: 'Karla', Arial, sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

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

.btn-hero {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    font-size: 1.1rem;
    padding: 16px 40px;
}
.btn-hero:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.4);
}

.btn-cta {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
    font-size: 1.1rem;
    padding: 16px 40px;
}
.btn-cta:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: var(--primary-dark);
    box-shadow: 0 0 30px rgba(202, 138, 4, 0.4);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(22, 101, 52, 0.08);
    transition: var(--transition);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
}
.logo:hover { color: var(--primary); }

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #14532d 0%, #166534 40%, #1a7a3d 70%, #0f4a24 100%);
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(202, 138, 4, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(234, 179, 8, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 83, 45, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    border: 2px solid rgba(202, 138, 4, 0.4);
    border-radius: var(--radius);
    background: rgba(22, 101, 52, 0.3);
    box-shadow: 0 0 60px rgba(202, 138, 4, 0.15), inset 0 0 60px rgba(202, 138, 4, 0.05);
}

.hero h1 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius);
    background: var(--bg);
    transition: var(--transition);
    border: 1px solid transparent;
}
.feature-card:hover {
    box-shadow: var(--shadow);
    border-color: rgba(22, 101, 52, 0.15);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

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

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

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

.plan-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.plan-featured {
    border-color: var(--accent);
    transform: scale(1.05);
    z-index: 2;
}
.plan-featured:hover { transform: scale(1.05) translateY(-4px); }

.plan-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--primary-dark);
    padding: 6px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.plan-header h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}
.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}
.plan-features li {
    padding: 8px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--bg);
}

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

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

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

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

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

.review-author strong {
    display: block;
    color: var(--primary-dark);
    font-size: 1rem;
}
.review-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #14532d, #166534, #1a7a3d);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    font-weight: 300;
}

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

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

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

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(22, 101, 52, 0.25);
}

.step-card h3 {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

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

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 40px 20px 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

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

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

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
}

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

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

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

.contact-disclaimer {
    padding: 20px 24px;
    background: rgba(22, 101, 52, 0.06);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.contact-disclaimer p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px 0;
    display: none;
}

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

.cookie-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-light);
    min-width: 280px;
}

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

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

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

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding: 4px 0;
}
.footer-col a:hover { color: var(--accent); }

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

.footer-legal p {
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== LEGAL PAGES ===== */
.legal-page {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.legal-content h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.legal-content .legal-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 36px;
    display: block;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.8;
}

.legal-content ul, .legal-content ol {
    margin: 12px 0 20px 24px;
    color: var(--text);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

/* ===== CONTACT PAGE ===== */
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.contact-info-card h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-size: 1.15rem;
}

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

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid, .plans-grid, .reviews-grid, .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-featured { transform: scale(1); }
    .plan-featured:hover { transform: translateY(-4px); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-toggle { display: flex; }

    .hero h1 { font-size: 2rem; }
    .hero-content { padding: 32px 24px; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; margin-bottom: 36px; }

    .features-grid, .plans-grid, .reviews-grid, .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-inner { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }

    .contact-form { padding: 28px 20px; }
    .legal-content { padding: 28px 20px; }

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

@media (max-width: 480px) {
    .hero { min-height: 70vh; }
    .hero h1 { font-size: 1.6rem; }
    .btn-hero, .btn-cta { padding: 14px 28px; font-size: 1rem; }
    .plan-price { font-size: 2rem; }
}