:root {
    --orange: #ef8200;
    --orange-dark: #cf6f00;
    --orange-soft: #fff1df;
    --ink: #171a1f;
    --ink-2: #23272e;
    --paper: #ffffff;
    --surface: #f5f7f9;
    --muted: #626872;
    --border: #dfe3e8;
    --danger: #b4232d;
    --success: #087a51;
    --radius: 1.6rem;
    --shadow: 0 24px 70px rgba(19, 24, 32, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: "Segoe UI Variable", "Segoe UI", Aptos, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

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

button,
select,
label,
summary {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid rgba(239, 130, 0, .5);
    outline-offset: 3px;
}

::selection {
    background: var(--orange);
    color: white;
}

.shell {
    width: min(1180px, calc(100% - 2rem));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.button {
    display: inline-flex;
    min-height: 3.45rem;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .85rem 1.55rem;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: white;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 34px rgba(239, 130, 0, .24);
    transition: transform .18s ease, background .18s ease;
}

.button:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

.button:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.button-dark {
    background: var(--ink-2);
    box-shadow: none;
}

.button-dark:hover {
    background: #050607;
}

.button-small {
    min-height: 2.75rem;
    padding: .65rem 1.2rem;
    font-size: .95rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 74px;
    align-items: center;
    gap: 1.5rem;
}

.logo-link img {
    width: min(205px, 38vw);
    height: auto;
}

.main-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 1.8rem;
    color: #555b64;
    font-size: .94rem;
    font-weight: 700;
}

.main-nav a:hover {
    color: #111318;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: calc(100svh - 74px);
    overflow: hidden;
    background: #11151a;
    color: white;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    z-index: -3;
}

.hero-overlay {
    z-index: -2;
    background: linear-gradient(90deg, rgba(9, 11, 15, .97) 0%, rgba(9, 11, 15, .84) 39%, rgba(9, 11, 15, .19) 73%, rgba(9, 11, 15, .29) 100%);
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 9rem;
    background: linear-gradient(to top, #16191e, transparent);
    content: "";
}

.hero-grid {
    display: grid;
    min-height: calc(100svh - 74px);
    grid-template-columns: 1.06fr .64fr;
    align-items: center;
    gap: 4rem;
    padding-block: 4.5rem;
}

.hero-copy {
    max-width: 760px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.5rem;
    padding: .48rem .9rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #e3e4e7;
    font-size: .9rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.availability-badge::before {
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 18px 5px rgba(239, 130, 0, .48);
    content: "";
}

.display-title {
    margin: 0;
    font-size: clamp(3.2rem, 6.7vw, 6.4rem);
    font-weight: 900;
    letter-spacing: -.065em;
    line-height: .94;
    text-wrap: balance;
}

.display-title span {
    color: var(--orange);
}

.hero-lead {
    max-width: 700px;
    margin: 1.7rem 0 0;
    color: #ced1d6;
    font-size: clamp(1.08rem, 1.6vw, 1.28rem);
    line-height: 1.6;
}

.hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.6rem;
    margin-top: 1.7rem;
    color: #e8e9eb;
    font-weight: 700;
}

.hero-checks span::before {
    margin-right: .5rem;
    color: var(--orange);
    content: "✓";
    font-weight: 900;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 2.25rem;
    color: #d2d4d8;
    font-size: .9rem;
    font-weight: 800;
}

.order-panel {
    width: 100%;
    max-width: 400px;
    justify-self: end;
    padding: 1.45rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 28px 75px rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
}

.order-price-label {
    margin: 0;
    color: #adb1b8;
    font-size: .9rem;
    font-weight: 700;
}

.order-price {
    margin: .15rem 0 0;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -.05em;
}

.order-tax {
    margin: 0;
    color: #9da2aa;
    font-size: .84rem;
}

.product-options {
    display: grid;
    gap: .55rem;
    margin: 1.2rem 0;
    padding: 0;
    border: 0;
}

.product-option {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .75rem;
    min-height: 3.7rem;
    padding: .65rem .8rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: .95rem;
    background: rgba(0, 0, 0, .16);
    cursor: pointer;
}

.product-option:has(input:checked) {
    border-color: var(--orange);
    background: rgba(239, 130, 0, .13);
}

.product-option input {
    width: 1.05rem;
    height: 1.05rem;
    accent-color: var(--orange);
}

.product-option strong,
.product-option small {
    display: block;
}

.product-option strong {
    line-height: 1.2;
}

.product-option small {
    margin-top: .2rem;
    color: #9da2aa;
    font-size: .76rem;
    line-height: 1.25;
}

.product-option .item-price {
    font-weight: 900;
    white-space: nowrap;
}

.quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #d9dadd;
}

.quantity-row select,
.dark-select {
    min-width: 5rem;
    padding: .55rem .75rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: .75rem;
    background: #30343b;
    color: white;
}

.order-panel .button {
    width: 100%;
}

.order-note {
    margin: .7rem 0 0;
    color: #a8acb3;
    font-size: .82rem;
    text-align: center;
}

.trust-bar {
    border-bottom: 1px solid var(--border);
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    align-items: center;
    gap: .85rem;
    min-height: 100px;
    padding: 1rem 1.6rem;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 1rem;
    background: var(--orange-soft);
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 900;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item span {
    color: var(--muted);
    font-size: .85rem;
    line-height: 1.4;
}

.content-section {
    padding-block: clamp(5rem, 8vw, 8rem);
}

.content-section.white {
    background: white;
}

.content-section.dark {
    background: #1b1e23;
    color: white;
}

.content-section.orange {
    background: var(--orange);
    color: white;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: #a65400;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 1.8rem;
    height: 2px;
    background: var(--orange);
    content: "";
}

.dark .eyebrow,
.orange .eyebrow {
    color: rgba(255, 255, 255, .72);
}

.orange .eyebrow::before {
    background: white;
}

.section-title {
    max-width: 850px;
    margin: 1.15rem 0 0;
    font-size: clamp(2.3rem, 4.6vw, 4.25rem);
    font-weight: 900;
    letter-spacing: -.052em;
    line-height: 1;
    text-wrap: balance;
}

.section-title .accent {
    color: var(--orange);
}

.section-lead {
    max-width: 690px;
    margin: 1.4rem 0 0;
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.75;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.4rem;
}

.step-card {
    position: relative;
    min-height: 275px;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 18px 60px rgba(19, 24, 32, .06);
}

.step-number {
    position: absolute;
    top: -.2rem;
    right: 1.25rem;
    color: #eff1f3;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -.08em;
}

.step-icon {
    position: relative;
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    border-radius: 1rem;
    background: var(--orange);
    color: white;
    font-size: 1.55rem;
    box-shadow: 0 18px 50px rgba(239, 130, 0, .25);
}

.step-card h3 {
    position: relative;
    margin: 2.2rem 0 .5rem;
    font-size: 1.5rem;
    letter-spacing: -.03em;
}

.step-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
}

.automatic-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: center;
    gap: 5rem;
}

.sensor-visual {
    position: relative;
    width: min(100%, 390px);
    aspect-ratio: 1;
    margin-inline: auto;
}

.sensor-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .27);
    border-radius: 50%;
}

