:root {
    --ink-950: #0b1410;
    --ink-900: #101d17;
    --ink-800: #172820;
    --ink-700: #24382d;
    --green-950: #0c2619;
    --green-900: #103522;
    --green-800: #164a30;
    --green-700: #1e6742;
    --green-600: #2d8254;
    --green-500: #43a66d;
    --green-400: #69bd86;
    --lime: #b6d83f;
    --lime-soft: #e3f3a9;
    --field: #f6f8f3;
    --paper: #fbfcf8;
    --white: #ffffff;
    --muted: #66756c;
    --line: #dce5dd;
    --line-strong: #c8d6ca;
    --danger: #a83232;
    --danger-soft: #fff0ef;
    --shadow-sm: 0 12px 30px rgba(11, 38, 25, .07);
    --shadow: 0 28px 70px rgba(11, 38, 25, .14);
    --radius-xl: 32px;
    --radius: 22px;
    --radius-md: 16px;
    --radius-sm: 11px;
    --max: 1320px;
    --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink-950);
    background:
        radial-gradient(circle at 12% 4%, rgba(182, 216, 63, .08), transparent 24rem),
        var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
::selection { color: var(--ink-950); background: var(--lime-soft); }
:focus-visible { outline: 3px solid rgba(182, 216, 63, .65); outline-offset: 3px; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    color: var(--white);
    background: rgba(11, 20, 16, .96);
    border-bottom: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(18px);
}
.site-header-inner {
    min-height: var(--header-height);
    max-width: var(--max);
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(182, 216, 63, .9);
    background: linear-gradient(145deg, rgba(182,216,63,.12), transparent);
    font-size: 16px;
    font-weight: 950;
    letter-spacing: .11em;
}
.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    background: var(--lime);
}
.brand-mark::before { width: 13px; height: 1px; right: -7px; top: 13px; }
.brand-mark::after { width: 1px; height: 13px; right: 13px; bottom: -7px; }
.brand-copy { display: grid; line-height: 1.1; }
.brand strong { font-size: 16px; letter-spacing: .19em; }
.brand small { margin-top: 7px; color: #a8b7ad; font-size: 10px; letter-spacing: .095em; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.nav-links > a:not(.button) { position: relative; color: #d4ddd7; }
.nav-links > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--lime); transition: right .2s ease; }
.nav-links > a:not(.button):hover::after { right: 0; }

main { min-height: calc(100vh - 190px); }
.hero {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
    padding: 92px 28px 88px;
    display: grid;
    grid-template-columns: minmax(0, 1.24fr) minmax(350px, .76fr);
    gap: 72px;
    align-items: center;
}
.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 32rem;
    height: 32rem;
    left: -16rem;
    top: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(45,130,84,.10);
    box-shadow: 0 0 0 5rem rgba(45,130,84,.025), 0 0 0 10rem rgba(45,130,84,.016);
}
.hero h1, .page-hero h1, .wizard-heading h1, .success-shell h1 {
    margin: 14px 0 25px;
    max-width: 1030px;
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 760;
    line-height: .98;
    letter-spacing: -.058em;
}
.hero p, .page-hero p, .wizard-heading p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(17px, 1.7vw, 20px);
}
.eyebrow {
    display: inline-block;
    color: var(--green-700);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .185em;
    text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions.centered { justify-content: center; }
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 13px 23px;
    border: 1px solid var(--green-800);
    border-radius: 999px;
    color: var(--white);
    background: var(--green-800);
    box-shadow: 0 9px 20px rgba(16, 53, 34, .12);
    font-size: 14px;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-700); border-color: var(--green-700); box-shadow: 0 13px 26px rgba(16, 53, 34, .18); }
