/* =========================================================
   Экосбор — стили лендинга
   Порядок: токены → база → шапка → секции → формы → подвал → адаптив
   ========================================================= */

:root{
  --green:#1c9a48;
  --green-dark:#11753a;
  --green-soft:#f0f6f2;
  --ink:#111313;
  --ink-2:#4f5552;
  --muted:#6a716d;
  --line:#e3e8e5;
  --line-2:#eef1ef;
  --bg-soft:#fbfcfb;
  --white:#fff;
  --radius:8px;
  --container:1180px;
  --header-h:88px;
}

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

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  color:var(--ink);
  background:var(--white);
  font-family:Manrope,"Segoe UI",system-ui,-apple-system,Roboto,Arial,sans-serif;
  font-size:16px;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit;text-decoration:none}
img,svg{max-width:100%}
button,input,textarea{font:inherit;color:inherit}

h1,h2,h3{margin:0;letter-spacing:-.025em;font-weight:800}
h1{font-size:clamp(32px,4.4vw,54px);line-height:1.08;margin-bottom:22px}
h2{font-size:clamp(26px,3vw,34px);line-height:1.18;margin-bottom:20px}
h1 span,h2 span{color:var(--green)}
p{margin:0 0 14px}

.container{width:min(var(--container),calc(100% - 48px));margin-inline:auto}

.sprite{position:absolute;width:0;height:0;overflow:hidden}
.sprite symbol{fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}

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

