/* ==========================================================================
   TeamBiz v3 — Brutalist / Editorial
   Bordes duros, sombras offset, tipografía display, acento naranja
   ========================================================================== */

:root {
  --font: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Archivo Black', 'Archivo', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;

  --bg: #f3efe6;
  --bg-2: #fffdf7;
  --surface: #ffffff;
  --ink: #14140f;
  --ink-soft: #3d3d33;
  --mute: #6f6d61;
  --line: #14140f;
  --hot: #ff5a00;
  --hot-soft: #ffe8d9;
  --lime: #c6f24e;
  --cyan: #34d3e6;

  --shadow-off: 8px 8px 0 var(--line);
  --radius: 4px;
  --nav-h: 72px;
  --wrap: 1200px;
  --transition: .18s ease;
}

[data-theme="dark"] {
  --bg: #101009;
  --bg-2: #17170e;
  --surface: #1d1d12;
  --ink: #f2efe2;
  --ink-soft: #c9c6b6;
  --mute: #95927e;
  --line: #f2efe2;
  --hot: #ff6b1a;
  --hot-soft: #3a2412;
  --shadow-off: 8px 8px 0 var(--line);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 40px); }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3 { color: var(--ink); line-height: 1.05; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; background: var(--hot); color: #fff; font-weight: 700; padding: 10px 16px; }
.skip-link:focus { left: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.txt-hot { color: var(--hot); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.txt-hot:hover { background: var(--hot); color: #fff; text-decoration: none; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius);
  font-family: var(--font); font-weight: 700; font-size: 15px; line-height: 1;
  text-transform: uppercase; letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--solid { background: var(--hot); color: #fff; box-shadow: var(--shadow-off); }
.btn--solid:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--line); }
.btn--line { border: 2px solid var(--line); color: var(--ink); background: var(--surface); box-shadow: var(--shadow-off); }
.btn--line:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--line); }
.btn--sm { padding: 9px 15px; font-size: 12.5px; }
.btn--block { width: 100%; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; background: var(--hot); color: #fff; border-bottom: 2px solid var(--line); }
.ticker__track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 9px 0; font-family: var(--mono); font-size: 13px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; animation: tick 26s linear infinite; }
.ticker__track em { font-style: normal; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[data-theme="dark"] .ticker { background: var(--hot); }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 2px solid var(--line); }
.hdr__row { height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hdr__brand { display: flex; align-items: center; gap: 10px; }
.hdr__name { font-family: var(--display); font-size: 20px; text-transform: uppercase; letter-spacing: .01em; }
.hdr__nav { display: flex; align-items: center; gap: 2px; }
.hdr__link { padding: 10px 13px; font-size: 14.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; color: var(--ink-soft); border: 2px solid transparent; transition: color var(--transition), background var(--transition), border-color var(--transition); }
.hdr__link:hover { color: var(--hot); border-color: var(--line); }
.hdr__link--cta { background: var(--ink); color: var(--bg); }
.hdr__link--cta:hover { background: var(--hot); color: #fff; border-color: var(--line); }
[data-theme="dark"] .hdr__link--cta { background: var(--line); color: var(--bg); }
.hdr__actions { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius);
  color: var(--ink); border: 2px solid var(--line); background: var(--surface);
  transition: color var(--transition), background var(--transition);
}
.theme-toggle:hover { background: var(--hot); color: #fff; }
.theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.hdr__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 11px; border: 2px solid var(--line); background: var(--surface); border-radius: var(--radius); }
.hdr__toggle span { display: block; height: 2px; width: 100%; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
.hdr__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 56px; }
.hero__row { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero__tag { display: inline-block; font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink); background: var(--lime); border: 2px solid var(--line); padding: 5px 12px; margin-bottom: 24px; box-shadow: 4px 4px 0 var(--line); }
[data-theme="dark"] .hero__tag { background: var(--cyan); color: #0a0a05; }
.hero__title { font-family: var(--display); font-size: clamp(40px, 6vw, 76px); text-transform: uppercase; letter-spacing: -.02em; line-height: .98; margin-bottom: 26px; }
.hero__title span { color: var(--hot); }
.hero__lede { font-size: clamp(16px, 1.7vw, 19px); color: var(--ink-soft); max-width: 36rem; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__side { position: relative; display: flex; flex-direction: column; align-items: flex-end; gap: 18px; }
.stamp {
  position: absolute; top: -18px; left: 0; z-index: 2;
  width: 150px; height: 150px; padding: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  border: 3px solid var(--line); border-radius: 50%;
  background: var(--hot); color: #fff;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-off);
}
.stamp__k { font-family: var(--mono); font-size: 15px; font-weight: 700; letter-spacing: .12em; }
.stamp__l1, .stamp__l2 { font-family: var(--display); font-size: 17px; text-transform: uppercase; line-height: 1; }
.hero__shot { border: 3px solid var(--line); box-shadow: var(--shadow-off); background: var(--surface); }

.hero__facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border: 2px solid var(--line); }
.fact { padding: 20px; border-right: 2px solid var(--line); background: var(--surface); }
.fact:last-child { border-right: none; }
.fact strong { display: block; font-family: var(--display); font-size: 30px; text-transform: uppercase; line-height: 1; margin-bottom: 4px; }
.fact span { font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--mute); }
.fact--brand { background: var(--lime); display: flex; flex-direction: column; justify-content: center; }
[data-theme="dark"] .fact--brand { background: var(--cyan); color: #0a0a05; }
.fact--brand strong { font-size: 22px; margin: 0; }
.fact--brand span { color: inherit; }

/* ---------- Secciones ---------- */
.section { padding: 92px 0; }
.section--invert { background: var(--ink); color: var(--bg); }
.section--invert h2, .section--invert h3 { color: var(--bg); }
.section--invert .sechead__d, .section--invert .row5 p, .section--invert .price__feats li, .section--invert .price em, .section--invert .extra p, .section--invert .extra em { color: #c9c6b6; }
.section--invert .price, .section--invert .extra { background: #1d1d12; }
.section--invert .price__name { color: #c9c6b6; }
.section--invert .price__v { color: var(--bg); }
.section--invert .btn--line { border-color: var(--bg); color: var(--bg); background: transparent; box-shadow: 8px 8px 0 var(--bg); }
.section--invert .btn--line:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--bg); }
.section--alt { background: var(--bg-2); }

.sechead { max-width: 46rem; margin-bottom: 48px; }
.sechead--light { max-width: 46rem; }
.sechead__n { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--hot); margin-bottom: 12px; }
.section--invert .sechead__n { color: var(--lime); }
[data-theme="dark"] .section--invert .sechead__n { color: var(--cyan); }
.sechead__t { font-family: var(--display); font-size: clamp(28px, 3.6vw, 46px); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 14px; }
.sechead__d { font-size: 16.5px; color: var(--ink-soft); }

/* ---------- Grid solución ---------- */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cell { position: relative; padding: 26px 22px; border: 2px solid var(--line); background: var(--surface); box-shadow: 6px 6px 0 var(--line); transition: transform var(--transition), box-shadow var(--transition); }
.cell:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--line); }
.cell__n { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--hot); margin-bottom: 12px; }
.cell h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.cell p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 14px; }
.cell__link { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--hot); }
.cell__link:hover { text-decoration: underline; }

