
:root {
  --espresso-900: #14100C;
  --espresso-800: #1B1510;
  --espresso-700: #241C15;
  --espresso-600: #33271E;
  --espresso-500: #4A392C;

  --cream-50:  #FDFAF6;
  --cream-100: #FBF6F0;
  --cream-200: #F4ECE1;
  --cream-300: #E9DCCB;
  --cream-400: #D9C7B0;

  --copper-300: #EDB176;
  --copper-400: #DF9A52;
  --copper-500: #C87434;
  --copper-600: #A85B23;

  --ink:        #1C1611;
  --ink-muted:  #6E5D4E;
  --ink-light:  #9A8877;

  --paper-text:  #F6EFE6;
  --paper-muted: rgba(246, 239, 230, .68);
  --paper-faint: rgba(246, 239, 230, .42);

  --green-500: #2E7D5B;
  --green-050: #E8F3ED;

  --line:      #E7DACA;
  --line-dark: rgba(246, 239, 230, .14);

  --f-sans: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;

  --fs-h1: clamp(2.35rem, 1.35rem + 3.6vw, 4.4rem);
  --fs-h2: clamp(1.75rem, 1.15rem + 2.1vw, 2.95rem);
  --fs-h3: clamp(1.1rem, 1rem + .4vw, 1.35rem);
  --fs-lead: clamp(1.02rem, .96rem + .35vw, 1.2rem);
  --fs-body: 1rem;
  --fs-sm: .9rem;
  --fs-xs: .805rem;

  --wrap: 1240px;
  --gutter: clamp(1.15rem, .5rem + 2.5vw, 2.75rem);
  --sec-y: clamp(4rem, 2.5rem + 5vw, 7.5rem);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --sh-sm: 0 1px 2px rgba(28, 22, 17, .05), 0 2px 8px rgba(28, 22, 17, .04);
  --sh-md: 0 2px 4px rgba(28, 22, 17, .05), 0 12px 28px -8px rgba(28, 22, 17, .13);
  --sh-lg: 0 4px 8px rgba(28, 22, 17, .06), 0 28px 60px -14px rgba(28, 22, 17, .22);
  --sh-copper: 0 10px 30px -8px rgba(200, 116, 52, .5);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -.022em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -.014em; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg, iframe { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--copper-400); color: var(--espresso-900); }

[hidden] { display: none !important; }

:focus-visible {
  outline: 2.5px solid var(--copper-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.skip-link {
  position: fixed; left: 50%; top: 0;
  transform: translate(-50%, -150%);
  z-index: 200; background: var(--copper-500); color: #fff;
  padding: .7rem 1.3rem; border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700; font-size: var(--fs-sm); white-space: nowrap;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.ic { width: 20px; height: 20px; flex: none; }
.ic--lg { width: 26px; height: 26px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .82rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: -.005em;
  white-space: nowrap; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), color .22s var(--ease),
              border-color .22s var(--ease);
}
.btn .ic { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--copper-400), var(--copper-600));
  color: #fff;
  box-shadow: var(--sh-copper);
}
.btn--primary:hover { box-shadow: 0 14px 38px -8px rgba(200, 116, 52, .62); }

.btn--ghost {
  background: rgba(246, 239, 230, .06);
  border-color: rgba(246, 239, 230, .28);
  color: var(--paper-text);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(246, 239, 230, .13); border-color: rgba(246, 239, 230, .5); }

.btn--dark { background: var(--espresso-800); color: var(--paper-text); }
.btn--dark:hover { background: var(--espresso-600); }

.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn--sm { padding: .66rem 1.15rem; font-size: var(--fs-xs); }
.btn--full { width: 100%; }

.msg-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.05rem; border-radius: 100px;
  font-size: var(--fs-xs); font-weight: 700;
  border: 1px solid currentColor;
  transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.msg-btn:hover { transform: translateY(-2px); }
.msg-btn--sm { padding: .55rem; border-radius: 50%; }
.msg-btn--sm .ic { width: 18px; height: 18px; }

