:root {
    --primary: #2111b7;
    --primary-dark: #160884;
    --primary-deep: #0d075a;
    --cyan: #50c7ea;
    --cyan-light: #dff7ff;
    --ink: #11132e;
    --muted: #666a80;
    --line: #e5e8f2;
    --soft: #f6f8fc;
    --white: #fff;
    --success: #087c62;
    --shadow: 0 20px 60px rgba(23, 16, 110, .12);
    --radius-lg: 32px;
    --radius-md: 22px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 104px 0; overflow: hidden; }
.section-soft { background: var(--soft); }
.skip-link {
    position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px;
    background: var(--white); color: var(--primary); border-radius: 8px; transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.site-header {
    position: sticky; top: 0; z-index: 100; height: 80px; background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(229,232,242,.85); backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 126px; height: 52px; overflow: hidden; border-radius: 9px; flex: 0 0 auto; }
.brand img { width: 100%; height: 100%; object-fit: cover; }
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav > a:not(.button) {
    position: relative; color: #40435b; text-decoration: none; font-size: 14px; font-weight: 650;
}
.main-nav > a:not(.button)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--cyan);
    transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--primary); transition: .25s ease; }

.button {
    display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 25px;
    border: 1px solid transparent; border-radius: 999px; background: var(--primary); color: var(--white);
    font-weight: 800; text-decoration: none; cursor: pointer; box-shadow: 0 12px 28px rgba(33,17,183,.22);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--primary-dark); box-shadow: 0 16px 34px rgba(33,17,183,.3); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 13px; }
.button-ghost { color: var(--primary); border-color: #d5d7e8; background: var(--white); box-shadow: none; }
.button-ghost:hover { color: var(--white); border-color: var(--primary); }
.button-white { color: var(--primary); background: var(--white); box-shadow: 0 12px 28px rgba(9,5,80,.18); }
.button-white:hover { color: var(--white); background: var(--cyan); }
.button-outline-white { color: var(--white); background: transparent; border-color: rgba(255,255,255,.55); box-shadow: none; }
.button-outline-white:hover { color: var(--primary); background: var(--white); }

.hero {
    min-height: calc(100vh - 80px); display: grid; align-items: center; padding: 86px 0 104px;
    background: radial-gradient(circle at 86% 18%, rgba(80,199,234,.22), transparent 24%), linear-gradient(180deg, #fff 0%, #f7f7ff 100%);
}
.hero::before {
    content: ""; position: absolute; inset: auto 0 0; height: 180px; opacity: .35;
    background: radial-gradient(80% 80px at 20% 100%, var(--cyan-light), transparent 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--primary);
    text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--cyan); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(44px, 5.4vw, 76px); }
h1 em, .offer-card h2 em { color: var(--primary); font-style: normal; }
.hero-copy > p { max-width: 630px; margin: 0 0 32px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 0; margin: 34px 0 0; list-style: none; color: #4f5267; font-size: 14px; font-weight: 650; }
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--success); font-weight: 900; }