/* ---------- Beneficios (invertido) ---------- */
.list5 { border-top: 2px solid var(--bg); }
.row5 { display: grid; grid-template-columns: 64px 1fr 1.4fr; gap: 24px; align-items: center; padding: 26px 4px; border-bottom: 2px solid var(--bg); transition: background var(--transition); }
.row5:hover { background: rgba(255, 255, 255, .04); }
.row5__n { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--lime); }
[data-theme="dark"] .row5__n { color: var(--cyan); }
.row5 h3 { font-size: 19px; text-transform: uppercase; }
.row5 p { font-size: 15px; color: #c9c6b6; }

/* ---------- Tabla ---------- */
.tbl { border: 2px solid var(--line); background: var(--surface); box-shadow: var(--shadow-off); }
.tbl__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tbl table { width: 100%; border-collapse: collapse; min-width: 720px; }
.tbl th, .tbl td { padding: 15px 16px; font-size: 14px; text-align: left; vertical-align: top; border-bottom: 2px solid var(--line); border-right: 2px solid var(--line); }
.tbl tr:last-child th, .tbl tr:last-child td { border-bottom: none; }
.tbl th:last-child, .tbl td:last-child { border-right: none; }
.tbl thead th { font-family: var(--mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; background: var(--bg-2); }
.tbl tbody th { font-weight: 700; width: 22%; }
.tbl td { color: var(--ink-soft); }
.tbl .is-hot { background: var(--hot-soft); color: var(--ink); font-weight: 600; }
.tbl thead th.is-hot { background: var(--hot); color: #fff; }
.tbl__note { padding: 18px 20px 16px; font-size: 14px; color: var(--mute); border-top: 2px solid var(--line); }

/* ---------- Caminos ---------- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card3 { position: relative; padding: 28px 24px; border: 2px solid var(--line); background: var(--surface); box-shadow: 6px 6px 0 var(--line); transition: transform var(--transition), box-shadow var(--transition); }
.card3:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--line); }
.card3__num { display: inline-block; font-family: var(--display); font-size: 26px; color: var(--hot); margin-bottom: 14px; }
.card3 h3 { font-size: 18px; text-transform: uppercase; margin-bottom: 8px; }
.card3 p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 18px; }

.banner { margin-top: 40px; padding: 30px; border: 3px solid var(--line); background: var(--lime); box-shadow: var(--shadow-off); }
[data-theme="dark"] .banner { background: var(--cyan); color: #0a0a05; }
.banner h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; margin-bottom: 18px; }
.banner__list { display: flex; flex-direction: column; gap: 10px; }
.banner__list li { font-size: 15.5px; font-weight: 600; }
.banner__list b { font-family: var(--mono); color: #fff; background: var(--ink); padding: 1px 7px; margin-right: 4px; }
[data-theme="dark"] .banner__list b { color: var(--ink); background: var(--bg); }
.banner__note { margin-top: 16px; font-size: 14.5px; font-weight: 600; }

/* ---------- Split sin TI ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.check { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.check li { display: flex; gap: 13px; align-items: flex-start; }
.check li > span { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; margin-top: 2px; font-weight: 700; color: #fff; background: var(--ink); border: 2px solid var(--line); border-radius: 50%; }
[data-theme="dark"] .check li > span { color: var(--ink); background: var(--line); }
.check strong { display: block; font-size: 15.5px; }
.check div { font-size: 14.5px; color: var(--ink-soft); }
.split__img { position: relative; }
.split__img img { border: 3px solid var(--line); box-shadow: var(--shadow-off); }
.split__label { position: absolute; bottom: -14px; right: -10px; font-family: var(--mono); font-size: 12px; font-weight: 700; text-transform: uppercase; padding: 6px 12px; color: #fff; background: var(--hot); border: 2px solid var(--line); box-shadow: 4px 4px 0 var(--line); }

/* ---------- Precios ---------- */
.pricegrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; margin-bottom: 22px; }
.price { display: flex; flex-direction: column; gap: 14px; padding: 28px 24px; border: 2px solid var(--bg); background: var(--surface); box-shadow: 6px 6px 0 var(--bg); transition: transform var(--transition), box-shadow var(--transition); }
.price:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--bg); }
.price--hot { position: relative; border-color: var(--line); box-shadow: var(--shadow-off); background: var(--hot-soft); }
.price--hot .price__v { color: var(--ink); }
.price__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--mono); font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #fff; background: var(--hot); border: 2px solid var(--line); padding: 4px 14px; box-shadow: 4px 4px 0 var(--line); }
.price__name { font-family: var(--mono); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; color: var(--mute); }
.price__v { font-family: var(--display); font-size: 46px; line-height: 1; color: var(--ink); }
.price__v span { font-size: 18px; color: var(--hot); margin-right: 4px; }
.price__v em { font-family: var(--font); font-size: 13px; font-weight: 500; color: var(--mute); font-style: normal; }
.price__feats { display: flex; flex-direction: column; gap: 9px; flex-grow: 1; margin: 4px 0 16px; }
.price__feats li { font-size: 14.5px; color: var(--ink-soft); position: relative; padding-left: 22px; }
.price__feats li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--hot); }