.msg-btn--tg { color: #229ED9; }
.msg-btn--tg:hover { background: #229ED9; color: #fff; }
.msg-btn--tg .ic { width: 22px; height: 22px; }

.msg-btn--sm.msg-btn--tg { padding: 0; border: 0; background: none; }
.msg-btn--sm.msg-btn--tg:hover { background: none; filter: brightness(1.12); }
.msg-btn--sm.msg-btn--tg .ic { width: 34px; height: 34px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  margin: 0 0 1.1rem;
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--copper-600);
}
.eyebrow--light { color: var(--copper-300); }
.eyebrow__n {
  font-variant-numeric: tabular-nums;
  padding: .2rem .5rem;
  border: 1px solid currentColor;
  border-radius: 5px;
  opacity: .75; letter-spacing: .05em;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(46, 125, 91, .25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  50% { box-shadow: 0 0 0 8px rgba(46, 125, 91, 0); }
}

.sec-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 4vw, 3.75rem); text-align: center; }
.sec-head--left { text-align: left; margin-inline: 0; }
.sec-head__lead {
  margin: 1.15rem 0 0;
  font-size: var(--fs-lead);
  color: var(--ink-muted);
  line-height: 1.6;
}
.sec-head--light .sec-head__lead { color: var(--paper-muted); }
.sec-head h2 em { font-family: var(--f-serif); font-style: italic; font-weight: 500; }

.section { padding-block: var(--sec-y); position: relative; }
.section--tint { background: var(--cream-200); }
.section--dark {
  background: var(--espresso-900);
  color: var(--paper-text);
  background-image:
    radial-gradient(900px 420px at 15% 0%, rgba(200, 116, 52, .14), transparent 70%),
    radial-gradient(700px 400px at 92% 100%, rgba(200, 116, 52, .09), transparent 70%);
}
.section--dark h2, .section--dark h3 { color: var(--paper-text); }

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(251, 246, 240, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 26px -12px rgba(28, 22, 17, .28); }

.topbar {
  background: var(--espresso-900);
  color: var(--paper-muted);
  font-size: var(--fs-xs);
}
.topbar__in {
  display: flex; align-items: center; gap: 1.6rem;
  min-height: 40px; flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__item .ic { width: 15px; height: 15px; color: var(--copper-400); }
.topbar__item--push { margin-left: auto; }
.topbar a:hover { color: var(--copper-300); }

.header__in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: .7rem; flex: none; }
.logo__mark { color: var(--copper-500); display: grid; place-items: center; }
.logo__txt { display: flex; flex-direction: column; line-height: 1.18; }
.logo__txt strong {
  font-size: 1.16rem; font-weight: 800; letter-spacing: -.028em;
}
.logo__txt small {
  font-size: .655rem; font-weight: 600; color: var(--ink-light);
  letter-spacing: .045em; text-transform: uppercase;
}
.logo--footer { color: var(--paper-text); }
.logo--footer .logo__mark { color: var(--copper-400); }
.logo--footer .logo__txt small { color: var(--paper-faint); }

