@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: optional;
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    font-display: optional;
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg: #FAF7F0;
    --paper: #ffffff;
    --paper-soft: #f0ece0;
    --paper-warm: #F5E6B8;
    --ink: #1c1c0d;
    --text: #2e2e1a;
    --muted: #6b6b50;
    --line: #e4dcc8;
    --green: #1a5e3a;
    --green-light: #639922;
    --green-dark: #0d3d22;
    --danger: #a32929;
    --shadow-sm: 0 4px 20px rgba(26, 94, 58, 0.07);
    --shadow-md: 0 16px 56px rgba(26, 94, 58, 0.13);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

:focus-visible {
    outline: 3px solid rgba(26, 94, 58, 0.28);
    outline-offset: 3px;
}

/* --- Skip link --- */

.skip-link {
    position: fixed;
    left: 18px;
    top: 14px;
    z-index: 100;
    transform: translateY(-160%);
    border-radius: var(--radius-pill);
    padding: 10px 18px;
    background: var(--ink);
    color: #ffffff;
    font-weight: 800;
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* --- Header --- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 76px;
    padding: 14px clamp(18px, 5vw, 72px);
    background: rgba(250, 247, 240, 0.94);
    border-bottom: 1px solid rgba(228, 220, 200, 0.7);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: var(--ink);
    font-weight: 800;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(26, 94, 58, 0.3);
    overflow: hidden;
}

.brand-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.brand-text {
    display: grid;
    gap: 2px;
    line-height: 1;
}

.brand-text span:first-child {
    font-size: 16px;
    font-weight: 800;
}

.brand-text span:last-child {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-footer .brand-text span:last-child {
    color: rgba(255, 255, 255, 0.5);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    border-radius: var(--radius-pill);
    padding: 9px 14px;
    transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(26, 94, 58, 0.09);
    color: var(--green);
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    padding: 12px 26px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-primary {
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(26, 94, 58, 0.28);
}

.header-cta:hover,
.btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 14px 36px rgba(26, 94, 58, 0.38);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    border-color: var(--line);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--green-light);
    color: var(--green);
    transform: translateY(-2px);
}

.btn:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: var(--ink);
}

/* --- Sections --- */

.section {
    scroll-margin-top: 86px;
    padding: 96px clamp(18px, 5vw, 72px);
}

.muted {
    background: var(--paper-soft);
}

/* --- Eyebrow --- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    background: rgba(26, 94, 58, 0.09);
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-light);
    content: "";
}

/* --- Typography --- */

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
}

h1 {
    max-width: 820px;
    font-size: 66px;
    line-height: 1.02;
    font-weight: 800;
}

h2 {
    font-size: 44px;
    line-height: 1.08;
    font-weight: 800;
}

h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

/* --- Hero --- */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    align-items: center;
    gap: 56px;
    width: 100%;
    max-width: 1280px;
    min-height: calc(100vh - 76px);
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 80px;
}

.hero-content {
    min-width: 0;
    max-width: 680px;
}

.hero-lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.hero-stats span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 96px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #ffffff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    box-shadow: var(--shadow-sm);
}

.hero-stats strong {
    color: var(--green-light);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-visual {
    position: relative;
    margin: 0;
}

.hero-visual img {
    width: 100%;
    aspect-ratio: 960 / 638;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.hero-visual::after {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(13, 61, 34, 0) 50%, rgba(13, 61, 34, 0.6) 100%);
    content: "";
    pointer-events: none;
}

.hero-visual figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    background: rgba(13, 61, 34, 0.72);
    color: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
}

.hero-visual figcaption strong {
    color: #ffffff;
    font-size: 17px;
}

/* --- Trust strip --- */

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 clamp(18px, 5vw, 72px) 24px;
    max-width: calc(var(--container) + clamp(36px, 10vw, 144px));
    margin: 0 auto;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(26, 94, 58, 0.14);
    background: var(--paper-warm);
    color: var(--green-dark);
    font-weight: 700;
    font-size: 14px;
}

.trust-strip span::before {
    width: 7px;
    height: 7px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--green-light);
    content: "";
}

/* --- Section heading --- */

