:root {
  --green-1: #2d7cb3;
  --green-2: #1a3d80;
  --green-3: #9dc7dd;
  --accent: #3a9c87;
  --accent-dark: #25735f;
  --accent-light: #7cc0a8;
  --ink: #0a1a12;
  --ink-2: #132820;
  --muted: #5a6b63;
  --bg: #f6faf7;
  --white: #ffffff;
  --border: #e4ece7;
  --radius: 18px;
  --shadow-lg: 0 30px 80px -30px rgba(26, 92, 136, 0.35);
  --shadow-sm: 0 8px 24px -12px rgba(10, 26, 18, 0.15);
  --grad: linear-gradient(135deg, #cce4ec 0%, #3a9c87 45%, #1a3d80 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-lg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 35px 90px -25px rgba(26, 92, 136, 0.55); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--green-2); color: var(--green-2); }
.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 32px; min-height: 100px; padding: 8px 0; }
.logo { display: inline-flex; align-items: center; font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.logo__badge {
  background: var(--grad); color: #fff; padding: 5px 10px; border-radius: 8px; margin-right: 4px;
}
.logo__text { color: var(--ink); }
.logo--light .logo__text { color: #fff; }

.logo--light 
@media (max-width: 640px) {  }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { color: var(--ink-2); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--green-2); }
.nav a.active { font-weight: 600; }
.header__cta { }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Hero */
.hero { padding: 80px 0 100px; overflow: hidden; position: relative; }
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(45,124,179,.12); color: var(--green-2);
  font-weight: 600; font-size: 13px; letter-spacing: .02em;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 800; margin: 18px 0 20px;
}
.gradient-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.guarantee-badge {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; margin-bottom: 28px; max-width: 520px;
  background: linear-gradient(90deg, rgba(45,124,179,0.1), rgba(26,61,128,0.04));
  border: 1.5px solid rgba(26,61,128,0.25); border-radius: 14px;
  color: var(--ink-2); font-size: 14px; line-height: 1.5;
}
.guarantee-badge svg { flex: 0 0 28px; color: var(--green-2); }
.guarantee-badge b { color: var(--green-2); font-weight: 700; }
.hero__facts { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts strong { font-size: 28px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; color: transparent; }
.hero__facts span { font-size: 14px; color: var(--muted); }

.hero__visual { position: relative; min-height: 420px; display: flex; align-items: center; justify-content: center; }
.blob {
  position: absolute; inset: 0; margin: auto;
  width: 420px; height: 420px; border-radius: 50%;
  background: var(--grad); filter: blur(60px); opacity: .45; z-index: 0;
  animation: blob 8s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { transform: scale(1) translate(0,0); }
  50% { transform: scale(1.1) translate(10px,-20px); }
}
.card {
  position: relative; z-index: 1;
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-lg); width: 100%; max-width: 380px;
  border: 1px solid var(--border);
}
.card--float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.card__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px dashed var(--border); font-size: 15px;
}
.card__row:last-child { border-bottom: none; }
.card__row span { color: var(--muted); }
.card__row b { font-weight: 700; font-size: 17px; }
.card__row--ok b { color: var(--green-2); }

/* Sections */
section { padding: 90px 0; }
.section-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 12px; max-width: 640px; }
.section-title--light { color: #fff; }
.section-sub--light { color: rgba(255,255,255,.8); }

/* Services */
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px;
}
.services__grid--3 { grid-template-columns: repeat(3, 1fr); }
a.service { color: inherit; display: block; }
.service {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(45,124,179,.12); display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
}
.service__icon svg { width: 28px; height: 28px; stroke: var(--green-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service--dark .service__icon { background: #000; }
.service--dark .service__icon svg { stroke: var(--green-1); }
.service h3 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.service p { color: var(--muted); margin-bottom: 20px; }
.check li {
  position: relative; padding-left: 28px; padding-block: 6px; color: var(--ink-2); font-size: 15px;
}
.check li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 18px; height: 18px; border-radius: 50%; background: var(--grad);
  background-image: var(--grad), url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20.3 5.7L9 17l-5.3-5.3 1.4-1.4L9 14.2l9.9-9.9z'/></svg>");
  background-size: cover, 14px 14px; background-position: center, center; background-repeat: no-repeat;
}
.check--light li { color: rgba(255,255,255,.92); }
.check--light li::before { background: #fff; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300a63f'><path d='M20.3 5.7L9 17l-5.3-5.3 1.4-1.4L9 14.2l9.9-9.9z'/></svg>"); background-size: 14px; background-position: center; background-repeat: no-repeat;}
.link-arrow { display: inline-block; margin-top: 20px; color: var(--green-2); font-weight: 600; }
.link-arrow:hover { color: var(--green-1); }

/* Steps */
.steps { background: #fff; }
.steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.step {
  padding: 32px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border);
  transition: border-color .2s;
}
.step:hover { border-color: var(--green-3); }
.step__num {
  font-size: 40px; font-weight: 800; background: var(--grad);
  -webkit-background-clip: text; color: transparent; letter-spacing: -0.04em; margin-bottom: 12px;
}
.step h4 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); }

/* Calc section */
.calc { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.calc::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--grad); filter: blur(120px); opacity: .35;
}
.calc__wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.form {
  background: #fff; color: var(--ink); padding: 32px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-lg);
}
.form label { display: flex; flex-direction: column; gap: 6px; }
.form span { font-size: 13px; font-weight: 500; color: var(--muted); }
.form input, .form select {
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; font-family: inherit; transition: border-color .2s; outline: none;
  background: var(--bg);
}
.form input:focus, .form select:focus { border-color: var(--green-2); background: #fff; }
.form__note { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }
.form__note a { color: var(--green-2); text-decoration: underline; }

/* About */
.about { background: #fff; }
.about__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about p { color: var(--muted); margin-top: 16px; font-size: 16px; }
.about__stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.about__stats > div {
  padding: 28px; border-radius: var(--radius); background: var(--bg); border: 1px solid var(--border);
}
.about__stats b {
  font-size: 36px; font-weight: 800; background: var(--grad);
  -webkit-background-clip: text; color: transparent; letter-spacing: -0.03em; display: block;
}
.about__stats span { color: var(--muted); font-size: 14px; margin-top: 4px; display: block; }

/* Contacts */
.contacts__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
}
.contact-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.contact-card__label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-card__value { font-size: 22px; font-weight: 700; }
.contact-card__hint { font-size: 14px; color: var(--muted); }

/* Footer */
.footer { background: var(--ink); color: rgba(255,255,255,.75); padding: 64px 0 24px; }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__note { margin-top: 12px; font-size: 14px; max-width: 280px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__cols h5 { color: #fff; margin-bottom: 14px; font-size: 15px; }
.footer__cols a { display: block; padding: 4px 0; font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__cols a:hover { color: var(--green-3); }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer__bottom a:hover { color: var(--green-3); }

/* ========================================
   MEGA CALCULATOR
   ======================================== */
.mcalc {
  position: relative; padding: 100px 0;
  background: linear-gradient(180deg, #0a1512 0%, #0e1d17 60%, #0a1512 100%);
  color: #fff; overflow: hidden; isolation: isolate;
}
.mcalc__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mcalc__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,124,179,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,124,179,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.mcalc__orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45;
}
.mcalc__orb--1 { width: 400px; height: 400px; background: var(--green-2); top: -100px; left: -100px; animation: orb 18s ease-in-out infinite; }
.mcalc__orb--2 { width: 500px; height: 500px; background: var(--green-1); bottom: -200px; right: -150px; animation: orb 22s ease-in-out infinite reverse; opacity: 0.35; }
.mcalc__orb--3 { width: 350px; height: 350px; background: #4fc3f7; top: 40%; left: 50%; animation: orb 26s ease-in-out infinite; opacity: 0.22; }
@keyframes orb { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.1); } }

.mcalc .container { position: relative; z-index: 1; }

/* Live bar */
.mcalc__live-bar {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.live-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(45,124,179,0.25);
  font-size: 13px; color: rgba(255,255,255,0.85);
}
.live-chip b { color: var(--green-1); font-weight: 700; }
.live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-1);
  box-shadow: 0 0 0 0 var(--green-1);
  animation: livePulse 1.8s ease-out infinite;
}
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(45,124,179,0.8); } 70% { box-shadow: 0 0 0 10px rgba(45,124,179,0); } 100% { box-shadow: 0 0 0 0 rgba(45,124,179,0); } }