.nav { margin-left: auto; }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__list a {
  display: block; padding: .5rem .72rem; border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 600; color: var(--ink-muted);
  white-space: nowrap;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.nav__list a:hover { color: var(--ink); background: var(--cream-300); }
.nav__list a.is-active { color: var(--copper-600); background: rgba(200, 116, 52, .09); }

.header__cta { display: flex; align-items: center; gap: .85rem; flex: none; }
.header__phone {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 800; font-size: 1.02rem; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.header__phone .ic { color: var(--copper-500); width: 17px; height: 17px; }
.header__phone:hover { color: var(--copper-600); }

.burger {
  display: none; width: 44px; height: 44px;
  background: var(--cream-200); border: 1px solid var(--line);
  border-radius: var(--r-sm); position: relative;
}
.burger span {
  position: absolute; left: 12px; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative; overflow: hidden;
  background: var(--espresso-900);
  color: var(--paper-text);
  padding-top: clamp(3rem, 1.5rem + 5vw, 5.5rem);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1100px 620px at 78% 12%, rgba(200, 116, 52, .26), transparent 66%),
    radial-gradient(760px 520px at 8% 88%, rgba(200, 116, 52, .11), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0; opacity: .3; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.hero__in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  padding-bottom: clamp(3rem, 5vw, 5rem);
}

.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  color: var(--copper-300);
  letter-spacing: -.01em;
}

.hero__lead {
  max-width: 33rem; margin-bottom: 1.8rem;
  font-size: var(--fs-lead); color: var(--paper-muted); line-height: 1.62;
}

.hero__usp { display: grid; gap: .6rem; margin-bottom: 2.1rem; }
.hero__usp li {
  display: flex; align-items: center; gap: .65rem;
  font-size: var(--fs-sm); color: var(--paper-muted);
}
.hero__usp .ic { width: 17px; height: 17px; color: var(--copper-300); }
.hero__usp strong { color: var(--paper-text); font-weight: 700; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.6rem; }
.hero__actions .btn--ghost { font-variant-numeric: tabular-nums; }

.hero__note { font-size: var(--fs-xs); color: var(--paper-faint); display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }
.hero__msg { display: inline-flex; gap: .5rem; }
.hero__msg .msg-btn { padding: .45rem .85rem; }
.hero__msg .msg-btn .ic { width: 15px; height: 15px; }
.hero__msg .msg-btn--tg .ic { width: 17px; height: 17px; }

.hero__visual { position: relative; }
.hero__machine {
  max-width: 340px; margin-inline: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .5));
}
.hero__glow {
  position: absolute; right: 6%; top: 18%;
  width: 30vw; height: 30vw; max-width: 420px; max-height: 420px;
  background: radial-gradient(circle, rgba(200, 116, 52, .32), transparent 66%);
  filter: blur(46px); pointer-events: none;
}

.hero-led { animation: led 2s ease-in-out infinite; }
@keyframes led { 50% { opacity: .35; } }

.hero-flow { animation: flow .75s linear infinite; }
.hero-flow--2 { animation-delay: -.35s; }
@keyframes flow {
  from { transform: translateY(0); }
  to   { transform: translateY(16px); }
}

.hero-steam path { animation: steam 3.6s ease-in-out infinite; }
.hero-steam path:nth-child(2) { animation-delay: .5s; }
.hero-steam path:nth-child(3) { animation-delay: 1s; }
@keyframes steam {
  0% { opacity: 0; transform: translateY(6px); }
  40% { opacity: .55; }
  100% { opacity: 0; transform: translateY(-16px); }
}

.hero__card {
  position: absolute;
  display: flex; align-items: center; gap: .8rem;
  padding: 1rem 1.25rem;
  background: rgba(246, 239, 230, .07);
  border: 1px solid rgba(246, 239, 230, .18);
  border-radius: var(--r-md);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .6);
  animation: float 6s ease-in-out infinite;
}
.hero__card--1 { left: -4%; top: 16%; flex-direction: column; align-items: flex-start; gap: .15rem; }
.hero__card--2 { right: -3%; bottom: 14%; animation-delay: 1.4s; }
.hero__card--2 .ic { color: var(--copper-300); }
.hero__card-num {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em;
  color: var(--copper-300); font-variant-numeric: tabular-nums;
}
.hero__card-lbl { font-size: var(--fs-xs); color: var(--paper-muted); line-height: 1.4; max-width: 11rem; }
.hero__card-lbl strong { color: var(--paper-text); }
@keyframes float {
  50% { transform: translateY(-9px); }
}

.trustbar {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line-dark);
  background: rgba(0, 0, 0, .24);
}
.trustbar__in {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem; padding-block: 1.6rem;
}
.trustbar__item {
  display: grid; grid-template-columns: auto 1fr;
  grid-template-rows: auto auto; gap: .1rem .8rem;
  align-items: center;
}
.trustbar__item .ic { grid-row: 1 / 3; color: var(--copper-400); width: 26px; height: 26px; }
.trustbar__item b { font-size: var(--fs-sm); font-weight: 800; letter-spacing: -.015em; }
.trustbar__item span { font-size: var(--fs-xs); color: var(--paper-faint); line-height: 1.35; }

.grid { display: grid; gap: clamp(1rem, 1.6vw, 1.5rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }

.card {
  position: relative;
  padding: 1.85rem 1.7rem 1.7rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--copper-400), var(--copper-600));
  transform: scaleY(0); transform-origin: top;
  transition: transform .35s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--cream-400);
}
.card:hover::before { transform: scaleY(1); }

