:root {
  color-scheme: dark;
  --ink: #071018;
  --panel: #0b1721;
  --panel-2: #10212d;
  --ice: #39d8ff;
  --ice-bright: #a9efff;
  --acid: #c7ff4a;
  --white: #f4fbfd;
  --muted: #8aa0ad;
  --line: rgba(169, 239, 255, .14);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(57, 216, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 216, 255, .025) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
}

button, input { font: inherit; }
button { color: inherit; }
.icon-svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
button:focus-visible, input:focus-visible, a:focus-visible { outline: 3px solid var(--acid); outline-offset: 3px; }
[hidden] { display: none !important; }
.ambient { position: fixed; z-index: -1; border-radius: 999px; filter: blur(120px); opacity: .12; pointer-events: none; }
.ambient-one { width: 520px; height: 520px; background: var(--ice); top: -250px; right: -130px; }
.ambient-two { width: 380px; height: 380px; background: #115c7e; bottom: -210px; left: -170px; }

.topbar {
  height: 86px;
  max-width: 1460px;
  margin: 0 auto;
  padding: 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; color: var(--white); text-decoration: none; }
.brand-logo { display: block; width: auto; height: 50px; object-fit: contain; }
.brand-divider { width: 1px; height: 34px; margin: 0 17px; background: linear-gradient(transparent, rgba(169,239,255,.38), transparent); }
.product-mark { display: flex; flex-direction: column; gap: 3px; line-height: 1; }
.product-mark > span { display: flex; align-items: baseline; letter-spacing: -.04em; }
.product-mark strong, .product-mark b { font-size: 19px; font-weight: 850; }
.product-mark strong { color: var(--white); }
.product-mark b { color: var(--ice); }
.product-mark small { color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.topbar-meta { display: flex; gap: 12px; align-items: center; }
.status-pill, .ghost-button { border: 1px solid var(--line); border-radius: 999px; padding: 10px 14px; font-size: 13px; color: var(--muted); background: rgba(12, 28, 39, .68); }
.status-pill i, .live-head i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.ghost-button { cursor: pointer; color: var(--white); transition: .2s ease; }
.ghost-button:hover { border-color: var(--ice); color: var(--ice); }

main {
  max-width: 1460px;
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  padding: 58px 34px 66px;
  display: grid;
  grid-template-columns: .72fr 1.42fr .9fr;
  gap: 28px;
  align-items: start;
}
.intro { padding: 24px 12px 0 0; }
.eyebrow, .step-kicker { color: var(--ice); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.intro h1 { margin: 24px 0 18px; font-size: clamp(3.2rem, 5.4vw, 5.5rem); line-height: .89; letter-spacing: -.075em; }
h1 em, h2 em { color: var(--ice); font-family: Georgia, serif; font-weight: 400; }
.intro > p { max-width: 390px; color: var(--muted); line-height: 1.7; }
.intro-note { display: flex; align-items: center; gap: 12px; margin-top: 46px; }
.intro-note > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 14px; background: rgba(57,216,255,.08); color: var(--ice); }
.intro-note strong, .intro-note small { display: block; }
.intro-note strong { font-size: 14px; }
.intro-note small { margin-top: 3px; color: var(--muted); font-size: 12px; }

.configurator, .live-panel {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 37, 50, .96), rgba(7, 18, 27, .96));
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.configurator { min-height: 650px; border-radius: var(--radius); overflow: hidden; }
.configurator::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 100% 0, rgba(57,216,255,.09), transparent 38%); }
.progress-shell { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 24px 28px 18px; border-bottom: 1px solid var(--line); }
.progress-copy { display: flex; align-items: baseline; gap: 12px; }
.progress-copy span { color: var(--ice); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.progress-copy strong { font-size: 13px; font-weight: 600; color: var(--muted); }
.progress-track { width: 150px; height: 3px; overflow: hidden; background: rgba(255,255,255,.08); }
.progress-track span { display: block; width: 25%; height: 100%; background: var(--ice); box-shadow: 0 0 15px var(--ice); transition: width .35s ease; }
#ice-form { position: relative; min-height: 580px; padding: 34px 34px 92px; }
.step { display: none; animation: stepIn .38s cubic-bezier(.2,.8,.2,1); }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step-heading h2 { max-width: 560px; margin: 10px 0 8px; font-size: clamp(1.65rem, 2.5vw, 2.35rem); line-height: 1.08; letter-spacing: -.04em; }
.step-heading p { margin: 0; color: var(--muted); font-size: 14px; }
.venue-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 27px; }
.venue-card, .demand-card { position: relative; text-align: left; border: 1px solid var(--line); background: rgba(5, 15, 23, .46); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.venue-card { min-height: 116px; padding: 17px; border-radius: 18px; }
.venue-card:hover, .demand-card:hover { transform: translateY(-3px); border-color: rgba(57,216,255,.45); }
.venue-card.is-selected, .demand-card.is-selected { border-color: var(--ice); background: rgba(57,216,255,.09); box-shadow: inset 0 0 0 1px rgba(57,216,255,.09), 0 12px 25px rgba(0,0,0,.14); }
.venue-icon { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 10px; border-radius: 11px; background: rgba(255,255,255,.05); font-size: 20px; filter: grayscale(1); }
.venue-icon-svg { display: block; width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.venue-card.is-selected .venue-icon { background: var(--ice); color: var(--ink); filter: none; }
.venue-card strong, .venue-card small { display: block; }
.venue-card strong { font-size: 15px; }
.venue-card small { margin-top: 3px; color: var(--muted); font-size: 12px; }
.venue-card .selected-tick { position: absolute; top: 14px; right: 14px; opacity: 0; color: var(--ice); }
.venue-card.is-selected .selected-tick { opacity: 1; }
.form-actions { position: absolute; left: 34px; right: 34px; bottom: 24px; display: flex; justify-content: space-between; align-items: center; }
.back-button, .next-button, .reset-button, .contact-button, .send-button { border: 0; cursor: pointer; }
.back-button { display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; color: var(--muted); background: transparent; }
.back-button .icon-svg { width: 17px; height: 17px; }
.back-button:disabled { opacity: .25; cursor: default; }
.next-button { display: inline-flex; align-items: center; gap: 28px; min-width: 184px; justify-content: space-between; padding: 8px 9px 8px 20px; border-radius: 999px; color: var(--ink); background: var(--ice); font-weight: 800; box-shadow: 0 10px 30px rgba(57,216,255,.18); transition: .2s ease; }
.next-button:hover, .contact-button:hover, .send-button:hover { transform: translateY(-2px); box-shadow: 0 15px 34px rgba(57,216,255,.26); }
.next-button i { display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border-radius: 50%; background: var(--ink); color: var(--ice); font-style: normal; line-height: 0; }
.next-button i .icon-svg { width: 16px; height: 16px; }

.range-stage { margin-top: 52px; padding: 30px 5px 0; }
.range-reading { text-align: center; margin-bottom: 42px; }
.range-reading span { display: block; color: var(--ice-bright); font-size: clamp(5rem, 9vw, 7rem); line-height: .78; font-weight: 850; letter-spacing: -.075em; text-shadow: 0 0 35px rgba(57,216,255,.25); }
.range-reading small { display: block; margin-top: 15px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; font-weight: 700; }
input[type="range"] { width: 100%; height: 5px; appearance: none; border-radius: 999px; background: linear-gradient(to right, var(--ice) 0 var(--range, 14%), rgba(255,255,255,.1) var(--range, 14%) 100%); }
input[type="range"]::-webkit-slider-thumb { appearance: none; width: 25px; height: 25px; border: 6px solid var(--ink); border-radius: 50%; background: var(--ice); box-shadow: 0 0 0 2px var(--ice), 0 0 25px rgba(57,216,255,.6); cursor: grab; }
.range-scale { display: flex; justify-content: space-between; margin-top: 12px; color: var(--muted); font-size: 11px; text-transform: uppercase; }
.quick-values { display: flex; justify-content: center; gap: 9px; margin-top: 34px; }
.quick-values button { min-width: 64px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; }
.quick-values button:hover, .quick-values button.is-selected { color: var(--ink); background: var(--ice); border-color: var(--ice); }

.demand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 44px; }
.demand-card { min-height: 245px; padding: 22px 18px; border-radius: 20px; }
.demand-card strong, .demand-card small { display: block; }
.demand-card strong { margin-top: 24px; font-size: 16px; }
.demand-card small { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.demand-visual { height: 78px; display: flex; align-items: end; justify-content: center; gap: 6px; padding: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.demand-visual i { display: block; width: 11px; border-radius: 3px 3px 0 0; background: rgba(138,160,173,.35); }
.demand-card.is-selected .demand-visual i { background: var(--ice); box-shadow: 0 0 12px rgba(57,216,255,.22); }
.steady i { height: 40px; }
.peaks i:nth-child(1), .peaks i:nth-child(5) { height: 18px; } .peaks i:nth-child(2), .peaks i:nth-child(4) { height: 37px; } .peaks i:nth-child(3) { height: 62px; }
.night i:nth-child(1) { height: 16px; } .night i:nth-child(2) { height: 25px; } .night i:nth-child(3) { height: 38px; } .night i:nth-child(4) { height: 52px; } .night i:nth-child(5) { height: 65px; }

.space-stage { display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: center; margin-top: 28px; padding: 20px; border: 1px solid var(--line); border-radius: 20px; background: rgba(5,15,23,.45); }
.space-machine { width: 126px; margin: 0 auto; }
.machine-top { height: 44px; border: 2px solid var(--ice); border-radius: 8px 8px 2px 2px; background: linear-gradient(135deg, rgba(169,239,255,.24), rgba(57,216,255,.02)); }
.machine-top span { display: block; width: 9px; height: 9px; margin: 16px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 10px var(--acid); }
.machine-door { height: 100px; border: 2px solid rgba(169,239,255,.5); border-top: 0; border-radius: 2px 2px 8px 8px; position: relative; }
.machine-door i { position: absolute; right: 10px; top: 12px; width: 4px; height: 28px; border-radius: 99px; background: rgba(169,239,255,.4); }
.measure-line { display: flex; align-items: center; margin-top: 14px; color: var(--ice); font-size: 12px; }
.measure-line b { height: 1px; flex: 1; background: var(--ice); }
.measure-line span { padding: 0 5px; white-space: nowrap; }
.check-row, .privacy-row { display: flex; gap: 12px; align-items: center; margin-top: 20px; cursor: pointer; }
.check-row input, .privacy-row input { position: absolute; opacity: 0; pointer-events: none; }
.custom-check { flex: 0 0 auto; display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.04); }
input:checked + .custom-check { background: var(--ice); border-color: var(--ice); }
input:checked + .custom-check::after { content: "✓"; color: var(--ink); font-weight: 900; }
.check-row strong, .check-row small { display: block; }
.check-row strong { font-size: 14px; }.check-row small { margin-top: 2px; color: var(--muted); font-size: 12px; }
.additional-installation { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-top: 14px; }
.extra-control, .product-preferences { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,15,23,.45); }
.extra-control > span { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 13px; color: var(--muted); font-size: 11px; }
.extra-control output { color: var(--white); font-weight: 800; }
.extra-control input[type="range"] { height: 3px; }
.extra-control input[type="range"]::-webkit-slider-thumb { width: 19px; height: 19px; border-width: 5px; }
.extra-control select, .preference-grid select { width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--white); background: #0b1b26; font: inherit; outline: none; }
.extra-control select:focus, .preference-grid select:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(57,216,255,.1); }
.product-preferences { margin-top: 14px; }
.preferences-kicker { display: block; margin-bottom: 11px; color: var(--ice); font-size: 9px; font-weight: 850; letter-spacing: .11em; }
.preference-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.preference-grid label > span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 10px; }

