:root {
    --bg:           #FAF9F7;
    --surface:      #FEFcF9;
    --sage:         #5C7A5E;
    --sage-light:   #7A9E7C;
    --terracotta:   #C56A45;
    --kraft:        #C4956A;
    --dusty-rose:   #C4837A;
    --cream:        #F5F0E8;
    --text-primary: #2C2C2C;
    --text-secondary: #7A7A72;
    --text-tertiary:  #ADADA5;
    --divider:      #E8E5DF;
    --card-bg:      #FEEFCC20;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Header ─── */
header {
    padding: 1.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider);
}

.logo {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 0.3px;
}

nav { display: flex; align-items: center; gap: 2rem; }

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--sage);
    color: white !important;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--sage-light) !important;
    transform: translateY(-1px);
    color: white !important;
}

/* ─── Hero ─── */
.hero {
    padding: 7rem 0 5rem;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 700px; height: 500px;
    background: radial-gradient(circle, rgba(92, 122, 94, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--cream);
    color: var(--sage);
    border: 1px solid var(--divider);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 1.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 span { color: var(--terracotta); }

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--sage);
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 24px rgba(92, 122, 94, 0.28);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(92, 122, 94, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--sage);
    border: 1.5px solid var(--sage);
    box-shadow: none;
    margin-left: 1rem;
    padding: 0.95rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--cream);
    box-shadow: none;
    transform: translateY(-1px);
}

.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem; }

/* ─── Social proof ─── */
.proof {
    padding: 2rem 0 5rem;
    text-align: center;
}

.proof p {
    font-size: 0.88rem;
    color: var(--text-tertiary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ─── Features ─── */
.features {
    padding: 5rem 0;
    border-top: 1px solid var(--divider);
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 3.5rem;
    line-height: 1.65;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(92, 122, 94, 0.35);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px; height: 44px;
    background: var(--cream);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    border: 1px solid var(--divider);
}

.feature-card h3 {
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

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

/* ─── How it works ─── */
.how {
    padding: 5rem 0;
    border-top: 1px solid var(--divider);
    background: var(--cream);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.how-inner { max-width: 1060px; margin: 0 auto; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.step { text-align: center; }

.step-num {
    width: 40px; height: 40px;
    background: var(--sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin: 0 auto 1.25rem;
}

.step h3 {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing {
    padding: 5rem 0;
    border-top: 1px solid var(--divider);
    text-align: center;
}

.pricing-card {
    display: inline-block;
    background: var(--surface);
    border: 1.5px solid var(--divider);
    border-radius: 24px;
    padding: 3rem 3.5rem;
    max-width: 440px;
    width: 100%;
    text-align: left;
    margin-top: 2.5rem;
}

.pricing-badge {
    display: inline-block;
    background: rgba(92, 122, 94, 0.1);
    color: var(--sage);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-family: Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: -apple-system, sans-serif;
    font-weight: 400;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-features { list-style: none; margin-bottom: 2rem; }

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
    content: '✓';
    color: var(--sage);
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pricing-free {
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    text-align: center;
}

/* ─── CTA ─── */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid var(--divider);
}

.cta-section h2 {
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-section h2 span { color: var(--terracotta); }

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Legal & Support ─── */
.legal-content { padding: 3rem 0 5rem; max-width: 760px; }

.legal-content h1 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.legal-content .meta {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--divider);
}

.legal-content h2 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p, .legal-content li {
    font-size: 0.96rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }

.legal-content a { color: var(--sage); }

.contact-btn {
    display: inline-block;
    margin-top: 1.5rem;
    background: var(--sage);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.2s;
}

.contact-btn:hover { background: var(--sage-light); transform: translateY(-1px); color: white; }

/* ─── Footer ─── */
footer {
    border-top: 1px solid var(--divider);
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; justify-content: center; }

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-copy { color: var(--text-tertiary); font-size: 0.8rem; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .hero { padding: 4rem 0 3rem; }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 1.9rem; }
    .pricing-card { padding: 2rem; }
    nav .nav-cta { display: none; }
}