.hero-visual { position: relative; min-height: 520px; isolation: isolate; }
.hero-visual::before {
    content: ""; position: absolute; width: 410px; height: 410px; top: 55px; left: 50%; z-index: -3;
    border-radius: 50%; background: linear-gradient(145deg, var(--primary), #351ad4 60%, var(--cyan));
    transform: translateX(-50%); box-shadow: 0 35px 80px rgba(26,12,147,.28);
}
.water-orbit { position: absolute; z-index: -2; border: 2px solid rgba(80,199,234,.65); border-radius: 50%; transform: rotate(-18deg); }
.water-orbit-one { width: 520px; height: 180px; top: 177px; left: -20px; }
.water-orbit-two { width: 340px; height: 115px; top: 225px; left: 76px; border-color: rgba(255,255,255,.45); }
.machine {
    position: absolute; width: 250px; height: 330px; padding: 23px 18px; border-radius: 24px;
    background: linear-gradient(145deg, #fff, #e9eef8); box-shadow: 0 26px 55px rgba(8,5,65,.28);
}
.machine-front { top: 110px; left: 70px; z-index: 2; transform: rotate(-3deg); }
.machine-back { top: 146px; right: 28px; z-index: 1; transform: rotate(6deg) scale(.88); opacity: .92; }
.machine-panel { display: flex; justify-content: flex-end; gap: 9px; height: 42px; border-bottom: 2px solid #d9ddec; }
.machine-panel::before { content: "LAVA"; margin-right: auto; color: var(--primary); font-size: 11px; font-weight: 950; letter-spacing: .12em; }
.machine-panel i { width: 15px; height: 15px; border: 3px solid var(--primary); border-radius: 50%; }
.machine-panel i:first-of-type { background: var(--cyan); border-color: var(--cyan); }
.machine-door {
    display: grid; place-items: center; width: 188px; height: 188px; margin: 31px auto 0; border: 15px solid #d1d7e5;
    border-radius: 50%; background: #101052; box-shadow: inset 0 0 0 5px #fff, inset 0 -28px 45px rgba(80,199,234,.55);
}
.machine-door span {
    width: 100px; height: 46px; border: 9px solid rgba(255,255,255,.6); border-top: 0; border-radius: 0 0 70px 70px;
    transform: rotate(12deg);
}
.discount-bubble {
    position: absolute; right: 0; top: 56px; z-index: 4; display: grid; place-items: center; width: 126px; height: 126px;
    color: var(--primary); background: var(--cyan); border: 7px solid var(--white); border-radius: 50%; box-shadow: var(--shadow); transform: rotate(8deg);
}
.discount-bubble strong { align-self: end; font-size: 35px; line-height: 1; letter-spacing: -.05em; }
.discount-bubble span { align-self: start; font-size: 12px; font-weight: 800; }
.hero-note {
    position: absolute; right: 2px; bottom: 26px; z-index: 5; width: 230px; padding: 16px 18px;
    color: var(--ink); background: rgba(255,255,255,.95); border-radius: 16px; box-shadow: var(--shadow); font-size: 14px; font-weight: 750;
}
.hero-note::before { content: "⏱"; margin-right: 7px; }

.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading h2, .registration-copy h2, .final-cta h2 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 54px); }
.section-heading > p { color: var(--muted); font-size: 18px; }
.body-large p { margin-top: 0; color: var(--muted); font-size: 19px; }
.highlight-line { color: var(--primary) !important; font-weight: 850; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step-card {
    position: relative; min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md);
    background: var(--white); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.step-card:hover { transform: translateY(-6px); border-color: var(--cyan); box-shadow: var(--shadow); }
.step-number { position: absolute; right: 22px; top: 17px; color: #e3e5f0; font-size: 42px; font-weight: 900; }
.step-card h3 { margin: 22px 0 11px; font-size: 20px; }
.step-card p { margin: 0; color: var(--muted); }
.icon { position: relative; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; background: var(--cyan-light); }
.icon::before { color: var(--primary); font-size: 28px; font-weight: 900; }
.icon-basket::before { content: "⌄"; width: 28px; height: 22px; border: 3px solid var(--primary); border-top: 0; line-height: 7px; text-align: center; }
.icon-cycle::before { content: "↻"; }
.icon-card::before { content: "▰"; transform: rotate(-8deg); }
.icon-sparkle::before { content: "✦"; }

.section-blue { color: var(--white); background: var(--primary-deep); }
.section-blue::before {
    content: ""; position: absolute; inset: 0; opacity: .32;
    background: radial-gradient(circle at 5% 20%, var(--cyan), transparent 25%), radial-gradient(circle at 90% 90%, var(--primary), transparent 35%);
}
.section-heading-light .eyebrow { color: var(--cyan); }
.service-grid { position: relative; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
    display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 34px; color: var(--ink); background: var(--white);
    border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(0,0,0,.18);
}
.service-card h3 { margin: 8px 0 12px; font-size: 30px; }
.service-card p { margin: 0; color: var(--muted); }
.service-label { color: var(--primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.service-icon { position: relative; width: 92px; height: 118px; border-radius: 18px; background: var(--soft); border: 2px solid #e0e3ee; }
.service-icon::before { content: ""; position: absolute; inset: 29px 12px 10px; border: 8px solid #cfd4e2; border-radius: 50%; background: var(--primary-deep); box-shadow: inset 0 -16px 20px rgba(80,199,234,.65); }
.service-icon::after { content: "•••"; position: absolute; top: 1px; right: 9px; color: var(--primary); letter-spacing: 3px; font-weight: 900; }
.dry-icon::before { box-shadow: inset 12px -16px 20px rgba(80,199,234,.35); }
.service-price { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--line); }
.service-price span { color: var(--muted); font-size: 14px; }
.service-price strong { color: var(--primary); font-size: 28px; letter-spacing: -.04em; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 235px; padding: 32px; border-radius: var(--radius-md); background: var(--soft); overflow: hidden; }
.benefit-card > span { color: var(--cyan); font-size: 13px; font-weight: 900; }
.benefit-card h3 { margin: 38px 0 12px; font-size: 21px; }
.benefit-card p { margin: 0; color: var(--muted); }
.benefit-card::after { content: ""; position: absolute; width: 85px; height: 85px; right: -43px; top: -43px; border-radius: 50%; background: var(--cyan-light); }

.pricing { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.price-row { display: grid; grid-template-columns: repeat(2, minmax(0, 350px)); justify-content: center; gap: 18px; margin-bottom: 48px; }
.price-card { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: 25px 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 0 10px 30px rgba(22,8,132,.06); }
.price-card span { grid-column: 1 / -1; margin-bottom: 7px; font-weight: 800; }
.price-card strong { color: var(--primary); font-size: 30px; }
.price-card small { color: var(--muted); }
.offer-card {
    position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; padding: 68px;
    color: var(--white); background: linear-gradient(135deg, var(--primary-dark), var(--primary) 62%, #3b23d8);
    border-radius: 40px; box-shadow: 0 36px 80px rgba(33,17,183,.25); overflow: hidden;
}
.offer-card::before, .offer-card::after { content: ""; position: absolute; border: 2px solid rgba(80,199,234,.4); border-radius: 50%; }
.offer-card::before { width: 420px; height: 150px; right: -80px; top: -30px; transform: rotate(-15deg); }
.offer-card::after { width: 620px; height: 220px; left: -80px; bottom: -170px; transform: rotate(8deg); }
.offer-copy, .offer-price { position: relative; z-index: 2; }
.offer-kicker { color: var(--cyan); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.offer-card h2 { margin: 14px 0 20px; font-size: clamp(36px, 4.2vw, 58px); }
.offer-card h2 em { color: var(--cyan); }
.offer-copy p { color: rgba(255,255,255,.8); font-size: 18px; }
.offer-copy ul { display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 0; margin: 28px 0 0; list-style: none; font-weight: 750; }
.offer-copy li::before { content: "✓"; margin-right: 7px; color: var(--cyan); }
.offer-price { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 35px; border: 1px solid rgba(255,255,255,.26); border-radius: 28px; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); text-align: center; }
.old-price { margin-bottom: 5px; text-decoration: line-through; opacity: .67; }
.offer-price small { font-weight: 750; }
.offer-price strong { margin: 5px 0; color: var(--cyan); font-size: clamp(54px, 6vw, 82px); line-height: 1; letter-spacing: -.06em; }
.offer-price strong sup { font-size: 18px; letter-spacing: 0; }
.offer-price > span:last-of-type { margin-bottom: 25px; color: rgba(255,255,255,.74); font-size: 13px; }

.registration { background: var(--white); }
.registration::before { content: ""; position: absolute; width: 460px; height: 460px; left: -280px; top: 120px; border-radius: 50%; background: var(--cyan-light); filter: blur(2px); }
.registration-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 95px; }
.registration-copy > p { max-width: 490px; color: var(--muted); font-size: 19px; }
.registration-copy > p strong { color: var(--primary); }
.security-note { display: flex; gap: 14px; max-width: 480px; margin-top: 35px; padding: 20px; border-radius: 16px; background: var(--soft); }
.security-note > span { display: grid; place-items: center; flex: 0 0 34px; height: 34px; color: var(--white); background: var(--success); border-radius: 50%; font-weight: 900; }
.security-note p { margin: 0; color: var(--muted); font-size: 14px; }
.form-shell { padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: #32354c; font-size: 14px; font-weight: 800; }
.field label span { color: var(--primary); }
.field label small { color: var(--muted); font-weight: 600; }
.field input {
    width: 100%; min-height: 54px; padding: 0 16px; border: 1px solid #d7dbe8; border-radius: 12px;
    color: var(--ink); background: #fbfcff; transition: border .2s ease, box-shadow .2s ease;
}
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(33,17,183,.09); }
.field input.invalid { border-color: #c43737; }
.field-error { display: block; min-height: 18px; margin-top: 4px; color: #b52c2c; font-size: 12px; }
.consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 11px; color: var(--muted); font-size: 13px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--primary); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-message { min-height: 24px; margin: 8px 0; color: #b52c2c; font-size: 14px; font-weight: 700; }
.submit-button { width: 100%; position: relative; }
.submit-button:disabled { opacity: .7; cursor: wait; transform: none; }
.button-loader { display: none; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.45); border-top-color: var(--white); border-radius: 50%; animation: spin .8s linear infinite; }
.submit-button.loading .button-label { display: none; }
.submit-button.loading .button-loader { display: block; }
.form-footnote { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: 12px; }
.success-card { padding: 42px 20px; text-align: center; }
.success-icon { display: grid; place-items: center; width: 74px; height: 74px; margin: 0 auto 22px; color: var(--white); background: var(--success); border-radius: 50%; font-size: 36px; }
.success-card h3 { margin-bottom: 12px; font-size: 30px; }
.success-card p { margin: 0 auto 26px; color: var(--muted); }

.faq { background: var(--soft); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq details { padding: 22px 24px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.faq summary { cursor: pointer; font-weight: 850; }
.faq details p { margin: 14px 0 0; color: var(--muted); }

.final-cta { color: var(--white); background: var(--primary-deep); }
.final-cta::before { content: ""; position: absolute; width: 700px; height: 220px; right: -120px; bottom: -130px; border: 3px solid rgba(80,199,234,.45); border-radius: 50%; transform: rotate(-8deg); }
.final-cta-inner { position: relative; max-width: 900px; text-align: center; }
.final-cta .eyebrow { color: var(--cyan); }
.final-cta .eyebrow::before { display: none; }
.final-cta h2 { max-width: 820px; margin-inline: auto; }
.final-cta p { max-width: 650px; margin: 0 auto 30px; color: rgba(255,255,255,.75); font-size: 19px; }
.final-cta .hero-actions { justify-content: center; }

.site-footer { padding: 68px 0 24px; color: #d9dbec; background: #080537; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 60px; }
.footer-brand img { width: 148px; height: 82px; object-fit: cover; border-radius: 10px; }
.footer-brand p { max-width: 260px; color: #aeb1cc; }
.site-footer h3 { margin-bottom: 18px; color: var(--white); font-size: 15px; letter-spacing: 0; }
.site-footer nav { display: grid; gap: 9px; }
.site-footer a, .privacy-link { color: #aeb1cc; text-decoration: none; }
.site-footer a:hover, .privacy-link:hover { color: var(--cyan); }
.privacy-link { display: block; margin-top: 12px; padding: 0; border: 0; background: none; cursor: pointer; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8185a8; font-size: 13px; }

.whatsapp-float {
    position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 9px; min-height: 54px; padding: 0 19px;
    color: var(--white); background: #159d71; border-radius: 999px; box-shadow: 0 14px 35px rgba(8,87,63,.3); text-decoration: none; font-weight: 850;
    transition: transform .2s ease, background .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); background: #087c62; }
.whatsapp-float > span:first-child { display: grid; place-items: center; width: 29px; height: 29px; border: 2px solid rgba(255,255,255,.7); border-radius: 50%; }

.privacy-modal { width: min(calc(100% - 32px), 680px); padding: 0; border: 0; border-radius: 24px; box-shadow: 0 30px 90px rgba(8,5,55,.35); }
.privacy-modal::backdrop { background: rgba(8,5,55,.7); backdrop-filter: blur(5px); }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.modal-head h2 { margin: 0; font-size: 25px; }
.modal-head button { width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--soft); cursor: pointer; font-size: 25px; }
.modal-body { padding: 26px 28px 30px; color: var(--muted); }
.modal-body p:first-child { margin-top: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1060px) {
    .main-nav { gap: 14px; }
    .main-nav > a:not(.button) { font-size: 12px; }
    .hero-grid { gap: 25px; }
    .hero-visual { transform: scale(.9); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .registration-grid { gap: 45px; }
}

@media (max-width: 860px) {
    .site-header { height: 72px; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed; inset: 72px 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 25px 20px 35px;
        background: var(--white); transform: translateX(100%); transition: transform .3s ease; overflow-y: auto;
    }
    .main-nav.open { transform: none; }
    .main-nav > a:not(.button) { padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
    .main-nav .button { margin-top: 20px; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .hero { min-height: auto; }
    .hero-grid, .split-layout, .registration-grid { grid-template-columns: 1fr; }
    .hero-copy { text-align: center; }
    .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
    .hero-copy > p { margin-inline: auto; }
    .hero-visual { width: min(100%, 540px); margin: -10px auto 0; transform: none; }
    .split-layout { gap: 10px; }
    .service-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .offer-card { grid-template-columns: 1fr; padding: 50px; }
    .registration-copy { text-align: center; }
    .registration-copy .eyebrow { justify-content: center; }
    .registration-copy > p, .security-note { margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding: 76px 0; }
    .brand { width: 112px; height: 46px; }
    h1 { font-size: 42px; }
    .hero { padding-top: 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .trust-list { display: grid; justify-content: start; max-width: 290px; margin-inline: auto; text-align: left; }
    .hero-visual { min-height: 420px; margin-top: 15px; transform: scale(.82); transform-origin: center top; }
    .hero-visual::before { width: 350px; height: 350px; }
    .machine-front { left: 28px; }
    .machine-back { right: 0; }
    .discount-bubble { right: -18px; }
    .hero-note { right: 0; bottom: 0; }
    .steps-grid, .benefits-grid, .price-row { grid-template-columns: 1fr; }
    .step-card { min-height: 235px; }
    .service-card { grid-template-columns: 78px 1fr; padding: 25px; }
    .service-icon { width: 72px; height: 94px; }
    .service-icon::before { inset: 25px 9px 8px; border-width: 6px; }
    .service-card h3 { font-size: 25px; }
    .offer-card { padding: 34px 22px; border-radius: 28px; }
    .offer-card h2 { font-size: 38px; }
    .offer-copy ul { display: grid; }
    .offer-price { padding: 27px 16px; }
    .offer-price .button { width: 100%; padding-inline: 14px; font-size: 14px; }
    .form-shell { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 35px; }
    .footer-brand { grid-column: auto; }
    .whatsapp-label { display: none; }
    .whatsapp-float { width: 56px; padding: 0; justify-content: center; }
}

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