.section-heading {
    width: min(100%, 780px);
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.align-left {
    width: auto;
    margin: 0;
    text-align: left;
}

.section-heading p:not(.eyebrow) {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.card-grid,
.service-list,
.split,
.process-list,
.faq-list {
    width: min(100%, var(--container));
    margin-left: auto;
    margin-right: auto;
}

/* --- Card grid --- */

.card-grid {
    display: grid;
    gap: 20px;
}

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

.card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* --- Cards --- */

.info-card,
.solution-card,
.benefit-item,
.service-item,
details,
.lead-form {
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow-sm);
}

.info-card,
.solution-card,
.benefit-item {
    position: relative;
    min-height: 200px;
    padding: 30px;
    overflow: hidden;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.info-card:hover,
.solution-card:hover,
.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card::before,
.solution-card::before,
.benefit-item::before {
    display: block;
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    content: "";
}

.info-card::before {
    background: linear-gradient(90deg, var(--green) 0%, var(--green-light) 100%);
}

.solution-card::before {
    background: var(--green-light);
}

.benefit-item::before {
    background: var(--paper-warm);
}

.info-card h3,
.solution-card h3,
.benefit-item h3 {
    margin-top: 18px;
}

.info-card p,
.solution-card p,
.benefit-item p,
.service-item p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

/* --- Service list --- */

.service-list {
    display: grid;
    gap: 14px;
}

.service-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-item:hover {
    transform: translateY(-3px);
    border-color: rgba(99, 153, 34, 0.3);
    box-shadow: var(--shadow-md);
}

.service-item span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--green);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}

.service-item h3 {
    margin-bottom: 6px;
}

/* --- Split layout (benefits) --- */

.split {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 48px;
    align-items: start;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* --- Process section --- */

.process-section {
    background: var(--green-dark);
    color: #ffffff;
}

.process-section h2,
.process-section h3 {
    color: #ffffff;
}

.process-section .eyebrow {
    background: rgba(245, 230, 184, 0.15);
    border: 1px solid rgba(245, 230, 184, 0.2);
    color: var(--paper-warm);
}

.process-section .eyebrow::before {
    background: var(--paper-warm);
}

.process-section .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.6);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    list-style: none;
    counter-reset: steps;
}

.process-list li {
    min-height: 200px;
    padding: 24px;
    border: 1.5px solid rgba(245, 230, 184, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    counter-increment: steps;
    transition: background 200ms ease;
}

.process-list li:hover {
    background: rgba(255, 255, 255, 0.09);
}

.process-list li::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(245, 230, 184, 0.3);
    background: rgba(245, 230, 184, 0.1);
    color: var(--paper-warm);
    content: counter(steps, decimal-leading-zero);
    font-weight: 800;
    font-size: 14px;
}

.process-list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

/* --- Payoff / CTA strip --- */

.payoff {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(280px, 1fr) auto;
    align-items: center;
    gap: 32px;
    background: var(--paper-warm);
    border-top: 1.5px solid rgba(26, 94, 58, 0.12);
    border-bottom: 1.5px solid rgba(26, 94, 58, 0.12);
}

.payoff .eyebrow {
    background: rgba(26, 94, 58, 0.1);
    color: var(--green-dark);
}

.payoff h2 {
    margin-top: 10px;
    font-size: 34px;
    line-height: 1.1;
}

.payoff p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

/* --- FAQ --- */

.faq-list {
    display: grid;
    gap: 10px;
    max-width: 920px;
}

details {
    padding: 0;
    overflow: hidden;
    transition: box-shadow 200ms ease;
}

details:hover {
    box-shadow: var(--shadow-md);
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: var(--radius-pill);
    background: rgba(26, 94, 58, 0.08);
    color: var(--green);
    content: "+";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 200ms ease, background 200ms ease;
}

details[open] summary::after {
    transform: rotate(45deg);
    background: rgba(26, 94, 58, 0.14);
}

details p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
    line-height: 1.65;
}

/* --- Contact section --- */

.contact-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 0.8fr);
    gap: 56px;
    align-items: start;
    width: min(100%, var(--container));
    margin: 0 auto;
}

.contact-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.contact-points {
    display: grid;
    gap: 10px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
}

.contact-points li::before {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: #ffffff;
    content: "✓";
    font-size: 13px;
    font-weight: 800;
}

/* --- Lead form --- */

.lead-form {
    display: grid;
    gap: 18px;
    padding: 32px;
}

.form-head {
    padding-bottom: 4px;
}

.form-head p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lead-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
}