.card__ic {
  display: grid; place-items: center;
  width: 52px; height: 52px; margin-bottom: 1.15rem;
  border-radius: 15px;
  background: linear-gradient(140deg, rgba(200, 116, 52, .14), rgba(200, 116, 52, .05));
  color: var(--copper-600);
  border: 1px solid rgba(200, 116, 52, .2);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: var(--fs-sm); color: var(--ink-muted); margin-bottom: 1.2rem; }
.card__price {
  display: inline-block;
  font-size: var(--fs-sm); font-weight: 800; letter-spacing: -.01em;
  color: var(--copper-600);
  padding: .4rem .85rem;
  background: rgba(200, 116, 52, .1);
  border-radius: 100px;
  font-variant-numeric: tabular-nums;
}
.card--biz { background: var(--espresso-800); border-color: var(--espresso-600); }
.card--biz h3 { color: var(--paper-text); }
.card--biz p { color: var(--paper-muted); }
.card--biz .card__ic {
  background: rgba(237, 177, 118, .13); color: var(--copper-300);
  border-color: rgba(237, 177, 118, .26);
}
.card--biz .card__price { background: rgba(237, 177, 118, .16); color: var(--copper-300); }

.brk-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.brk {
  padding: 1.7rem 1.6rem;
  background: var(--cream-50);
  transition: background-color .28s var(--ease);
  display: flex; flex-direction: column;
}
.brk:hover { background: #fff; }
.brk__sym {
  margin-bottom: .85rem; padding-left: 1.1rem; position: relative;
  font-size: 1.06rem;
}
.brk__sym::before {
  content: ''; position: absolute; left: 0; top: .45em;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--copper-500);
}
.brk p { font-size: var(--fs-xs); color: var(--ink-muted); margin-bottom: .55rem; line-height: 1.55; }
.brk p b { color: var(--ink); font-weight: 700; }
.brk__fix b { color: var(--green-500); }
.brk__price {
  margin-top: auto; padding-top: 1rem;
  font-weight: 800; font-size: var(--fs-sm);
  color: var(--copper-600); font-variant-numeric: tabular-nums;
}

.cta-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.75rem; flex-wrap: wrap;
  margin-top: clamp(2rem, 3vw, 3rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--espresso-900);
  border-radius: var(--r-lg);
  color: var(--paper-text);
  background-image: radial-gradient(600px 300px at 100% 0%, rgba(200, 116, 52, .2), transparent 70%);
}
.cta-strip h3 { margin-bottom: .4rem; font-size: 1.4rem; }
.cta-strip p { font-size: var(--fs-sm); color: var(--paper-muted); max-width: 42ch; }

.price-wrap {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--cream-50);
  box-shadow: var(--sh-sm);
  overflow-x: auto;
}
.price { width: 100%; min-width: 620px; border-collapse: collapse; }
.price thead th {
  padding: 1.1rem 1.5rem;
  background: var(--espresso-900); color: var(--paper-text);
  font-size: var(--fs-xs); font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase;
  text-align: left;
}
.price thead th:last-child { text-align: right; }
.price tbody th, .price tbody td {
  padding: 1.05rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
  vertical-align: middle;
}
.price tbody th { text-align: left; font-weight: 600; color: var(--ink); }
.price tbody td:nth-child(2) { color: var(--ink-light); font-size: var(--fs-xs); white-space: nowrap; }
.price tbody td:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price tbody td b { font-size: 1.02rem; font-weight: 800; letter-spacing: -.02em; }
.price tbody tr { transition: background-color .2s var(--ease); }
.price tbody tr:hover { background: var(--cream-100); }
.price__free th { color: var(--green-500) !important; }

.tag {
  display: inline-block; padding: .3rem .7rem;
  border-radius: 100px; font-size: var(--fs-xs); font-weight: 800;
}
.tag--free { background: var(--green-050); color: var(--green-500); }

.price-notes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: .75rem 1.75rem; margin-top: 1.75rem;
}
.price-notes p {
  display: flex; align-items: flex-start; gap: .6rem; margin: 0;
  font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.5;
}
.price-notes .ic { width: 16px; height: 16px; color: var(--green-500); margin-top: 2px; }