.sensor-ring.one { inset: 7%; }
.sensor-ring.two { inset: 21%; }
.sensor-core {
    position: absolute;
    inset: 34%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #20242a;
    color: var(--orange);
    font-size: 3.5rem;
    box-shadow: 0 30px 90px rgba(83, 37, 0, .35);
}

.sensor-label {
    position: absolute;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 900;
    box-shadow: 0 15px 30px rgba(0, 0, 0, .14);
}

.sensor-label.first { top: 16%; left: 0; }
.sensor-label.second { right: 0; bottom: 13%; }

.orange .section-lead {
    color: rgba(255, 255, 255, .86);
}

.automatic-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.automatic-point {
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 1rem;
    background: rgba(0, 0, 0, .08);
}

.automatic-point strong,
.automatic-point span {
    display: block;
}

.automatic-point strong {
    margin-top: .6rem;
}

.automatic-point span {
    color: rgba(255, 255, 255, .76);
    font-size: .9rem;
}

.section-head-split {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: end;
    gap: 3rem;
}

.section-head-split .section-lead {
    justify-self: end;
}

.attachment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3.2rem;
}

.attachment-card {
    min-height: 260px;
    padding: 2.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--orange-soft);
}

.attachment-card.dark-card {
    border-color: transparent;
    background: var(--ink-2);
    color: white;
}