.form-full {
    grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.lead-form textarea {
    resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(26, 94, 58, 0.1);
    background: #ffffff;
    outline: none;
}

.lead-form button {
    width: 100%;
    font-size: 16px;
    min-height: 52px;
}

.hidden-field {
    display: none;
}

.form-note,
.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.form-status {
    min-height: 22px;
    font-weight: 700;
}

.form-status.success {
    color: var(--green);
}

.form-status.error {
    color: var(--danger);
}

/* --- Footer --- */

.site-footer {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 30px;
    padding: 56px clamp(18px, 5vw, 72px) 40px;
    background: var(--green-dark);
    color: rgba(255, 255, 255, 0.65);
}

.site-footer .brand {
    color: #ffffff;
}

.site-footer p {
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.65;
}

address {
    display: grid;
    gap: 10px;
    font-style: normal;
}

address a {
    transition: color 160ms ease;
}

address a:hover {
    color: var(--paper-warm);
}

.copyright {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

/* --- Responsive: tablet --- */

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .site-nav.is-open {
        position: fixed;
        inset: 76px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 18px 24px;
        background: var(--bg);
        border-bottom: 1.5px solid var(--line);
        box-shadow: var(--shadow-md);
    }

    .site-nav.is-open a {
        border-bottom: 1px solid var(--line);
        border-radius: 0;
        padding: 16px 4px;
    }

    .hero,
    .split,
    .contact-section,
    .payoff {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 38px;
    }

    .payoff h2 {
        font-size: 28px;
    }

    .card-grid.three,
    .card-grid.four,
    .process-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* --- Responsive: mobile --- */

@media (max-width: 720px) {
    body {
        font-size: 15px;
    }

    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .hero {
        gap: 36px;
        padding-top: 44px;
        padding-bottom: 60px;
    }

    .hero-content {
        display: contents;
    }

    .hero-content > .eyebrow { order: 1; }
    .hero-content > h1 { order: 2; }
    .hero-content > .hero-lead { order: 3; }
    .hero-content > .hero-actions { order: 4; }
    .hero-visual { order: 5; }
    .hero-stats { order: 6; }

    h1 {
        max-width: 100%;
        font-size: 36px;
        line-height: 1.05;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 18px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats span {
        min-height: auto;
    }

    .card-grid.three,
    .card-grid.four,
    .benefit-grid,
    .process-list,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
    }

    .lead-form {
        padding: 22px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* --- Modern visual refresh and multilingual controls --- */
:root {
    --bg: #f6f8ef;
    --paper: rgba(255, 255, 255, 0.9);
    --paper-soft: #eef5df;
    --paper-warm: #fff0bf;
    --ink: #102316;
    --text: #273525;
    --muted: #64705e;
    --line: rgba(25, 94, 58, 0.14);
    --green: #0f7b4d;
    --green-light: #8cc63f;
    --green-dark: #082f1e;
    --danger: #b82f3d;
    --shadow-sm: 0 14px 38px rgba(15, 75, 47, 0.08);
    --shadow-md: 0 24px 80px rgba(15, 75, 47, 0.16);
    --shadow-glow: 0 18px 48px rgba(140, 198, 63, 0.24);
    --radius: 24px;
    --radius-sm: 14px;
}

body {
    background:
        radial-gradient(circle at 12% 8%, rgba(140, 198, 63, 0.22), transparent 28rem),
        radial-gradient(circle at 88% 12%, rgba(31, 200, 120, 0.16), transparent 24rem),
        linear-gradient(180deg, #fbfff5 0%, var(--bg) 42%, #f8faf2 100%);
}

.site-header {
    background: rgba(251, 255, 245, 0.78);
    border-bottom-color: rgba(15, 75, 47, 0.12);
    box-shadow: 0 10px 30px rgba(8, 47, 30, 0.06);
}

.brand-mark {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 16px 34px rgba(15, 123, 77, 0.28);
}

.brand-text span:first-child {
    font-size: 18px;
    letter-spacing: -0.03em;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-sm);
}

.lang-switch a {
    display: inline-flex;
    min-width: 42px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lang-switch a:hover,
.lang-switch a.active {
    background: var(--green-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(15, 123, 77, 0.1);
}

.header-cta,
.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, #16a05f 55%, #78b82b 100%);
    box-shadow: var(--shadow-glow);
}

.header-cta:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 62%, var(--green-light) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
}

.section {
    position: relative;
}

.hero {
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 5% clamp(18px, 5vw, 72px) auto auto;
    width: min(44vw, 560px);
    height: min(44vw, 560px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.28), transparent 66%);
    filter: blur(8px);
    content: "";
}

.eyebrow {
    border: 1px solid rgba(15, 123, 77, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(15, 75, 47, 0.07);
}

h1 {
    letter-spacing: -0.055em;
}

h2 {
    letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p:not(.eyebrow),
.contact-copy p {
    color: #53614e;
}

.hero-stats span,
.info-card,
.solution-card,
.benefit-item,
.service-item,
details,
.lead-form,
.contact-points li {
    backdrop-filter: blur(18px);
}

.hero-stats span {
    border-color: rgba(15, 123, 77, 0.12);
    background: rgba(255, 255, 255, 0.76);
}

.hero-visual img {
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 32px;
    transform: rotate(1.2deg);
}

.hero-visual::before {
    position: absolute;
    inset: 24px -16px -16px 16px;
    z-index: -1;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(140, 198, 63, 0.34), rgba(15, 123, 77, 0.1));
    content: "";
}

.hero-visual::after {
    border-radius: 32px;
}

.trust-strip span {
    background: rgba(255, 240, 191, 0.76);
    box-shadow: 0 10px 24px rgba(15, 75, 47, 0.07);
}

.info-card,
.solution-card,
.benefit-item,
.service-item,
details,
.lead-form {
    border-color: rgba(15, 123, 77, 0.13);
    background: rgba(255, 255, 255, 0.78);
}

.info-card::after,
.solution-card::after,
.benefit-item::after {
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 198, 63, 0.2), transparent 68%);
    content: "";
}

.service-item span {
    background: linear-gradient(135deg, var(--green), var(--green-light));
    box-shadow: var(--shadow-glow);
}

.process-section,
.site-footer {
    background:
        radial-gradient(circle at 16% 20%, rgba(140, 198, 63, 0.16), transparent 24rem),
        linear-gradient(135deg, #082f1e 0%, #0b442b 58%, #071d14 100%);
}

.payoff {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.74), transparent 16rem),
        linear-gradient(135deg, #fff4c7 0%, #dff3ad 100%);
}

.lead-form {
    position: relative;
    overflow: hidden;
}

.lead-form::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--green), #1fc878, var(--green-light));
    content: "";
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    background: rgba(246, 248, 239, 0.72);
}

