:root {
    --green: #00d600;
    --green-dark: #00b800;
    --black: #090909;
    --ink: #141414;
    --muted: #676767;
    --line: #dedede;
    --line-dark: #2a2a2a;
    --soft: #f6f7f5;
    --white: #ffffff;
    --container: 1280px;
    --shadow: 0 18px 46px rgba(0, 0, 0, .075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body::selection { color: var(--black); background: var(--green); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 84px 0; }
.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 100;
    padding: 12px 16px;
    color: var(--black);
    background: var(--green);
    font-weight: 700;
    transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: 78px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
}
.header-accent { position: absolute; inset: 0 0 auto; height: 4px; background: var(--green); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 200px; line-height: 0; }
.brand img { width: 100%; height: 50px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #333; font-size: 13px; font-weight: 650; }
.main-nav > a:not(.nav-cta) { position: relative; padding: 28px 0 24px; }
.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 19px;
    height: 2px;
    background: var(--green);
    transition: right .18s ease;
}
.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.nav-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid var(--green);
    color: var(--black);
    background: var(--green);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-cta:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 38% 25%, rgba(0, 214, 0, .06), transparent 24%),
        linear-gradient(180deg, #fff 0%, #fbfcfb 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .36;
    background-image: radial-gradient(#cfcfcf .7px, transparent .7px);
    background-size: 16px 16px;
    mask-image: linear-gradient(90deg, transparent 0, #000 27%, #000 57%, transparent 72%);
}
.hero-grid {
    position: relative;
    z-index: 1;
    min-height: 606px;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(250px, .68fr) minmax(350px, .84fr);
    align-items: stretch;
}
.hero-copy { align-self: center; padding: 66px 58px 62px 0; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 24px;
    color: #5d5d5d;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow > span { width: 28px; height: 2px; background: var(--green); }
.hero h1 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(48px, 4.55vw, 68px);
    line-height: .96;
    letter-spacing: -.048em;
    font-weight: 680;
    text-transform: uppercase;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong {
    margin-top: 10px;
    color: var(--green);
    font-size: .93em;
    font-weight: 760;
    white-space: nowrap;
}
.hero-lead { max-width: 590px; margin: 24px 0 28px; color: var(--muted); font-size: 15.5px; line-height: 1.72; }
.hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 590px; }
.trust-card {
    min-height: 92px;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 14px;
    align-items: start;
    padding: 17px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
}
.trust-card svg { width: 30px; height: 30px; color: var(--green-dark); fill: none; stroke: currentColor; stroke-width: 1.7; }
.trust-card p { margin: 0; }
.trust-card strong, .trust-card span { display: block; }
.trust-card strong { margin-bottom: 3px; font-size: 12px; font-weight: 760; text-transform: uppercase; letter-spacing: .03em; }
.trust-card span { color: var(--muted); font-size: 12px; line-height: 1.45; }

.hero-visual { position: relative; align-self: stretch; min-width: 0; margin: 30px 0; }
.visual-frame {
    position: absolute;
    inset: 0 -18px 0 -10px;
    z-index: 1;
    overflow: hidden;
    border: 2px solid var(--green);
    background: #111;
    clip-path: polygon(31% 0, 100% 0, 100% 100%, 0 100%, 0 31%);
}
.visual-frame picture, .visual-frame img { width: 100%; height: 100%; }
.visual-frame img { object-fit: cover; object-position: 49% center; filter: saturate(.82) contrast(1.06); }
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 10px -27px -10px 7px;
    z-index: 0;
    border: 1px solid rgba(0, 214, 0, .68);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 30%);
}
.visual-label {
    position: absolute;
    left: 0;
    right: -18px;
    bottom: 18px;
    z-index: 2;
    padding: 11px 16px;
    color: #fff;
    background: rgba(8, 8, 8, .88);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-panel {
    position: relative;
    z-index: 3;
    align-self: center;
    margin: 28px 0;
    padding: 28px 28px 22px;
    color: #fff;
    background: var(--black);
    box-shadow: var(--shadow);
}
.form-heading { display: grid; grid-template-columns: 12px 1fr; gap: 12px; align-items: start; margin-bottom: 17px; }
.status-dot { width: 9px; height: 9px; margin-top: 5px; background: var(--green); box-shadow: 0 0 0 6px rgba(0, 214, 0, .12); }
.form-heading p { margin: 0 0 2px; color: #b8b8b8; font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.form-heading h2 { margin: 0; font-size: 20px; line-height: 1.2; font-weight: 620; letter-spacing: -.025em; }
.form-panel form { display: grid; gap: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field { display: grid; gap: 5px; }
.field > span { color: #c5c5c5; font-size: 10px; font-weight: 650; letter-spacing: .035em; }
.field input, .field textarea {
    width: 100%;
    border: 1px solid #3d3d3d;
    border-radius: 0;
    outline: none;
    color: var(--ink);
    background: #fff;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.field input { height: 42px; padding: 0 12px; }
.field textarea { min-height: 98px; padding: 11px 12px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #969696; font-size: 12px; font-weight: 400; }
.field input:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 2px rgba(0, 214, 0, .2); }
.consent { display: grid; grid-template-columns: 17px 1fr; gap: 9px; align-items: start; margin-top: 1px; }
.consent input { width: 16px; height: 16px; margin: 2px 0 0; border-radius: 0; accent-color: var(--green); }
.consent span { color: #bdbdbd; font-size: 10px; line-height: 1.55; }
.consent a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.submit-button {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 2px;
    border: 1px solid var(--green);
    border-radius: 0;
    color: var(--black);
    background: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.submit-button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .18s ease; }
.submit-button:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.submit-button:hover svg { transform: translateX(3px); }
.submit-button:disabled { opacity: .68; cursor: wait; transform: none; }
.security-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 0; color: #888; font-size: 9px; }
.security-note svg { width: 12px; height: 12px; color: var(--green); fill: none; stroke: currentColor; stroke-width: 1.8; }
.notice {
    display: grid;
    gap: 4px;
    margin: 0 0 18px;
    padding: 15px 16px;
    border: 1px solid;
    border-left-width: 4px;
    font-size: 12px;
    line-height: 1.5;
}
.notice strong { font-size: 13px; font-weight: 760; }
.notice span { color: inherit; opacity: .92; }
.notice small { margin-top: 3px; color: #c5c5c5; font-size: 10px; letter-spacing: .03em; }
.notice-error { color: #fff1f1; border-color: #ff4a4a; background: rgba(255, 74, 74, .14); }
.form-panel-success {
    min-height: 520px;
    display: flex;
    align-items: stretch;
    padding: 0;
    border: 1px solid rgba(0, 214, 0, .52);
    background:
        linear-gradient(145deg, rgba(0, 214, 0, .17), transparent 47%),
        var(--black);
}
.success-state {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 42px 36px 34px;
    border-top: 7px solid var(--green);
}
.success-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    color: var(--black);
    background: var(--green);
    box-shadow: 0 0 0 10px rgba(0, 214, 0, .11);
}
.success-icon svg { width: 40px; height: 40px; fill: none; stroke: currentColor; stroke-width: 2.2; }
.success-kicker {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.success-state h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 3.1vw, 46px);
    line-height: 1;
    letter-spacing: -.045em;
    font-weight: 650;
}
.success-message { margin: 22px 0 0; color: #fff; font-size: 17px; line-height: 1.55; font-weight: 570; }
.success-followup { max-width: 360px; margin: 8px 0 0; color: #aaa; font-size: 13px; line-height: 1.65; }
.success-reference { margin: 22px 0 0; padding-top: 16px; border-top: 1px solid #2d2d2d; color: #8d8d8d; font-size: 10px; letter-spacing: .04em; }
.success-reference strong { color: #c8c8c8; font-weight: 700; }
.success-action {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    border: 1px solid var(--green);
    color: var(--black);
    background: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.success-action:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.success-action svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.section-heading { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.section-heading .eyebrow { margin-top: 12px; }
.section-heading h2 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(38px, 4.15vw, 56px);
    line-height: 1.04;
    letter-spacing: -.045em;
    font-weight: 510;
}
.section-heading > div > p { max-width: 780px; margin: 20px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.compact-heading { margin-bottom: 38px; }
.compact-heading h2 { max-width: 880px; font-size: clamp(34px, 4vw, 54px); }

.services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border: 1px solid var(--line); border-right: 0; }
.service-card {
    position: relative;
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 20px;
    border-right: 1px solid var(--line);
    background: #fff;
    transition: background .18s ease, transform .18s ease;
}
.service-card:hover { z-index: 2; background: var(--soft); transform: translateY(-3px); }
.service-card > svg { width: 42px; height: 42px; color: var(--green-dark); fill: none; stroke: currentColor; stroke-width: 1.6; }
.service-card > div { margin-top: auto; }
.service-card h3 { margin: 24px 0 7px; font-size: 15px; line-height: 1.25; font-weight: 760; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.62; }
.service-card > span { position: absolute; top: 21px; right: 18px; color: #bdbdbd; font-size: 10px; font-weight: 750; letter-spacing: .12em; }

.reasons { padding: 42px 0 45px; color: #fff; background: var(--black); }
.reasons-title { display: flex; align-items: center; gap: 12px; margin-bottom: 29px; }
.reasons-title > span { width: 10px; height: 10px; background: var(--green); }
.reasons-title h2 { margin: 0; font-size: 14px; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.reason-grid article { min-height: 108px; display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: center; padding: 0 30px; border-left: 1px solid var(--line-dark); }
.reason-grid article:first-child { padding-left: 0; border-left: 0; }
.reason-grid svg { width: 44px; height: 44px; color: var(--green); fill: none; stroke: currentColor; stroke-width: 1.55; }
.reason-grid h3 { margin: 0 0 5px; font-size: 13px; font-weight: 750; text-transform: uppercase; }
.reason-grid p { margin: 0; color: #aaa; font-size: 12px; line-height: 1.55; }

.about { background: var(--soft); }
.about-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 74px; align-items: start; }
.about .section-heading { grid-template-columns: 180px 1fr; }
.about .section-heading h2 { font-size: clamp(36px, 4.1vw, 56px); }
.about .section-heading > div > p + p { margin-top: 14px; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.process-list > li > span { color: var(--green-dark); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.process-list h3 { margin: -3px 0 5px; font-size: 17px; font-weight: 690; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 96px; align-items: start; }
.faq h2 { max-width: 470px; margin: 0; font-size: clamp(38px, 4.2vw, 58px); line-height: 1.06; letter-spacing: -.045em; font-weight: 520; }
.faq-intro { max-width: 420px; margin: 22px 0 0; color: var(--muted); }
.faq-intro a { color: var(--black); font-weight: 700; border-bottom: 2px solid var(--green); }
.faq-list { border-top: 1px solid var(--black); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    list-style: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 670;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--green-dark); fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .18s ease; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details p { max-width: 730px; margin: -4px 50px 24px 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.contact { border-top: 1px solid var(--line); background: var(--soft); }
.contact-heading { margin-bottom: 38px; }
.contact-heading h2 { font-size: clamp(34px, 4vw, 54px); }
.contact-layout { display: grid; grid-template-columns: .7fr 1.3fr; min-height: 410px; border: 1px solid var(--line); background: #fff; }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; align-content: start; border-right: 1px solid var(--line); }
.contact-card > div { position: relative; min-height: 152px; display: grid; align-content: start; gap: 8px; padding: 24px 22px 20px 55px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-card > div:nth-child(even) { border-right: 0; }
.contact-card > div > svg { position: absolute; left: 20px; top: 24px; width: 24px; height: 24px; color: var(--green-dark); fill: none; stroke: currentColor; stroke-width: 1.7; }
.contact-card span { color: #777; font-size: 10px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.contact-card a, .contact-card strong { color: var(--ink); font-size: 14px; line-height: 1.55; font-weight: 610; }
.contact-card a:hover { color: var(--green-dark); }
.directions-link {
    grid-column: 1 / -1;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: var(--black) !important;
    background: var(--green);
    font-size: 12px !important;
    font-weight: 780 !important;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.directions-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.map-frame { min-height: 410px; overflow: hidden; background: #e9e9e9; }
.map-frame iframe { width: 100%; height: 100%; min-height: 410px; display: block; border: 0; filter: grayscale(.22) contrast(.95); }

.site-footer { color: #a6a6a6; background: var(--black); }
.footer-main { min-height: 152px; display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 60px; align-items: center; }
.footer-brand img { width: 210px; height: 56px; object-fit: contain; object-position: left center; }
.footer-brand p { margin: 7px 0 0; color: #8a8a8a; font-size: 12px; }
.footer-links, .footer-contact { display: grid; gap: 8px; font-size: 12px; }
.footer-links a:hover, .footer-contact a:hover, .footer-bottom a:hover { color: var(--green); }
.footer-contact { justify-items: end; color: #fff; font-weight: 620; }
.footer-bottom { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #242424; font-size: 11px; }

.legal-page { background: var(--soft); }
.legal-main { padding: 76px 0 96px; }
.legal-content { max-width: 900px; padding: 60px; border: 1px solid var(--line); background: #fff; }
.legal-content h1 { max-width: 760px; margin: 0 0 22px; font-size: clamp(42px, 6vw, 68px); line-height: 1.02; letter-spacing: -.05em; font-weight: 550; }
.legal-lead { max-width: 690px; margin: 0 0 46px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.legal-content h2 { margin: 36px 0 9px; font-size: 18px; font-weight: 720; }
.legal-content p { margin: 0; color: #555; line-height: 1.75; }
.legal-content a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.legal-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 46px; }
.button-primary, .button-outline { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 0 20px; font-size: 12px; font-weight: 750; text-decoration: none !important; }
.button-primary { color: var(--black) !important; border: 1px solid var(--green); background: var(--green); }
.button-outline { color: var(--black) !important; border: 1px solid var(--black); background: #fff; }


.sustainability {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 15% 25%, rgba(0, 214, 0, .09), transparent 27%),
        var(--black);
}
.sustainability::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .12;
    background-image: radial-gradient(rgba(255, 255, 255, .65) .65px, transparent .65px);
    background-size: 18px 18px;
    mask-image: linear-gradient(90deg, #000, transparent 58%);
}
.eco-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
    gap: 76px;
    align-items: center;
}
.eco-copy { color: #fff; }
.eco-copy .eyebrow { color: #a8a8a8; }
.eco-copy h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(44px, 5.3vw, 72px);
    line-height: .98;
    letter-spacing: -.052em;
    font-weight: 560;
}
.eco-lead {
    max-width: 650px;
    margin: 24px 0 30px;
    color: #b4b4b4;
    font-size: 15px;
    line-height: 1.78;
}
.eco-benefits {
    max-width: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 28px;
    border: 1px solid var(--line-dark);
}
.eco-benefits article {
    min-height: 128px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    align-items: start;
    padding: 22px;
}
.eco-benefits article + article { border-left: 1px solid var(--line-dark); }
.eco-benefits svg {
    width: 34px;
    height: 34px;
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.eco-benefits h3 { margin: 1px 0 5px; color: #fff; font-size: 14px; font-weight: 690; }
.eco-benefits p { margin: 0; color: #929292; font-size: 12px; line-height: 1.58; }
.eco-primary {
    min-height: 50px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 0 20px;
    color: var(--black);
    background: var(--green);
    border: 1px solid var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.eco-primary svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}
.eco-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); }
.eco-note {
    max-width: 620px;
    margin: 17px 0 0;
    color: #797979;
    font-size: 10px;
    line-height: 1.6;
}
.certificate-panel {
    border: 1px solid #323232;
    background: #111;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .3);
}
.certificate-panel-head {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 26px 28px;
    border-bottom: 1px solid #303030;
}
.certificate-panel-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.certificate-panel-head h3 {
    max-width: 420px;
    margin: 0;
    color: #fff;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -.025em;
    font-weight: 560;
}
.certificate-panel-head > svg {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
}
.certificate-list { display: grid; }
.certificate-item {
    min-height: 148px;
    display: grid;
    grid-template-columns: 72px 1fr 22px;
    gap: 20px;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid #2b2b2b;
    transition: background .18s ease;
}
.certificate-item:last-child { border-bottom: 0; }
.certificate-item:hover { background: #171717; }
.certificate-item > img {
    width: 72px;
    height: 102px;
    object-fit: cover;
    object-position: top center;
    border: 1px solid #454545;
    background: #f4f1e7;
    filter: saturate(.82);
}
.certificate-item span {
    display: block;
    color: #9a9a9a;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.certificate-item h4 {
    margin: 4px 0 5px;
    color: var(--green);
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: .02em;
    font-weight: 650;
}
.certificate-item p {
    margin: 0;
    color: #b0b0b0;
    font-size: 12px;
    line-height: 1.55;
}
.certificate-item > svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    transition: transform .18s ease;
}
.certificate-item:hover > svg { transform: translateX(3px); }

@media (max-width: 1120px) {
    .hero-grid { grid-template-columns: minmax(0, 1.08fr) minmax(225px, .58fr) minmax(335px, .78fr); }
    .hero-copy { padding-right: 34px; }
    .hero h1 { font-size: clamp(45px, 5vw, 62px); }
    .hero h1 strong { font-size: .91em; }
    .field-row { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: repeat(3, 1fr); border-bottom: 0; }
    .service-card { border-bottom: 1px solid var(--line); }
    .reason-grid article { padding-inline: 18px; }
    .about-grid { grid-template-columns: 1.15fr .85fr; gap: 48px; }
    .eco-shell { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 46px; }
    .about .section-heading { grid-template-columns: 1fr; gap: 10px; }
    .about .section-heading .eyebrow { margin-top: 0; }
}

@media (max-width: 900px) {
    .section { padding: 76px 0; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-copy { grid-column: 1 / -1; padding: 60px 0 36px; }
    .hero h1 { max-width: 700px; font-size: clamp(50px, 9vw, 76px); }
    .hero-lead { max-width: 720px; }
    .hero-visual { min-height: 500px; margin: 0 0 28px; }
    .visual-frame { inset: 0 -16px 0 0; }
    .hero-visual::after { inset: 10px -25px -10px 10px; }
    .form-panel { min-height: auto; margin: 0 0 28px; }
    .section-heading { grid-template-columns: 1fr; gap: 10px; }
    .section-heading .eyebrow { margin: 0 0 10px; }
    .reason-grid { grid-template-columns: 1fr 1fr; row-gap: 28px; }
    .reason-grid article:nth-child(3) { padding-left: 0; border-left: 0; }
    .about-grid, .faq-grid, .eco-shell { grid-template-columns: 1fr; gap: 48px; }
    .eco-copy h2, .eco-lead, .eco-benefits, .eco-note { max-width: 760px; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-card { border-right: 0; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-contact { justify-items: start; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--container)); }
    .site-header { height: 70px; }
    .brand { width: 172px; }
    .brand img { height: 44px; }
    .main-nav { gap: 0; }
    .main-nav > a:not(.nav-cta) { display: none; }
    .nav-cta { min-height: 42px; padding: 0 14px; font-size: 12px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { padding: 48px 0 32px; }
    .hero h1 { font-size: clamp(42px, 13vw, 58px); letter-spacing: -.055em; }
    .hero h1 strong { font-size: .88em; white-space: normal; }
    .hero-lead { font-size: 15px; }
    .hero-trust { grid-template-columns: 1fr; }
    .hero-visual { min-height: 350px; margin: 0 0 26px; }
    .visual-frame { inset: 0; clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%, 0 31%); }
    .hero-visual::after { inset: 14px -8px -10px 10px; clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%, 0 30%); }
    .visual-label { left: 0; right: 0; bottom: 16px; font-size: 9px; }
    .form-panel { margin: 0 -14px; padding: 25px 20px 21px; }
    .form-panel.form-panel-success { min-height: 430px; padding: 0; }
    .success-state { padding: 34px 26px 28px; }
    .success-icon { width: 62px; height: 62px; margin-bottom: 24px; }
    .success-icon svg { width: 34px; height: 34px; }
    .field-row { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .section-heading h2, .faq h2 { font-size: clamp(34px, 10vw, 48px); }
    .service-grid { grid-template-columns: 1fr; border-bottom: 0; }
    .service-card { min-height: 190px; }
    .reason-grid { grid-template-columns: 1fr; }
    .reason-grid article, .reason-grid article:nth-child(3) { padding: 20px 0; border-top: 1px solid var(--line-dark); border-left: 0; }
    .reason-grid article:first-child { border-top: 0; }
    .about .section-heading { display: block; }
    .eco-copy h2 { font-size: clamp(38px, 11vw, 52px); }
    .eco-benefits { grid-template-columns: 1fr; }
    .eco-benefits article + article { border-top: 1px solid var(--line-dark); border-left: 0; }
    .eco-primary { width: 100%; }
    .certificate-panel-head { min-height: auto; padding: 22px 20px; }
    .certificate-panel-head h3 { font-size: 19px; }
    .certificate-panel-head > svg { width: 42px; height: 42px; }
    .certificate-item { grid-template-columns: 58px 1fr 18px; gap: 14px; min-height: 126px; padding: 15px 16px; }
    .certificate-item > img { width: 58px; height: 82px; }
    .certificate-item h4 { font-size: 17px; }
    .certificate-item p { font-size: 11px; }
    .process-list li { grid-template-columns: 38px 1fr; }
    .faq-list summary { min-height: 70px; font-size: 15px; }
    .contact-card { grid-template-columns: 1fr; }
    .contact-card > div { min-height: 125px; border-right: 0; }
    .directions-link { grid-column: auto; }
    .map-frame, .map-frame iframe { min-height: 330px; }
    .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 38px 0; }
    .footer-contact { justify-items: start; }
    .footer-bottom { min-height: 76px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px; }
    .legal-main { padding: 32px 0 60px; }
    .legal-content { padding: 34px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