.attachment-card .card-icon {
    color: var(--orange);
    font-size: 2.2rem;
    font-weight: 900;
}

.attachment-card h3 {
    margin: 2rem 0 .6rem;
    font-size: 1.55rem;
    letter-spacing: -.035em;
}

.attachment-card p {
    max-width: 580px;
    margin: 0;
    color: var(--muted);
}

.attachment-card.dark-card p {
    color: #afb3ba;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.use-card {
    min-height: 210px;
    padding: 1.6rem;
    border: 1px solid var(--border);
    border-radius: 1.35rem;
    background: var(--surface);
}

.use-card:first-child {
    border-color: transparent;
    background: var(--ink-2);
    color: white;
}

.use-card .card-icon {
    color: var(--orange);
    font-size: 1.7rem;
}

.use-card h3 {
    margin: 3.2rem 0 .25rem;
    font-size: 1.35rem;
}

.use-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.use-card:first-child p {
    color: #aeb2b9;
}

.details-grid,
.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 5rem;
}

.dark .section-lead {
    color: #aeb3bb;
}

.legal-note-dark {
    margin-top: 2rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 194, 64, .22);
    border-radius: .9rem;
    background: rgba(255, 194, 64, .07);
    color: #ffe8b5;
    font-size: .88rem;
}

.spec-list {
    margin: 0;
    border-block: 1px solid rgba(255, 255, 255, .11);
}

.spec-row {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.spec-row:last-child { border-bottom: 0; }
.spec-row dt { color: #858b94; font-weight: 700; }
.spec-row dd { margin: 0; font-weight: 800; }

.faq-list {
    overflow: hidden;
    padding-inline: 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
}

.faq-list details {
    border-bottom: 1px solid var(--border);
}

.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--orange); font-size: 1.45rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -.2rem 0 1.2rem; color: var(--muted); }