.live-panel { overflow: hidden; min-height: 650px; border-radius: var(--radius); padding: 24px; }
.live-panel::after { content: ""; position: absolute; inset: auto -30% -25% -30%; height: 65%; background: radial-gradient(circle, rgba(57,216,255,.17), transparent 63%); pointer-events: none; }
.live-head { position: relative; z-index: 1; display: flex; justify-content: space-between; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.live-head span:last-child { color: var(--acid); }
.ice-orbit { position: relative; height: 380px; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px solid rgba(57,216,255,.12); border-radius: 50%; }
.ring-one { width: 284px; height: 284px; }
.ring-two { width: 214px; height: 214px; border-style: dashed; animation: orbit 30s linear infinite; }
@keyframes orbit { to { transform: rotate(360deg); } }
.output-core { position: relative; z-index: 2; width: 185px; height: 185px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(57,216,255,.3); border-radius: 50%; background: radial-gradient(circle at 40% 30%, rgba(57,216,255,.18), rgba(6,18,27,.93) 65%); box-shadow: 0 0 80px rgba(57,216,255,.12), inset 0 0 50px rgba(57,216,255,.06); }
.output-core span { color: var(--muted); font-size: 9px; line-height: 1.45; text-align: center; letter-spacing: .14em; }
.output-core strong { font-size: 64px; line-height: .96; letter-spacing: -.07em; color: var(--ice-bright); }
.output-core small { color: var(--ice); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.ice-cube { position: absolute; width: 30px; height: 30px; overflow: hidden; border: 1px solid rgba(190,246,255,.7); border-radius: 7px; background: linear-gradient(138deg, rgba(224,251,255,.46) 0%, rgba(92,215,239,.2) 48%, rgba(57,216,255,.055) 100%); box-shadow: 0 6px 18px rgba(57,216,255,.12), 0 0 13px rgba(57,216,255,.09), inset 5px 5px 11px rgba(255,255,255,.13); transform: rotate(24deg); will-change: transform; }
.ice-cube::before { content: ""; position: absolute; top: 3px; left: 4px; width: 56%; height: 1px; border-radius: 50%; background: rgba(255,255,255,.6); box-shadow: 0 2px 7px rgba(255,255,255,.22); transform: rotate(-4deg); }
.cube-one { top: 49px; right: 51px; animation: floatOne 5.2s ease-in-out infinite; }
.cube-two { bottom: 54px; left: 44px; width: 23px; height: 23px; animation: floatTwo 6.4s ease-in-out infinite; }
.cube-three { top: 112px; left: 23px; width: 18px; height: 18px; animation: floatThree 5.7s ease-in-out infinite .7s; }
@keyframes floatOne { 0%, 100% { transform: translate3d(0,0,0) rotate(24deg); } 38% { transform: translate3d(-6px,-16px,0) rotate(35deg); } 68% { transform: translate3d(4px,-8px,0) rotate(42deg); } }
@keyframes floatTwo { 0%, 100% { transform: translate3d(0,0,0) rotate(24deg); } 42% { transform: translate3d(7px,-15px,0) rotate(38deg); } 72% { transform: translate3d(-3px,-7px,0) rotate(31deg); } }
@keyframes floatThree { 0%, 100% { transform: translate3d(0,0,0) rotate(24deg); } 34% { transform: translate3d(-5px,-13px,0) rotate(34deg); } 70% { transform: translate3d(5px,-5px,0) rotate(44deg); } }
.live-metrics { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.live-metrics div { padding: 14px 10px; background: #0c1a24; text-align: center; }
.live-metrics span, .live-metrics strong { display: block; }
.live-metrics span { min-height: 30px; color: var(--muted); font-size: 10px; line-height: 1.3; }
.live-metrics strong { margin-top: 4px; font-size: 14px; }
.live-tip { position: relative; z-index: 2; display: flex; gap: 9px; margin: 20px 3px 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.live-tip > span:first-child { color: var(--ice); }

.results { max-width: 1392px; margin: 0 auto; padding: 80px 34px 70px; border-top: 1px solid var(--line); }
.results-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.results-head h2 { margin: 8px 0; font-size: clamp(2.3rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.results-head h2 em { display: inline-block; max-width: 100%; white-space: nowrap; vertical-align: bottom; }
.results-head p { margin: 0; color: var(--muted); }
.reset-button { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; padding: 11px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; }
.reset-button .icon-svg { width: 15px; height: 15px; }
.recommendation-reasons { position: relative; isolation: isolate; margin-top: 30px; padding: 23px; overflow: hidden; border: 1px solid rgba(57,216,255,.22); border-radius: 23px; background: linear-gradient(120deg, rgba(57,216,255,.09), rgba(10,27,38,.72) 42%, rgba(199,255,74,.035)); }
.recommendation-reasons::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .18; background-image: linear-gradient(rgba(169,239,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(169,239,255,.08) 1px, transparent 1px); background-size: 34px 34px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.recommendation-reasons-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.recommendation-reasons-head > div > span { display: flex; align-items: center; gap: 8px; color: var(--ice); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.recommendation-reasons-head > div > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 16px rgba(199,255,74,.7); }
.recommendation-reasons-head h3 { margin: 6px 0 0; font-size: 25px; letter-spacing: -.035em; }
.recommendation-reasons-head p { max-width: 350px; margin: 0; color: var(--muted); font-size: 12px; text-align: right; }
.recommendation-reasons-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 11px; }
.recommendation-reason { position: relative; display: grid; grid-template-columns: 43px minmax(0,1fr); gap: 13px; min-width: 0; padding: 17px; overflow: hidden; border: 1px solid rgba(169,239,255,.14); border-radius: 16px; background: rgba(4,14,21,.66); box-shadow: inset 0 1px rgba(255,255,255,.025); }
.recommendation-reason-number { position: absolute; top: 10px; right: 12px; color: rgba(169,239,255,.18); font-size: 22px; font-weight: 900; letter-spacing: -.06em; }
.recommendation-reason-icon { display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid rgba(57,216,255,.3); border-radius: 13px; color: var(--ice); background: rgba(57,216,255,.09); }
.recommendation-reason:nth-child(1) .recommendation-reason-icon { border-color: rgba(199,255,74,.3); color: var(--acid); background: rgba(199,255,74,.09); }
.recommendation-reason-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.recommendation-reason-copy { min-width: 0; padding-right: 15px; }
.recommendation-reason-copy > span, .recommendation-reason-copy strong, .recommendation-reason-copy small { display: block; }
.recommendation-reason-copy > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.recommendation-reason-copy strong { margin: 5px 0 4px; overflow: hidden; font-size: 19px; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.recommendation-reason-copy small { min-height: 27px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.recommendation-reason-track { display: block; height: 3px; margin-top: 11px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.07); }
.recommendation-reason-track b { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--ice), var(--acid)); box-shadow: 0 0 12px rgba(57,216,255,.35); }
.result-layout { display: grid; grid-template-columns: 1.4fr .85fr; gap: 24px; margin-top: 38px; }
.winner-card { position: relative; overflow: hidden; min-height: 560px; border: 1px solid rgba(57,216,255,.35); border-radius: 28px; background: linear-gradient(145deg, #122a39, #08131c); }
.winner-image { position: absolute; inset: 0 0 0 44%; }
.winner-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #0d202c 0%, transparent 65%), linear-gradient(0deg, rgba(7,16,24,.7), transparent 50%); }
.winner-image img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: screen; filter: saturate(.72) contrast(1.05); }
.winner-content { position: relative; z-index: 2; max-width: 58%; padding: 34px; }
.match-badge { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: var(--acid); color: #172107; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.result-badges { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.ice-type-badge, .alternative-cube { color: var(--ice); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.ice-type-badge { display: inline-flex; padding: 7px 10px; border: 1px solid rgba(57,216,255,.35); border-radius: 999px; background: rgba(57,216,255,.08); }
.winner-content h3 { width: 100%; margin: 20px 0 4px; overflow: visible; white-space: nowrap; font-size: clamp(2.4rem, 4vw, 4.1rem); line-height: .95; letter-spacing: -.06em; }
.winner-content > p { margin: 0 0 28px; color: var(--muted); }
.machine-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.machine-stat { padding: 13px; border: 1px solid var(--line); border-radius: 14px; background: rgba(5,15,23,.65); }
.machine-stat span, .machine-stat strong { display: block; }
.machine-stat span { color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.machine-stat strong { margin-top: 4px; font-size: 16px; }
.winner-price { display: flex; gap: 18px; align-items: end; margin-top: 25px; }
.winner-price strong { font-size: 28px; }.winner-price span { color: var(--muted); font-size: 12px; }
.winner-footer { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.technical-link { display: inline-grid; grid-template-columns: 25px 1fr 18px; align-items: center; gap: 10px; width: min(100%, 220px); min-height: 46px; padding: 7px 0; border: 0; border-bottom: 1px solid rgba(169,239,255,.28); border-radius: 0; color: var(--white); background: transparent; text-decoration: none; transition: color .2s ease, border-color .2s ease; }
.technical-link:hover { border-color: var(--ice); color: var(--ice-bright); }
.technical-icon, .technical-arrow { display: grid; place-items: center; flex: 0 0 auto; }
.technical-icon { width: 25px; height: 25px; color: var(--ice); }
.technical-icon svg { width: 19px; height: 19px; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.technical-copy { display: flex; min-width: 0; flex-direction: column; gap: 4px; line-height: 1.05; }
.technical-copy strong { color: currentColor; font-size: 12px; font-weight: 800; }
.technical-copy small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.technical-arrow { width: 18px; height: 18px; color: var(--ice); transition: transform .2s ease; }
.technical-arrow svg { width: 15px; height: 15px; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.technical-link:hover .technical-arrow { transform: translate(2px, -2px); }
.technical-link.is-compact { display: inline-flex; width: max-content; min-height: 0; margin-top: 8px; padding: 0 0 3px; gap: 5px; border-bottom-color: rgba(169,239,255,.2); }
.technical-link.is-compact .technical-icon, .technical-link.is-compact .technical-copy small { display: none; }
.technical-link.is-compact .technical-copy { display: block; }
.technical-link.is-compact .technical-copy strong { color: var(--muted); font-size: 10px; font-weight: 750; }
.technical-link.is-compact:hover .technical-copy strong { color: var(--ice-bright); }
.technical-link.is-compact .technical-arrow { width: 14px; height: 14px; }
.technical-link.is-compact .technical-arrow svg { width: 13px; height: 13px; }
.alternatives { border: 1px solid var(--line); border-radius: 28px; background: rgba(12,28,39,.68); overflow: hidden; }
.alternatives-title { display: flex; justify-content: space-between; padding: 21px 22px; border-bottom: 1px solid var(--line); }
.alternatives-title span { font-weight: 800; }.alternatives-title small { color: var(--muted); }
.alternative-card { display: grid; grid-template-columns: 76px 1fr auto; gap: 15px; align-items: center; padding: 20px; border-bottom: 1px solid var(--line); }
.alternative-card > div { min-width: 0; }
.alternative-card:last-child { border: 0; }
.alternative-card img { width: 76px; height: 76px; object-fit: contain; border-radius: 12px; background: #e7f4f7; }
.alternative-card h4 { width: 100%; margin: 0 0 4px; white-space: nowrap; font-size: 16px; }.alternative-card p { margin: 0; color: var(--muted); font-size: 12px; }
.alternative-cube { display: block; margin-bottom: 4px; }
.alternative-card > strong { color: var(--ice); font-size: 12px; }
.alternative-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 9px 13px; }
.compare-machine-button { display: inline-flex; align-items: center; gap: 5px; min-height: 25px; margin-top: 8px; padding: 0 0 3px; border: 0; border-bottom: 1px solid rgba(169,239,255,.2); color: var(--ice); background: transparent; font-size: 10px; font-weight: 800; cursor: pointer; }
.compare-machine-button:hover { color: var(--ice-bright); border-color: var(--ice); }
.compare-machine-button .icon-svg { width: 13px; height: 13px; }
.machine-comparator { position: relative; isolation: isolate; margin-top: 24px; padding: 29px; overflow: hidden; border: 1px solid rgba(57,216,255,.28); border-radius: 28px; background: linear-gradient(135deg, #0d2531, #081720 52%, #0a1d24); box-shadow: 0 28px 80px rgba(0,0,0,.22); }
.machine-comparator::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .16; background-image: linear-gradient(rgba(169,239,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(169,239,255,.09) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(120deg, #000, transparent 80%); }
.comparator-glow { position: absolute; z-index: -1; top: -220px; right: -150px; width: 520px; height: 520px; border-radius: 50%; background: rgba(57,216,255,.14); filter: blur(105px); pointer-events: none; }
.comparator-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; }
.comparator-eyebrow { display: flex; align-items: center; gap: 8px; color: var(--ice); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.comparator-eyebrow i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 16px rgba(199,255,74,.65); }
.comparator-head h3 { margin: 8px 0 5px; font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1; letter-spacing: -.045em; }
.comparator-head p { margin: 0; color: var(--muted); font-size: 13px; }
.comparator-machines { display: grid; grid-template-columns: minmax(0,1fr) 38px minmax(0,1fr); gap: 14px; align-items: stretch; margin-top: 24px; }
.comparator-vs { align-self: center; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(169,239,255,.18); border-radius: 50%; color: var(--muted); background: #07131b; font-size: 9px; font-weight: 900; }
.comparator-machine { position: relative; display: grid; grid-template-columns: 92px minmax(0,1fr); gap: 16px; min-width: 0; padding: 15px; border: 1px solid rgba(169,239,255,.15); border-radius: 19px; background: rgba(4,14,21,.7); transition: border-color .2s ease, background .2s ease; }
.comparator-machine.is-selected { border-color: rgba(199,255,74,.65); background: linear-gradient(110deg, rgba(199,255,74,.1), rgba(57,216,255,.045)); }
.comparator-machine-image { overflow: hidden; border-radius: 13px; background: #e9f5f7; }
.comparator-machine-image img { display: block; width: 92px; height: 92px; object-fit: contain; }
.comparator-machine-copy { min-width: 0; padding-right: 12px; }
.comparator-machine-role { color: var(--ice); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.comparator-machine-copy h4 { margin: 5px 0 2px; overflow: hidden; font-size: 21px; line-height: 1.05; text-overflow: ellipsis; white-space: nowrap; }
.comparator-machine-copy p { margin: 0; color: var(--muted); font-size: 11px; }
.comparator-machine-copy > div { display: flex; align-items: center; flex-wrap: wrap; gap: 2px 16px; }
.comparator-machine-copy > div > strong { margin-top: 8px; color: var(--acid); font-size: 11px; }
.comparator-selected-mark { position: absolute; top: 10px; right: 11px; display: none; align-items: center; gap: 5px; color: var(--acid); }
.comparator-machine.is-selected .comparator-selected-mark { display: flex; }
.comparator-selected-mark svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.comparator-selected-mark b { font-size: 8px; letter-spacing: .07em; text-transform: uppercase; }
.comparator-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; padding: 15px 17px; border: 1px solid rgba(169,239,255,.13); border-bottom: 0; border-radius: 16px 16px 0 0; background: rgba(3,12,18,.52); }
.comparator-toolbar > strong { font-size: 13px; }
.comparator-filter { display: flex; align-items: flex-end; flex-direction: column; gap: 4px; }
.comparator-toolbar label { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 11px; cursor: pointer; }
.comparator-toolbar input { position: absolute; opacity: 0; pointer-events: none; }
.comparator-toolbar .custom-check { width: 20px; height: 20px; border-radius: 6px; }
.comparator-filter > small { color: #65808c; font-size: 9px; line-height: 1.2; }
.comparator-filter > small.is-active { color: var(--acid); }
.comparator-table { overflow: hidden; border: 1px solid rgba(169,239,255,.13); border-radius: 0 0 16px 16px; }
.comparator-row { display: grid; grid-template-columns: minmax(170px,.72fr) repeat(2,minmax(0,1fr)); border-bottom: 1px solid rgba(169,239,255,.11); }
.comparator-row[hidden] { display: none; }
.comparator-row:last-child { border-bottom: 0; }
.comparator-criterion, .comparator-value { min-width: 0; padding: 16px 18px; }
.comparator-criterion { background: rgba(5,15,23,.48); }
.comparator-criterion strong, .comparator-criterion small, .comparator-value strong, .comparator-value small { display: block; }
.comparator-criterion strong { font-size: 12px; }
.comparator-criterion small { margin-top: 3px; color: var(--muted); font-size: 9px; line-height: 1.35; }
.comparator-value { position: relative; border-left: 1px solid rgba(169,239,255,.1); background: rgba(7,20,28,.34); }
.comparator-value.is-better { background: linear-gradient(110deg, rgba(199,255,74,.075), rgba(57,216,255,.025)); }
.comparator-value > strong { padding-right: 90px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
.comparator-value > small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.comparator-value > b { position: absolute; top: 15px; right: 14px; padding: 4px 6px; border: 1px solid rgba(199,255,74,.24); border-radius: 999px; color: var(--acid); background: rgba(199,255,74,.065); font-size: 8px; white-space: nowrap; }
.comparator-mobile-model { display: none; }
.machine-comparator.show-only-differences .comparator-row.is-equal { display: none; }
.comparator-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 20px; }
.comparator-secondary, .comparator-primary { min-height: 46px; padding: 12px 17px; border-radius: 12px; font-size: 12px; font-weight: 850; cursor: pointer; }
.comparator-secondary { border: 1px solid rgba(169,239,255,.2); color: var(--muted); background: rgba(5,15,23,.55); }
.comparator-primary { display: inline-flex; align-items: center; gap: 18px; border: 0; color: var(--ink); background: var(--ice); }
.comparator-primary .icon-svg { width: 16px; height: 16px; }
.comparator-secondary:hover { color: var(--white); border-color: rgba(57,216,255,.5); }
.comparator-primary:hover { box-shadow: 0 12px 28px rgba(57,216,255,.2); }
.comparator-secondary.is-selected, .comparator-primary.is-selected { box-shadow: inset 0 0 0 2px var(--acid), 0 0 22px rgba(199,255,74,.08); }
.savings-card { position: relative; isolation: isolate; display: grid; grid-template-columns: 1.08fr .92fr; gap: 0; min-height: 430px; margin-top: 24px; overflow: hidden; border: 1px solid rgba(199,255,74,.25); border-radius: 28px; background: linear-gradient(120deg, #102c32 0%, #0a1d28 48%, #08151e 100%); box-shadow: 0 28px 80px rgba(0,0,0,.2); }
.savings-card.is-recalculating { animation: economicRefresh .62s ease; }
@keyframes economicRefresh { 0% { border-color: rgba(199,255,74,.25); box-shadow: 0 28px 80px rgba(0,0,0,.2); } 45% { border-color: rgba(199,255,74,.72); box-shadow: 0 28px 90px rgba(0,0,0,.22), 0 0 36px rgba(199,255,74,.12); } 100% { border-color: rgba(199,255,74,.25); box-shadow: 0 28px 80px rgba(0,0,0,.2); } }
.savings-card::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .23; background-image: linear-gradient(rgba(169,239,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(169,239,255,.08) 1px, transparent 1px); background-size: 42px 42px; mask-image: linear-gradient(90deg, #000, transparent 72%); }
.savings-glow { position: absolute; z-index: -1; top: -190px; left: -130px; width: 520px; height: 520px; border-radius: 50%; background: rgba(57,216,255,.2); filter: blur(105px); pointer-events: none; }
.savings-impact { display: flex; min-width: 0; padding: 42px; flex-direction: column; justify-content: center; }
.savings-kicker { display: flex; align-items: center; gap: 9px; color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.savings-kicker span { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px var(--acid); }
.savings-impact h3 { margin: 14px 0 25px; font-size: clamp(2.25rem, 4vw, 4rem); line-height: .96; letter-spacing: -.055em; }
.savings-impact h3 em { color: var(--ice); font-family: Georgia, serif; font-weight: 400; }
.savings-hero { padding: 20px 0 23px; border-top: 1px solid rgba(169,239,255,.15); border-bottom: 1px solid rgba(169,239,255,.15); }
.savings-hero span, .savings-hero small, .savings-hero strong { display: block; }
.savings-hero span { color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.savings-hero strong { margin: 3px 0; color: var(--acid); font-size: clamp(3.4rem, 7vw, 6.4rem); line-height: .9; letter-spacing: -.07em; text-shadow: 0 0 45px rgba(199,255,74,.13); }
.savings-hero small { color: var(--muted); font-size: 11px; }
#saving-context { color: #bed0d7; }
.savings-metrics { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 22px; }
.savings-metrics div { min-width: 0; padding-right: 15px; }
.savings-metrics div + div { padding-left: 15px; border-left: 1px solid rgba(169,239,255,.15); }
.savings-metrics span, .savings-metrics strong { display: block; }
.savings-metrics span { margin-bottom: 5px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .07em; }
.savings-metrics strong { overflow-wrap: anywhere; font-size: clamp(1rem, 2vw, 1.35rem); }
.savings-calculator { align-self: stretch; margin: 18px; padding: 28px; border: 1px solid rgba(169,239,255,.13); border-radius: 20px; background: rgba(5,15,23,.78); box-shadow: inset 0 1px rgba(255,255,255,.025); backdrop-filter: blur(10px); }
.savings-calculator-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; margin-bottom: 31px; }
.savings-calculator-head div span, .savings-calculator-head div strong { display: block; }
.savings-calculator-head div span { margin-bottom: 4px; color: var(--ice); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.savings-calculator-head div strong { font-size: 18px; }
.estimate-pill { padding: 6px 8px; border: 1px solid rgba(199,255,74,.26); border-radius: 999px; color: var(--acid); background: rgba(199,255,74,.06); font-size: 8px; font-weight: 900; letter-spacing: .1em; }
.saving-control { display: block; margin-top: 25px; }
.saving-control > span { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 13px; }
.saving-control b { color: var(--muted); font-size: 11px; font-weight: 650; }
.saving-control output { color: var(--white); font-size: 12px; font-weight: 850; }
.saving-control input[type="range"] { height: 3px; }
.saving-control input[type="range"]::-webkit-slider-thumb { width: 19px; height: 19px; border-width: 5px; box-shadow: 0 0 0 1px var(--ice), 0 0 18px rgba(57,216,255,.45); }
.cost-comparison { margin-top: 30px; padding: 23px; border: 1px solid rgba(169,239,255,.12); border-radius: 17px; background: rgba(1,8,13,.48); }
.comparison-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 22px; }
.comparison-heading > span { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .11em; }
.comparison-heading > strong { padding: 6px 9px; border: 1px solid rgba(199,255,74,.3); border-radius: 999px; color: var(--acid); background: rgba(199,255,74,.08); font-size: 10px; white-space: nowrap; box-shadow: 0 0 22px rgba(199,255,74,.06); }
.cost-row-head { display: grid; grid-template-columns: 32px minmax(0,1fr) auto; gap: 10px; align-items: center; margin-bottom: 11px; }
.cost-symbol { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; font-size: 15px; font-weight: 900; }
.cost-name { min-width: 0; }
.cost-name small, .cost-name b { display: block; }
.cost-name small { margin-bottom: 2px; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.cost-name b { color: var(--white); font-size: 11px; }
.cost-row-head > strong { font-size: 13px; white-space: nowrap; }
.cost-row.is-current .cost-symbol { color: #ff987e; background: rgba(255,122,89,.13); }
.cost-row.is-current .cost-name small, .cost-row.is-current .cost-row-head > strong { color: #ff987e; }
.cost-row.is-machine .cost-symbol { color: var(--acid); background: rgba(199,255,74,.12); }
.cost-row.is-machine .cost-name small, .cost-row.is-machine .cost-row-head > strong { color: var(--acid); }
.cost-track { position: relative; display: block; height: 13px; overflow: visible; border: 1px solid rgba(255,255,255,.07); border-radius: 999px; background: rgba(255,255,255,.045); }
.cost-track span { position: relative; display: block; width: 0; height: 100%; border-radius: inherit; transition: width .8s cubic-bezier(.2,.8,.2,1); }
.cost-track span::after { content: ""; position: absolute; top: 50%; right: 2px; width: 5px; height: 5px; border-radius: 50%; background: #fff; opacity: .8; transform: translateY(-50%); }
.cost-row.is-current .cost-track span { background: linear-gradient(90deg, #d65345, #ff987e); box-shadow: 0 0 18px rgba(255,122,89,.22); }
.cost-row.is-machine .cost-track span { background: linear-gradient(90deg, #25cce9, var(--acid)); box-shadow: 0 0 18px rgba(57,216,255,.36); }
.comparison-divider { position: relative; display: flex; align-items: center; justify-content: center; height: 34px; margin: 3px 0; }
.comparison-divider::before { content: ""; position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(169,239,255,.13), transparent); }
.comparison-divider span { position: relative; z-index: 1; display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(169,239,255,.16); border-radius: 50%; color: var(--muted); background: #07131b; font-size: 8px; font-weight: 900; }
.result-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 24px; padding: 25px 28px; border: 1px solid rgba(57,216,255,.25); border-radius: 22px; background: linear-gradient(90deg, rgba(57,216,255,.12), rgba(57,216,255,.02)); }
.result-cta > div { display: flex; align-items: center; gap: 16px; }
.cta-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: var(--ink); background: var(--ice); line-height: 0; }
.cta-icon .icon-svg { width: 20px; height: 20px; }
.result-cta p, .result-cta strong, .result-cta small { margin: 0; display: block; }.result-cta small { margin-top: 4px; color: var(--muted); }
.contact-button, .send-button { padding: 16px 22px; border-radius: 999px; color: var(--ink); background: var(--ice); font-weight: 850; transition: .2s ease; }
.button-icon { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-left: 24px; vertical-align: middle; line-height: 0; }
.button-icon .icon-svg { width: 16px; height: 16px; }

body > footer { max-width: 1392px; margin: 0 auto; padding: 32px 34px 42px; display: grid; grid-template-columns: 1fr auto; align-items: center; border-top: 1px solid var(--line); }
.footer-signature { display: inline-flex; align-items: center; justify-self: start; justify-content: flex-start; }
.footer-copy { display: flex; flex-direction: column; gap: 5px; }
.footer-copy strong { color: var(--ice); font-size: 15px; font-weight: 850; line-height: 1; letter-spacing: -.03em; }
.footer-copy strong span { color: var(--white); }
.footer-copy p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.35; }
.footer-tools { justify-self: end; display: flex; align-items: center; gap: 3px; }
.config-trigger { justify-self: end; display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid transparent; border-radius: 10px; color: #526874; background: transparent; font-size: 10px; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.config-trigger:hover { color: var(--muted); border-color: var(--line); background: rgba(255,255,255,.025); }
.config-trigger .icon-svg { width: 13px; height: 13px; }
.config-trigger i { width: 5px; height: 5px; border-radius: 50%; background: #40535e; box-shadow: 0 0 0 3px rgba(82,104,116,.08); }
.config-trigger i.is-custom { background: var(--acid); box-shadow: 0 0 0 3px rgba(199,255,74,.08), 0 0 10px rgba(199,255,74,.3); }

.guide-dialog { position: fixed; inset: 0; width: min(1040px, calc(100% - 30px)); max-width: 1040px; height: min(880px, calc(100vh - 38px)); max-height: calc(100vh - 38px); margin: auto; overflow: hidden; border-radius: 25px; }
.guide-dialog[open] { display: block; }
.guide-shell { height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; }
.guide-header { background: radial-gradient(circle at 80% 0, rgba(199,255,74,.1), transparent 31%), radial-gradient(circle at 20% 0, rgba(57,216,255,.12), transparent 36%), #0b1b26; }
.guide-content { display: block; width: auto; min-height: 0; max-width: none; margin: 0; padding: 30px 34px 42px; overflow-y: auto; background: #091720; }
.guide-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: end; padding: 10px 0 32px; border-bottom: 1px solid var(--line); }
.guide-kicker { color: var(--acid); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.guide-intro h3 { max-width: 520px; margin: 9px 0 0; font-size: clamp(1.75rem, 3.4vw, 3rem); line-height: 1.02; letter-spacing: -.045em; }
.guide-intro p { margin: 0; color: #9ab0bb; font-size: 15px; line-height: 1.7; }
.guide-block { padding: 34px 0 4px; }
.guide-section-title { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 19px; }
.guide-section-title > span { display: grid; place-items: center; flex: 0 0 auto; width: 31px; height: 31px; border: 1px solid rgba(57,216,255,.24); border-radius: 9px; color: var(--ice); background: rgba(57,216,255,.06); font-size: 9px; font-weight: 900; }
.guide-section-title h3 { margin: 0 0 5px; font-size: 24px; line-height: 1.15; letter-spacing: -.025em; }
.guide-section-title p { margin: 0; color: #91a8b3; font-size: 13px; line-height: 1.5; }
.guide-steps { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.guide-steps article { min-height: 166px; padding: 18px; border: 1px solid rgba(169,239,255,.14); border-radius: 15px; background: rgba(255,255,255,.027); }
.guide-steps b { display: grid; place-items: center; width: 27px; height: 27px; margin-bottom: 18px; border-radius: 8px; color: var(--ink); background: var(--ice); font-size: 11px; }
.guide-steps strong { display: block; font-size: 14px; line-height: 1.3; }
.guide-steps p { margin: 7px 0 0; color: #8ea5b0; font-size: 12px; line-height: 1.55; }
.guide-result-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 11px; }
.guide-result-grid article { padding: 21px; border: 1px solid rgba(169,239,255,.15); border-radius: 17px; background: linear-gradient(145deg, rgba(57,216,255,.055), rgba(4,13,20,.36)); }
.guide-result-grid span, .guide-notes span { color: var(--ice); font-size: 10px; font-weight: 900; letter-spacing: .13em; }
.guide-result-grid h4 { margin: 11px 0 9px; font-size: 16px; line-height: 1.3; }
.guide-result-grid p { margin: 0; color: #8ea5b0; font-size: 12px; line-height: 1.65; }
.guide-result-grid-four { grid-template-columns: repeat(2,minmax(0,1fr)); }
.guide-metric-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.guide-metric-grid article { padding: 18px; border: 1px solid rgba(169,239,255,.14); border-radius: 15px; background: rgba(255,255,255,.027); }
.guide-metric-grid span { display: block; margin-bottom: 13px; color: var(--ice); font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.guide-metric-grid strong { display: block; font-size: 14px; line-height: 1.35; }
.guide-metric-grid p { margin: 7px 0 0; color: #8ea5b0; font-size: 12px; line-height: 1.55; }
.guide-notes { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--line); border-radius: 16px; }
.guide-notes article { padding: 20px; background: rgba(4,13,20,.32); }
.guide-notes article + article { border-left: 1px solid var(--line); }
.guide-notes p { margin: 9px 0 0; color: #8ea5b0; font-size: 12px; line-height: 1.65; }
.guide-tip { margin-top: 34px; padding: 20px 22px; border: 1px solid rgba(57,216,255,.22); border-radius: 17px; background: linear-gradient(120deg, rgba(57,216,255,.08), rgba(57,216,255,.025)); }
.guide-tip strong { display: block; color: var(--ice-bright); font-size: 14px; }
.guide-tip p { margin: 7px 0 0; color: #91a8b3; font-size: 12px; line-height: 1.65; }
.guide-actions { flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-end; gap: 20px; padding: 15px 22px; border-top: 1px solid var(--line); background: #0b1b26; }

.config-dialog { position: fixed; inset: 0; width: min(1240px, calc(100% - 30px)); max-width: 1240px; height: min(900px, calc(100vh - 30px)); max-height: calc(100vh - 30px); margin: auto; overflow: hidden; border-radius: 25px; }
.config-dialog[open] { display: block; }
.config-shell { height: 100%; display: flex; flex-direction: column; overflow: hidden; border-radius: 24px; }
.config-header { flex: 0 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding: 29px 34px 26px; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 78% 0, rgba(57,216,255,.11), transparent 32%), #0b1b26; }
.config-header h2 { margin: 7px 0 9px; font-size: clamp(2rem, 3vw, 2.85rem); line-height: 1; letter-spacing: -.045em; }
.config-header p { max-width: 820px; margin: 0; color: #9ab0bb; font-size: 14px; line-height: 1.55; }
.config-eyebrow { color: var(--ice); font-size: 10px; font-weight: 850; letter-spacing: .14em; }
.config-layout { min-height: 0; flex: 1 1 auto; display: grid; grid-template-columns: 242px minmax(0,1fr); overflow: hidden; }
.config-nav { padding: 21px 14px; overflow-y: auto; border-right: 1px solid var(--line); background: rgba(5,15,23,.58); }
.config-nav button { display: grid; grid-template-columns: 27px 1fr; gap: 9px; align-items: center; width: 100%; padding: 12px 10px; border: 0; border-radius: 9px; color: #8fa6b1; background: transparent; text-align: left; font-size: 13px; line-height: 1.25; cursor: pointer; }
.config-nav button:hover { color: var(--white); background: rgba(57,216,255,.07); }
.config-nav button.is-active { color: var(--white); background: rgba(57,216,255,.1); box-shadow: inset 2px 0 0 var(--ice); }
.config-nav button span { color: var(--ice); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.config-content { display: block; min-width: 0; min-height: 0; max-width: none; margin: 0; overflow-y: auto; padding: 2px 32px 40px; scroll-behavior: smooth; background: #091720; }
.config-section { padding: 34px 0 42px; border-bottom: 1px solid var(--line); scroll-margin-top: 0; }
.config-section:last-child { border-bottom: 0; }
.config-section-title { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 25px; }
.config-section-title > span { display: grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; border: 1px solid rgba(57,216,255,.28); border-radius: 10px; color: var(--ice); background: rgba(57,216,255,.07); font-size: 10px; font-weight: 900; }
.config-section-title h3 { margin: 0 0 6px; font-size: 24px; line-height: 1.1; letter-spacing: -.025em; }
.config-section-title p { margin: 0; color: #91a8b3; font-size: 13px; line-height: 1.5; }
.config-field-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.config-field { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; gap: 14px; padding: 17px; border: 1px solid rgba(169,239,255,.14); border-radius: 14px; background: rgba(255,255,255,.027); }
.config-field-wide { grid-column: 1 / -1; }
.config-field-copy strong, .config-field-copy small { display: block; }
.config-field-copy strong { color: var(--white); font-size: 13px; line-height: 1.3; }
.config-field-copy small { min-height: 34px; margin-top: 6px; color: #8aa1ad; font-size: 11px; line-height: 1.5; }
.config-input-shell { position: relative; display: block; }
.config-field input[type="text"], .config-field input[type="number"], .config-field select { width: 100%; min-height: 44px; padding: 10px 12px; border: 1px solid rgba(169,239,255,.18); border-radius: 10px; color: var(--white); background: #0b1b26; outline: none; font-size: 14px; }
.config-input-shell input { padding-right: 55px !important; }
.config-input-shell > i { position: absolute; top: 50%; right: 11px; color: #829aa6; font-size: 11px; font-style: normal; pointer-events: none; transform: translateY(-50%); }
.config-field input:focus, .config-field select:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(57,216,255,.08); }
.config-field-toggle { min-height: 106px; display: grid; grid-template-columns: 1fr auto; align-items: center; }
.config-switch { position: relative; width: 42px; height: 24px; }
.config-switch input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.config-switch i { display: block; width: 100%; height: 100%; border: 1px solid var(--line); border-radius: 999px; background: #10232f; transition: .2s ease; }
.config-switch i::after { content: ""; position: absolute; top: 4px; left: 4px; width: 16px; height: 16px; border-radius: 50%; background: #607986; transition: .2s ease; }
.config-switch input:checked + i { border-color: var(--ice); background: rgba(57,216,255,.14); }
.config-switch input:checked + i::after { background: var(--ice); box-shadow: 0 0 12px rgba(57,216,255,.5); transform: translateX(18px); }
.config-switch input:focus-visible + i { outline: 3px solid var(--acid); outline-offset: 3px; }
.config-group { margin-top: 18px; padding: 21px; border: 1px solid rgba(169,239,255,.15); border-radius: 18px; background: rgba(4,13,20,.38); }
.config-group > header { margin-bottom: 18px; }
.config-group > header h4 { margin: 0 0 5px; font-size: 16px; }
.config-group > header p { margin: 0; color: #8ba2ae; font-size: 12px; line-height: 1.45; }
.config-establishments { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.config-venue { margin-top: 0; }
.config-actions { flex: 0 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; width: 100%; max-width: none; margin: 0; padding: 16px 24px; border-top: 1px solid var(--line); background: #0b1b26; }
.config-feedback { color: #8ea5b0; font-size: 12px; }
.config-feedback.is-error { color: #ff987e; }
.config-reset, .config-save { min-height: 44px; padding: 11px 17px; border-radius: 11px; cursor: pointer; font-weight: 800; }
.config-reset { border: 1px solid var(--line); color: #91a8b3; background: transparent; font-size: 12px; }
.config-reset:hover { color: var(--white); border-color: rgba(169,239,255,.3); }
.config-reset.is-armed { color: #ff987e; border-color: rgba(255,152,126,.45); background: rgba(255,152,126,.06); }
.config-save { display: inline-flex; align-items: center; gap: 12px; border: 0; color: var(--ink); background: var(--ice); font-size: 13px; }
.config-save .icon-svg { width: 15px; height: 15px; }
.config-form.is-saving, .config-shell.is-saving { pointer-events: none; opacity: .78; }

dialog { width: min(920px, calc(100% - 28px)); padding: 0; overflow: visible; border: 1px solid rgba(57,216,255,.28); border-radius: 28px; color: var(--white); background: #091722; box-shadow: 0 40px 120px rgba(0,0,0,.7); }
body:has(dialog[open]) { overflow: hidden; }
dialog::backdrop { background: rgba(2,8,12,.82); backdrop-filter: blur(10px); }
.modal-close { flex: 0 0 auto; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 1px solid rgba(169,239,255,.25); border-radius: 50%; color: #b8ced8; background: rgba(5,15,23,.86); box-shadow: 0 8px 24px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.035); cursor: pointer; line-height: 0; transition: color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease; }
.modal-close:hover { color: var(--white); border-color: rgba(57,216,255,.58); background: #102936; transform: scale(1.04); }
.modal-close:focus-visible { outline: 3px solid var(--ice); outline-offset: 3px; color: var(--white); border-color: var(--ice); background: #102936; box-shadow: 0 0 0 5px rgba(57,216,255,.12), 0 8px 24px rgba(0,0,0,.22); }
.modal-close .icon-svg { width: 17px; height: 17px; stroke-width: 2.15; }
.dialog-shell { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; overflow: hidden; border-radius: 27px; }
#contact-dialog:not(.is-success) { width: min(1080px, calc(100% - 28px)); }
#contact-dialog.is-success { width: min(720px, calc(100% - 28px)); }
#contact-dialog.is-success .dialog-shell { display: block; }
#contact-dialog.is-success .dialog-side { display: none; }
#contact-dialog.is-success .success-state { min-height: min(650px, calc(100vh - 60px)); }
.dialog-close { position: absolute; z-index: 5; top: 17px; right: 17px; }
.dialog-side { padding: 44px 34px; background: radial-gradient(circle at 20% 20%, rgba(57,216,255,.16), transparent 50%), #0d202c; }
.dialog-badge { color: var(--ice); font-size: 11px; font-weight: 850; letter-spacing: .13em; }
.dialog-side h2, .success-state h2 { margin: 15px 0; font-size: 43px; line-height: .98; letter-spacing: -.055em; }
.dialog-side > p { color: var(--muted); line-height: 1.55; }
.dialog-machine { min-width: 0; margin: 25px 0; padding: 0; border: 0; }
.dialog-machine legend { padding: 0; color: var(--white); font-size: 14px; font-weight: 850; }
.dialog-machine > p { margin: 5px 0 13px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.proposal-machine-options { display: grid; gap: 8px; max-height: 326px; padding-right: 4px; overflow-y: auto; scrollbar-color: rgba(57,216,255,.32) transparent; scrollbar-width: thin; }
.proposal-machine-option { position: relative; display: grid; grid-template-columns: 18px 54px minmax(0,1fr); align-items: center; gap: 11px; min-width: 0; padding: 10px; border: 1px solid rgba(169,239,255,.14); border-radius: 14px; background: rgba(4,14,21,.52); cursor: pointer; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.proposal-machine-option:hover { border-color: rgba(57,216,255,.48); background: rgba(57,216,255,.07); transform: translateY(-1px); }
.proposal-machine-option:has(input:checked) { border-color: var(--acid); background: linear-gradient(110deg, rgba(199,255,74,.12), rgba(57,216,255,.055)); box-shadow: inset 0 0 0 1px rgba(199,255,74,.08); }
.proposal-machine-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.proposal-machine-option input:focus-visible ~ .proposal-machine-check { outline: 3px solid rgba(57,216,255,.27); outline-offset: 3px; }
.proposal-machine-check { display: grid; place-items: center; width: 17px; height: 17px; border: 1px solid rgba(169,239,255,.35); border-radius: 50%; }
.proposal-machine-option input:checked + .proposal-machine-check { border-color: var(--acid); background: var(--acid); box-shadow: 0 0 18px rgba(199,255,74,.22); }
.proposal-machine-option input:checked + .proposal-machine-check::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--ink); }
.proposal-machine-option img { display: block; width: 54px; height: 54px; object-fit: contain; border-radius: 10px; background: #e9f5f7; }
.proposal-machine-copy, .proposal-machine-copy strong, .proposal-machine-copy small { display: block; min-width: 0; }
.proposal-machine-kicker { display: flex; align-items: center; justify-content: space-between; gap: 8px; color: var(--ice); font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.proposal-machine-kicker b { color: var(--acid); font-size: 10px; }
.proposal-machine-copy strong { margin: 3px 0; overflow: hidden; color: var(--white); font-size: 15px; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.proposal-machine-copy small { overflow: hidden; color: var(--muted); font-size: 10px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.dialog-side ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }.dialog-side li { margin: 11px 0; }.dialog-side li i { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 8px; border-radius: 50%; background: rgba(199,255,74,.12); color: var(--acid); font-style: normal; }
.contact-form { min-width: 0; padding: 70px 38px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { min-width: 0; }
.form-field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 12px; }
.optional-label { float: right; color: #526874; font-size: 10px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.form-field input, .form-field textarea { width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--white); background: rgba(255,255,255,.035); outline: none; }
.form-field textarea { display: block; min-width: 0; max-width: 100%; min-height: 92px; resize: vertical; font: inherit; line-height: 1.5; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(57,216,255,.1); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #526874; }
.full { grid-column: 1 / -1; }
.privacy-row { margin: 2px 0; color: var(--muted); font-size: 12px; }.privacy-row a { color: var(--ice); }.privacy-row .custom-check { width: 21px; height: 21px; }
.send-button { width: 100%; border-radius: 13px; }
.send-button:disabled { cursor: wait; opacity: .68; transform: none; box-shadow: none; }
.contact-feedback { margin: -4px 0 0; padding: 11px 13px; border: 1px solid rgba(255,152,126,.35); border-radius: 10px; color: #ffad99; background: rgba(255,152,126,.07); font-size: 12px; line-height: 1.45; text-align: center; }
.form-privacy { margin: -7px 0 0; text-align: center; color: var(--muted); font-size: 11px; }
.success-state { grid-column: 1 / -1; min-height: 510px; padding: 70px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle, rgba(57,216,255,.13), transparent 55%); }
.success-icon { display: grid; place-items: center; width: 68px; height: 68px; margin-bottom: 25px; border-radius: 50%; color: var(--ink); background: var(--acid); font-size: 30px; box-shadow: 0 0 40px rgba(199,255,74,.2); }.success-state p { max-width: 480px; color: var(--muted); line-height: 1.6; }.dialog-done { width: auto; min-width: 170px; margin-top: 15px; }
.toast { position: fixed; z-index: 20; bottom: 24px; left: 50%; padding: 13px 18px; border: 1px solid rgba(57,216,255,.35); border-radius: 999px; color: var(--white); background: #102532; box-shadow: 0 15px 40px rgba(0,0,0,.4); opacity: 0; pointer-events: none; transform: translate(-50%, 20px); transition: .25s ease; }.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1180px) {
  main { grid-template-columns: .72fr 1.28fr; }
  .live-panel { grid-column: 1 / -1; min-height: auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
  .live-head { grid-column: 1 / -1; }.ice-orbit { height: 330px; }.live-tip { margin-left: 20px; }
}
@media (max-width: 820px) {
  .topbar { height: 72px; padding: 0 20px; }.status-pill { display: none; }.ghost-button { padding: 9px 12px; }
  main { min-height: auto; padding: 32px 18px 50px; grid-template-columns: 1fr; }
  .intro { padding: 0; }.intro h1 { font-size: clamp(3.5rem, 15vw, 5.7rem); }.intro > p { max-width: 610px; }.intro-note { margin: 25px 0 8px; }
  .configurator { min-height: 660px; }.live-panel { grid-column: auto; }
  .result-layout { grid-template-columns: 1fr; }.winner-content { max-width: 70%; }.results { padding: 60px 18px; }.recommendation-reasons-head { align-items: flex-start; flex-direction: column; gap: 7px; }.recommendation-reasons-head p { text-align: left; }.recommendation-reasons-grid { grid-template-columns: 1fr; }.savings-card { grid-template-columns: 1fr; }.savings-calculator { margin-top: 0; }
  .machine-comparator { padding: 23px; }.comparator-machine { grid-template-columns: 72px minmax(0,1fr); gap: 12px; }.comparator-machine-image img { width: 72px; height: 72px; }.comparator-machine-copy h4 { font-size: 17px; }.comparator-selected-mark b { display: none; }.comparator-row { grid-template-columns: minmax(135px,.62fr) repeat(2,minmax(0,1fr)); }.comparator-criterion, .comparator-value { padding: 14px; }.comparator-value > strong { padding-right: 0; }.comparator-value > b { position: static; display: inline-block; margin-top: 7px; }
  .config-layout { grid-template-columns: 1fr; }.config-nav { display: flex; gap: 5px; overflow-x: auto; overflow-y: hidden; padding: 10px 12px; border-right: 0; border-bottom: 1px solid var(--line); }.config-nav button { flex: 0 0 auto; width: auto; white-space: nowrap; }.config-content { padding-inline: 20px; }.config-establishments { grid-template-columns: 1fr; }
  .guide-intro { grid-template-columns: 1fr; gap: 16px; }.guide-steps, .guide-metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }.guide-result-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .topbar { padding-inline: 12px; }.brand-divider { height: 28px; margin-inline: 9px; }.product-mark strong, .product-mark b { font-size: 14px; }.product-mark small { display: none; }
  .ghost-button { font-size: 0; }.ghost-button::after { content: "Contacto"; font-size: 12px; }
  main { padding-inline: 12px; }.intro h1 { font-size: 3.8rem; }.intro-note { display: none; }
  .configurator { min-height: 720px; border-radius: 21px; }.progress-shell { padding: 19px; }.progress-track { width: 86px; }#ice-form { min-height: 648px; padding: 28px 19px 90px; }.form-actions { left: 19px; right: 19px; }
  .venue-grid { gap: 8px; }.venue-card { min-height: 122px; padding: 14px; }.venue-icon { width: 34px; height: 34px; }
  .range-stage { margin-top: 45px; }.quick-values { flex-wrap: wrap; }.demand-grid { grid-template-columns: 1fr; margin-top: 25px; }.demand-card { min-height: auto; display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: center; padding: 14px; }.demand-card strong { margin: 0; }.demand-card small { grid-column: 2; margin-top: -26px; }.demand-visual { grid-row: 1 / span 2; height: 70px; }
  .space-stage { grid-template-columns: 1fr; gap: 25px; }.space-machine { transform: scale(.8); margin-block: -14px; }.additional-installation, .preference-grid { grid-template-columns: 1fr; }
  .next-button { min-width: 160px; }.live-panel { display: block; border-radius: 21px; }.ice-orbit { height: 350px; }.live-metrics { grid-template-columns: 1fr; }.live-metrics div { display: flex; justify-content: space-between; align-items: center; }.live-metrics span { min-height: 0; }
  .results-head { display: block; }.reset-button { margin-top: 18px; }.recommendation-reasons { padding: 19px; }.recommendation-reasons-head { align-items: flex-start; flex-direction: column; gap: 7px; }.recommendation-reasons-head p { text-align: left; }.recommendation-reasons-grid { grid-template-columns: 1fr; }.recommendation-reason { min-height: 112px; }.winner-card { min-height: 760px; }.winner-image { inset: 49% 0 0; }.winner-image::after { background: linear-gradient(0deg, rgba(7,16,24,.2), #0d202c 94%); }.winner-content { max-width: 100%; padding: 25px; }.machine-stats { grid-template-columns: 1fr 1fr; }.winner-footer { align-items: flex-start; flex-direction: column; }.savings-card { border-radius: 21px; }.savings-impact { padding: 29px 22px; }.savings-impact h3 { font-size: 2.55rem; }.savings-hero strong { font-size: 3.75rem; }.savings-metrics { gap: 0; }.savings-metrics div { padding-right: 9px; }.savings-metrics div + div { padding-left: 9px; }.savings-metrics strong { font-size: .95rem; }.savings-calculator { margin: 0 10px 10px; padding: 22px 18px; }.result-cta { align-items: stretch; flex-direction: column; gap: 17px; margin-top: 18px; padding: 19px; border-radius: 18px; background: linear-gradient(145deg, rgba(57,216,255,.11), rgba(57,216,255,.025)); }.result-cta > div { display: grid; grid-template-columns: 40px minmax(0,1fr); align-items: start; gap: 12px; }.result-cta .cta-icon { width: 40px; height: 40px; }.result-cta strong { font-size: 15px; line-height: 1.25; text-wrap: balance; }.result-cta small { margin-top: 5px; font-size: 12px; line-height: 1.45; }.result-cta .contact-button { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 54px; padding: 13px 52px 13px 20px; border-radius: 14px; }.result-cta .contact-button .button-icon { position: absolute; right: 18px; margin: 0; }.alternative-card { grid-template-columns: 62px 1fr auto; padding: 15px; }.alternative-card img { width: 62px; height: 62px; }
  .machine-comparator { padding: 20px 15px; border-radius: 21px; }.comparator-head h3 { font-size: 1.75rem; }.comparator-head p { font-size: 11px; }.comparator-machines { grid-template-columns: 1fr; gap: 10px; }.comparator-vs { justify-self: center; margin-block: -2px; }.comparator-machine { grid-template-columns: 72px minmax(0,1fr); }.comparator-toolbar { align-items: flex-start; flex-direction: column; }.comparator-filter { align-items: flex-start; }.comparator-row { grid-template-columns: repeat(2,minmax(0,1fr)); }.comparator-criterion { grid-column: 1 / -1; padding: 12px 14px; border-bottom: 1px solid rgba(169,239,255,.1); }.comparator-value { border-left: 0; }.comparator-value + .comparator-value { border-left: 1px solid rgba(169,239,255,.1); }.comparator-mobile-model { display: block; margin-bottom: 7px; overflow: hidden; color: var(--ice); font-size: 8px; font-weight: 850; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }.comparator-value > strong { font-size: 13px; white-space: normal; }.comparator-actions { align-items: stretch; flex-direction: column; }.comparator-secondary, .comparator-primary { justify-content: center; width: 100%; }.comparator-primary { order: -1; }
  body > footer { grid-template-columns: 1fr auto; gap: 20px; padding: 28px 18px 34px; }.footer-signature { justify-self: start; }.footer-copy p { max-width: 190px; }.config-trigger span { display: none; }.footer-tools { gap: 0; }
  .config-dialog { width: calc(100% - 14px); height: calc(100vh - 14px); max-height: calc(100vh - 14px); border-radius: 19px; }.config-shell { border-radius: 18px; }.config-header { padding: 21px 19px 18px; }.config-header h2 { font-size: 1.85rem; }.config-header p { max-width: 90%; font-size: 12px; }.config-content { padding: 0 14px 25px; }.config-section { padding-block: 26px 31px; }.config-section-title h3 { font-size: 21px; }.config-section-title p { font-size: 12px; }.config-field-grid { grid-template-columns: 1fr; }.config-field-wide { grid-column: auto; }.config-actions { grid-template-columns: 1fr 1fr; padding: 12px; }.config-feedback { grid-column: 1 / -1; font-size: 11px; }.config-reset, .config-save { padding-inline: 11px; font-size: 11px; }
  .guide-dialog { width: calc(100% - 14px); height: calc(100vh - 14px); max-height: calc(100vh - 14px); border-radius: 19px; }.guide-shell { border-radius: 18px; }.guide-content { padding: 22px 18px 30px; }.guide-intro h3 { font-size: 2rem; }.guide-intro p { font-size: 13px; }.guide-section-title h3 { font-size: 21px; }.guide-section-title p { font-size: 12px; }.guide-steps, .guide-metric-grid, .guide-notes { grid-template-columns: 1fr; }.guide-steps article { min-height: 0; }.guide-notes article + article { border-top: 1px solid var(--line); border-left: 0; }.guide-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  #contact-dialog { height: calc(100vh - 14px); height: calc(100dvh - 14px); max-height: calc(100vh - 14px); max-height: calc(100dvh - 14px); overflow: hidden; border-radius: 19px; }
  #contact-dialog .dialog-shell { display: block; height: 100%; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; }
  .dialog-side { padding: 35px 24px 24px; }.dialog-side h2 { font-size: 36px; }.dialog-side > p, .dialog-side ul { display: none; }.dialog-machine { margin-bottom: 0; }.proposal-machine-options { max-height: none; padding-right: 0; overflow: visible; }.proposal-machine-option { grid-template-columns: 18px 48px minmax(0,1fr); padding: 9px; }.proposal-machine-option img { width: 48px; height: 48px; }.contact-form { width: 100%; overflow: hidden; padding: 30px 22px calc(36px + env(safe-area-inset-bottom)); grid-template-columns: minmax(0,1fr); }.form-field, .full { min-width: 0; grid-column: 1; }.success-state { min-height: 500px; padding: 45px 25px; }
}

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

/* Legibilidad: tamaños mínimos y contraste reforzado sobre fondos oscuros. */
:root { --muted: #a8bac3; }
body { text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; }

.product-mark small { font-size: 10px; }
.intro > p, .results-head p, .winner-content > p, .dialog-side > p, .success-state p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.intro-note small, .venue-card small, .demand-card small, .check-row small, .live-tip { font-size: 13px; line-height: 1.55; }
.step-heading p { font-size: 15px; line-height: 1.55; }
.range-scale, .extra-control > span, .live-head { font-size: 12px; }
.preferences-kicker, .output-core span { font-size: 10.5px; }
.preference-grid label > span, .output-core small { font-size: 11px; }
.live-metrics span { min-height: 34px; font-size: 11.5px; line-height: 1.4; }

.recommendation-reasons-head > div > span { font-size: 10.5px; }
.recommendation-reasons-head p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.recommendation-reason-copy > span { font-size: 10.5px; }
.recommendation-reason-copy small { min-height: 32px; font-size: 12px; line-height: 1.45; }
.match-badge { font-size: 12px; }
.ice-type-badge, .alternative-cube { font-size: 11px; }
.machine-stat span { font-size: 11.5px; line-height: 1.35; }
.winner-price span { font-size: 13px; }
.technical-copy strong { font-size: 13px; }
.technical-copy small { font-size: 10px; }
.technical-link.is-compact .technical-copy strong, .compare-machine-button { color: #b8cad2; font-size: 11.5px; }
.alternatives-title small, .alternative-card p { color: var(--muted); font-size: 13px; }
.alternative-card > strong { font-size: 13px; }

.comparator-eyebrow, .comparator-machine-role, .comparator-vs { font-size: 10.5px; }
.comparator-head p, .comparator-machine-copy p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.comparator-machine-copy > div > strong { font-size: 12.5px; }
.comparator-selected-mark b { font-size: 10px; }
.comparator-toolbar label { color: var(--muted); font-size: 12.5px; }
.comparator-filter > small { color: #9db0b9; font-size: 10.5px; }
.comparator-criterion strong { font-size: 13px; }
.comparator-criterion small { color: var(--muted); font-size: 11px; line-height: 1.45; }
.comparator-value > small { color: var(--muted); font-size: 11.5px; line-height: 1.45; }
.comparator-value > b { font-size: 9.5px; }
.comparator-secondary, .comparator-primary { font-size: 13px; }
.comparator-mobile-model { font-size: 10px; }

.savings-kicker, .savings-calculator-head div span { font-size: 11px; }
.estimate-pill { font-size: 10px; }
.savings-hero span, .savings-hero small, .savings-metrics span { color: var(--muted); font-size: 12px; line-height: 1.4; }
.saving-control b { color: var(--muted); font-size: 12.5px; }
.saving-control output { font-size: 13px; }
.comparison-heading > span { color: var(--muted); font-size: 10.5px; }
.comparison-heading > strong { font-size: 11px; }
.cost-name small { font-size: 10px; }
.cost-name b { font-size: 12.5px; }
.comparison-divider span { font-size: 10.5px; }
.result-cta small { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

.footer-copy p { color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.config-trigger { color: #91a8b3; font-size: 11.5px; }

.guide-kicker, .guide-result-grid span, .guide-notes span, .guide-metric-grid span, .guide-section-title > span { font-size: 10.5px; }
.guide-intro p { color: #b4c5cc; font-size: 15px; }
.guide-section-title p, .guide-steps p, .guide-result-grid p, .guide-metric-grid p, .guide-notes p, .guide-tip p { color: #a9bcc4; font-size: 13.5px; line-height: 1.65; }
.guide-steps strong, .guide-metric-grid strong, .guide-tip strong { font-size: 15px; }

.config-header p { color: #b4c5cc; font-size: 15px; line-height: 1.6; }
.config-eyebrow, .config-section-title > span { font-size: 11px; }
.config-nav button { color: #a8bbc4; font-size: 14px; }
.config-nav button span { font-size: 10px; }
.config-section-title p { color: #a9bbc4; font-size: 14px; line-height: 1.55; }
.config-field-copy strong { font-size: 14px; }
.config-field-copy small { min-height: 39px; color: #a8bbc4; font-size: 13px; line-height: 1.55; }
.config-input-shell > i { color: #a4b7bf; font-size: 12px; }
.config-group > header p, .config-feedback { color: #a8bbc4; font-size: 13px; line-height: 1.5; }
.config-reset, .config-save { font-size: 13px; }

.dialog-badge { font-size: 12px; }
.dialog-machine legend { font-size: 15px; }
.dialog-machine > p { color: var(--muted); font-size: 13px; line-height: 1.5; }
.proposal-machine-kicker { font-size: 10px; }
.proposal-machine-kicker b { font-size: 11px; }
.proposal-machine-copy small { color: var(--muted); font-size: 12px; }
.dialog-side ul { color: var(--muted); font-size: 14px; }
.form-field label, .privacy-row { color: var(--muted); font-size: 13px; }
.optional-label { color: #97acb5; font-size: 11px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #849ca7; }
.contact-feedback, .form-privacy { font-size: 12.5px; line-height: 1.5; }
.toast { font-size: 14px; }