.lead-form.is-submitting {
    box-shadow: var(--shadow-md), 0 0 0 8px rgba(140, 198, 63, 0.08);
}

.lead-form.is-submitting::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.45) 45%, transparent 70%);
    animation: formShimmer 1.15s linear infinite;
    content: "";
    pointer-events: none;
}

.btn-spinner {
    display: none;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    border: 2px solid rgba(255, 255, 255, 0.44);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 750ms linear infinite;
}

.lead-form.is-submitting .btn-spinner {
    display: inline-block;
}

.form-status {
    min-height: 0;
    border-radius: var(--radius-sm);
    padding: 0;
    transition: padding 180ms ease, background 180ms ease;
}

.form-status.success,
.form-status.error {
    padding: 12px 14px;
}

.form-status.success {
    background: rgba(15, 123, 77, 0.1);
}

.form-status.error {
    background: rgba(184, 47, 61, 0.1);
}

.form-toast {
    position: fixed;
    right: clamp(18px, 4vw, 44px);
    bottom: 24px;
    z-index: 80;
    max-width: min(420px, calc(100vw - 36px));
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 18px;
    background: rgba(8, 47, 30, 0.94);
    color: #ffffff;
    box-shadow: var(--shadow-md);
    font-weight: 800;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
    backdrop-filter: blur(18px);
}

.form-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.form-toast.success::before {
    content: "✓ ";
    color: #bce86a;
}