/* Header */
.mcalc__header { text-align: center; margin-bottom: 36px; }
.mcalc__eyebrow {
  display: inline-block; padding: 6px 16px; border-radius: 999px;
  background: rgba(45,124,179,0.15); color: var(--green-1);
  font-weight: 700; font-size: 12px; letter-spacing: 0.1em;
  border: 1px solid rgba(45,124,179,0.3);
  margin-bottom: 20px;
}
.mcalc__title {
  font-size: clamp(32px, 4.5vw, 54px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 14px; color: #fff;
}
.mcalc__sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto; }

/* Tabs */
.mcalc__tabs {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 32px;
  max-width: 640px; margin-left: auto; margin-right: auto;
}
.mc-tab {
  flex: 1; display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: 18px;
  background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7); cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  text-align: left;
}
.mc-tab svg { width: 28px; height: 28px; flex-shrink: 0; }
.mc-tab span { display: flex; flex-direction: column; }
.mc-tab b { font-size: 18px; font-weight: 800; }
.mc-tab em { font-size: 12px; font-style: normal; opacity: 0.7; }
.mc-tab:hover { border-color: rgba(45,124,179,0.5); color: #fff; transform: translateY(-2px); }
.mc-tab.active {
  background: linear-gradient(135deg, rgba(45,124,179,0.2), rgba(26,61,128,0.1));
  border-color: var(--green-1); color: #fff;
  box-shadow: 0 20px 40px -15px rgba(45,124,179,0.5);
}

/* Main grid: form + result */
.mcalc__main {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px;
  margin-bottom: 28px;
}

/* FORM card */
.mc-form {
  background: rgba(255,255,255,0.97);
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(45,124,179,0.15);
}

/* Quick plate */
.mc-quick { margin-bottom: 24px; }
.mc-quick__lbl { display: block; font-weight: 600; font-size: 14px; color: var(--ink-2); margin-bottom: 10px; }
.mc-quick__row { display: flex; gap: 10px; align-items: stretch; }
.plate-input {
  display: flex; align-items: center; gap: 0;
  flex: 1; height: 56px;
  border: 2px solid #111; border-radius: 10px; background: #fff;
  overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow .2s, border-color .2s;
}
.plate-input:focus-within { border-color: var(--green-2); box-shadow: 0 0 0 4px rgba(45,124,179,0.15); }
.plate-input__flag {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0 10px; background: #111; color: #fff;
  font-weight: 800; font-size: 11px; height: 100%; letter-spacing: 0.05em;
}
.plate-input__flag i { font-style: normal; font-size: 14px; }
.plate-input input {
  flex: 1; border: none; outline: none; padding: 0 16px;
  font-size: 22px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  background: #fff;
}
.btn--lg { padding: 16px 26px; font-size: 15px; }
.mc-quick__sep {
  position: relative; text-align: center; margin: 20px 0 0;
  color: var(--muted); font-size: 13px;
}
.mc-quick__sep::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: var(--border);
}
.mc-quick__sep span { position: relative; padding: 0 14px; background: #fff; }

/* Steps */
.mc-steps {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px; gap: 0;
}
.mc-steps__line {
  position: absolute; top: 16px; left: 16.66%; right: 16.66%; height: 3px;
  background: var(--border); border-radius: 2px; z-index: 0;
}
.mc-steps__line i {
  display: block; height: 100%; width: 0%;
  background: var(--grad); border-radius: 2px;
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.mc-step { position: relative; z-index: 1; text-align: center; }
.mc-step b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--border);
  color: var(--muted); font-weight: 800; font-size: 14px;
  transition: all .3s;
  margin-bottom: 8px;
}
.mc-step span { display: block; font-size: 12px; font-weight: 600; color: var(--muted); }
.mc-step.active b { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 20px -5px rgba(45,124,179,0.55); transform: scale(1.1); }
.mc-step.active span { color: var(--ink); }
.mc-step.done b { background: var(--green-2); color: #fff; border-color: transparent; }
.mc-step.done b::before { content: '✓'; font-size: 18px; }
.mc-step.done b > * { display: none; }

/* Panels */
.mc-panel { display: none; animation: panelIn .4s ease-out; }
.mc-panel.active { display: block; }
@keyframes panelIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

.mc-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px; }
.mc-field { display: flex; flex-direction: column; gap: 6px; }
.mc-field--full { grid-column: 1 / -1; }
.mc-field label { font-size: 13px; font-weight: 600; color: var(--muted); }
.mc-field input[type="text"], .mc-field input[type="number"], .mc-field input[type="email"], .mc-field input[type="tel"], .mc-field select {
  padding: 13px 16px; border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; font-weight: 500; font-family: inherit;
  background: #f7faf8; outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.mc-field input:focus, .mc-field select:focus {
  border-color: var(--green-2); background: #fff;
  box-shadow: 0 0 0 4px rgba(45,124,179,0.12);
}
.mc-field label b { color: var(--green-2); font-weight: 800; }

/* Slider */
.mc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 4px;
  background: linear-gradient(to right, var(--green-1) 0%, var(--green-1) 40%, var(--border) 40%);
  outline: none; cursor: pointer;
}
.mc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--green-2);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); cursor: grab;
  transition: transform .2s;
}
.mc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.mc-slider::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 3px solid var(--green-2); cursor: grab; }
.mc-slider__ticks { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 6px; }