.contact-link {
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.cta-section {
    padding-block: 5rem;
    background: white;
}

.cta-box {
    padding: clamp(2.5rem, 6vw, 4.2rem) 1.5rem;
    border-radius: 2rem;
    background: var(--orange);
    color: white;
    text-align: center;
    box-shadow: 0 30px 90px rgba(239, 130, 0, .25);
}

.cta-box .kicker {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .72;
}

.cta-box h2 {
    max-width: 900px;
    margin: 1rem auto 0;
    font-size: clamp(2.35rem, 5vw, 4rem);
    letter-spacing: -.055em;
    line-height: 1;
}

.cta-box p {
    max-width: 650px;
    margin: 1.3rem auto;
    color: rgba(255, 255, 255, .88);
    font-size: 1.08rem;
}

.site-footer {
    padding: 3.5rem 0 1.5rem;
    background: #171a1f;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 3.5rem;
}

.footer-logo {
    display: inline-flex;
    padding: .55rem .7rem;
    border-radius: .7rem;
    background: white;
}

.footer-logo img { width: 175px; height: auto; }
.footer-grid p { max-width: 430px; color: #9da2aa; }
.footer-note { font-size: .9rem; }
.footer-grid h2 {
    margin: 0 0 .8rem;
    color: #777d86;
    font-size: .78rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.footer-grid > div > a {
    display: block;
    margin: .38rem 0;
    color: #d5d7db;
}

.footer-grid > div > a:hover { color: white; }
.footer-grid .footer-accent { color: #ff9b22; font-weight: 800; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.8rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #858a92;
    font-size: .85rem;
}

.mobile-buy {
    display: none;
}

/* Checkout */
.checkout-main,
.status-main,
.legal-main {
    min-height: 70vh;
    padding-block: 3.5rem 5rem;
    background: #f4f6f8;
}

.checkout-heading {
    margin-bottom: 2rem;
}

.checkout-heading h1,
.legal-shell h1 {
    margin: .65rem 0 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.055em;
    line-height: 1;
}

.checkout-heading p,
.legal-intro {
    max-width: 770px;
    color: var(--muted);
    font-size: 1.05rem;
}

.flash {
    margin-bottom: 1.2rem;
    padding: .9rem 1rem;
    border-radius: .85rem;
    background: #fff0f1;
    color: var(--danger);
    font-weight: 700;
}

.flash-success {
    background: #ebfaf4;
    color: #086847;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: start;
    gap: 1.6rem;
}

.checkout-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 18px 60px rgba(19, 24, 32, .05);
}

.checkout-card h2,
.summary-card h2 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: -.03em;
}

.card-subtitle {
    margin: .15rem 0 1.5rem;
    color: var(--muted);
    font-size: .9rem;
}

.form-grid {
    display: grid;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 1rem;
}

.field label {
    display: block;
    margin-bottom: .35rem;
    font-size: .9rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 3rem;
    padding: .65rem .85rem;
    border: 1px solid #ced3da;
    border-radius: .8rem;
    background: white;
    color: var(--ink);
}

.field textarea {
    min-height: 7rem;
    resize: vertical;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.summary-card {
    position: sticky;
    top: 94px;
    padding: 1.7rem;
    border-radius: var(--radius);
    background: #1c2026;
    color: white;
    box-shadow: 0 25px 80px rgba(19, 24, 32, .18);
}

.summary-card .card-subtitle { color: #9da2aa; }
.summary-controls {
    display: grid;
    gap: 1rem;
    margin: 1.3rem 0;
    padding-block: 1.2rem;
    border-block: 1px solid rgba(255, 255, 255, .1);
}

.summary-controls label {
    display: block;
    margin-bottom: .35rem;
    color: #c8cbd0;
    font-size: .88rem;
}

.summary-controls select {
    width: 100%;
    min-height: 2.8rem;
    padding: .55rem .7rem;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: .75rem;
    background: #30343b;
    color: white;
}

.price-line,
.total-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: .8rem 0;
    color: #c7cad0;
}

.price-line strong,
.total-line strong { color: white; }
.total-line {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-weight: 900;
}

.total-line strong {
    font-size: 1.8rem;
    letter-spacing: -.04em;
}

.legal-check {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .7rem;
    margin: 1.2rem 0;
    padding: .9rem;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .8rem;
    background: rgba(255, 255, 255, .05);
    color: #c7cad0;
    font-size: .86rem;
}

.legal-check input {
    width: 1.1rem;
    height: 1.1rem;
    margin-top: .22rem;
    accent-color: var(--orange);
}

.legal-check a {
    color: white;
    font-weight: 800;
    text-decoration: underline;
}

.legal-check-light {
    border-color: var(--border);
    background: var(--surface);
    color: #454b54;
}

.summary-card .button { width: 100%; }
.payment-note { margin: .7rem 0 0; color: #969ba3; font-size: .82rem; text-align: center; }

/* Status */
.status-card {
    max-width: 780px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}

.status-head {
    padding: 2.2rem;
    border-bottom: 1px solid;
}

.status-head.success { background: #ebfaf4; border-color: #b9ead7; color: #086847; }
.status-head.pending { background: #fff8e5; border-color: #f1dda2; color: #795600; }
.status-head.error { background: #fff0f1; border-color: #f0c4c8; color: #9a2029; }
.status-head.neutral { background: #f0f2f4; border-color: #d8dde2; color: #454b54; }
.status-kicker { margin: 0; font-size: .78rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.status-head h1 { margin: .45rem 0; font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.045em; line-height: 1; }
.status-head p:last-child { margin-bottom: 0; }
.status-body { padding: 2rem; }
.status-product { display: flex; align-items: center; gap: 1rem; }
.status-product strong, .status-product span { display: block; }
.status-product span { color: var(--muted); font-size: .9rem; }
.status-product .status-total { margin-left: auto; font-size: 1.4rem; font-weight: 900; }
.status-info { margin-top: 1.3rem; padding: .9rem; border-radius: .8rem; background: var(--surface); color: var(--muted); }
.status-body .button { width: 100%; margin-top: 1.2rem; }

/* Legal */
.legal-shell { max-width: 900px; }
.back-link { display: inline-flex; margin-bottom: 1.5rem; color: var(--muted); font-weight: 750; }
.setup-warning {
    margin: 1.5rem 0;
    padding: 1rem;
    border: 1px solid #f0cf80;
    border-radius: .85rem;
    background: #fff8df;
    color: #6c5000;
}

.setup-warning code { font-weight: 800; }
.legal-card {
    margin-top: 2rem;
    padding: clamp(1.4rem, 4vw, 2.6rem);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 18px 60px rgba(19, 24, 32, .05);
}

.legal-section {
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--border);
}

.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { padding-bottom: 0; border-bottom: 0; }
.legal-section h2 { margin: 0 0 .7rem; font-size: 1.3rem; letter-spacing: -.025em; }
.legal-section p, .legal-section ul { color: #525861; }
.legal-section a { color: #8f4b00; font-weight: 750; text-decoration: underline; }
.placeholder { color: var(--danger); font-weight: 800; }
.revocation-form { display: grid; gap: 1rem; }
.revocation-form .button { justify-self: start; }

@media (max-width: 1000px) {
    .main-nav { display: none; }
    .header-inner .button { margin-left: auto; }
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .order-panel { justify-self: start; }
    .automatic-grid, .details-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
    .sensor-visual { max-width: 330px; }
    .section-head-split { grid-template-columns: 1fr; gap: .5rem; }
    .section-head-split .section-lead { justify-self: start; }
    .checkout-grid { grid-template-columns: 1fr; }
    .summary-card { position: static; }
}

@media (max-width: 760px) {
    .steps, .trust-grid, .attachment-grid, .use-grid, .footer-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: 0; }
    .automatic-points { grid-template-columns: 1fr; }
    .use-card { min-height: 170px; }
    .use-card h3 { margin-top: 1.9rem; }
    .footer-grid { gap: 2rem; }
    .footer-bottom { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .shell { width: min(100% - 1.25rem, 1180px); }
    .header-inner { min-height: 66px; gap: .8rem; }
    .logo-link img { width: 150px; }
    .header-inner .button-small { min-height: 2.45rem; padding: .55rem .8rem; font-size: .83rem; }
    .hero-grid { min-height: auto; padding-block: 3.6rem 7.5rem; }
    .hero-image { object-position: 70% center; }
    .hero-overlay { background: linear-gradient(90deg, rgba(9, 11, 15, .96), rgba(9, 11, 15, .78)); }
    .display-title { font-size: clamp(2.75rem, 15vw, 4.2rem); }
    .order-panel { padding: 1rem; }
    .product-option { grid-template-columns: auto 1fr; }
    .product-option .item-price { grid-column: 2; }
    .content-section { padding-block: 4.5rem; }
    .step-card { min-height: 240px; }
    .attachment-card { min-height: auto; padding: 1.6rem; }
    .spec-row { grid-template-columns: 1fr; gap: .2rem; }
    .mobile-buy {
        position: fixed;
        inset: auto 0 0;
        z-index: 40;
        display: block;
        padding: .7rem;
        border-top: 1px solid var(--border);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -12px 40px rgba(0, 0, 0, .1);
        backdrop-filter: blur(12px);
    }
    .mobile-buy .button { width: 100%; }
    .site-footer { padding-bottom: 6rem; }
    .checkout-main, .status-main, .legal-main { padding-block: 2.5rem 4rem; }
    .checkout-card, .summary-card, .status-head, .status-body { padding: 1.25rem; }
    .status-product { align-items: flex-start; flex-wrap: wrap; }
    .status-product .status-total { width: 100%; margin-left: 0; }
}

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