:root {
    --ink: #142235;
    --muted: #5d6b7b;
    --paper: #fbfaf7;
    --surface: #ffffff;
    --line: #dfe4e8;
    --brand: #176b5b;
    --brand-dark: #0e4c40;
    --accent: #e9b949;
    --accent-soft: #fff5d8;
    --danger: #a12626;
    --shadow: 0 20px 60px rgba(21, 38, 55, .10);
    --radius: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.container { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header { position: sticky; top: 0; z-index: 10; border-bottom: 1px solid rgba(223, 228, 232, .9); background: rgba(251, 250, 247, .94); backdrop-filter: blur(14px); }
.header-inner { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--brand); color: #fff; font-size: .85rem; }
.nav { display: flex; align-items: center; gap: 24px; font-size: .94rem; }
.nav a { color: #314154; text-decoration: none; font-weight: 650; }
.nav a:hover { color: var(--brand); }
.nav .login { padding: 9px 15px; border: 1px solid #a9b4bd; border-radius: 999px; }

.hero { padding: 64px 0 52px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: center; gap: 44px; }
.eyebrow { margin: 0 0 14px; color: var(--brand); font-size: .82rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 0; font-size: clamp(2.5rem, 5.2vw, 4.3rem); }
.hero-copy { max-width: 680px; margin: 18px 0 0; color: var(--muted); font-size: clamp(1.02rem, 1.7vw, 1.2rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 19px; border: 1px solid transparent; border-radius: 10px; text-decoration: none; font-weight: 760; cursor: pointer; }
.button-primary { background: var(--brand); color: #fff; }
.button-primary:hover { background: var(--brand-dark); }
.button-secondary { border-color: #aeb8c1; background: #fff; color: var(--ink); }
.trust-line { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 24px; color: #415164; font-size: .92rem; }
.trust-line span::before { content: "✓"; margin-right: 8px; color: var(--brand); font-weight: 900; }

.hero-panel { position: relative; padding: 24px; border: 1px solid #d8dedf; border-radius: 20px; background: #fff; box-shadow: var(--shadow); }
.hero-panel::before { content: ""; position: absolute; z-index: -1; width: 260px; height: 260px; right: -70px; top: -70px; border-radius: 50%; background: var(--accent-soft); }
.panel-label { margin: 0 0 18px; color: var(--muted); font-size: .86rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.delivery-list { display: grid; gap: 18px; }
.delivery-item { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.delivery-day { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: #775800; font-size: .76rem; font-weight: 850; }
.delivery-item strong { display: block; margin-bottom: 2px; }
.delivery-item span { color: var(--muted); font-size: .93rem; }

.experience-strip { padding: 8px 0 0; }
.experience-inner { display: grid; grid-template-columns: 112px minmax(0, 1fr); align-items: center; gap: 24px; padding: 22px 26px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.experience-inner strong { color: var(--brand); font-size: 1.05rem; line-height: 1; white-space: nowrap; }
.experience-inner strong span { display: block; margin-bottom: 5px; font-size: 2.5rem; letter-spacing: -.05em; }
.experience-inner p { margin: 0; color: #415164; }

.section { padding: 64px 0; }
.section-alt { background: #f1f4f2; }
.section-heading { max-width: 720px; margin-bottom: 28px; }
.section-heading h2 { margin: 0; font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.section-heading p { margin: 12px 0 0; color: var(--muted); font-size: 1.04rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.card-number { display: inline-grid; place-items: center; min-width: 34px; height: 34px; margin-bottom: 20px; border-radius: 10px; background: #e4f0ed; color: var(--brand); font-weight: 850; }
.card h3 { margin: 0 0 10px; font-size: 1.22rem; }
.card p { margin: 0; color: var(--muted); }

.schedule { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: start; }
.schedule-copy h2 { margin-top: 0; font-size: clamp(2rem, 4vw, 3.25rem); }
.schedule-copy p { color: var(--muted); }
.schedule-steps { display: grid; gap: 10px; }
.schedule-step { display: grid; grid-template-columns: 128px minmax(0, 1fr); gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.schedule-step time { color: var(--brand); font-weight: 850; white-space: nowrap; }
.schedule-step strong { display: block; margin-bottom: 4px; }
.schedule-step span { color: var(--muted); }

.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.price-card { position: relative; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.price-card.featured { border-color: var(--brand); box-shadow: 0 16px 45px rgba(23, 107, 91, .13); }
.tag { position: absolute; top: 18px; right: 18px; padding: 5px 9px; border-radius: 999px; background: #e4f0ed; color: var(--brand); font-size: .76rem; font-weight: 800; }
.price { margin: 18px 0 4px; font-size: 2.5rem; font-weight: 850; letter-spacing: -.04em; }
.price-note, .pricing-footnote { color: var(--muted); }
.pricing-footnote { max-width: 760px; margin: 24px 0 0; }

.form-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 34px; align-items: start; }
.form-copy { position: sticky; top: 104px; }
.form-copy h2 { margin-top: 0; font-size: clamp(2rem, 4vw, 3.2rem); }
.form-copy p { color: var(--muted); }
.form-points { display: grid; gap: 12px; margin-top: 24px; }
.form-points div { padding: 13px 15px; border-radius: 10px; background: #e8efed; }
.application-form { padding: 26px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 16px; }
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label, fieldset legend { display: block; margin-bottom: 7px; font-weight: 730; }
.required { color: var(--danger); }
.field input, .field select, .field textarea { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #aeb8c1; border-radius: 9px; background: #fff; color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(23, 107, 91, .18); border-color: var(--brand); }
fieldset { margin: 0; padding: 0; border: 0; }
.radios { display: flex; flex-wrap: wrap; gap: 10px; }
.radio { display: flex; align-items: center; gap: 8px; min-height: 44px; padding: 9px 13px; border: 1px solid #b5bec6; border-radius: 9px; }
.radio input { width: auto; min-height: auto; margin: 0; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; color: var(--muted); font-size: .9rem; }
.consent input { margin-top: 5px; }
.form-submit { width: 100%; margin-top: 18px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .87rem; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq { display: grid; gap: 10px; }
.faq details { padding: 15px 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.faq summary { cursor: pointer; font-weight: 750; }
.faq p { margin-bottom: 0; color: var(--muted); }
.site-footer { padding: 26px 0; border-top: 1px solid var(--line); color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }

.result-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: #eef2ef; }
.result-card { width: min(100%, 620px); padding: 36px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.result-card h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
.result-card p { color: var(--muted); }
.result-id { padding: 12px 14px; border-radius: 9px; background: #f1f4f2; font-family: ui-monospace, monospace; }
.result-error { border-color: #efcaca; }

@media (max-width: 900px) {
    .nav a:not(.login) { display: none; }
    .hero-grid, .schedule, .form-layout { grid-template-columns: 1fr; }
    .hero { padding-top: 48px; }
    .hero-panel { max-width: 640px; }
    .cards, .pricing { grid-template-columns: 1fr; }
    .form-copy { position: static; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, 1120px); }
    .header-inner { min-height: 64px; }
    .brand-mark { display: none; }
    .nav { gap: 10px; }
    .hero { padding: 38px 0 44px; }
    h1 { font-size: clamp(2.35rem, 12vw, 3.4rem); }
    .section { padding: 48px 0; }
    .form-grid { grid-template-columns: 1fr; }
    .field-wide { grid-column: auto; }
    .application-form { padding: 20px 16px; }
    .schedule-step { grid-template-columns: 1fr; gap: 6px; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
    .experience-strip { padding-top: 8px; }
    .experience-inner { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
    .experience-inner strong span { display: inline; margin: 0 4px 0 0; font-size: 1.5rem; }
}