.skip-link{position:absolute;left:-9999px;top:0;z-index:100;background:var(--green);color:#fff;padding:10px 16px;border-radius:0 0 var(--radius) 0}
.skip-link:focus{left:0}

/* Видимый фокус с клавиатуры — важно для доступности */
:focus-visible{outline:2px solid var(--green);outline-offset:3px;border-radius:3px}

/* Общий размер иконок */
.ico{width:17px;height:17px;flex:none;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}

/* Якоря не уезжают под липкую шапку */
section[id]{scroll-margin-top:calc(var(--header-h) + 16px)}

/* ================= Кнопки ================= */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:15px 22px;border:1px solid transparent;border-radius:6px;
  font-size:14px;font-weight:800;cursor:pointer;white-space:nowrap;
  transition:background .18s ease,border-color .18s ease,transform .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--sm{padding:11px 16px;font-size:13px}
.btn--wide{width:100%}
.btn--green{background:var(--green);color:#fff}
.btn--green:hover{background:var(--green-dark)}
.btn--outline{background:#fff;border-color:#a8d2b8;color:var(--green)}
.btn--outline:hover{background:var(--green-soft)}
.btn[disabled]{opacity:.6;pointer-events:none}

.eyebrow{
  font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
  color:var(--green);margin:0 0 12px;
}

.section{padding:80px 0}

/* ================= Шапка ================= */
.header{
  position:sticky;top:0;z-index:30;height:var(--header-h);
  background:rgba(255,255,255,.94);backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-2);
}
.header__inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:20px}

.logo{display:inline-flex;align-items:center;gap:11px}
.logo__mark{width:26px;height:26px;flex:none;color:var(--green);fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.logo__text{display:flex;flex-direction:column;line-height:1.15}
.logo__text b{font-size:20px;font-weight:800;letter-spacing:-.02em}
.logo__text small{font-size:10.5px;font-weight:600;color:var(--muted);letter-spacing:.04em}

.nav{display:flex;align-items:center;gap:30px;font-size:14px;font-weight:700}
.nav>a:not(.btn){color:var(--ink-2)}
.nav>a:not(.btn):hover{color:var(--green)}

/* ================= Первый экран ================= */
.hero{padding:70px 0 80px;background:linear-gradient(180deg,#fff,var(--bg-soft))}
.hero__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:center}
.lead{max-width:600px;color:var(--ink-2);font-size:17px;line-height:1.65;margin-bottom:30px}
.lead strong{color:var(--ink)}
.hero__actions{display:flex;gap:13px;flex-wrap:wrap}
.hero__art{display:flex;justify-content:center}

/* ================= Реестр и график ================= */
.registry{border-top:1px solid var(--line-2)}
.section-intro p{font-size:15px;color:var(--muted);margin:6px 0}
.section-intro strong{color:var(--green)}

.figures{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:34px}
.figure-stat{
  display:flex;align-items:baseline;gap:14px;
  padding:18px 22px;border:1px solid var(--line);border-left:3px solid var(--green);
  border-radius:var(--radius);background:#fff;
}
.figure-stat b{font-size:30px;font-weight:800;letter-spacing:-.03em;line-height:1;color:var(--green)}
.figure-stat span{font-size:13px;color:var(--ink-2);line-height:1.45}
.figure-stat--warn{border-left-color:#d68a1e}
.figure-stat--warn b{color:#c07d17}

.chart{margin:0;padding-left:38px;position:relative}
.chart__axis{
  position:absolute;left:0;top:0;
  display:flex;flex-direction:column;justify-content:space-between;
  color:var(--muted);font-size:11px;font-weight:600;
}
/* Метки оси центрируются по своим линиям сетки */
.chart__axis span{transform:translateY(-50%)}
.chart__axis span:first-child{transform:translateY(0)}
.chart__axis span:last-child{transform:translateY(-100%)}

.chart__scroll{overflow-x:auto;overflow-y:hidden;padding-bottom:4px}
.chart__inner{min-width:640px}

.chart__plot{
  position:relative;display:flex;align-items:flex-end;gap:2px;
  border-bottom:1px solid var(--line);
}
.gridline{position:absolute;left:0;right:0;border-top:1px dashed #d6dcd8}
.bar-item{
  display:flex;flex-direction:column;align-items:center;justify-content:flex-end;
  flex:1;position:relative;z-index:1;min-width:0;
}
.bar-value{font-size:10px;font-weight:800;margin-bottom:4px;color:var(--ink-2)}
.bar{
  width:100%;
  background:linear-gradient(180deg,#26ab55,var(--green));
  border-radius:3px 3px 0 0;
  min-height:2px;
}
.bar-item--scarce .bar{background:linear-gradient(180deg,#e8a53c,#d68a1e)}
.bar-item--scarce .bar-value{color:#c07d17}

.chart__labels{display:flex;gap:2px;margin-top:8px}
.chart__labels span{
  flex:1;text-align:center;font-size:10px;font-weight:700;
  color:var(--muted);min-width:0;
}
.chart__labels .is-scarce{color:#c07d17}

.chart__caption{
  display:flex;align-items:center;gap:20px;flex-wrap:wrap;
  margin:16px 0 0;font-size:12px;color:var(--muted);
}
.chart__key{display:inline-flex;align-items:center;gap:7px}
.dot{width:9px;height:9px;border-radius:2px;background:var(--green);display:inline-block}
.dot--warn{background:#d68a1e}
.chart__hint{display:none;font-weight:700;color:var(--green)}

.chart{position:relative}
.bar-item{cursor:default;outline:none}
.bar-item:focus-visible .bar{box-shadow:0 0 0 2px var(--ink)}
.chart__tip{
  position:absolute;z-index:5;transform:translateX(-50%);
  min-width:190px;max-width:260px;pointer-events:none;
  background:var(--ink);color:#fff;border-radius:8px;padding:11px 13px;
  box-shadow:0 12px 30px rgba(17,19,19,.22);
  display:flex;flex-direction:column;gap:3px;
  font-size:12px;line-height:1.4;
}
.chart__tip b{font-weight:800}
.chart__tip>b{font-size:11px;color:#7fd39c;letter-spacing:.04em;text-transform:uppercase}
.chart__tip-name{font-weight:700;font-size:13px;margin-bottom:4px}
.chart__tip-row{color:#c9d1cc}
.chart__tip-row b{color:#fff}
.chart__tip::after{
  content:"";position:absolute;top:100%;left:50%;transform:translateX(-50%);
  border:6px solid transparent;border-top-color:var(--ink);
}

.notes{
  display:grid;grid-template-columns:1fr 1fr;
  border:1px solid var(--line);border-radius:var(--radius);
  margin-top:34px;overflow:hidden;
}
.note{display:flex;align-items:flex-start;gap:18px;padding:22px 28px}
.note+.note{border-left:1px solid var(--line)}
.note p{margin:0;font-size:14px;color:var(--ink-2)}
.note__icon{width:30px;height:30px;flex:none;color:var(--green);fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.note__icon--warn{color:#d68a1e}

/* ================= Как сэкономить ================= */
.economy{background:var(--bg-soft)}
.economy__grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:56px;margin-top:38px}

.tips{display:flex;flex-direction:column;gap:22px}
.tip{display:grid;grid-template-columns:50px 1fr;gap:18px;align-items:start}
.tip__icon{
  width:50px;height:50px;padding:12px;border-radius:50%;
  background:var(--green-soft);border:1px solid #dde8e1;color:var(--green);
  fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}
.tip p{margin:0;font-size:14.5px;color:var(--ink-2);line-height:1.6;padding-top:4px}
.tip small{display:block;font-size:12px;color:var(--muted);margin-top:5px}

.timeline{list-style:none;margin:0;padding:8px 18px;background:#fff;border:1px solid var(--line);border-radius:var(--radius)}
.timeline__item{
  display:grid;grid-template-columns:44px 110px 1fr;gap:16px;align-items:center;
  min-height:78px;border-bottom:1px solid var(--line-2);
}
.timeline__item:last-child{border-bottom:0}
.timeline__num{
  width:38px;height:38px;display:grid;place-items:center;border-radius:50%;
  border:1px solid #a9d5b9;color:#2a6b43;font-weight:800;font-size:14px;
}
.timeline__item strong{font-size:14px}
.timeline__item em{font-size:12.5px;color:var(--muted);font-style:normal;line-height:1.5}
.tag{display:inline-block;background:var(--green);color:#fff;border-radius:4px;padding:3px 8px;font-size:10px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;margin-right:6px}
.timeline__item--active{background:var(--green-soft);border-radius:6px;padding-inline:14px;margin-inline:-14px}
.timeline__item--active .timeline__num{background:var(--green);color:#fff;border-color:var(--green)}

/* ================= Преимущества ================= */
.benefits__grid{display:grid;grid-template-columns:1.5fr .8fr .8fr .8fr;gap:34px;align-items:start}
.benefits__title h2{font-size:clamp(24px,2.6vw,31px)}
.benefits__title p{color:var(--muted);font-size:14px;max-width:360px;margin:0}
.benefit{text-align:center}
.benefit__icon{width:46px;height:46px;color:var(--green);margin-bottom:14px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.benefit strong{display:block;font-size:13.5px;font-weight:700;color:var(--ink-2);line-height:1.55}

/* ================= Заявка ================= */
.contact{background:var(--bg-soft);border-top:1px solid var(--line-2)}
.contact__grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start}
.contact__list{list-style:none;margin:24px 0 0;padding:0;display:flex;flex-direction:column;gap:11px}
.contact__list li{display:flex;align-items:center;gap:10px;font-size:14px;font-weight:600;color:var(--ink-2)}
.contact__list .ico{color:var(--green)}

.form{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.field{margin-bottom:16px}
.field label{display:block;font-size:12.5px;font-weight:700;color:var(--ink-2);margin-bottom:6px}
.field input,.field textarea{
  width:100%;padding:12px 14px;border:1px solid var(--line);border-radius:6px;
  background:#fff;font-size:14.5px;transition:border-color .15s ease;
}
.field input::placeholder,.field textarea::placeholder{color:#a8afab}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--green)}
.field textarea{resize:vertical;min-height:80px}
.field input[aria-invalid="true"],.field textarea[aria-invalid="true"]{border-color:#d9534f}

/* Honeypot: скрыт от людей, но доступен ботам */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

.consent{display:flex;gap:10px;align-items:flex-start;margin:6px 0 18px;font-size:12.5px;color:var(--muted);line-height:1.5;cursor:pointer}
.consent input{margin-top:2px;width:16px;height:16px;flex:none;accent-color:var(--green)}
.consent a{color:var(--green);text-decoration:underline}

.form__status{margin:14px 0 0;font-size:13px;font-weight:600;min-height:18px}
.form__status--error{color:#c0392b}
.form__status--ok{color:var(--green)}

/* ================= Общий заголовок секции ================= */
.section-head{max-width:760px;margin-bottom:38px}
.section-head .lead{margin-bottom:0}

/* ================= Шапка: Telegram-иконка ================= */
.nav__tg{
  display:inline-grid;place-items:center;width:36px;height:36px;
  border:1px solid var(--line);border-radius:8px;color:var(--ink-2);
  transition:color .18s ease,border-color .18s ease,background .18s ease;
}
.nav__tg:hover{color:var(--green);border-color:#a8d2b8;background:var(--green-soft)}
.nav__tg .ico{width:18px;height:18px}
.nav__btn-short{display:none}

/* ================= Первый экран: подпись ================= */
.hero__note{margin:18px 0 0;font-size:13px;color:var(--muted);line-height:1.6;max-width:520px}
.hero__note a{color:var(--green);font-weight:700;text-decoration:underline;text-underline-offset:2px}

/* ================= Сезонность спроса ================= */
.season{background:var(--bg-soft);border-top:1px solid var(--line-2)}
.season__chart{margin:0}
.season__plot{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:26px 24px 14px;
}
.season__bars{
  position:relative;display:flex;align-items:flex-end;gap:5px;height:240px;
}
.sbar{
  flex:1;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;
  height:100%;position:relative;min-width:0;
}
.sbar__fill{
  width:100%;border-radius:3px 3px 0 0;
  background:linear-gradient(180deg,#3fbb6c,var(--green));
  transition:filter .15s ease;
}
.sbar--late .sbar__fill{background:linear-gradient(180deg,#e8a53c,#d68a1e)}
.sbar__label{
  margin-top:8px;font-size:10px;font-weight:700;color:var(--muted);
  display:flex;flex-direction:column;align-items:center;line-height:1.2;
}
.sbar__label b{font-size:9px;color:var(--green);font-weight:800}
.sbar:hover .sbar__fill{filter:brightness(1.08)}
.season__legend{display:flex;gap:22px;flex-wrap:wrap;margin:14px 0 0;font-size:12px;color:var(--muted)}
.season__chart figcaption{margin-top:14px;font-size:12.5px;color:var(--muted);line-height:1.6}

/* ================= Две дороги ================= */
.basics{border-top:1px solid var(--line-2)}
.ways{display:grid;grid-template-columns:1fr 68px 1fr;gap:0;align-items:stretch}
.way{
  position:relative;background:#fff;border:1px solid var(--line);
  border-radius:var(--radius);padding:32px 30px 28px;
}
.way__num{
  position:absolute;top:-14px;left:30px;
  width:28px;height:28px;display:grid;place-items:center;border-radius:50%;
  background:var(--green);color:#fff;font-size:13px;font-weight:800;
}
.way__icon{
  width:38px;height:38px;color:var(--green);margin-bottom:16px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.way h3{font-size:19px;margin-bottom:10px}
.way p{margin:0;font-size:14.5px;color:var(--ink-2);line-height:1.62}
.way__or{display:grid;place-items:center;position:relative}
.way__or::before{content:"";position:absolute;top:0;bottom:0;width:1px;background:var(--line)}
.way__or span{
  position:relative;background:#fff;border:1px solid var(--line);border-radius:20px;
  padding:5px 12px;font-size:11px;font-weight:800;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted);
}

.callout{
  display:grid;grid-template-columns:44px 1fr;gap:20px;align-items:start;
  margin-top:34px;padding:24px 28px;
  background:var(--green-soft);border:1px solid #dde8e1;border-left:3px solid var(--green);
  border-radius:var(--radius);
}
.callout__icon{
  width:44px;height:44px;color:var(--green);
  fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;
}
.callout strong{display:block;font-size:15px;margin-bottom:6px}
.callout p{margin:0;font-size:14px;color:var(--ink-2);line-height:1.62}

/* ================= Шаги проверки ================= */
.check{background:var(--bg-soft)}
.steps{
  list-style:none;margin:0;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
}
.step{
  display:grid;grid-template-columns:34px 1fr;gap:14px;align-items:center;
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:18px 20px;
}
.step__num{
  width:34px;height:34px;display:grid;place-items:center;border-radius:50%;
  background:var(--green-soft);border:1px solid #cfe3d8;
  color:#2a6b43;font-size:13px;font-weight:800;
}
.step p{margin:0;font-size:14px;color:var(--ink-2);line-height:1.5}

.check__cta{
  display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;
  margin-top:26px;padding:26px 30px;
  background:#fff;border:1px solid #a8d2b8;border-radius:var(--radius);
}
.check__cta-text strong{display:block;font-size:16px;margin-bottom:6px}
.check__cta-text p{margin:0;font-size:14px;color:var(--ink-2);max-width:620px;line-height:1.6}
.check__after{margin:22px 0 0;font-size:14px;color:var(--muted);line-height:1.65;max-width:760px}

/* ================= Карточки отчётности ================= */
.reports{border-top:1px solid var(--line-2)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:28px 26px;display:flex;flex-direction:column;
}
.card--accent{border-color:#a8d2b8;background:var(--green-soft)}
.card__icon{
  width:34px;height:34px;color:var(--green);margin-bottom:16px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.card__code{
  align-self:flex-start;background:var(--green);color:#fff;border-radius:4px;
  padding:3px 9px;font-size:10.5px;font-weight:800;letter-spacing:.08em;
  text-transform:uppercase;margin-bottom:12px;
}
.card h3{font-size:16px;line-height:1.35;margin-bottom:10px}
.card p{margin:0;font-size:14px;color:var(--ink-2);line-height:1.6}

.deadline{
  display:flex;align-items:center;gap:18px;margin-top:24px;padding:20px 26px;
  border:1px solid var(--line);border-left:3px solid var(--green);border-radius:var(--radius);
}
.deadline__icon{
  width:30px;height:30px;flex:none;color:var(--green);
  fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;
}
.deadline p{margin:0;font-size:14.5px;color:var(--ink-2)}

/* ================= Таблица штрафов ================= */
.fines{background:var(--bg-soft)}
.table-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.table{width:100%;min-width:860px;border-collapse:collapse;font-size:13.5px}
.table th{
  text-align:left;padding:16px 18px;background:var(--green-soft);
  font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:#2a6b43;border-bottom:1px solid var(--line);white-space:nowrap;
}
.table td{padding:16px 18px;border-bottom:1px solid var(--line-2);color:var(--ink-2);line-height:1.5;vertical-align:top}
.table tbody tr:last-child td{border-bottom:0}
.table td:first-child{font-weight:700;color:var(--ink)}
.table td:nth-child(2){white-space:nowrap;font-variant-numeric:tabular-nums}
.fines .notes{margin-top:26px}
.fines .note p strong{color:var(--ink)}

/* ================= Справочник ставок ================= */
.rates{background:var(--bg-soft);border-top:1px solid var(--line-2)}

.formula{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:24px 28px;margin-bottom:26px;
}
.formula__title{
  margin:0 0 12px;font-size:11px;font-weight:800;letter-spacing:.14em;
  text-transform:uppercase;color:var(--green);
}
.formula__body{
  display:flex;align-items:baseline;gap:9px;flex-wrap:wrap;
  margin:0 0 12px;font-size:16px;color:var(--ink);
}
.formula__body b{font-weight:800}
.formula__body i{font-style:normal;font-size:13px;color:var(--muted)}
.formula__body span{color:var(--green);font-weight:800;font-size:18px}
.formula__note{margin:0;font-size:13.5px;color:var(--ink-2);line-height:1.6;max-width:760px}

.rates__bar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:16px;flex-wrap:wrap}
.search{
  display:flex;align-items:center;gap:10px;flex:1;max-width:520px;
  background:#fff;border:1px solid var(--line);border-radius:6px;padding:0 14px;
  transition:border-color .15s ease;
}
.search:focus-within{border-color:var(--green)}
.search .ico{color:var(--muted);flex:none}
.search input{
  width:100%;border:0;outline:none;background:none;
  padding:13px 0;font-size:14.5px;
}
.search input::placeholder{color:#a8afab}
.rates__count{margin:0;font-size:13px;font-weight:700;color:var(--muted);white-space:nowrap}

.table--rates{min-width:940px;font-size:13.5px}
.table--rates .col-no{width:52px;text-align:center;color:var(--muted);font-weight:800}
.table--rates .col-num{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums}
.table--rates td:first-child{font-weight:800}
.table--rates td:nth-child(2){font-weight:700;color:var(--ink);white-space:normal;min-width:290px}
.table--rates td.col-eff{font-weight:800;color:var(--ink)}
.th-short{display:none}
.table--rates tbody tr:hover{background:var(--green-soft)}
.table--rates tr[hidden]{display:none}

.table th.is-sortable{cursor:pointer;user-select:none}
.table th.is-sortable:hover{color:var(--green)}
.table th.is-sortable::after{content:"↕";margin-left:6px;opacity:.45;font-size:10px}
.table th.is-sorted[data-dir="desc"]::after{content:"↓";opacity:1}
.table th.is-sorted[data-dir="asc"]::after{content:"↑";opacity:1}

.pill{
  display:inline-block;min-width:34px;padding:3px 9px;border-radius:20px;
  background:var(--green-soft);border:1px solid #cfe3d8;color:#2a6b43;
  font-size:12.5px;font-weight:800;text-align:center;
}
.pill--warn{background:#fdf3e3;border-color:#f0d9ae;color:#b9760f}
.pill--none{background:#f4f6f5;border-color:var(--line);color:var(--muted);font-weight:700;font-size:11px}

.rates__empty{margin:0;padding:34px;text-align:center;font-size:14px;color:var(--muted);background:#fff}
.rates__source{margin:18px 0 0;font-size:13px;color:var(--muted);line-height:1.65;max-width:860px}
.rates__source strong{color:var(--ink-2)}

/* ================= Telegram-блок ================= */
.tgband{border-top:1px solid var(--line-2)}
.tgband__grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.tgcard{
  display:grid;grid-template-columns:52px 1fr;gap:20px;align-items:start;
  padding:28px 30px;background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  transition:border-color .18s ease,transform .18s ease,box-shadow .18s ease;
}
.tgcard:hover{border-color:#a8d2b8;transform:translateY(-2px);box-shadow:0 10px 30px rgba(28,154,72,.08)}
.tgcard--accent{background:var(--green-soft);border-color:#dde8e1}
.tgcard__icon{
  width:52px;height:52px;padding:12px;border-radius:50%;
  background:var(--green-soft);border:1px solid #dde8e1;color:var(--green);
  fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;
}
.tgcard--accent .tgcard__icon{background:#fff}
.tgcard strong{display:block;font-size:16px;margin-bottom:7px}
.tgcard p{margin:0 0 10px;font-size:14px;color:var(--ink-2);line-height:1.6}
.tgcard__link{font-size:13px;font-weight:800;color:var(--green)}

/* ================= Первый экран: цифра экономии ================= */
.stat{
  width:100%;max-width:420px;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius);
  padding:34px 36px;box-shadow:0 18px 46px rgba(17,19,19,.06);
}
.stat__label{margin:0 0 10px;font-size:13px;font-weight:700;color:var(--muted);line-height:1.4}
.stat__value{
  margin:0;font-size:clamp(46px,6vw,68px);font-weight:800;
  letter-spacing:-.045em;line-height:1;color:var(--green);
}
.stat__value span{font-size:.42em;letter-spacing:-.02em}
.stat__sub{margin:10px 0 0;font-size:15px;font-weight:700;color:var(--ink)}
.stat__list{
  list-style:none;margin:22px 0 0;padding:20px 0 0;
  border-top:1px solid var(--line-2);
  display:flex;flex-direction:column;gap:11px;
}
.stat__list li{display:flex;align-items:center;gap:10px;font-size:13.5px;font-weight:600;color:var(--ink-2)}
.stat__list .ico{color:var(--green)}
.stat__about{margin:18px 0 0;padding-top:16px;border-top:1px solid var(--line-2);font-size:12.5px;color:var(--muted);line-height:1.6}

/* ================= Стоимость услуг ================= */
.pricing{border-top:1px solid var(--line-2)}
.prices{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.price{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:30px 30px 28px;
}
.price--accent{background:var(--green-soft);border-color:#a8d2b8}
.price__icon{
  width:34px;height:34px;color:var(--green);margin-bottom:16px;
  fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;
}
.price h3{font-size:17px;margin-bottom:12px}
.price__value{
  margin:0 0 12px;font-size:17px;font-weight:700;color:var(--ink-2);
  display:flex;align-items:baseline;gap:7px;
}
.price__value b{font-size:38px;font-weight:800;letter-spacing:-.035em;color:var(--green);line-height:1}
.price__note{margin:0;font-size:14px;color:var(--ink-2);line-height:1.62}

.verify{
  margin-top:20px;padding:30px 32px;
  border:1px solid var(--line);border-radius:var(--radius);
  display:grid;grid-template-columns:1.15fr 1fr;gap:36px;align-items:start;
}
.verify__head{display:grid;grid-template-columns:42px 1fr;gap:18px;align-items:start}
.verify__icon{
  width:42px;height:42px;color:var(--green);
  fill:none;stroke:currentColor;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;
}
.verify h3{font-size:17px;margin-bottom:9px}
.verify p{margin:0;font-size:14px;color:var(--ink-2);line-height:1.62}
.verify__list{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:12px;
}
.verify__list li{display:flex;align-items:flex-start;gap:11px;font-size:14px;font-weight:600;color:var(--ink-2);line-height:1.5}
.verify__list .ico{color:var(--green);margin-top:2px}

/* ================= Лид-магнит на лендинге ================= */
.magnet{background:var(--ink);color:#fff;border-top:0}
.magnet__grid{display:grid;grid-template-columns:1.15fr .85fr;gap:56px;align-items:center}
.magnet .eyebrow{color:#7fd39c}
.magnet h2{color:#fff;margin-bottom:14px}
.magnet h2 span{color:#7fd39c}
.magnet .lead{color:#b9c2bc}
.magnet__list{list-style:none;margin:22px 0 26px;padding:0;display:flex;flex-direction:column;gap:11px}
.magnet__list li{display:flex;align-items:center;gap:11px;font-size:14.5px;font-weight:600;color:#e6ebe8}
.magnet__list .ico{color:#7fd39c;flex:none}
.magnet__note{margin:14px 0 0;font-size:13px;color:#8d9791}

.preview{
  background:#fff;border-radius:var(--radius);padding:26px 28px;color:var(--ink);
  box-shadow:0 26px 60px rgba(0,0,0,.35);transform:rotate(-1.4deg);
}
.preview__eyebrow{margin:0 0 6px;font-size:9.5px;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:var(--green)}
.preview__company{margin:0 0 18px;font-size:19px;font-weight:800;letter-spacing:-.02em;padding-bottom:14px;border-bottom:2px solid var(--green)}
.preview__kpi{background:var(--green-soft);border:1px solid #cfe3d8;border-radius:8px;padding:14px 16px;margin-bottom:16px}
.preview__kpi span{display:block;font-size:11px;font-weight:700;color:var(--muted);margin-bottom:5px}
.preview__kpi b{font-size:24px;font-weight:800;letter-spacing:-.03em}
.preview__rows{display:flex;flex-direction:column;gap:9px;margin-bottom:18px}
.preview__rows span{height:7px;border-radius:4px;background:#e8ecea}
.preview__rows span:nth-child(1){width:100%}
.preview__rows span:nth-child(2){width:88%}
.preview__rows span:nth-child(3){width:94%}
.preview__rows span:nth-child(4){width:72%}
.preview__memo{border-left:3px solid var(--green);padding:10px 0 4px 14px;display:flex;flex-direction:column;gap:8px}
.preview__memo b{font-size:11.5px;margin-bottom:2px}
.preview__memo span{height:6px;border-radius:4px;background:#e8ecea}
.preview__memo span:nth-child(2){width:96%}
.preview__memo span:nth-child(3){width:80%}
.preview__memo span:nth-child(4){width:88%}

/* ================= Мастер расчёта ================= */
.container--narrow{max-width:900px}
.nav__back{display:inline-flex;align-items:center;gap:8px;font-weight:700}
.nav__back .ico{width:16px;height:16px}

.audit__promise{
  list-style:none;margin:0 0 28px;padding:0;
  display:grid;grid-template-columns:repeat(3,1fr);gap:14px;
}
.audit__promise li{
  display:flex;align-items:flex-start;gap:11px;
  background:var(--green-soft);border:1px solid #dde8e1;border-radius:var(--radius);
  padding:16px 18px;font-size:13.5px;font-weight:700;color:var(--ink-2);line-height:1.45;
}
.audit__promise .ico{color:var(--green);flex:none;margin-top:1px}

.audit__form{max-width:none}
.fieldset{border:0;margin:0 0 28px;padding:0}
.fieldset legend{
  padding:0;margin-bottom:16px;font-size:16px;font-weight:800;color:var(--ink);
}
.fieldset__hint{margin:-8px 0 16px;font-size:13px;color:var(--muted);line-height:1.6}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.field select{
  width:100%;border:1px solid var(--line);border-radius:6px;background:#fff;
  padding:13px 12px;font:inherit;font-size:14.5px;color:var(--ink);
}
.field select:focus{outline:none;border-color:var(--green)}

.positions{display:flex;flex-direction:column;gap:14px;margin-bottom:14px}
.position{
  display:grid;grid-template-columns:1fr 140px 160px 40px;gap:12px;align-items:start;
  background:var(--bg-soft);border:1px solid var(--line-2);border-radius:var(--radius);
  padding:16px 16px 14px;
}
.position .field{margin:0}
.position__meta{margin:7px 0 0;font-size:12px;color:var(--muted);line-height:1.4}
.position__meta.is-warn{color:#b9760f;font-weight:700}
.position__del{
  margin-top:29px;width:40px;height:44px;display:grid;place-items:center;
  background:none;border:1px solid var(--line);border-radius:6px;
  color:var(--muted);cursor:pointer;transition:color .15s ease,border-color .15s ease;
}
.position__del:hover{color:#c0392b;border-color:#e8bcb5}
.position__del .ico{width:17px;height:17px}
.btn--ghost{background:#fff;border:1px dashed var(--line);color:var(--ink-2)}
.btn--ghost:hover{border-color:var(--green);color:var(--green)}
.btn--wide{width:100%;justify-content:center}

/* ================= Справка ================= */
.report-page{background:var(--bg-soft)}
.report-bar{background:#fff;border-bottom:1px solid var(--line);position:sticky;top:0;z-index:20}
.report-bar__inner{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:14px 0}
.report-bar__actions{display:flex;gap:10px}

.sheet{
  max-width:940px;margin:34px auto 60px;background:#fff;
  border:1px solid var(--line);border-radius:var(--radius);
  padding:48px 54px 40px;
}
.sheet__head{
  display:flex;justify-content:space-between;align-items:flex-start;gap:30px;
  padding-bottom:24px;border-bottom:2px solid var(--green);margin-bottom:32px;
}
.sheet__eyebrow{
  margin:0 0 8px;font-size:11px;font-weight:800;letter-spacing:.12em;
  text-transform:uppercase;color:var(--green);
}
.sheet__head h1{font-size:30px;margin:0 0 10px;letter-spacing:-.03em}
.sheet__meta{margin:0;font-size:13px;color:var(--muted);line-height:1.6}
.sheet__logo{text-align:right;font-size:12px;color:var(--muted);display:flex;flex-direction:column;gap:3px;flex:none}
.sheet__logo strong{font-size:15px;color:var(--ink)}

.sheet__section{margin-bottom:34px}
.sheet__section h2{
  font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;
  color:var(--green);margin-bottom:16px;
}

.kpi{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:16px}
.kpi__item{border:1px solid var(--line);border-radius:var(--radius);padding:20px 22px}
.kpi__item--main{background:var(--green-soft);border-color:#a8d2b8}
.kpi__label{display:block;font-size:12px;font-weight:700;color:var(--muted);margin-bottom:8px}
.kpi__item b{display:block;font-size:30px;font-weight:800;letter-spacing:-.035em;line-height:1.1}
.kpi__item b.is-green{color:var(--green)}
.kpi__item b.is-warn{color:#c07d17}
.kpi__note{display:block;margin-top:9px;font-size:12px;color:var(--ink-2);line-height:1.5}

.sheet__table{width:100%;border-collapse:collapse;font-size:12.5px}
.sheet__table th{
  text-align:left;padding:10px 8px;border-bottom:1.5px solid var(--ink);
  font-size:10px;font-weight:800;letter-spacing:.05em;text-transform:uppercase;color:var(--ink-2);
}
.sheet__table td{padding:11px 8px;border-bottom:1px solid var(--line-2);color:var(--ink-2);vertical-align:top}
.sheet__table .num{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums}
.sheet__name{color:var(--ink);font-weight:700;min-width:200px}
.sheet__fee{font-weight:800;color:var(--ink)}
.sheet__table tfoot td{border-top:1.5px solid var(--ink);border-bottom:0;font-weight:800;color:var(--ink);padding-top:12px}
.tag{display:inline-block;padding:2px 7px;border-radius:20px;font-size:11px;font-weight:800}
.tag--warn{background:#fdf3e3;color:#b9760f;border:1px solid #f0d9ae}
.tag--muted{background:#f4f6f5;color:var(--muted);border:1px solid var(--line);font-size:10px}

.sheet__warn{
  display:grid;grid-template-columns:22px 1fr;gap:14px;align-items:start;
  padding:16px 18px;border:1px solid #f0d9ae;background:#fdf9f2;
  border-radius:var(--radius);margin-bottom:12px;
}
.sheet__warn .ico{width:22px;height:22px;color:#d68a1e}
.sheet__warn p{margin:0;font-size:13px;color:var(--ink-2);line-height:1.6}

.sheet__list{margin:0;padding-left:20px;display:flex;flex-direction:column;gap:9px}
.sheet__list li{font-size:13.5px;color:var(--ink-2);line-height:1.6}

.memo{
  border:1px solid var(--line);border-left:3px solid var(--green);
  border-radius:var(--radius);padding:26px 30px;background:var(--bg-soft);
}
.memo p{margin:0 0 13px;font-size:13.5px;color:var(--ink-2);line-height:1.7}
.memo p:first-child{color:var(--muted);font-size:12.5px}
.memo__sign{margin:18px 0 0;padding-top:14px;border-top:1px solid var(--line);color:var(--muted);font-size:12.5px}

.sheet__cta{background:var(--green-soft);border:1px solid #dde8e1;border-radius:var(--radius);padding:26px 30px}
.sheet__cta p{font-size:13.5px;color:var(--ink-2);line-height:1.65;margin:0 0 18px}
.sheet__cta-actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:16px}
.sheet__contacts{margin:0;font-size:12.5px;font-weight:700;color:var(--green)}
.sheet__disclaimer{margin:0;padding-top:20px;border-top:1px solid var(--line-2);font-size:11.5px;color:var(--muted);line-height:1.6}

@media print{
  .no-print{display:none !important}
  body,.report-page{background:#fff}
  .sheet{
    max-width:none;margin:0;border:0;border-radius:0;padding:0;
    font-size:11pt;
  }
  .sheet__section{margin-bottom:20px;break-inside:avoid}
  .sheet__memo,.sheet__cta{break-before:page}
  .kpi{grid-template-columns:1fr 1fr 1fr}
  .kpi__item b{font-size:20pt}
  .sheet__table{font-size:9pt}
  .sheet__head h1{font-size:20pt}
  a{text-decoration:none;color:inherit}
}

/* ================= Подвал ================= */
.footer__tg{display:flex;align-items:center;gap:9px}
.footer__tg .ico{width:16px;height:16px;color:var(--green)}

.footer{background:#111313;color:#c9cfcb;padding:56px 0 26px;font-size:13.5px}
.footer__inner{display:grid;grid-template-columns:1.6fr 1fr 1fr;gap:40px}
.footer__brand p{margin:14px 0 0;max-width:330px;color:#8f9793;line-height:1.6}
.logo--light .logo__text b{color:#fff}
.footer__col h3{font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#fff;margin-bottom:14px}
.footer__col a{display:block;margin-bottom:9px;color:#c9cfcb}
.footer__col a:hover{color:var(--green)}
.footer__bottom{
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  margin-top:40px;padding-top:20px;border-top:1px solid #262b28;
  font-size:12px;color:#7d8480;
}

/* ================= Модальное окно ================= */
.modal{
  position:fixed;inset:0;z-index:60;display:grid;place-items:center;
  background:rgba(10,14,12,.55);padding:20px;
}
.modal[hidden]{display:none}
.modal__box{
  background:#fff;border-radius:12px;padding:36px 34px;max-width:400px;width:100%;
  text-align:center;box-shadow:0 24px 60px rgba(0,0,0,.22);
}
.modal__icon{width:46px;height:46px;color:var(--green);margin-bottom:14px;fill:none;stroke:currentColor;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round}
.modal__box h3{font-size:20px;margin-bottom:8px}
.modal__box p{color:var(--muted);font-size:14px;margin-bottom:22px}

/* ================= Адаптив: планшет ================= */
@media (max-width:960px){
  .container{width:min(var(--container),calc(100% - 36px))}
  .section{padding:64px 0}

  .hero{padding-top:48px}
  .hero__grid{grid-template-columns:1fr;gap:34px}
  .hero__art{order:-1}

  .notes{grid-template-columns:1fr}
  .figures{grid-template-columns:1fr;gap:12px}
  .prices{grid-template-columns:1fr;gap:16px}
  .audit__promise{grid-template-columns:1fr}
  .preview{padding:22px 20px;transform:none}
  .magnet .btn{width:100%}
  .position{grid-template-columns:1fr 1fr;gap:10px}
  .position__group{grid-column:1/-1}
  .position__del{grid-column:1/-1;width:100%;margin-top:4px;height:38px}
  .sheet{padding:30px 24px;margin:20px auto 40px}
  .sheet__head{flex-direction:column;gap:16px}
  .sheet__logo{text-align:left}
  .kpi{grid-template-columns:1fr;gap:12px}
  .report-bar__inner{flex-wrap:wrap;gap:12px}
  .sheet__table{font-size:11.5px}
  .sheet__name{min-width:140px}
  .verify{grid-template-columns:1fr;gap:24px;padding:26px 24px}
  .rates__bar{flex-direction:column;align-items:stretch;gap:10px}
  .search{max-width:none}
  .note+.note{border-left:0;border-top:1px solid var(--line)}

  .economy__grid{grid-template-columns:1fr;gap:38px}
  .contact__grid{grid-template-columns:1fr;gap:34px}

  .benefits__grid{grid-template-columns:1fr 1fr}
  .benefits__title{grid-column:1/-1}

  .footer__inner{grid-template-columns:1fr 1fr}
  .footer__brand{grid-column:1/-1}

  .ways{grid-template-columns:1fr;gap:0}
  .way__or{height:56px}
  .way__or::before{top:0;bottom:0;left:50%;width:1px;height:100%}

  .steps{grid-template-columns:1fr 1fr}
  .season__bars{height:190px;gap:3px}
  .cards{grid-template-columns:1fr;gap:16px}
  .tgband__grid{grid-template-columns:1fr}
  .magnet__grid{grid-template-columns:1fr;gap:34px}
  .magnet__preview{order:-1;max-width:420px}
  .check__cta{flex-direction:column;align-items:flex-start;gap:18px}
  .check__cta .btn{width:100%}
}

/* ================= Адаптив: телефон ================= */
@media (max-width:620px){
  .field-row{grid-template-columns:1fr}
  .memo{padding:20px 18px}
  .sheet__cta{padding:20px 18px}

  :root{--header-h:70px}

  .nav{gap:0}
  .nav>a:not(.btn){display:none}
  .logo__text small{display:none}

  .section{padding:52px 0}
  .hero__actions .btn{width:100%}

  .chart{padding-left:30px}
  .chart__inner{min-width:560px}
  .bar-value{font-size:9px}
  .chart__labels span{font-size:9px}
  .chart__caption{gap:12px;font-size:11px}
  .chart__hint{display:inline}

  .stat{padding:26px 24px}
  .price{padding:26px 22px}
  .verify__head{grid-template-columns:1fr;gap:12px}

  .note{padding:18px 20px;gap:14px}

  .tip{grid-template-columns:44px 1fr;gap:14px}
  .tip__icon{width:44px;height:44px;padding:10px}

  .timeline{padding:6px 14px}
  .timeline__item{grid-template-columns:40px 1fr;gap:10px;padding:14px 0;min-height:0}
  .timeline__item em{grid-column:2}
  .timeline__item--active{padding-inline:10px;margin-inline:-10px}

  .benefits__grid{grid-template-columns:1fr;gap:28px}
  .benefits__title{grid-column:auto}

  .form{padding:22px 18px}
  .footer__inner{grid-template-columns:1fr;gap:28px}
  .footer__brand{grid-column:auto}

  /* Ссылки разделов скрыты, но иконка канала остаётся */
  .nav>a.nav__tg{display:inline-grid;width:36px;height:36px;margin-right:8px}
  .nav__btn-long{display:none}
  .nav__btn-short{display:inline}
  .nav .btn--sm{padding:11px 13px;gap:7px;font-size:12.5px}
  .hero__actions .btn{width:100%}

  .way{padding:28px 22px 24px}
  .callout{grid-template-columns:1fr;gap:12px;padding:20px 22px}
  .callout__icon{width:34px;height:34px}

  .steps{grid-template-columns:1fr}
  .season__plot{padding:22px 14px 12px}
  .season__bars{height:160px;gap:2px}
  /* На телефоне подписываем только опорные месяцы — иначе метки наезжают */
  .sbar__label{display:none}
  .sbar--tick .sbar__label{display:flex;font-size:9px;position:absolute;top:100%;left:50%;transform:translateX(-50%);margin-top:8px}
  .sbar{padding-bottom:0}
  .season__bars{margin-bottom:26px}
  .season__legend{gap:8px;flex-direction:column;font-size:11.5px}
  .check__cta{padding:22px 20px}
  .card{padding:24px 22px}
  .deadline{padding:18px 20px;gap:14px}

  .tgcard{grid-template-columns:44px 1fr;gap:16px;padding:22px 20px}
  .tgcard__icon{width:44px;height:44px;padding:10px}

  /* Таблица штрафов превращается в карточки — горизонтальный скролл на телефоне неудобен */
  .table-wrap{overflow:visible;border:0;background:none}
  .table{min-width:0;font-size:13px}
  .table thead{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0)}
  .table tr{
    display:block;background:#fff;border:1px solid var(--line);
    border-radius:var(--radius);padding:6px 18px 10px;margin-bottom:14px;
  }
  .table td{display:flex;flex-direction:column;gap:3px;padding:10px 0;border-bottom:1px solid var(--line-2)}
  .table tbody tr td:last-child{border-bottom:0}
  .table td::before{
    content:attr(data-label);
    font-size:10px;font-weight:800;letter-spacing:.08em;
    text-transform:uppercase;color:var(--muted);
  }
  .table td:first-child::before{display:none}
  .table td:first-child{font-size:15px;padding-top:14px}

  /* Справочник ставок остаётся таблицей — карточки на 42 строки были бы бесконечными */
  .table--rates{min-width:0;font-size:12.5px}
  .table--rates thead{position:static;width:auto;height:auto;clip:auto}
  .table--rates tr{display:table-row;background:none;border:0;border-radius:0;padding:0;margin:0}
  .table--rates td{display:table-cell;padding:11px 8px;border-bottom:1px solid var(--line-2)}
  .table--rates td::before{display:none}
  .table--rates th{padding:12px 8px;font-size:9.5px;letter-spacing:.04em;white-space:normal}
  .table--rates .col-hide{display:none}
  .table--rates .col-no{width:30px;padding-inline:4px}
  .table--rates td:nth-child(2){min-width:0;font-size:12.5px;padding-top:11px}
  .table--rates td:first-child{font-size:12.5px;padding-top:11px}
  .table--rates{table-layout:fixed;width:100%}
  .table--rates .col-no{width:28px}
  .table--rates .col-eff{width:74px}
  .table--rates .col-util{width:46px}
  .table--rates th{padding:12px 6px}
  .table--rates td{padding:11px 6px}
  .th-long{display:none}
  .th-short{display:inline}
  .pill{min-width:0;padding:3px 6px;font-size:11.5px}
  .pill--none{font-size:9px;padding:3px 3px;white-space:normal;line-height:1.2;display:inline-block;max-width:100%}
  .table--rates .col-util{width:52px}
  .formula{padding:20px 20px}
  .formula__body{font-size:14px;gap:7px}
}

/* ================= Уважение к настройкам движения ================= */
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .btn:hover{transform:none}
}