.marquee {
  overflow: hidden; padding-block: .55rem;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 52s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  padding: .7rem 1.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  font-size: clamp(1rem, .9rem + .5vw, 1.35rem);
  font-weight: 700; letter-spacing: -.02em;
  color: var(--paper-muted);
  white-space: nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.marquee__track span:hover { color: var(--copper-300); border-color: rgba(237, 177, 118, .45); }
@keyframes marquee { to { transform: translateX(-50%); } }

.brands__note {
  max-width: 620px; margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
  text-align: center; font-size: var(--fs-sm); color: var(--paper-faint);
}

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: clamp(1.1rem, 1.6vw, 1.5rem);
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2.4rem 1.4rem 1.6rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step__n {
  position: absolute; right: .9rem; top: .35rem;
  font-size: 3.6rem; font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 116, 52, .3);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
}
.step h3 { margin-bottom: .5rem; font-size: 1.08rem; }
.step p { font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.55; }

.about { max-width: 780px; }
.about__text > p { color: var(--ink-muted); font-size: var(--fs-body); }
.about__text h2 { margin-bottom: 1.25rem; }

.facts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.1rem; margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.facts dt {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); font-weight: 800;
  letter-spacing: -.035em; color: var(--copper-600);
  font-variant-numeric: tabular-nums; line-height: 1.05;
}
.facts dd { margin: .3rem 0 0; font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.4; }

.why { display: grid; gap: 1rem; }
.why li { display: flex; gap: .85rem; align-items: flex-start; }
.why .ic { color: var(--copper-500); margin-top: 3px; }
.why div { font-size: var(--fs-xs); color: var(--ink-muted); line-height: 1.5; }
.why b { display: block; font-size: var(--fs-sm); color: var(--ink); font-weight: 700; margin-bottom: .1rem; }

