:root {
    --bg: #f3f6fa;
    --bg-alt: #ffffff;
    --bg-soft: #edf2e7;
    --line: #d5dde7;
    --line-strong: #b7c3d2;
    --text: #243454;
    --muted: #607086;
    --brand: #95d11f;
    --brand-dark: #79af12;
    --footer: #95d11f;
    --container: 1280px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 4rem), var(--container)); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    border-bottom: 1px solid rgba(183,195,210,.6);
    backdrop-filter: blur(14px);
}
.nav-shell {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand { display: inline-flex; align-items: center; max-width: min(400px, 100%); }
.brand-logo { width: min(400px, 100%); height: auto; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: center; flex: 1; }
.site-nav a { font-weight: 700; color: var(--muted); }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.nav-phone { white-space: nowrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.35rem;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    font-weight: 800;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
    cursor: pointer;
}
.btn-primary { background: var(--brand); color: #1e2b44; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--brand-dark); color: #1e2b44; }
.btn-secondary { border-color: var(--line-strong); background: #fff; }
.btn-secondary:hover, .btn-secondary:focus-visible { background: #f8fbfd; }
section { position: relative; }
.section-shell { padding: 5.5rem 0; border-bottom: 1px solid var(--line); }
.section-shell.white { background: var(--bg-alt); }
.section-shell.soft { background: var(--bg-soft); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 .9rem;
    background: rgba(149,209,31,.12);
    border: 1px solid rgba(149,209,31,.24);
    color: #517207;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.06; letter-spacing: -.04em; }
.section-title { font-size: clamp(2.1rem, 4.2vw, 4rem); }
.section-title span, .hero-copy h1 span { color: var(--brand-dark); }
.section-lead { max-width: 62ch; margin: 1rem 0 0; color: var(--muted); font-size: 1.08rem; }
.hero {
    padding: 5.5rem 0 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(149,209,31,.16), transparent 28%),
        linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 100%);
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
    align-items: center;
    min-height: 760px;
}
.hero-copy p { max-width: 58ch; margin: 1.4rem 0 0; color: var(--muted); font-size: 1.1rem; }
.hero-copy h1 { margin-top: 1rem; font-size: clamp(3rem, 7vw, 5.8rem); max-width: 9ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-points {
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.hero-points div { padding-right: 1rem; border-right: 1px solid var(--line); }
.hero-points div:last-child { border-right: 0; }
.hero-points strong { display: block; font-size: 1.35rem; margin-bottom: .25rem; }
.hero-points span { color: var(--muted); }
.hero-media {
    min-height: 760px;
    background:
        linear-gradient(180deg, rgba(36,52,84,.10), rgba(36,52,84,.35)),
        url('../img/header-bg.png') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    border-left: 1px solid var(--line);
}
.hero-media-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(255,255,255,.9);
    border-top: 1px solid rgba(183,195,210,.7);
    backdrop-filter: blur(10px);
}
.hero-media-strip article { padding: 1.2rem 1.1rem; border-right: 1px solid rgba(183,195,210,.7); border-bottom: 1px solid rgba(183,195,210,.7); }
.hero-media-strip article:nth-child(2n) { border-right: 0; }
.hero-media-strip strong { display: block; margin-bottom: .3rem; }
.hero-media-strip span { color: #53647d; font-size: .95rem; }
.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}
.about-copy p, .about-copy ul, .contact-copy p { color: var(--muted); }
.plain-list {
    list-style: none;
    margin: 1.8rem 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
}
.plain-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.25rem;
    align-items: start;
}
.plain-list strong { font-size: 1rem; }
.service-list {
    margin-top: 2.2rem;
    border-top: 1px solid var(--line);
    background: transparent;
}
.service-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    padding: 1.45rem 0;
    border-bottom: 1px solid var(--line);
}
.service-row h3 { font-size: 1.2rem; }
.service-row p { margin: 0; color: var(--muted); }
.feature-band {
    background: var(--text);
    color: #f4f8fb;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.feature-band-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}
.feature-band h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature-band p { margin: 0; color: rgba(244,248,251,.78); }
.contact-shell {
    background: var(--bg-alt);
    border-top: 4px solid var(--brand);
    border-bottom: 1px solid var(--line);
}
.contact-grid { align-items: stretch; }
.contact-copy { padding: 4rem 0 3rem; }
.contact-form-wrap { padding: 4rem 0 3rem; border-left: 1px solid var(--line); }
.contact-form-inner { padding-left: 3rem; }
form { display: grid; gap: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
label { display: block; margin-bottom: .2rem; font-size: .95rem; font-weight: 700; }
input, textarea {
    width: 100%;
    min-height: 56px;
    padding: 0 1rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    color: var(--text);
    background: #fff;
}
textarea { min-height: 180px; padding: 1rem; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.notice { margin-bottom: 1rem; padding: 14px 16px; border-radius: 0; font-weight: 600; }
.notice.success { background: #edf9d4; color: #3f5b0d; border: 1px solid #cfe89a; }
.notice.error { background: #fff0f0; color: #8f2e2e; border: 1px solid #f0c0c0; }
.site-footer {
    margin-top: 0;
    background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #eef4fa;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -4%;
    width: 108%;
    height: 95px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f3f6fa' d='M0,82 C150,42 320,122 500,92 C680,62 785,34 930,58 C1110,88 1290,128 1440,90 L1440,0 L0,0 Z'/%3E%3Cpath fill='none' stroke='%234b5568' stroke-opacity='.35' stroke-width='2' d='M0,84 C150,44 320,124 500,94 C680,64 785,36 930,60 C1110,90 1290,130 1440,92'/%3E%3C/svg%3E");
    pointer-events: none;
}
.footer-inner { display: grid; gap: 2rem; justify-items: center; text-align: center; }
.footer-logo { width: min(320px, 100%); }
.footer-copy, .footer-meta, .footer-nav a { color: #1f2d45; }
.footer-contact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(31,45,69,.12);
    border-left: 1px solid rgba(31,45,69,.12);
    background: rgba(255,255,255,.14);
}
.footer-contact {
    border-right: 1px solid rgba(31,45,69,.12);
    border-bottom: 1px solid rgba(31,45,69,.12);
    background: transparent;
    padding: 1.35rem;
}
.footer-contact strong { display: block; color: #1f2d45; margin-bottom: .35rem; }
.footer-nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: #fff; }
@media (max-width: 1100px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .feature-band-grid,
    .footer-contact-grid,
    .field-row {
        grid-template-columns: 1fr;
    }
    .hero { padding-bottom: 3rem; }
    .hero-media,
    .contact-form-wrap { border-left: 0; }
    .contact-form-inner { padding-left: 0; }
}
@media (max-width: 860px) {
    .nav-shell {
        min-height: auto;
        padding: 1rem 0;
        align-items: flex-start;
        flex-direction: column;
    }
    .brand,
    .brand-logo { width: min(320px, 78vw); max-width: min(320px, 78vw); }
    .site-nav { justify-content: flex-start; }
    .hero-points,
    .hero-media-strip,
    .plain-list li,
    .service-row { grid-template-columns: 1fr; }
    .hero-points div { border-right: 0; padding-right: 0; }
    .container { width: min(calc(100% - 2rem), var(--container)); }
}
