:root {
    --bg: #f7f4ed;
    --surface: #ffffff;
    --surface-soft: #f1eee5;
    --text: #1f2933;
    --muted: #5d6a72;
    --line: #d8d2c4;
    --green: #2f5d3a;
    --green-dark: #214329;
    --gold: #b28a3d;
    --max-width: 1120px;
    --shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(247, 244, 237, 0.94);
    border-bottom: 1px solid rgba(216, 210, 196, 0.9);
    backdrop-filter: blur(10px);
}

.header-row,
.site-nav,
.hero-actions,
.cta-actions,
.footer-row,
.lang-toggle {
    display: flex;
    align-items: center;
}

.header-row,
.footer-row {
    justify-content: space-between;
    gap: 24px;
}

.header-row {
    min-height: 76px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
}

.logo-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    background: var(--green);
    color: white;
    border-radius: 10px;
    font-weight: 800;
}

.site-nav {
    gap: 22px;
    flex-wrap: wrap;
}

.site-nav a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a:hover,
.lang-toggle a.active,
.admin-link {
    color: var(--green);
}

.lang-toggle {
    gap: 6px;
    padding-left: 6px;
}

.eyebrow {
    margin: 0 0 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
}

.hero {
    padding: 72px 0 56px;
}

.hero-grid,
.two-col,
.steps-grid,
.region-grid,
.pricing-grid {
    display: grid;
    gap: 24px;
}

.hero-grid,
.two-col {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
}

.hero-copy h1,
.section-header h2,
.cta-card h2 {
    margin: 0;
    line-height: 1.15;
    color: var(--green-dark);
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    max-width: 11ch;
}

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

.lead,
.section-header p,
.info-card p,
.pricing-card p,
.cta-card p {
    color: var(--muted);
}

.lead {
    max-width: 62ch;
    margin: 20px 0 0;
    font-size: 1.05rem;
}

.hero-actions,
.cta-actions {
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-media {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.section {
    padding: 56px 0;
}

.section-alt {
    background: var(--surface-soft);
    border-top: 1px solid rgba(216, 210, 196, 0.7);
    border-bottom: 1px solid rgba(216, 210, 196, 0.7);
}

.section-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.section-header h2,
.cta-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    margin-bottom: 12px;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.info-card,
.region-card,
.pricing-card,
.cta-card {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.step-card,
.info-card,
.region-card,
.pricing-card {
    padding: 24px;
}

.step-number {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(47, 93, 58, 0.12);
    color: var(--green);
    font-weight: 700;
}

.step-card h3,
.info-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    color: var(--green-dark);
}

.step-card p,
.region-card span,
.feature-list,
.info-card p,
.pricing-card p {
    margin: 0;
    color: var(--muted);
}

.feature-list {
    padding-left: 20px;
}

.feature-list li + li {
    margin-top: 10px;
}

.info-card {
    display: grid;
    gap: 8px;
}

.region-grid,
.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.region-card {
    text-align: center;
}

.region-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--green-dark);
    font-size: 1.1rem;
}

.pricing-card {
    min-height: 100%;
}

.pricing-card.featured {
    border-color: rgba(178, 138, 61, 0.55);
}

.price {
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 600;
}

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

.btn-primary:hover {
    background: var(--green-dark);
}

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

.btn-secondary:hover {
    background: rgba(47, 93, 58, 0.06);
}

.site-footer {
    padding: 24px 0 40px;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 920px) {
    .hero-grid,
    .two-col,
    .steps-grid,
    .region-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .header-row,
    .cta-card,
    .footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-nav {
        gap: 14px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 42px;
    }

    .site-nav,
    .hero-actions,
    .cta-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}