.reviews-scroll {
  overflow-x: auto; padding-bottom: 1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.reviews {
  display: flex; gap: 1.25rem;
  padding-inline: max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter)));
  width: max-content;
}
.review {
  position: relative; scroll-snap-align: center;
  width: min(370px, 82vw);
  padding: 2.2rem 1.75rem 1.6rem;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.review__q {
  position: absolute; right: 1.4rem; top: 1.3rem;
  width: 34px; height: 34px; color: var(--cream-400);
}
.stars {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 3px; margin-bottom: 1rem; line-height: 0;
}
.stars .ic {
  width: 16px; height: 16px; flex: none;
  color: #E8A33D; display: block;
}
.review p { font-size: var(--fs-sm); color: var(--ink-muted); line-height: 1.6; margin-bottom: 1.4rem; }
.review footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.review footer b { display: block; font-size: var(--fs-sm); font-weight: 700; }
.review footer span { font-size: var(--fs-xs); color: var(--ink-light); }

.reviews__more {
  display: flex; flex-direction: column; align-items: center;
  gap: .8rem; margin-top: 1.5rem;
}
.reviews__count {
  margin: 0; font-size: var(--fs-xs); color: var(--ink-light);
  font-variant-numeric: tabular-nums;
}

.ya-reviews {
  max-width: 780px; margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--cream-50);
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.ya-reviews iframe {
  width: 100%; height: 620px; border: 0; display: block;
}
@media (max-width: 640px) {
  .ya-reviews iframe { height: 540px; }
}

.reviews__hint {
  display: flex; align-items: center; gap: .55rem; justify-content: center;
  margin-top: 1.25rem; font-size: var(--fs-sm); color: var(--ink-muted);
}
.reviews__hint .ic { width: 15px; height: 15px; color: #E8A33D; }
.reviews__hint a { color: var(--copper-600); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.reviews__hint a:hover { color: var(--copper-500); }

.geo {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: clamp(1.75rem, 3vw, 2.75rem);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}
.geo__col h3 {
  margin-bottom: 1rem; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--copper-600);
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chips li {
  padding: .42rem .85rem;
  background: var(--cream-200);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: var(--fs-xs); font-weight: 600; color: var(--ink-muted);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.chips li:hover { background: var(--espresso-800); color: var(--paper-text); border-color: var(--espresso-800); }

.faq-wrap {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 4vw, 4.5rem); align-items: start;
}
.faq-wrap .sec-head { margin-bottom: 0; position: sticky; top: calc(var(--header-h) + 24px); }
.faq-wrap .sec-head .btn { margin-top: 1.5rem; font-variant-numeric: tabular-nums; }

.faq { display: grid; gap: .7rem; }
.faq__item {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq__item[open] { border-color: var(--cream-400); box-shadow: var(--sh-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: -.008em;
  cursor: pointer; list-style: none;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--copper-600); }
.faq__ic {
  flex: none; width: 18px; height: 18px; color: var(--copper-500);
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__ic { transform: rotate(45deg); }
.faq__body { padding: 0 1.4rem 1.35rem; }
.faq__body p { font-size: var(--fs-sm); color: var(--ink-muted); line-height: 1.62; margin: 0; }

.contacts {
  display: grid; grid-template-columns: minmax(0, 640px);
  gap: clamp(2rem, 4vw, 4rem); align-items: start;
}
.contacts__lead { font-size: var(--fs-lead); color: var(--paper-muted); margin-bottom: 2rem; }

.contacts__list { display: grid; gap: 1.35rem; margin-bottom: 1.85rem; }
.contacts__list li { display: flex; gap: 1rem; align-items: flex-start; }
.ci {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(237, 177, 118, .12);
  border: 1px solid rgba(237, 177, 118, .22);
  color: var(--copper-300);
}
.contacts__list small {
  display: block; font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--paper-faint); margin-bottom: .2rem;
}
.contacts__list div > span, .contacts__list div > a { font-size: var(--fs-sm); color: var(--paper-text); }
.contacts__list em {
  display: block; font-style: normal; font-size: var(--fs-xs);
  color: var(--paper-faint); margin-top: .15rem;
}
.contacts__big {
  font-size: 1.45rem !important; font-weight: 800; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums; display: block;
}
.contacts__big:hover { color: var(--copper-300) !important; }
.contacts__second { display: block; margin-top: .2rem; color: var(--paper-muted) !important; }
.contacts__msgs { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 2rem; }

.map {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--espresso-800);
}
.map iframe { width: 100%; height: 300px; border: 0; display: block; }

.policy {
  max-width: 760px; margin-inline: auto;
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.policy summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.6rem; cursor: pointer; list-style: none;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -.015em;
  transition: color .2s var(--ease);
}
.policy summary::-webkit-details-marker { display: none; }
.policy summary:hover { color: var(--copper-600); }
.policy__ic { flex: none; color: var(--copper-500); transition: transform .3s var(--ease); }
.policy[open] .policy__ic { transform: rotate(45deg); }
.policy__body { padding: 1.5rem 1.6rem 1.75rem; border-top: 1px solid var(--line); }
.policy__meta { font-size: var(--fs-xs); color: var(--ink-light); margin-bottom: 1.5rem; }
.policy__body h3 { font-size: .98rem; margin: 1.75rem 0 .6rem; color: var(--copper-600); }
.policy__body h3:first-of-type { margin-top: 0; }
.policy__body p, .policy__body li { font-size: var(--fs-sm); color: var(--ink-muted); line-height: 1.7; }
.policy__body ul { display: grid; gap: .4rem; margin: 0 0 1em; padding-left: 1.4rem; list-style: disc; }
.policy__body ul li::marker { color: var(--copper-500); }
.policy__body strong { color: var(--ink); }
.policy__body a { color: var(--copper-600); text-decoration: underline; text-underline-offset: 2px; }

.seo-text { background: var(--cream-200); padding-block: clamp(3rem, 5vw, 5rem); }
.seo-text h2 { font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.95rem); margin-bottom: 2rem; max-width: 40ch; }
.seo-text__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.75rem, 3vw, 3.25rem);
}
.seo-text h3 {
  font-size: 1.02rem; margin: 0 0 .7rem;
  color: var(--copper-600);
}
.seo-text h3:not(:first-child) { margin-top: 1.9rem; }
.seo-text p { font-size: var(--fs-sm); color: var(--ink-muted); line-height: 1.68; }