.extra { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; padding: 22px 26px; border: 2px dashed var(--bg); background: var(--surface); }
.extra__sign { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; font-family: var(--display); font-size: 28px; color: var(--hot); background: var(--surface); border: 2px solid var(--bg); }
.extra h3 { font-size: 17px; text-transform: uppercase; }
.extra__price { font-family: var(--display); font-size: 26px; }
.extra__price em { font-size: 13px; font-weight: 500; color: var(--mute); font-style: normal; }
.extra p:last-child { font-size: 14.5px; }

/* ---------- Seguridad ---------- */
.grid3--sec .card3__num { font-family: var(--mono); font-size: 14px; color: var(--ink); background: var(--lime); border: 2px solid var(--line); padding: 4px 8px; }
[data-theme="dark"] .grid3--sec .card3__num { background: var(--cyan); color: #0a0a05; }

/* ---------- Próximamente ---------- */
.soon { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 10px; min-height: 190px; padding: 26px; border: 2px dashed var(--line); background: var(--surface); }
.soon__box { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; font-size: 24px; color: var(--hot); border: 2px solid var(--line); background: var(--bg-2); }
.soon h3 { font-size: 17px; text-transform: uppercase; }
.soon p { font-size: 14px; color: var(--mute); max-width: 16rem; }

/* ---------- Contacto ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.cdata { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.cdata li { display: flex; gap: 14px; align-items: flex-start; }
.cdata li > span { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; font-size: 18px; color: #fff; background: var(--ink); border: 2px solid var(--line); }
[data-theme="dark"] .cdata li > span { color: var(--ink); background: var(--line); }
.cdata em { display: block; font-family: var(--mono); font-size: 12px; font-style: normal; text-transform: uppercase; color: var(--mute); margin-bottom: 2px; }
.cdata a, .cdata p { font-size: 15.5px; font-weight: 700; }
.cdata a:hover { color: var(--hot); }

.contact__form { padding: 30px 28px; border: 3px solid var(--line); background: var(--surface); box-shadow: var(--shadow-off); }
.contact__form h3 { font-family: var(--display); font-size: 22px; text-transform: uppercase; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--mono); font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border-radius: var(--radius); font-family: var(--font); font-size: 15px; color: var(--ink); background: var(--bg-2); border: 2px solid var(--line); transition: box-shadow var(--transition), background var(--transition); }
.field input::placeholder, .field textarea::placeholder { color: var(--mute); }
.field input:focus, .field textarea:focus { outline: none; box-shadow: 5px 5px 0 var(--hot); background: #fff; }
[data-theme="dark"] .field input:focus, [data-theme="dark"] .field textarea:focus { background: #26261a; }
.field.has-error input, .field.has-error textarea { box-shadow: 5px 5px 0 var(--hot); border-color: var(--hot); }
.contact__hint { margin-top: 14px; font-size: 13.5px; color: var(--mute); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 2px solid var(--line); background: var(--bg-2); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { font-size: 14px; color: var(--mute); margin: 16px 0 20px; max-width: 28rem; }
.footer__ms { filter: saturate(0); opacity: .75; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h3 { font-family: var(--mono); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.footer__col a { font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.footer__col a:hover { color: var(--hot); text-decoration: underline; }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 22px 24px; border-top: 2px solid var(--line); font-size: 13px; color: var(--mute); }

.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 46px; height: 46px; font-size: 18px; font-weight: 700; color: #fff; background: var(--hot); border: 2px solid var(--line); box-shadow: 4px 4px 0 var(--line); opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--transition), transform var(--transition), visibility var(--transition); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* ---------- FAQ ---------- */
.faq3 { display: flex; flex-direction: column; gap: 14px; max-width: 48rem; margin: 0 auto; }
.faq3__item { border: 2px solid var(--line); background: var(--surface); box-shadow: 6px 6px 0 var(--line); }
.faq3__item[open] { box-shadow: 10px 10px 0 var(--hot); }
.faq3__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer;
  list-style: none;
}
.faq3__item summary::-webkit-details-marker { display: none; }
.faq3__item summary:hover { background: var(--hot-soft); }
.faq3__q { font-family: var(--display); font-size: 16px; text-transform: uppercase; letter-spacing: .01em; }
.faq3__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; font-size: 18px; line-height: 1;
  color: #fff; background: var(--hot); border: 2px solid var(--line);
  transition: transform var(--transition);
}
.faq3__item[open] .faq3__icon { transform: rotate(45deg); }
.faq3__item p { padding: 0 22px 20px; font-size: 15px; color: var(--ink-soft); }