/* KBM */
.mc-kbm { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.kbm-btn {
  padding: 10px 18px; border: 1.5px solid var(--border); border-radius: 10px;
  background: #f7faf8; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.kbm-btn:hover { border-color: var(--green-2); }
.kbm-btn.active {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 8px 20px -5px rgba(45,124,179,0.5);
}
.kbm-btn--unknown { background: transparent; color: var(--muted); font-weight: 500; }

.mc-hint { font-size: 12px; color: var(--muted); line-height: 1.45; }

.mc-checkbox { display: flex; gap: 10px; align-items: center; font-size: 14px; font-weight: 500; color: var(--ink-2); cursor: pointer; }
.mc-checkbox input { width: 20px; height: 20px; accent-color: var(--green-2); cursor: pointer; }

/* Price range preview */
.mc-pricerange {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: 12px;
  background: linear-gradient(90deg, rgba(45,124,179,0.08), rgba(26,61,128,0.04));
  border: 1px dashed rgba(26,61,128,0.3);
  margin-bottom: 14px;
  font-size: 13px;
}
.mc-pricerange b { color: var(--green-2); font-size: 17px; font-weight: 800; }

.mc-next, .mc-calc-btn { position: relative; overflow: hidden; }
.mc-calc-btn { font-size: 17px; padding: 18px 26px; font-weight: 800; letter-spacing: 0.02em; }
.mc-calc-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shineBtn 2.8s infinite;
}
@keyframes shineBtn { to { transform: translateX(100%); } }

.mc-back { background: none; border: none; color: var(--muted); font-size: 13px; font-weight: 500; margin-top: 12px; cursor: pointer; padding: 6px 0; }
.mc-back:hover { color: var(--green-2); }

.mcalc__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }
.mcalc__note a { color: var(--green-2); text-decoration: underline; }