.footer {
  background: var(--espresso-900); color: var(--paper-muted);
  padding-top: clamp(3rem, 4vw, 4.5rem);
  font-size: var(--fs-sm);
}
.footer__in {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: clamp(1.75rem, 3vw, 3rem);
  padding-bottom: 2.75rem;
}
.footer__col h3 {
  font-size: .74rem; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: var(--copper-300);
  margin-bottom: 1.1rem;
}
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { font-size: var(--fs-xs); color: var(--paper-muted); }
.footer__col a:hover { color: var(--copper-300); }
.footer__col .logo { margin-bottom: 1.1rem; }
.footer__about { font-size: var(--fs-xs); color: var(--paper-faint); line-height: 1.6; max-width: 32ch; }
.footer__msgs { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer__contacts { margin-bottom: 1.35rem; }
.footer__contacts span { font-size: var(--fs-xs); color: var(--paper-faint); }
.footer__phone {
  font-size: 1.12rem !important; font-weight: 800; letter-spacing: -.025em;
  color: var(--paper-text) !important; font-variant-numeric: tabular-nums;
}
.footer__phone:hover { color: var(--copper-300) !important; }

.footer__bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.6rem 2rem;
  display: grid; gap: .6rem;
  font-size: var(--fs-xs); color: var(--paper-faint);
}
.footer__bottom p { margin: 0; }
.footer__legal { display: flex; gap: .6rem; flex-wrap: wrap; }
.footer__legal a { text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: var(--copper-300); }
.footer__disclaimer { font-size: .7rem; opacity: .65; line-height: 1.55; max-width: 90ch; margin-top: .4rem; }

.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(20, 16, 12, .95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-dark);
  padding: .5rem .5rem calc(.5rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(2, 1fr); gap: .4rem;
}
.mobile-bar__btn {
  display: flex; flex-direction: column; align-items: center; gap: .18rem;
  padding: .55rem .3rem;
  background: none; border: 0; border-radius: var(--r-sm);
  color: var(--paper-muted); font-size: .68rem; font-weight: 700;
}
.mobile-bar__btn .ic { width: 19px; height: 19px; }
.mobile-bar__btn--accent {
  background: linear-gradient(135deg, var(--copper-400), var(--copper-600));
  color: #fff;
}

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-group > .reveal:nth-child(2) { transition-delay: .07s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: .14s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: .04s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: .11s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: .18s; }

@media (max-width: 1120px) {
  .nav__list { gap: 0; }
  .nav__list a { padding: .5rem .55rem; font-size: var(--fs-xs); }
  .logo__txt small { display: none; }
  .footer__in { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  :root { --header-h: 64px; }

  .burger { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-lg);
    padding: 1rem var(--gutter) 1.5rem;
    transform: translateY(-120%);
    transition: transform .34s var(--ease);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    z-index: 95;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; align-items: stretch; gap: .1rem; }
  .nav__list a { padding: .85rem 1rem; font-size: var(--fs-sm); border-radius: var(--r-sm); }

  .header__cta .btn { display: none; }
  .topbar__item:not(.topbar__item--push) { display: none; }
  .topbar__item--push { margin-left: 0; }

  .hero__in { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .hero__machine { max-width: 240px; }
  .hero__card { display: none; }
  .hero__glow { display: none; }
  .trustbar__in { grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }

  .contacts, .faq-wrap { grid-template-columns: 1fr; }
  .faq-wrap .sec-head { position: static; }
  .faq-wrap .sec-head { margin-bottom: 2rem; }

  .mobile-bar { display: grid; }
  body { padding-bottom: 68px; }
}

@media (max-width: 640px) {
  .hero h1 br { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-strip { flex-direction: column; align-items: stretch; }
  .cta-strip .btn { width: 100%; }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .footer__col--brand { grid-column: 1 / -1; }
  .trustbar__in { grid-template-columns: 1fr; }
  .brk-grid { border-radius: var(--r-md); }
  .price thead th, .price tbody th, .price tbody td { padding: .85rem 1rem; }
  .facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .header__phone span { display: none; }
  .footer__in { grid-template-columns: 1fr; }
}

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

@media print {
  .site-header, .mobile-bar, .hero__visual, .marquee,
  .map, .btn { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .section, .hero { padding-block: 1.5rem; background: #fff !important; color: #000 !important; }
  .section--dark, .hero { background: #fff !important; }
  .section--dark h2, .section--dark h3, .hero h1 { color: #000 !important; }
  a::after { content: ' (' attr(href) ')'; font-size: .8em; }
}
