﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green: #1D9E75;
    --green-dark: #0F6E56;
    --green-light: #5DCAA5;
    --amber: #EF9F27;
    --bg: #F1EFE8;
    --text: #2C2C2A;
    --muted: #888780;
    --white: #FFFFFF;
    --border: #D3D1C7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: var(--green);
    text-decoration: none;
}

    a:hover {
        color: var(--green-dark);
    }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--green);
}

    .nav-logo span {
        font-weight: 300;
        color: var(--text);
    }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        font-size: 15px;
    }

        .nav-links a:hover {
            color: var(--text);
        }

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
}

    .btn:hover {
        opacity: 0.9;
    }

.btn-primary {
    background: var(--green);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid var(--green);
}

.btn-large {
    padding: 14px 36px;
    font-size: 17px;
}

/* Hero */
.hero {
    background: var(--bg);
    padding: 100px 0 80px;
    text-align: center;
}

    .hero h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 24px;
        color: var(--text);
    }

        .hero h1 span {
            color: var(--green);
        }

    .hero p {
        font-size: 20px;
        color: var(--muted);
        max-width: 600px;
        margin: 0 auto 40px;
    }

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--muted);
}

/* Features */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--muted);
    font-size: 15px;
}

/* Pricing */
.pricing {
    background: var(--bg);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px;
    border: 1px solid var(--border);
}

    .pricing-card.featured {
        border: 2px solid var(--green);
    }

.pricing-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--green);
    margin: 16px 0;
}

    .pricing-price span {
        font-size: 16px;
        font-weight: 400;
        color: var(--muted);
    }

.pricing-features {
    list-style: none;
    margin: 24px 0 32px;
}

    .pricing-features li {
        padding: 8px 0;
        border-bottom: 1px solid var(--border);
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .pricing-features li::before {
            content: '';
            display: inline-block;
            width: 18px;
            height: 18px;
            background: var(--green-light);
            border-radius: 50%;
            flex-shrink: 0;
        }

.trial-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 32px;
}

/* CTA */
.cta {
    padding: 80px 0;
    text-align: center;
}

    .cta h2 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .cta p {
        color: var(--muted);
        font-size: 18px;
        margin-bottom: 40px;
    }

/* Footer */
footer {
    background: var(--text);
    color: #B4B2A9;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-light);
}

    .footer-logo span {
        font-weight: 300;
        color: #B4B2A9;
    }

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

    .footer-links a {
        color: #B4B2A9;
        font-size: 14px;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-copy {
    font-size: 13px;
    margin-top: 24px;
    text-align: center;
    color: #5F5E5A;
}