.form-toast.error::before {
    content: "! ";
    color: #ffb5bd;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes formShimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

@media (max-width: 1120px) {
    .header-actions {
        gap: 8px;
    }

    .site-nav.is-open {
        background: rgba(251, 255, 245, 0.96);
        backdrop-filter: blur(18px);
    }
}

@media (max-width: 720px) {
    .site-header {
        gap: 12px;
    }

    .brand-mark {
        width: 44px;
        height: 44px;
    }

    .brand-text span:first-child {
        font-size: 16px;
    }

    .lang-switch a {
        min-height: 34px;
    }

    .hero-visual img {
        transform: none;
    }
}

.hero-note {
    max-width: 680px;
    margin: -6px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.form-note a {
    color: var(--green);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

.form-status.warning {
    background: rgba(240, 170, 35, 0.14);
    padding: 12px 14px;
}

.policy-page {
    max-width: 920px;
    margin: 0 auto;
}

.policy-card {
    margin-top: 28px;
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow-md);
}

.policy-card h1 {
    margin-bottom: 18px;
}

.policy-card h2 {
    margin-top: 34px;
    font-size: clamp(24px, 3vw, 34px);
}

.policy-card address {
    margin-top: 34px;
    font-style: normal;
    font-weight: 800;
}

.policy-card address a {
    color: var(--green);
}

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

/* --- Polishing fixes from visual QA --- */
.brand-mark {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.brand-mark svg {
    overflow: visible;
    filter: drop-shadow(0 10px 20px rgba(15, 123, 77, 0.22));
}

.brand-text span:first-child {
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.hero-content > .eyebrow {
    max-width: 100%;
    white-space: nowrap;
}

.header-cta,
.btn-primary,
.header-cta:hover,
.btn-primary:hover {
    background: var(--green);
    box-shadow: 0 10px 28px rgba(15, 123, 77, 0.24);
    transform: none;
}

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

.btn-secondary:hover {
    transform: none;
}

.hero-actions {
    margin-bottom: 44px;
}

.hero-stats {
    margin-top: 0;
}

.hero-note {
    margin-top: 14px;
}

.hero-visual img {
    display: block;
    border: 0;
    transform: none;
}

.hero-visual::before {
    display: none;
}

.hero-visual::after {
    overflow: hidden;
}

.process-section,
.site-footer {
    background: #082f1e;
}

.payoff {
    background: #f5e6b8;
}

.form-grid {
    align-items: start;
}

.lead-form label {
    align-content: start;
}

.lead-form input,
.lead-form select {
    height: 54px;
    line-height: 1.2;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    border-width: 1.5px;
    box-shadow: inset 0 0 0 0 transparent;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    box-shadow: inset 0 0 0 1px rgba(15, 123, 77, 0.14), 0 0 0 3px rgba(15, 123, 77, 0.08);
}

@media (max-width: 1120px) {
    .hero-content > .eyebrow {
        white-space: normal;
    }
}

/* --- Mobile navigation QA fixes --- */
@media (max-width: 1120px) {
    .site-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        z-index: 29;
        display: grid;
        justify-items: center;
        gap: 0;
        padding: 22px 18px 30px;
        background: #fbfff5;
        border-bottom: 1px solid rgba(15, 75, 47, 0.12);
        box-shadow: 0 22px 44px rgba(8, 47, 30, 0.16);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
        backdrop-filter: none;
    }

    .site-nav.is-open {
        display: grid;
        background: #fbfff5;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
        backdrop-filter: none;
    }

    .site-nav.is-open a {
        width: min(240px, 100%);
        border-bottom: 0;
        border-radius: var(--radius-pill);
        padding: 12px 18px;
        text-align: center;
        opacity: 0;
        transform: translateY(-8px);
        animation: menuItemIn 240ms ease forwards;
    }

    .site-nav.is-open a:nth-child(1) { animation-delay: 40ms; }
    .site-nav.is-open a:nth-child(2) { animation-delay: 75ms; }
    .site-nav.is-open a:nth-child(3) { animation-delay: 110ms; }
    .site-nav.is-open a:nth-child(4) { animation-delay: 145ms; }
    .site-nav.is-open a:nth-child(5) { animation-delay: 180ms; }
    .site-nav.is-open a:nth-child(6) { animation-delay: 215ms; }
}

@media (max-width: 720px) {
    .site-header {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        min-height: 64px;
    }

    .brand {
        flex: 1 1 auto;
        min-width: 0;
        order: 1;
    }

    .header-actions {
        flex: 0 0 auto;
        order: 2;
        display: inline-flex;
        align-items: center;
        width: auto;
    }

    .header-actions .header-cta {
        display: none;
    }

    .nav-toggle {
        flex: 0 0 auto;
        order: 3;
        margin: 0;
    }

    .lang-switch {
        padding: 3px;
        gap: 2px;
    }

    .lang-switch a {
        min-width: 36px;
        min-height: 32px;
        font-size: 12px;
    }

    .site-nav,
    .site-nav.is-open {
        inset: 64px 0 auto 0;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
    }

    .brand-text span:first-child {
        font-size: 16px;
    }
}

@keyframes menuItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 720px) {
    .hero-note {
        order: 7;
    }
}

/* --- Cases section --- */

.case-card .case-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.case-kw {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.case-type {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--line);
    background: var(--paper-soft);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
}

.case-card h3 {
    margin-top: 0;
    font-size: 18px;
}

/* --- Regions section --- */

.regions-section {
    background: var(--paper-warm);
}

.regions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: min(100%, var(--container));
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.regions-list li {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid rgba(26, 94, 58, 0.18);
    background: #ffffff;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 700;
    transition: background 150ms ease, border-color 150ms ease;
}

.regions-list li:hover {
    background: rgba(26, 94, 58, 0.07);
    border-color: rgba(26, 94, 58, 0.28);
}

/* reCAPTCHA: hide badge, show required branding text instead */
.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-note {
    font-size: 11px;
    opacity: 0.65;
}

@media (max-width: 900px) {
    .regions-list li {
        font-size: 13px;
        padding: 7px 14px;
    }
}