.button-small { min-height: 40px; padding: 9px 17px; font-size: 12px; }
.button-header { color: var(--ink-950); border-color: var(--lime); background: var(--lime); box-shadow: none; }
.button-header:hover { color: var(--white); }
.button-ghost { color: var(--green-900); background: transparent; border-color: #a9bcae; box-shadow: none; }
.button-ghost:hover { color: var(--white); }

.quick-search-form { display: grid; grid-template-columns: minmax(0, 1fr) 54px; gap: 8px; max-width: 760px; margin-top: 25px; }
.quick-search-form input { min-height: 56px; background: var(--white); box-shadow: var(--shadow-sm); }
.quick-search-form > button:not(.button) { border: 0; border-radius: 13px; color: var(--white); background: var(--green-800); font-size: 22px; font-weight: 900; transition: background .2s ease, transform .2s ease; }
.quick-search-form > button:not(.button):hover { background: var(--green-600); transform: translateX(2px); }
.quick-search-form.large { grid-template-columns: minmax(0, 1fr) auto; max-width: 930px; margin-top: 31px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 9px 20px; margin-top: 25px; color: #718078; font-size: 12px; }
.trust-line span::before { content: "✓"; margin-right: 7px; color: var(--green-600); font-weight: 900; }

.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 505px;
    padding: 42px;
    color: var(--white);
    background: linear-gradient(145deg, var(--green-950) 0%, var(--green-800) 72%, #287d4e 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}
.hero-panel-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(to bottom, black, transparent 80%); }
.hero-panel::after { content: ""; position: absolute; right: -82px; bottom: -98px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 0 0 52px rgba(255,255,255,.04), 0 0 0 104px rgba(255,255,255,.025); }
.radar-mark { position: relative; z-index: 1; display: flex; gap: 7px; }
.radar-mark span { display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--lime); }
.radar-mark span:nth-child(2) { opacity: .6; }
.radar-mark span:nth-child(3) { opacity: .28; }
.panel-kicker { position: relative; z-index: 1; display: block; margin-top: 55px; color: #a7c2b0; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-panel h2 { position: relative; z-index: 1; margin: 8px 0 28px; max-width: 380px; font-size: clamp(30px, 3.1vw, 38px); line-height: 1.05; letter-spacing: -.035em; }
.check-list { position: relative; z-index: 1; list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.check-list li { color: #e8f0eb; font-size: 14px; }
.check-list li::before { content: "↗"; color: var(--lime); margin-right: 11px; }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 45px; }
.stats-grid div { padding: 18px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-md); background: rgba(255,255,255,.065); backdrop-filter: blur(8px); }
.stats-grid strong { display: block; font-size: 31px; line-height: 1; }
.stats-grid span { display: block; margin-top: 7px; color: #c2d2c7; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.section { padding: 90px max(28px, calc((100vw - var(--max)) / 2)); }
.section-dark { position: relative; overflow: hidden; color: var(--white); background: var(--ink-950); }
.section-dark::after { content: ""; position: absolute; width: 29rem; height: 29rem; right: -12rem; top: -15rem; border: 1px solid rgba(182,216,63,.13); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(182,216,63,.02), 0 0 0 10rem rgba(182,216,63,.012); }
.section-heading { position: relative; z-index: 1; max-width: 790px; margin-bottom: 43px; }
.section-heading.small { margin: 0 0 24px; }
.section-heading h2, .split-section h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 57px); line-height: 1.03; letter-spacing: -.047em; }
.section-dark .eyebrow { color: var(--lime); }
.steps-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.steps-grid article { min-height: 245px; padding: 25px; border: 1px solid #2a3b32; border-radius: var(--radius-md); background: linear-gradient(145deg, #121d17, #16241c); transition: transform .2s ease, border-color .2s ease; }
.steps-grid article:hover { transform: translateY(-4px); border-color: rgba(182,216,63,.48); }
.steps-grid article > span { color: var(--lime); font-size: 12px; font-weight: 900; }
.steps-grid h3 { margin: 47px 0 11px; font-size: 23px; line-height: 1.1; }
.steps-grid p { margin: 0; color: #aab8af; font-size: 13px; }
.split-section { display: grid; grid-template-columns: 1.12fr .88fr; gap: 86px; align-items: end; }
.split-section > p { margin: 0; color: var(--muted); font-size: 18px; }

.page-hero { position: relative; overflow: hidden; padding: 84px max(28px, calc((100vw - var(--max)) / 2)) 60px; background: linear-gradient(180deg, #edf5ec 0%, var(--paper) 100%); border-bottom: 1px solid #edf1ed; }
.page-hero::after { content: ""; position: absolute; width: 25rem; height: 25rem; right: -8rem; top: -13rem; border: 1px solid rgba(45,130,84,.13); border-radius: 50%; box-shadow: 0 0 0 4rem rgba(45,130,84,.025), 0 0 0 8rem rgba(45,130,84,.016); }
.page-hero > * { position: relative; z-index: 1; }
.page-hero.compact h1 { max-width: 980px; font-size: clamp(42px, 5vw, 70px); }
.catalogue-section { padding-top: 20px; }
.catalogue-process { padding: 57px 0; border-top: 1px solid var(--line); }
.catalogue-process:first-child { border-top: 0; }
.catalogue-process-title { display: grid; grid-template-columns: 58px 1fr; gap: 23px; margin-bottom: 28px; }
.catalogue-process-title > span { display: grid; place-items: center; width: 48px; height: 48px; color: var(--green-800); border: 1px solid var(--line-strong); border-radius: 50%; font-size: 12px; font-weight: 900; }
.catalogue-process-title h2 { margin: 0; font-size: 36px; line-height: 1.08; letter-spacing: -.035em; }
.catalogue-process-title p { margin: 7px 0 0; color: var(--muted); }
.catalogue-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.catalogue-card { position: relative; display: flex; flex-direction: column; min-height: 198px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.9); box-shadow: 0 1px 0 rgba(255,255,255,.9) inset; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.catalogue-card:not(.static):hover { transform: translateY(-5px); border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.catalogue-card strong { font-size: 19px; line-height: 1.2; }
.catalogue-card p { flex: 1; color: var(--muted); font-size: 13px; }
.catalogue-card > span { color: var(--green-700); font-size: 12px; font-weight: 850; }

.progress-shell { position: relative; z-index: 90; background: rgba(235,242,235,.96); border-bottom: 1px solid #d9e3da; }
.progress-inner { max-width: var(--max); margin: 0 auto; padding: 14px 28px 15px; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 8px; color: #5f6d64; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; }
.progress-track { overflow: hidden; height: 5px; border-radius: 99px; background: #d0ddd2; }
.progress-track span { display: block; height: 100%; background: linear-gradient(90deg, var(--green-800), var(--green-500), var(--lime)); transition: width .3s ease; }

.wizard-shell { max-width: var(--max); margin: 0 auto; padding: 67px 28px 94px; }
.wizard-heading { margin-bottom: 41px; }
.wizard-heading h1 { font-size: clamp(40px, 5vw, 67px); max-width: 1010px; }
.choice-form, .panel-form { display: block; }
.choice-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.choice-card { position: relative; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card-body { position: relative; display: grid; min-height: 215px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 1px 0 rgba(255,255,255,.8) inset; transition: all .18s ease; }
.choice-card-body::after { content: "→"; position: absolute; right: 21px; top: 18px; color: #a9b7ad; font-size: 16px; }
.choice-card:hover .choice-card-body { transform: translateY(-3px); border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.choice-card input:checked + .choice-card-body { color: var(--white); background: linear-gradient(145deg, var(--green-900), var(--green-700)); border-color: var(--green-800); box-shadow: var(--shadow); }
.choice-card input:checked + .choice-card-body::after { color: var(--lime); }
.choice-card input:focus-visible + .choice-card-body { outline: 3px solid var(--lime-soft); }
.choice-number { align-self: start; color: var(--green-600); font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.choice-card input:checked + .choice-card-body .choice-number { color: var(--lime); }
.choice-card strong { align-self: end; margin-top: 31px; padding-right: 20px; font-size: 21px; line-height: 1.12; }
.choice-card small { align-self: end; margin-top: 12px; color: var(--muted); font-size: 13px; line-height: 1.48; }
.choice-card input:checked + .choice-card-body small { color: #d4e1d8; }

.panel-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.96); box-shadow: var(--shadow-sm); }
.field-grid { display: grid; gap: 20px; }
.field-grid.two-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field-group { display: grid; gap: 8px; align-content: start; min-width: 0; }
.field-group.full-width, .full-width { grid-column: 1 / -1; }
.field-group label { color: var(--ink-800); font-size: 12px; font-weight: 850; letter-spacing: .015em; }
.field-group small { color: var(--muted); font-size: 11px; }
input, select, textarea { width: 100%; min-height: 51px; padding: 12px 14px; color: var(--ink-950); background: var(--field); border: 1px solid #cbd8ce; border-radius: var(--radius-sm); outline: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
textarea { resize: vertical; }
input:hover, select:hover, textarea:hover { border-color: #a9bcae; }
input:focus, select:focus, textarea:focus { background: var(--white); border-color: var(--green-600); box-shadow: 0 0 0 4px rgba(67,166,109,.12); }
input::placeholder, textarea::placeholder { color: #98a49c; }
.machine-preview { position: relative; overflow: hidden; min-height: 160px; margin-top: 25px; padding: 26px; border-radius: var(--radius-md); color: var(--white); background: linear-gradient(145deg, var(--ink-950), var(--green-950)); }
.machine-preview::after { content: ""; position: absolute; width: 210px; height: 210px; right: -70px; bottom: -120px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 36px rgba(255,255,255,.025), 0 0 0 72px rgba(255,255,255,.015); }
.machine-preview .eyebrow { color: var(--lime); }
.machine-preview h3 { position: relative; z-index: 1; margin: 12px 0 7px; font-size: 28px; letter-spacing: -.025em; }
.machine-preview p { position: relative; z-index: 1; margin-bottom: 0; color: #c3d1c7; }
.machine-preview-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 20px; }
.machine-preview-grid div { padding: 13px; border: 1px solid rgba(255,255,255,.11); border-radius: 11px; background: rgba(255,255,255,.035); }
.machine-preview-grid span { display: block; color: #9fb0a5; font-size: 9px; text-transform: uppercase; letter-spacing: .10em; }
.machine-preview-grid strong { font-size: 12px; }
.form-actions { display: flex; justify-content: space-between; align-items: center; gap: 13px; margin-top: 31px; }
.form-actions.end { justify-content: flex-end; }
.form-section { padding-bottom: 35px; margin-bottom: 35px; border-bottom: 1px solid var(--line); }
.form-section-heading { display: grid; grid-template-columns: 45px 1fr; gap: 15px; margin-bottom: 25px; }
.form-section-heading > span { display: grid; place-items: center; width: 39px; height: 39px; color: var(--white); background: var(--green-800); border-radius: 50%; font-size: 10px; font-weight: 900; }
.form-section-heading h2 { margin: 0; font-size: 25px; letter-spacing: -.025em; }
.form-section-heading p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.checkbox-grid label, .consent-row { display: flex; gap: 10px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfa; font-weight: 500; transition: border-color .18s ease, background .18s ease; }
.checkbox-grid label:hover, .consent-row:hover { border-color: var(--green-400); background: #f7faf6; }
.checkbox-grid input, .consent-row input { flex: 0 0 18px; width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--green-700); }
.consent-row { margin-top: 12px; color: var(--muted); font-size: 12px; }

.alert { margin: 0 0 25px; padding: 16px 18px; border-radius: 12px; }
.alert-error { color: #792424; background: var(--danger-soft); border: 1px solid #efc5c2; }
.alert ul { margin: 8px 0 0; }

.result-layout { display: grid; grid-template-columns: minmax(0, 1.24fr) minmax(310px, .76fr); gap: 18px; }
.result-card, .summary-card { padding: 31px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 8px 25px rgba(11,38,25,.035); }
.primary-result { position: relative; overflow: hidden; min-height: 430px; background: linear-gradient(145deg, var(--white) 0%, #edf5ed 100%); }
.primary-result::after { content: ""; position: absolute; right: -90px; bottom: -135px; width: 370px; height: 370px; border: 1px solid #b9cebd; border-radius: 50%; box-shadow: 0 0 0 58px rgba(67,166,109,.05), 0 0 0 116px rgba(67,166,109,.022); }
.result-badge { display: inline-flex; padding: 7px 11px; margin-bottom: 51px; border-radius: 999px; color: var(--green-950); background: var(--lime-soft); font-size: 10px; font-weight: 900; letter-spacing: .10em; }
.primary-result h2 { position: relative; z-index: 1; margin: 9px 0 16px; max-width: 740px; font-size: clamp(34px, 4vw, 55px); line-height: 1.03; letter-spacing: -.043em; }
.primary-result p { position: relative; z-index: 1; max-width: 750px; color: var(--muted); }
.technical-strip { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 43px; }
.technical-strip div { padding: 15px; border: 1px solid #cedccf; border-radius: 12px; background: rgba(255,255,255,.74); }
.technical-strip span { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.technical-strip strong { font-size: 13px; }
.summary-card h3 { margin: 0 0 20px; font-size: 23px; letter-spacing: -.025em; }
.summary-list { margin: 0; }
.summary-list div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.summary-list div:last-child { border-bottom: 0; }
.summary-list dt { color: var(--muted); font-size: 11px; }
.summary-list dd { margin: 0; overflow-wrap: anywhere; text-align: right; font-size: 12px; font-weight: 750; }
.alternatives { margin-top: 52px; }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 18px; align-items: start; }
.summary-card.sticky { position: sticky; top: calc(var(--header-height) + 24px); }
.privacy-note { margin-top: 30px; padding: 15px; border-radius: 10px; color: #526259; background: #edf4ed; font-size: 11px; }

.success-shell { max-width: 800px; margin: 0 auto; padding: 112px 28px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 80px; height: 80px; margin: 0 auto 31px; color: var(--white); background: linear-gradient(145deg, var(--green-700), var(--green-500)); border-radius: 50%; box-shadow: 0 16px 35px rgba(30,103,66,.20); font-size: 34px; }
.success-shell h1 { font-size: clamp(48px, 6vw, 68px); }
.success-shell p { color: var(--muted); font-size: 18px; }
.reference-box { display: inline-grid; gap: 4px; margin-top: 31px; padding: 19px 35px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); }
.reference-box span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.reference-box strong { font-size: 22px; letter-spacing: .045em; }

.site-footer { color: #a6b4ab; background: var(--ink-950); font-size: 11px; }
.site-footer-inner { max-width: var(--max); margin: 0 auto; padding: 31px 28px; display: flex; justify-content: space-between; gap: 34px; }
.site-footer strong { color: var(--white); margin-right: 8px; }
.footer-note { max-width: 560px; text-align: right; }
.footer-note a { color: var(--lime); }

.legal-copy { max-width: 980px; margin: 0 auto; }
.legal-copy h2 { margin-top: 37px; font-size: 28px; letter-spacing: -.025em; }
.legal-copy p { color: var(--muted); font-size: 16px; }
.consent-row a { text-decoration: underline; text-underline-offset: 3px; }
.search-results-section { padding-top: 43px; }
.machine-result-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.machine-result-card { display: flex; flex-direction: column; min-height: 325px; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.machine-result-card:hover { transform: translateY(-4px); border-color: var(--green-400); box-shadow: var(--shadow-sm); }
.machine-result-meta { color: var(--green-700); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.machine-result-card h2 { margin: 19px 0 11px; font-size: 24px; line-height: 1.08; letter-spacing: -.028em; }
.machine-result-card p { flex: 1; color: var(--muted); font-size: 13px; }
.machine-result-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 17px 0; }
.machine-result-specs span { padding: 5px 9px; border-radius: 999px; color: #405047; background: #edf4ed; font-size: 9px; }
.empty-state { max-width: 770px; margin: 30px auto 90px; padding: 52px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.empty-state h2 { margin-top: 0; font-size: 36px; letter-spacing: -.035em; }
.empty-state p { color: var(--muted); }
.empty-state .button { margin-top: 19px; }
.text-link { color: var(--green-700); font-weight: 850; white-space: nowrap; }
.text-link:hover { color: var(--green-500); }

/* Back office */
.admin-login { max-width: 650px; }
.login-form { max-width: 470px; margin: 35px auto 0; text-align: left; }
.login-form .button { width: 100%; margin-top: 18px; }
.admin-shell h1 { margin: 8px 0 0; font-size: clamp(38px, 5vw, 64px); line-height: 1; letter-spacing: -.047em; }
.admin-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; margin-bottom: 35px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 23px; }
.admin-stats article { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 6px 18px rgba(11,38,25,.03); }
.admin-stats span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.admin-stats strong { display: block; margin-top: 6px; font-size: 35px; }
.admin-filters { display: grid; grid-template-columns: 220px 1fr auto; gap: 10px; margin-bottom: 18px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 25px rgba(11,38,25,.03); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.admin-table th, .admin-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.admin-table th { color: var(--muted); background: #f3f7f2; font-size: 9px; letter-spacing: .095em; text-transform: uppercase; }
.admin-table tr:hover td { background: #fbfdfb; }
.admin-table td small { display: block; margin-top: 4px; color: var(--muted); }
.status-pill { display: inline-flex; padding: 5px 9px; border-radius: 999px; background: #e7eee8; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.status-new { color: #134e2f; background: #d9f4df; }
.status-qualified, .status-matched { color: #315a0d; background: #e7f5bd; }
.status-in_review { color: #674c00; background: #fff0b8; }
.status-contacted { color: #174b72; background: #dceefb; }
.status-closed, .status-archived { color: #5f6260; background: #eceeed; }
.admin-edit-form { margin-top: 18px; }

@media (max-width: 1080px) {
    .hero { grid-template-columns: 1fr; }
    .hero-panel { min-height: 420px; }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .catalogue-grid, .choice-grid, .machine-result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .result-layout, .contact-layout { grid-template-columns: 1fr; }
    .summary-card.sticky { position: static; }
}

@media (max-width: 760px) {
    :root { --header-height: auto; }
    .site-header { position: relative; }
    .site-header-inner { align-items: flex-start; flex-direction: column; gap: 13px; padding: 15px 20px 16px; }
    .brand-mark { flex-basis: 50px; width: 50px; height: 50px; }
    .brand small { display: none; }
    .nav-links { width: 100%; gap: 9px; overflow-x: auto; padding-bottom: 2px; }
    .nav-links > a:not(.button) { padding: 9px 4px; }
    .nav-links .button { margin-left: auto; white-space: nowrap; }
    .hero { padding: 60px 20px 67px; gap: 42px; }
    .hero h1, .page-hero h1, .wizard-heading h1, .success-shell h1 { font-size: 42px; }
    .hero-panel { min-height: 0; padding: 29px; }
    .panel-kicker { margin-top: 42px; }
    .section, .page-hero { padding-left: 20px; padding-right: 20px; }
    .wizard-shell { padding: 51px 20px 72px; }
    .progress-inner { padding-left: 20px; padding-right: 20px; }
    .steps-grid, .catalogue-grid, .choice-grid, .machine-result-grid, .field-grid.two-columns, .technical-strip, .machine-preview-grid, .split-section, .checkbox-grid { grid-template-columns: 1fr; }
    .catalogue-process-title { grid-template-columns: 1fr; }
    .panel-form, .result-card, .summary-card { padding: 22px; }
    .form-actions { align-items: stretch; flex-direction: column-reverse; }
    .form-actions .button { width: 100%; }
    .site-footer-inner { flex-direction: column; padding: 29px 20px; }
    .footer-note { text-align: left; }
    .summary-list div { grid-template-columns: 1fr; gap: 4px; }
    .summary-list dd { text-align: left; }
    .quick-search-form, .quick-search-form.large { grid-template-columns: 1fr; }
    .quick-search-form > button:not(.button) { min-height: 52px; }
    .empty-state { padding: 34px 22px; }
    .admin-topbar { flex-direction: column; }
    .admin-stats, .admin-filters { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