/* ---------- Animaciones ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(1), .fact:nth-child(2) { border-bottom: 2px solid var(--line); }
}

@media (max-width: 860px) {
  .hdr__toggle { display: flex; }
  .hdr__nav {
    position: absolute; top: var(--nav-h); left: 0; right: 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg); border-bottom: 2px solid var(--line);
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
    padding: 0;
  }
  .hdr__nav.is-open { max-height: 460px; overflow-y: auto; padding: 14px 20px 22px; }
  .hdr__link { display: block; padding: 13px 16px; font-size: 16px; }
  .hdr__link--cta { text-align: center; margin-top: 6px; }
  .hero__row { grid-template-columns: 1fr; gap: 44px; }
  .hero__side { align-items: flex-start; }
  .stamp { left: auto; right: 0; }
  .grid3, .pricegrid { grid-template-columns: 1fr; }
  .price--hot { order: -1; }
  .row5 { grid-template-columns: 56px 1fr; }
  .row5 p { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .wrap { padding: 0 18px; }
  .section { padding: 68px 0; }
  .hero { padding: 48px 0 40px; }
  .hero__cta .btn { width: 100%; }
  .hero__facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 2px solid var(--line); }
  .fact:last-child { border-bottom: none; }
  .grid4 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 26px; }
  .footer__bottom { flex-direction: column; }
  .contact__form { padding: 24px 18px; }
  .stamp { width: 130px; height: 130px; }
}