/* RESULT panel */
.mc-result {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(45,124,179,0.25);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.mc-state { display: none; }
.mc-state.active { display: block; animation: panelIn .4s ease-out; }
.mc-state__icon { width: 80px; height: 80px; margin: 0 auto 20px; }
.mc-state__icon svg { width: 100%; height: 100%; }
.spin-slow { animation: spin 12s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.mc-state--idle h3, .mc-state--loading h3, .mc-state--done h4 {
  font-size: 22px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 8px;
}
.mc-state--idle p, .mc-state--loading p { text-align: center; color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }

.mc-bonus-list { display: flex; flex-direction: column; gap: 10px; }
.mc-bonus-list li {
  padding: 12px 16px; background: rgba(255,255,255,0.05);
  border-radius: 12px; color: rgba(255,255,255,0.9); font-weight: 500; font-size: 14px;
  border: 1px solid rgba(45,124,179,0.15);
}

.mc-promo {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px; padding: 14px 16px;
  background: linear-gradient(90deg, rgba(45,124,179,0.18), rgba(26,61,128,0.05));
  border: 1.5px dashed var(--green-1);
  border-radius: 14px;
}
.mc-promo__tag { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; color: var(--green-1); text-transform: uppercase; }
.mc-promo b { font-family: ui-monospace, Menlo, monospace; font-size: 18px; color: #fff; letter-spacing: 0.1em; padding: 4px 10px; background: rgba(0,0,0,0.3); border-radius: 6px; }
.mc-promo > span:last-child { color: rgba(255,255,255,0.8); font-size: 13px; margin-left: auto; }

/* Loading state */
.mc-pulse-text { animation: pulseTxt 1.5s ease-in-out infinite; }
@keyframes pulseTxt { 50% { opacity: 0.5; } }
.mc-progress { height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.mc-progress__bar { height: 100%; width: 0%; background: var(--grad); border-radius: 3px; transition: width .3s; box-shadow: 0 0 16px var(--green-1); }
.mc-check-list { display: flex; flex-direction: column; gap: 8px; max-height: 280px; overflow-y: auto; }
.mc-check-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
  font-size: 14px; color: rgba(255,255,255,0.85);
  animation: slideInLi .3s ease-out;
}
@keyframes slideInLi { from { opacity: 0; transform: translateX(-10px); } to { opacity: 1; transform: none; } }
.mc-check-list li .mcci { width: 18px; height: 18px; border-radius: 50%; background: var(--green-1); display: inline-flex; align-items: center; justify-content: center; color: #0a1a12; font-weight: 900; font-size: 12px; flex-shrink: 0; }
.mc-check-list li .mcci--pending { background: rgba(255,255,255,0.2); animation: pending 1s linear infinite; }
@keyframes pending { 50% { background: var(--green-1); } }
.mc-check-list li b { color: #fff; margin-left: auto; font-weight: 700; }

/* Gauge */
.mc-gauge { position: relative; margin: 0 -8px 24px; }
.mc-gauge__svg { width: 100%; height: auto; display: block; }
.mc-gauge__arc { transition: stroke-dashoffset 1.5s cubic-bezier(.2,.8,.2,1); filter: drop-shadow(0 0 10px rgba(45,124,179,0.6)); }
.mc-gauge__needle { transform-origin: 110px 110px; transform: rotate(-90deg); transition: transform 1.5s cubic-bezier(.2,.8,.2,1); }
.mc-gauge__content { text-align: center; margin-top: -16px; }
.mc-gauge__content > span:first-child { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.mc-gauge__content b { display: block; font-size: 44px; font-weight: 800; color: #fff; letter-spacing: -0.03em; margin: 4px 0; font-variant-numeric: tabular-nums; }
.mc-gauge__save { display: inline-block; padding: 4px 12px; border-radius: 999px; background: rgba(45,124,179,0.15); border: 1px solid var(--green-1); color: var(--green-1); font-size: 13px; font-weight: 700; }

/* Insurer list */
.mc-list-title { margin: 24px 0 12px; }
.mc-insurers { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.mc-ins {
  display: grid; grid-template-columns: 40px 1fr auto; gap: 12px; align-items: center;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .2s, border-color .2s;
  cursor: pointer;
}
.mc-ins:hover { transform: translateX(4px); border-color: var(--green-1); }
.mc-ins--best {
  background: linear-gradient(90deg, rgba(45,124,179,0.15), rgba(45,124,179,0.02));
  border-color: var(--green-1);
  box-shadow: 0 10px 24px -10px rgba(45,124,179,0.4);
}
.mc-ins__logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px;
}
.mc-ins__info b { display: block; font-size: 14px; color: #fff; font-weight: 700; margin-bottom: 2px; }
.mc-ins__info span { font-size: 11px; color: rgba(255,255,255,0.6); }
.mc-ins__price { text-align: right; }
.mc-ins__price b { display: block; font-size: 18px; color: #fff; font-weight: 800; font-variant-numeric: tabular-nums; }
.mc-ins__price .tag { font-size: 10px; padding: 2px 8px; border-radius: 999px; background: var(--green-1); color: #0a1a12; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.mc-ins__price .tag--warn { background: #ff8a65; color: #fff; }

.mc-cta { font-size: 17px; padding: 18px 26px; font-weight: 800; }
.mc-save-strip {
  margin-top: 12px; text-align: center; font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.mc-save-strip b { color: var(--green-1); font-weight: 800; font-size: 15px; }

/* Confetti */
.mc-confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mc-confetti i {
  position: absolute; top: -20px; width: 8px; height: 12px;
  animation: confettiFall 2.8s ease-out forwards;
  opacity: 0;
}
@keyframes confettiFall {
  0% { opacity: 0; transform: translateY(0) rotate(0); }
  10% { opacity: 1; }
  100% { opacity: 0; transform: translateY(500px) rotate(720deg); }
}

/* Ticker */
.mc-ticker {
  margin-top: 28px; padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.mc-ticker__track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: tickerMove 45s linear infinite;
  width: max-content;
}
.mc-ticker__track span { font-size: 14px; color: rgba(255,255,255,0.75); }
.mc-ticker__track b { color: var(--green-1); font-weight: 700; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Trust row */
.mc-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.mc-trust__item {
  padding: 20px; border-radius: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.mc-trust__ic {
  width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 12px;
  background: rgba(45,124,179,0.12); color: var(--green-1);
  display: flex; align-items: center; justify-content: center;
}
.mc-trust__ic svg { width: 22px; height: 22px; }
.mc-trust__item b { display: block; color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.mc-trust__item span { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.45; }

@media (max-width: 1000px) {
  .mcalc__main { grid-template-columns: 1fr; }
  .mcalc__tabs { max-width: none; }
  .mc-trust { grid-template-columns: 1fr 1fr; }
  .mc-fields { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mcalc { padding: 60px 0; }
  .mcalc__live-bar { gap: 8px; }
  .live-chip { padding: 6px 12px; font-size: 12px; }
  .mc-form, .mc-result { padding: 20px; }
  .mc-tab { flex-direction: column; align-items: flex-start; padding: 14px; }
  .mc-tab svg { display: none; }
  .mc-trust { grid-template-columns: 1fr; }
  .mc-quick__row { flex-direction: column; }
  .plate-input { width: 100%; }
  .mc-gauge__content b { font-size: 34px; }
}

/* Floating Action Button (call) */
.fab { position: fixed; right: 24px; bottom: 24px; z-index: 120; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.fab__main {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--grad); color: #fff;
  box-shadow: 0 20px 40px -10px rgba(26,61,128,0.55), 0 0 0 0 rgba(45,124,179,0.6);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform .3s cubic-bezier(.2,.8,.2,1);
  animation: fabPulse 2.2s ease-out infinite;
  border: none; outline: none;
}
.fab__main:hover { transform: scale(1.08); }
.fab__main svg { width: 28px; height: 28px; fill: currentColor; }
.fab__main .icon-close { display: none; }
.fab.open .fab__main { transform: rotate(135deg); animation: none; }
.fab.open .fab__main .icon-phone { display: none; }
.fab.open .fab__main .icon-close { display: block; }
@keyframes fabPulse {
  0% { box-shadow: 0 20px 40px -10px rgba(26,61,128,0.55), 0 0 0 0 rgba(45,124,179,0.6); }
  70% { box-shadow: 0 20px 40px -10px rgba(26,61,128,0.55), 0 0 0 20px rgba(45,124,179,0); }
  100% { box-shadow: 0 20px 40px -10px rgba(26,61,128,0.55), 0 0 0 0 rgba(45,124,179,0); }
}
.fab__menu { display: flex; flex-direction: column; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.9); transform-origin: bottom right; transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), visibility .25s; }
.fab.open .fab__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.fab__item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 14px; border-radius: 999px;
  background: #fff; color: var(--ink); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.fab__item:hover { transform: translateX(-4px); box-shadow: var(--shadow-lg); }
.fab__item svg { width: 22px; height: 22px; border-radius: 50%; }
.fab__item--whatsapp svg { background: var(--accent); padding: 4px; color: #fff; }
.fab__item--telegram svg { background: var(--green-1); padding: 4px; color: #fff; }
.fab__item--instagram svg { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); padding: 4px; color: #fff; }
.fab__item--phone svg { background: var(--green-2); padding: 4px; color: #fff; }
.fab__item--viber svg { background: #7360f2; padding: 4px; color: #fff; }
.fab__item--email svg { background: var(--accent-dark); padding: 4px; color: #fff; }

@media (max-width: 520px) {
  .fab { right: 16px; bottom: 16px; }
  .fab__main { width: 56px; height: 56px; }
}

/* Toast */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(120%);
  background: var(--ink); color: #fff; padding: 14px 24px; border-radius: 999px;
  box-shadow: var(--shadow-lg); transition: transform .4s ease; z-index: 100;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ======= CRASH + REVIEWS SCENE ======= */
.crash { background: #fff; padding: 90px 0; }
.crash-scene {
  position: relative;
  height: 460px;
  margin-top: 0;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(to bottom, #c8f0d4 0%, #e8f8ed 55%, #d4e8da 55%, #d4e8da 100%);
  box-shadow: var(--shadow-lg);
  animation: sceneShake 9s ease-in-out infinite;
  border: 1px solid var(--border);
  width: 100%;
}
.hero__visual--crash { width: 100%; min-height: auto; align-items: stretch; justify-content: stretch; }
.hero-crash-badge {
  position: absolute; top: 14px; left: 14px; z-index: 10;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(10,26,18,0.8); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  backdrop-filter: blur(4px);
}
.hero { padding: 50px 0 70px; }
@media (max-width: 960px) { .crash-scene { height: 380px; } }

@keyframes sceneShake {
  0%, 44%, 56%, 100% { transform: translate(0, 0); }
  45% { transform: translate(-6px, 3px); }
  46% { transform: translate(6px, -3px); }
  47% { transform: translate(-5px, 2px); }
  48% { transform: translate(5px, -2px); }
  49% { transform: translate(-3px, 1px); }
  50% { transform: translate(3px, -1px); }
  52% { transform: translate(-2px, 1px); }
  54% { transform: translate(1px, 0); }
}

.sky { position: absolute; inset: 0 0 45% 0; background: linear-gradient(to bottom, #a8e6b8, #d4f0dc); }

.clouds { position: absolute; inset: 0; pointer-events: none; }
.cloud {
  position: absolute; display: block;
  width: 90px; height: 30px;
  background: #fff; border-radius: 40px;
  box-shadow: 30px -12px 0 -5px #fff, -25px -8px 0 -3px #fff;
  opacity: 0.85;
  animation: cloudDrift 18s linear infinite;
}
.cloud--1 { top: 40px; left: -120px; animation-delay: 0s; }
.cloud--2 { top: 90px; left: -120px; animation-delay: -6s; transform: scale(0.7); opacity: 0.7; }
.cloud--3 { top: 25px; left: -120px; animation-delay: -12s; transform: scale(1.2); }
@keyframes cloudDrift { to { left: 110%; } }

.city {
  position: absolute; left: 0; right: 0;
  width: 100%; z-index: 0; pointer-events: none;
}
.city--back {
  bottom: 45%;
  height: 130px;
  opacity: 0.55;
  filter: blur(0.4px);
  animation: cityDrift 60s linear infinite alternate;
}
.city--front {
  bottom: 45%;
  height: 180px;
  filter: drop-shadow(0 -2px 8px rgba(0,0,0,0.15));
  animation: cityDrift 45s linear infinite alternate-reverse;
}
@keyframes cityDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(-3%); }
}
/* Window lights flicker */
.city--front g:last-child rect {
  animation: winFlicker 3.5s ease-in-out infinite;
}
.city--front g:last-child rect:nth-child(3n) { animation-delay: .6s; }
.city--front g:last-child rect:nth-child(4n) { animation-delay: 1.2s; }
.city--front g:last-child rect:nth-child(5n) { animation-delay: 1.8s; }
.city--front g:last-child rect:nth-child(7n) { animation-delay: 2.4s; }
@keyframes winFlicker {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.55; }
}

.road {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
  border-top: 5px solid #2d7cb3;
}
.road__dashes {
  position: absolute; top: 50%; left: 0; right: 0; height: 5px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #fff 0 40px, transparent 40px 80px);
  animation: dash 0.5s linear infinite;
}
@keyframes dash { to { background-position: -80px 0; } }

.car, .vehicle {
  position: absolute;
  bottom: 16%;
  width: 240px;
  height: 120px;
  z-index: 2;
}

/* Counter-mirror text on right vehicle (so truck brand reads correctly) */
.vehicle--right svg text {
  transform: scaleX(-1);
  transform-box: fill-box;
  transform-origin: center;
}

/* Only FRONT wheel disappears at impact — it flies off */
.vehicle svg circle[cx="152"][r="14"],
.vehicle svg circle[cx="152"][r="6"],
.vehicle svg circle[cx="152"][r="3"],
.vehicle svg circle[cx="185"][r="14"],
.vehicle svg circle[cx="185"][r="5"] {
  transform-origin: center; transform-box: fill-box;
  animation: wheelsOff 9s cubic-bezier(.4,0,.6,1) infinite;
}
@keyframes wheelsOff {
  0%, 43%  { opacity: 1; transform: scale(1); }
  45%      { opacity: 0; transform: scale(0.2); }
  100%     { opacity: 0; transform: scale(0); }
}

/* Vehicle damage — hidden before impact, visible after */
.vehicle svg .veh-damage { opacity: 0; animation: dmgShow 9s ease-out infinite; }
@keyframes dmgShow {
  0%, 43% { opacity: 0; }
  46%     { opacity: 1; }
  90%     { opacity: 1; }
  100%    { opacity: 0; }
}
.vehicle svg .veh-damage__hood {
  transform-box: fill-box; transform-origin: 0% 100%;
  animation: hoodPop 9s ease-out infinite;
}
@keyframes hoodPop {
  0%, 43% { transform: skewX(0) scaleY(0.5) translateY(8px); }
  46%     { transform: skewX(-4deg) scaleY(1.1) translateY(-2px); }
  60%     { transform: skewX(-3deg) scaleY(1) translateY(0); }
  100%    { transform: skewX(-3deg) scaleY(1); }
}
.vehicle svg .veh-damage__smoke {
  transform-box: fill-box; transform-origin: center;
  animation: vehSmoke 9s ease-out infinite;
}
.vehicle svg .s1 { animation-delay: 0s; }
.vehicle svg .s2 { animation-delay: .25s; }
.vehicle svg .s3 { animation-delay: .5s; }
.vehicle svg .s4 { animation-delay: .75s; }
@keyframes vehSmoke {
  0%, 43% { opacity: 0; transform: translate(0, 30px) scale(0); }
  47%     { opacity: 0.85; transform: translate(0, 0) scale(1); }
  75%     { opacity: 0.45; transform: translate(-4px, -20px) scale(1.45); }
  100%    { opacity: 0; transform: translate(-10px, -40px) scale(2); }
}

/* Impact cracks overlay */
.crack-overlay {
  position: absolute; top: 58%; left: 50%;
  width: 180px; height: 80px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0; z-index: 3; pointer-events: none;
  animation: crackShow 9s ease-out infinite;
}
.crack-overlay path { stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; }
@keyframes crackShow {
  0%, 43% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  46% { opacity: 1; transform: translate(-50%, -50%) scale(1.25); }
  56% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  85% { opacity: 0.85; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
}
.car-svg { width: 100%; height: 100%; display: block; overflow: visible; }
.car-svg--wide { width: 120%; }

.vehicle--left {
  left: 0;
  animation: driveLeft 9s ease-in-out infinite;
}
.vehicle--right {
  right: 0;
  transform: scaleX(-1);
  animation: driveRight 9s ease-in-out infinite;
}

/* Cars accelerate on approach → bumpers meet → brief lift → settle flat → fade */
@keyframes driveLeft {
  0%     { left: -35%; opacity: 0; transform: rotate(0) translate(0,0); animation-timing-function: ease-in; }
  5%     { opacity: 1; animation-timing-function: cubic-bezier(.55,.05,.9,.3); }
  40%    { left: calc(50% - 230px); transform: rotate(0) translate(0,0); animation-timing-function: cubic-bezier(.4,0,.8,.4); }
  /* IMPACT */
  42%    { left: calc(50% - 215px); transform: rotate(-2deg) translate(0,-4px) scaleY(0.9); }
  45%    { left: calc(50% - 238px); transform: rotate(4deg) translate(-8px, 0) scaleY(1.03); }
  /* Small lift, then falls back flat */
  50%    { left: calc(50% - 248px); transform: rotate(-5deg) translate(-12px, -3px); }
  58%    { left: calc(50% - 255px); transform: rotate(-2deg) translate(-16px, 0); }
  68%    { left: calc(50% - 258px); transform: rotate(0deg) translate(-18px, 2px); }
  90%    { left: calc(50% - 258px); transform: rotate(0deg) translate(-18px, 2px); opacity: 1; }
  100%   { left: calc(50% - 258px); transform: rotate(0deg) translate(-18px, 2px); opacity: 0; }
}
@keyframes driveRight {
  0%     { right: -35%; opacity: 0; transform: scaleX(-1) rotate(0) translate(0,0); animation-timing-function: ease-in; }
  5%     { opacity: 1; animation-timing-function: cubic-bezier(.55,.05,.9,.3); }
  40%    { right: calc(50% - 230px); transform: scaleX(-1) rotate(0); animation-timing-function: cubic-bezier(.4,0,.8,.4); }
  42%    { right: calc(50% - 215px); transform: scaleX(-1) rotate(-2deg) translate(0,-4px) scaleY(0.9); }
  45%    { right: calc(50% - 238px); transform: scaleX(-1) rotate(4deg) translate(-8px, 0) scaleY(1.03); }
  50%    { right: calc(50% - 248px); transform: scaleX(-1) rotate(6deg) translate(-12px, -3px); }
  58%    { right: calc(50% - 255px); transform: scaleX(-1) rotate(3deg) translate(-16px, 0); }
  68%    { right: calc(50% - 258px); transform: scaleX(-1) rotate(0deg) translate(-18px, 2px); }
  90%    { right: calc(50% - 258px); transform: scaleX(-1) rotate(0deg) translate(-18px, 2px); opacity: 1; }
  100%   { right: calc(50% - 258px); transform: scaleX(-1) rotate(0deg) translate(-18px, 2px); opacity: 0; }
}

/* Wheels flying off after impact — identical to car wheels */
.fly-wheel {
  position: absolute;
  top: 62%; left: 50%;
  width: 34px; height: 34px;
  opacity: 0;
  z-index: 4;
  animation: flyWheel 9s cubic-bezier(.3,.1,.6,1) infinite;
  filter: drop-shadow(0 4px 4px rgba(0,0,0,0.35));
}
.fly-wheel svg { width: 100%; height: 100%; display: block; }
.fly-wheel--1 { --tx: -270px; --r1: -240deg; --r2: -720deg; --r3: -960deg; }
.fly-wheel--2 { --tx: 270px;  --r1: 240deg;  --r2: 720deg;  --r3: 960deg; }
.fly-wheel--3 { --tx: -150px; --r1: -360deg; --r2: -800deg; --r3: -1080deg; top: 58%; }
@keyframes flyWheel {
  0%, 42% { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
  44%     { opacity: 1; transform: translate(-50%, -50%) rotate(0); }
  55%     { transform: translate(calc(-50% + var(--tx) * 0.35), -90px) rotate(var(--r1)); opacity: 1; }
  70%     { transform: translate(calc(-50% + var(--tx) * 0.7), 10px) rotate(var(--r2)); opacity: 1; }
  85%     { transform: translate(calc(-50% + var(--tx)), 80px) rotate(var(--r3)); opacity: 1; }
  95%     { opacity: 0; transform: translate(calc(-50% + var(--tx) * 1.1), 100px) rotate(var(--r3)); }
  100%    { opacity: 0; }
}

/* Debris flying out and landing on road */
.debris {
  position: absolute;
  top: 55%; left: 50%;
  width: 14px; height: 5px;
  background: #fff;
  border-radius: 1px;
  opacity: 0;
  z-index: 3;
  animation: debrisFall 9s cubic-bezier(.3,0,.55,.9) infinite;
  transform-origin: center;
}
@keyframes debrisFall {
  0%, 42%  { opacity: 0; transform: translate(-50%, -50%) rotate(0); }
  43%      { opacity: 1; transform: translate(-50%, -50%) rotate(0); }
  50%      { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.5), calc(-50% - 70px)) rotate(var(--r1)); }
  66%      { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.85), 30px) rotate(var(--r2)); }
  74%, 90% { opacity: 0.9; transform: translate(calc(-50% + var(--tx)), 70px) rotate(var(--r3)); }
  100%     { opacity: 0; transform: translate(calc(-50% + var(--tx)), 70px) rotate(var(--r3)); }
}
.debris--1 { --tx: -150px; --r1: -30deg; --r2: -120deg; --r3: -180deg; background: var(--left-col, #1a3d80); width: 18px; height: 6px; }
.debris--2 { --tx: 140px;  --r1: 30deg;  --r2: 110deg;  --r3: 200deg; background: var(--right-col, #c62828); width: 14px; height: 4px; }
.debris--3 { --tx: -70px;  --r1: -40deg; --r2: -180deg; --r3: -260deg; background: #fff176; width: 8px;  height: 8px; border-radius: 50%; box-shadow: 0 0 6px #fff176; }
.debris--4 { --tx: 200px;  --r1: 45deg;  --r2: 140deg;  --r3: 260deg; background: var(--right-col, #1a1a1a); width: 16px; height: 5px; }
.debris--5 { --tx: -210px; --r1: -20deg; --r2: -100deg; --r3: -160deg; background: var(--left-col, #b0d4b4); width: 12px; height: 4px; }
.debris--6 { --tx: 50px;   --r1: 20deg;  --r2: 90deg;   --r3: 180deg; background: var(--left-col, #1a5c88); width: 15px; height: 5px; }
.debris--7 { --tx: -50px;  --r1: -25deg; --r2: -80deg;  --r3: -150deg; background: #c0e6ff; width: 9px;  height: 9px; border-radius: 2px; }
.debris--8 { --tx: 160px;  --r1: 35deg;  --r2: 150deg;  --r3: 230deg; background: var(--right-col, #ff5252); width: 16px; height: 5px; }
.debris--9 { --tx: -110px; --r1: -35deg; --r2: -140deg; --r3: -220deg; background: #c0e6ff; width: 12px; height: 3px; }
.debris--10{ --tx: 100px;  --r1: 25deg;  --r2: 100deg;  --r3: 190deg; background: #c0e6ff; width: 10px; height: 3px; }
/* Inner green dot of fly-wheels matches each car's color */
.fly-wheel--1 svg circle:last-of-type { fill: var(--left-col, #1a3d80); }
.fly-wheel--2 svg circle:last-of-type { fill: var(--right-col, #c62828); }
.fly-wheel--3 svg circle:last-of-type { fill: var(--left-col, #1a3d80); }

/* Smoke puff that rises from impact */
.smoke {
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: 200px; height: 100px;
  pointer-events: none;
  transform: translateX(-50%) scale(0);
  opacity: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 70%, rgba(200,200,200,0.85) 0%, transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(180,180,180,0.85) 0%, transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(220,220,220,0.8) 0%, transparent 55%);
  filter: blur(4px);
  animation: smoke 9s ease-out infinite;
}
@keyframes smoke {
  0%, 44%  { opacity: 0; transform: translateX(-50%) translateY(0) scale(0.3); }
  48%      { opacity: 0.85; transform: translateX(-50%) translateY(-6px) scale(1); }
  70%      { opacity: 0.55; transform: translateX(-50%) translateY(-24px) scale(1.3); }
  90%      { opacity: 0; transform: translateX(-50%) translateY(-50px) scale(1.6); }
  100%     { opacity: 0; }
}

/* BANG starburst */
.bang {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 3;
  animation: bangBurst 9s ease-in-out infinite;
}
.bang svg { width: 100%; height: 100%; }
.bang__text {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; font-weight: 900;
  color: #000; letter-spacing: 0.05em;
  text-shadow: 3px 3px 0 #fff;
  transform: rotate(-8deg);
}
@keyframes bangBurst {
  0%, 43% { opacity: 0; transform: translate(-50%, -50%) scale(0) rotate(-40deg); }
  46% { opacity: 1; transform: translate(-50%, -50%) scale(1.3) rotate(10deg); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(-5deg); }
  62% { opacity: 1; transform: translate(-50%, -50%) scale(1.05) rotate(0); }
  70% { opacity: 0; transform: translate(-50%, -50%) scale(1.4) rotate(5deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
}

/* Sparks / debris */
.spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-1);
  box-shadow: 0 0 10px var(--green-1);
  opacity: 0;
  z-index: 2;
}
.spark--1 { animation: spark 9s ease-out infinite; --tx: -180px; --ty: -120px; }
.spark--2 { animation: spark 9s ease-out infinite; --tx: 180px; --ty: -120px; background: #fff176; box-shadow: 0 0 10px #fff176; }
.spark--3 { animation: spark 9s ease-out infinite; --tx: -240px; --ty: -40px; }
.spark--4 { animation: spark 9s ease-out infinite; --tx: 240px; --ty: -40px; background: #fff; box-shadow: 0 0 10px #fff; }
.spark--5 { animation: spark 9s ease-out infinite; --tx: -100px; --ty: -200px; background: #fff176; }
.spark--6 { animation: spark 9s ease-out infinite; --tx: 100px; --ty: -200px; }
@keyframes spark {
  0%, 44% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  47% { opacity: 1; transform: translate(calc(-50% + var(--tx) * 0.3), calc(-50% + var(--ty) * 0.3)) scale(1.5); }
  65% { opacity: 0; transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(0.3); }
  100% { opacity: 0; }
}

/* Single dynamic review bubble */
.review-bubble {
  position: absolute;
  top: 22%; left: 50%;
  width: 280px;
  background: #fff;
  border: 2.5px solid #000;
  border-radius: 18px;
  padding: 14px 16px 14px;
  box-shadow: 6px 6px 0 var(--green-2);
  opacity: 0;
  transform: translate(-50%, -30%) scale(0.3);
  z-index: 5;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  animation: bubbleFly 9s ease-out infinite;
  transition: transform .2s, box-shadow .2s;
}
.review-bubble:hover { transform: translate(-50%, -30%) scale(1.03); box-shadow: 8px 8px 0 var(--green-1); }
.review-bubble::after {
  content: ''; position: absolute; bottom: -12px; left: 44px;
  width: 20px; height: 20px; background: #fff;
  border-right: 2.5px solid #000; border-bottom: 2.5px solid #000;
  transform: rotate(45deg);
}
.review-bubble__stars { color: #ffc107; font-size: 15px; margin-bottom: 4px; letter-spacing: 2px; }
.review-bubble p { color: #111; margin-bottom: 6px; font-weight: 500; }
.review-bubble__author { font-size: 12px; color: var(--green-2); font-weight: 700; display: block; }
.review-bubble__more {
  display: inline-block; margin-top: 8px; font-size: 11px; color: #000;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--grad); color: #fff; padding: 4px 10px; border-radius: 999px;
}
@keyframes bubbleFly {
  0%, 46% { opacity: 0; transform: translate(-50%, 20%) scale(0.2) rotate(-15deg); }
  52%     { opacity: 1; transform: translate(-50%, -30%) scale(1.08) rotate(-3deg); }
  56%     { opacity: 1; transform: translate(-50%, -30%) scale(1) rotate(0deg); }
  88%     { opacity: 1; transform: translate(-50%, -30%) scale(1) rotate(0deg); }
  95%     { opacity: 0; transform: translate(-50%, -50%) scale(0.92); }
  100%    { opacity: 0; }
}

/* Round indicator pills */
.round-indicator {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 6;
}
.round-indicator span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.3); transition: background .3s, transform .3s;
}
.round-indicator span.active { background: var(--green-1); transform: scale(1.4); box-shadow: 0 0 8px var(--green-1); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.modal[hidden] { display: none; }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10,20,15,0.7); backdrop-filter: blur(6px); cursor: pointer; }
.modal__dialog {
  position: relative; background: #fff; border-radius: 24px; padding: 44px 40px 34px;
  max-width: 580px; width: calc(100% - 32px); max-height: 85vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.85) translateY(20px); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--border);
}
.modal.open .modal__dialog { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: #f2f5f3; color: #111; font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
}
.modal__close:hover { background: #000; color: var(--green-1); transform: rotate(90deg); }
.modal__stars { color: #ffc107; font-size: 22px; letter-spacing: 4px; margin-bottom: 12px; }
.modal__title { font-size: 24px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; letter-spacing: -0.01em; }
.modal__body { color: var(--ink-2); font-size: 15px; line-height: 1.7; margin-bottom: 22px; white-space: pre-line; }
.modal__meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 14px; gap: 12px; flex-wrap: wrap; }
.modal__author { font-weight: 700; color: var(--green-2); }

@media (max-width: 960px) {
  .crash-scene { height: 480px; }
  .car { width: 170px; height: 85px; }
  .review-bubble { width: 200px; font-size: 12px; }
  .bang { width: 160px; height: 160px; }
  .bang__text { font-size: 32px; }
}
@media (max-width: 640px) {
  .crash-scene { height: 420px; }
  .car { width: 130px; height: 65px; }
  .review-bubble { width: 160px; padding: 10px 12px; font-size: 11px; }
  .review-bubble p { -webkit-line-clamp: 3; }
  .bang { width: 120px; height: 120px; }
  .bang__text { font-size: 22px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .crash-scene, .car--left, .car--right, .bang, .spark, .review-bubble, .road__dashes, .cloud {
    animation: none !important;
  }
  .review-bubble { opacity: 1; transform: translate(-50%, -50%) scale(0.95); position: relative; display: inline-block; margin: 10px; top: auto; left: auto; }
}

/* ======= PERSONAL CABINET SECTION ======= */
.cabinet { background: linear-gradient(180deg, #fff 0%, #f2faf5 100%); padding: 100px 0; }
.cabinet__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; }
.cabinet__features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin: 32px 0 32px; }
.cabinet__features li { display: flex; gap: 14px; align-items: flex-start; }
.cabinet__features b { display: block; margin-bottom: 4px; font-weight: 700; font-size: 15px; }
.cabinet__features p { font-size: 13px; color: var(--muted); line-height: 1.5; }
.cabinet__features .accent { color: var(--green-2); font-weight: 800; }
.cabinet__icon {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(45,124,179,.12);
  display: flex; align-items: center; justify-content: center;
}
.cabinet__icon svg { width: 22px; height: 22px; stroke: var(--green-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cabinet__icon--soon { background: #000; }
.cabinet__icon--soon svg { stroke: var(--green-1); }
.badge {
  display: inline-block; margin-left: 6px; padding: 2px 8px; border-radius: 999px;
  background: var(--grad); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.03em;
  vertical-align: middle;
}
.cabinet__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Phone mockup */
.cabinet__mockup { display: flex; justify-content: center; align-items: center; }
.phone {
  width: 300px; height: 600px;
  background: #0a0a0a; border-radius: 40px; padding: 14px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4), inset 0 0 0 2px #222;
  position: relative;
  transform: rotate(-4deg);
  transition: transform .5s ease;
}
.phone:hover { transform: rotate(0); }
.phone::before {
  content: ''; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 22px; background: #0a0a0a; border-radius: 12px; z-index: 2;
}
.phone__screen {
  width: 100%; height: 100%; background: linear-gradient(180deg, #e8f7ee 0%, #fff 100%);
  border-radius: 28px; padding: 44px 18px 20px; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
}
.phone__bar { display: flex; gap: 6px; justify-content: center; margin-bottom: 4px; }
.phone__bar span { width: 30px; height: 4px; border-radius: 2px; background: #cfe4d4; }
.phone__bar span:first-child { background: var(--green-2); width: 40px; }
.phone__logo { display: flex; align-items: center; font-weight: 800; font-size: 15px; justify-content: center; }
.phone__logo .logo__badge { font-size: 12px; padding: 3px 7px; }
.phone__card {
  background: #fff; border-radius: 14px; padding: 14px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 4px;
}
.phone__label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.phone__num { font-weight: 700; font-size: 17px; letter-spacing: 0.05em; color: var(--ink); font-family: ui-monospace, Menlo, monospace; }
.phone__bar-progress { height: 6px; background: #e4ece7; border-radius: 3px; overflow: hidden; margin-top: 6px; }
.phone__bar-progress i { display: block; height: 100%; width: 82%; background: var(--grad); animation: barFill 2.5s ease-out infinite alternate; }
@keyframes barFill { from { width: 70%; } to { width: 92%; } }
.phone__hint { font-size: 11px; color: var(--green-2); font-weight: 600; }
.phone__card--alt b { font-size: 14px; }
.phone__notify {
  display: flex; align-items: center; gap: 8px;
  background: #000; color: #fff; border-radius: 14px; padding: 12px 14px;
  font-size: 13px; font-weight: 500;
  animation: pulse 2s ease-in-out infinite;
}
.phone__notify-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-1); box-shadow: 0 0 8px var(--green-1); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

@media (max-width: 960px) {
  .cabinet__grid { grid-template-columns: 1fr; gap: 40px; }
  .cabinet__features { grid-template-columns: 1fr; }
  .phone { transform: rotate(0); }
}

/* Page hero (inner pages) */
.page-hero { padding: 70px 0 80px; overflow: hidden; position: relative; }
.page-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.page-hero h1 { font-size: clamp(32px, 4.5vw, 54px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 800; margin: 18px 0 20px; }

/* Cookie banner */
.cookie-banner {
  z-index: 200;
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 1100px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 20px; z-index: 90;
  transform: translateY(160%); transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner__text { flex: 1; font-size: 14px; color: var(--ink-2); line-height: 1.55; }
.cookie-banner__text a { color: var(--green-2); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 720px) {
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px; left: 12px; right: 12px; }
  .cookie-banner__actions { justify-content: flex-end; }
}

/* Privacy page */
.page { padding: 60px 0 100px; background: #fff; }
.page__title { font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.page__meta { color: var(--muted); margin-bottom: 40px; }
.prose { max-width: 820px; font-size: 16px; color: var(--ink-2); }
.prose h2 { font-size: 24px; font-weight: 700; margin: 36px 0 12px; letter-spacing: -0.01em; }
.prose h3 { font-size: 18px; font-weight: 600; margin: 24px 0 8px; }
.prose p, .prose li { margin-bottom: 10px; line-height: 1.7; }
.prose ul { padding-left: 22px; list-style: disc; margin-bottom: 12px; }
.prose a { color: var(--green-2); text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-2); font-weight: 600; margin-bottom: 24px; }

/* Responsive */
@media (max-width: 960px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .hero__grid, .page-hero__grid, .calc__wrap, .about__grid, .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid, .services__grid--3, .steps__grid, .contacts__grid, .footer__cols, .about__stats { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 50px 0 70px; }
  .hero__visual { min-height: 340px; }
  .blob { width: 320px; height: 320px; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 24px; border-bottom: 1px solid var(--border); gap: 16px; }
}
@media (max-width: 520px) {
  .hero__facts { gap: 24px; }
  .service, .step, .form, .contact-card { padding: 24px; }
  .footer__cols { grid-template-columns: 1fr; }
}

.nav-login {
  padding: 8px 18px; border-radius: 999px; border: none !important;
  background: var(--grad); color: #fff !important; font-weight: 700 !important;
  font-size: 13px !important; letter-spacing: 0.02em;
  box-shadow: 0 8px 20px -6px rgba(26,61,128,0.4);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-login:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(58,156,135,0.5); color: #fff !important; }
@media (max-width: 960px) { .nav-login { display: none; } .nav.open .nav-login { display: inline-flex; } }

/* ===== Arctic-green accents (from logo) ===== */
.live-dot { background: var(--accent) !important; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(58,156,135,0.8); } 70% { box-shadow: 0 0 0 10px rgba(58,156,135,0); } 100% { box-shadow: 0 0 0 0 rgba(58,156,135,0); } }
.mc-ins__price .tag { background: var(--accent) !important; color: #fff !important; }
.mc-gauge__save { background: rgba(58,156,135,0.15) !important; border-color: var(--accent) !important; color: var(--accent-light) !important; }
.mc-ins--best { border-color: var(--accent) !important; box-shadow: 0 10px 24px -10px rgba(58,156,135,0.5) !important; }
.badge { background: linear-gradient(90deg, var(--accent-light), var(--accent)) !important; }
.mc-save-strip b { color: var(--accent-light) !important; }
.live-chip b { color: var(--accent-light) !important; }
.contact-card__value, .link-arrow { color: var(--accent-dark) !important; }
.link-arrow:hover { color: var(--accent) !important; }
.mc-check-list li .mcci { background: var(--accent) !important; color: #fff !important; }
.cab-stat.ok b, .cab-stat.green b { color: var(--accent-dark) !important; }
.status.active { background: rgba(58,156,135,0.15) !important; color: var(--accent-dark) !important; }
.adm-tag.active { background: rgba(58,156,135,0.2) !important; color: var(--accent-light) !important; border-color: var(--accent) !important; }






/* === АрктикаФинанс SVG-лого (−30% от предыдущего) === */
.logo__img { height: 90px; width: auto; display: block; background: transparent; object-fit: contain; }
.logo--light .logo__img { height: 80px; background: transparent; padding: 0; box-shadow: none; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)) brightness(1.08); }
@media (max-width: 960px) { .logo__img { height: 70px; } .header__inner { min-height: 88px; } }
}
@media (max-width: 640px) { .logo__img { height: 54px; } .header__inner { min-height: 74px; } }
}

.phone__logo-img { height: 35px; width: auto; display: block; margin: 0 auto; object-fit: contain; }


/* === Logo polish === */
.header__inner .logo { padding-left: 14px; }
@media (max-width: 960px) { .header__inner .logo { padding-left: 8px; } }

/* Phone mockup logo — force 30% smaller */
.phone__logo { padding: 6px 0 !important; }
.phone__logo-img { height: 35px !important; width: auto !important; max-width: 70% !important; object-fit: contain !important; display: block !important; margin: 0 auto !important; }

/* Move FAB up while cookie consent is shown (has :not([hidden])) */
.cookie-banner:not([hidden]) ~ .fab { bottom: 140px; transition: bottom .3s; }
@media (max-width: 720px) {
  .cookie-banner:not([hidden]) ~ .fab { bottom: 200px; }
}
