/* ColdSolutions — electric blue + ice cyan on deep navy.
   Devices: chrome skewed plates (logo wordmark), ice facets + frost glow (logo snowflake).
   Fonts: Anton (display, skewed) + Hanken Grotesk (body). */

:root {
  /* Brand */
  --color-blue: #053CF7;
  --color-blue-hover: #0530C4;
  --color-cyan: #31FBED;
  --color-cyan-hover: #6FFCF2;
  --color-ink: #0A0F2E;          /* deep navy ground */
  --color-ink-2: #131C4D;        /* raised navy surface */
  --color-ink-3: #060A20;        /* darkest (legal footer) */

  /* Surfaces */
  --color-bg: #FFFFFF;
  --color-surface: #F4F6FB;

  /* Text */
  --color-text: #1F2937;
  --color-text-light: #59627A;
  --color-on-dark: #FFFFFF;
  --color-on-dark-muted: rgba(233, 240, 255, 0.82);

  /* Borders */
  --color-border: #E3E8F2;
  --color-border-dark: rgba(255, 255, 255, 0.10);

  /* Google */
  --color-google-star: #FBBC04;

  /* Type */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Hanken Grotesk', 'Segoe UI', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-pad: 96px;
  --gap: 26px;
  --radius: 10px;
  --radius-sm: 6px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --speed-fast: 0.22s;
  --speed: 0.4s;
  --speed-slow: 0.75s;

  /* Shadows (offset + blur, never halo) */
  --shadow-sm: 0 2px 10px rgba(10, 15, 46, 0.08);
  --shadow-md: 0 10px 28px rgba(10, 15, 46, 0.13);
  --shadow-lg: 0 22px 52px rgba(10, 15, 46, 0.18);
  --drop-plate: drop-shadow(0 6px 14px rgba(10, 15, 46, 0.28));

  /* Plates */
  --plate-cut: 10px;

  /* Z */
  --z-nav: 1000;
  --z-utility: 1001;
  --z-mobile-cta: 1100;
}

/* ============ Reset & base ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
p a { color: var(--color-blue); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
p a:hover { color: var(--color-blue-hover); }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 900px; }
.text-center { text-align: center; }
svg { display: inline-block; vertical-align: middle; }

h1, h2, h3, h4 { line-height: 1.15; }
h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.25rem; color: var(--color-ink); }

/* ============ Display type & plates ============ */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: 0.01em;
  color: var(--color-ink);
  transform: skewX(-6deg);
  margin-bottom: 18px;
}
.section-title--left { text-align: left; }
.section--dark .section-title, .band .section-title { color: var(--color-on-dark); }
.title-plate {
  display: inline-block;
  background: var(--color-blue);
  color: #fff;
  padding: 2px 14px 4px;
  clip-path: polygon(var(--plate-cut) 0, 100% 0, calc(100% - var(--plate-cut)) 100%, 0 100%);
}
.title-plate--cyan { background: var(--color-cyan); color: var(--color-ink); }
.section-lede { max-width: 640px; margin: 0 auto 8px; color: var(--color-text-light); }
.section-lede--dark { color: var(--color-on-dark-muted); }

/* ============ Buttons (plates + drop-shadow, never box-shadow on clip) ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px 16px;
  line-height: 1;
  cursor: pointer;
  border: 0;
  clip-path: polygon(var(--plate-cut) 0, 100% 0, calc(100% - var(--plate-cut)) 100%, 0 100%);
  filter: var(--drop-plate);
  transition: transform var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 11px 20px 12px; font-size: 14px; }
.btn--cyan { background: var(--color-cyan); color: var(--color-ink); }
.btn--cyan:hover { background: var(--color-cyan-hover); }
.btn--blue { background: var(--color-blue); color: #fff; }
.btn--blue:hover { background: var(--color-blue-hover); }
.btn--navy { background: var(--color-ink); color: #fff; }
.btn--navy:hover { background: var(--color-ink-2); }
.btn--outline-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 2px rgba(255,255,255,0.75); filter: none; }
.btn--outline-light:hover { background: rgba(255,255,255,0.12); }
.btn--outline { background: transparent; color: var(--color-blue); box-shadow: inset 0 0 0 2px var(--color-blue); filter: none; }
.btn--outline:hover { background: var(--color-blue); color: #fff; }
.btn-pair { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ Mobile sticky CTA ============ */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex; position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-mobile-cta);
  }
  .mobile-cta-bar a {
    flex: 1; padding: 14px 0; text-align: center; font-family: var(--font-display);
    font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  }
  .mobile-cta-bar__primary { background: var(--color-cyan); color: var(--color-ink); }
  .mobile-cta-bar__call { background: var(--color-blue); color: #fff; }
  body { padding-top: 46px; }
}

/* ============ Utility bar ============ */
.utility-bar {
  position: relative; z-index: var(--z-utility);
  background: var(--color-ink); color: var(--color-on-dark-muted);
  padding: 9px 0; font-size: 13.5px;
}
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__item strong { color: var(--color-cyan); font-weight: 700; }
.utility-bar__item svg { width: 15px; height: 15px; }
.utility-bar__actions { display: flex; gap: 22px; }
.utility-bar__phone { color: #fff; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.utility-bar__phone svg { width: 14px; height: 14px; color: var(--color-cyan); }
.utility-bar__phone em { font-style: normal; font-weight: 400; color: var(--color-on-dark-muted); font-size: 12px; }
.utility-bar__phone:hover { color: var(--color-cyan); }
@media (max-width: 900px) { .utility-bar__item { display: none; } .utility-bar .container { justify-content: center; } }
@media (max-width: 768px) { .utility-bar { display: none; } }

/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--color-ink-2);
  border-bottom: 1px solid var(--color-border-dark);
  transition: box-shadow var(--speed) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav .container { display: flex; align-items: center; gap: 26px; min-height: 74px; }
.nav__logo img { width: 168px; height: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link, .nav__dropdown-toggle {
  font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #fff;
  text-decoration: none; background: none; border: 0; cursor: pointer;
  padding: 10px 13px; display: inline-flex; align-items: center; gap: 5px;
  transition: color var(--speed-fast) var(--ease);
}
.nav__link:hover, .nav__dropdown-toggle:hover { color: var(--color-cyan); }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 240px;
  background: var(--color-ink-2); border: 1px solid var(--color-border-dark);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease), visibility var(--speed-fast);
  padding: 8px 0;
}
.nav__dropdown:hover .nav__dropdown-menu, .nav__dropdown:focus-within .nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-item {
  display: block; padding: 10px 18px; color: #fff; text-decoration: none; font-weight: 600; font-size: 14.5px;
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.nav__dropdown-item:hover { background: rgba(49, 251, 237, 0.10); color: var(--color-cyan); }
.nav__actions { display: flex; gap: 12px; align-items: center; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: 0; padding: 6px; }
.nav__hamburger span { width: 26px; height: 2.5px; background: #fff; transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 1120px) {
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; margin-left: auto; }
  .nav__links {
    position: fixed; top: 0; right: -100%; width: 86%; max-width: 400px; height: 100vh;
    background: var(--color-ink); flex-direction: column; align-items: stretch;
    padding: 88px 28px 32px; transition: right var(--speed) var(--ease-out);
    z-index: var(--z-nav); overflow-y: auto; display: flex; margin-left: 0; gap: 0;
  }
  .nav__links.open { right: 0; }
  .nav__dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; display: none; padding-left: 14px;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  .nav__link, .nav__dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 6px; font-size: 17px; border-bottom: 1px solid var(--color-border-dark); }
}
.nav-overlay {
  position: fixed; inset: 0; background: rgba(6, 10, 32, 0.6);
  opacity: 0; visibility: hidden; transition: opacity var(--speed) var(--ease);
  z-index: 999;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ============ Hero ============ */
.hero { position: relative; background: var(--color-ink); color: #fff; overflow: hidden; }
.hero .container { position: relative; z-index: 3; }
.hero--full { padding: 84px 0 120px; }
.hero--full .hero__bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.hero--full .hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 10, 32, 0.88) 0%, rgba(6, 10, 32, 0.62) 45%, rgba(5, 60, 247, 0.28) 100%);
}
.hero--home { min-height: 620px; display: flex; align-items: center; }
.hero__content { max-width: 720px; }
.hero__title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.06; letter-spacing: 0.01em;
  transform: skewX(-6deg); transform-origin: left bottom;
  margin: 6px 0 14px;
}
.hero__title em { font-style: normal; color: var(--color-cyan); }
.hero__count { font-weight: 800; color: var(--color-cyan); letter-spacing: 0.02em; margin-bottom: 10px; font-size: 17px; }
.hero__text { color: var(--color-on-dark-muted); font-size: 18px; max-width: 560px; margin-bottom: 20px; }
.hero__offer {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(49, 251, 237, 0.12); border: 1px solid rgba(49, 251, 237, 0.4);
  color: var(--color-cyan); font-weight: 700; font-size: 15px;
  padding: 9px 16px; margin-bottom: 22px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero__offer svg { width: 17px; height: 17px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-bottom: 26px; }
.hero__trust-item { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--color-on-dark-muted); }
.hero__trust-item svg { width: 17px; height: 17px; color: var(--color-cyan); flex-shrink: 0; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 26px; margin-bottom: 20px; }
.hero__badge { display: flex; align-items: center; gap: 11px; text-decoration: none; transition: transform var(--speed-fast) var(--ease), opacity var(--speed-fast) var(--ease); }
a.hero__badge:hover { transform: translateY(-2px); opacity: 0.92; }
.hero__badge-logo { width: 38px; height: 38px; flex-shrink: 0; }
.hero__badge-bbb {
  width: 38px; height: 38px; flex-shrink: 0; background: #fff; color: #0A6EB4;
  font-weight: 900; font-size: 12.5px; letter-spacing: -0.02em;
  display: inline-flex; align-items: center; justify-content: center; border-radius: 50%;
  font-family: var(--font-body);
}
.hero__badge-info { display: flex; flex-direction: column; gap: 2px; }
.hero__badge-stars { display: flex; gap: 1px; color: var(--color-google-star); }
.hero__badge-stars svg { width: 15px; height: 15px; fill: currentColor; color: var(--color-google-star); }
.hero__badge-stars--hide { display: none; }
.hero__badge-text { font-weight: 800; font-size: 0.98rem; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; }

/* split + device heroes */
.hero--split, .hero--device {
  padding: 64px 0 96px;
  background:
    radial-gradient(ellipse 900px 480px at 12% -10%, rgba(5, 60, 247, 0.5), transparent 65%),
    radial-gradient(ellipse 700px 420px at 95% 110%, rgba(49, 251, 237, 0.13), transparent 60%),
    var(--color-ink);
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero--wideframe .hero__grid { grid-template-columns: 1fr; gap: 36px; }
.hero__photo { position: relative; }
.hero__photo img {
  width: 100%; box-shadow: var(--shadow-lg);
  clip-path: polygon(22px 0, 100% 0, calc(100% - 22px) 100%, 0 100%);
}
.hero__photo--wide img { clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%); }
.hero__photo-plate {
  position: absolute; bottom: -13px; left: 26px;
  background: var(--color-cyan); color: var(--color-ink);
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 13px;
  padding: 7px 16px 8px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  filter: var(--drop-plate);
}
.hero__ghost {
  position: absolute; right: -60px; top: -40px; z-index: 1; color: #fff; opacity: 0.045; pointer-events: none;
}
.hero__ghost svg { width: 520px; height: 520px; }
.hero--device .hero__content { max-width: 780px; }
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero--full { padding: 56px 0 96px; }
}

/* breadcrumbs */
.breadcrumbs { padding: 4px 0 22px; font-size: 0.85rem; color: var(--color-on-dark-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.breadcrumbs a { color: var(--color-on-dark-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-cyan); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: #fff; }
.breadcrumbs--onlight, .breadcrumbs--onlight a { color: var(--color-text-light); }
.breadcrumbs--onlight .current { color: var(--color-text); }
.legal-h1 { font-family: var(--font-display); text-transform: uppercase; color: var(--color-ink); font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 22px; transform: skewX(-6deg); transform-origin: left bottom; }

/* ============ Dividers ============ */
.divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; z-index: 2; pointer-events: none; }
.divider svg { width: 100%; height: 44px; display: block; }
.section { position: relative; padding: var(--section-pad) 0; }
.section--surface { background: var(--color-surface); }
.section--dark { background: var(--color-ink); color: var(--color-on-dark-muted); padding-bottom: calc(var(--section-pad) + 40px); }
.section--dark h3 { color: #fff; }
.section .divider { bottom: -1px; }
.section__footer { text-align: center; margin-top: 44px; }
.section__footer p { max-width: 640px; margin: 0 auto 18px; color: var(--color-text-light); }

/* frost glow on dark bands */
.ice-band {
  background:
    radial-gradient(ellipse 800px 400px at 88% 0%, rgba(49, 251, 237, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 420px at 0% 100%, rgba(5, 60, 247, 0.35), transparent 60%),
    var(--color-ink);
  overflow: hidden;
}
.band__ghost { position: absolute; left: -70px; bottom: -70px; color: #fff; opacity: 0.04; pointer-events: none; }
.band__ghost svg { width: 460px; height: 460px; }
.footer__ghost { position: absolute; right: -50px; top: -50px; color: #fff; opacity: 0.03; pointer-events: none; }
.footer__ghost svg { width: 420px; height: 420px; }

/* ============ Trust strip ============ */
.trust-strip { position: relative; z-index: 4; margin-top: -58px; margin-bottom: 8px; }
.trust-strip__card {
  background: #fff; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  padding: 26px 30px; border-top: 4px solid var(--color-cyan);
}
.trust-strip__item { display: flex; gap: 13px; align-items: center; }
.trust-strip__icon { width: 42px; height: 42px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(5, 60, 247, 0.09); color: var(--color-blue); clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%); }
.trust-strip__icon svg { width: 21px; height: 21px; }
.trust-strip__label { font-weight: 800; font-size: 15px; color: var(--color-ink); }
.trust-strip__sub { font-size: 13px; color: var(--color-text-light); }
@media (max-width: 1024px) { .trust-strip__card { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (max-width: 560px) { .trust-strip__card { grid-template-columns: 1fr; } }

/* ============ Cards ============ */
.card-grid { display: grid; gap: var(--gap); margin-top: 42px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; } }

.svc-card {
  background: #fff; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.svc-card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; }
.svc-card__flag {
  position: absolute; top: 14px; left: -2px;
  background: var(--color-blue); color: #fff;
  font-family: var(--font-display); text-transform: uppercase; font-size: 13px; letter-spacing: 0.07em;
  padding: 6px 16px 7px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.svc-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.svc-card__body p { color: var(--color-text-light); font-size: 15.5px; flex: 1; }
.svc-card__links { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card__links a {
  font-weight: 700; font-size: 13.5px; text-decoration: none;
  color: var(--color-blue); background: rgba(5, 60, 247, 0.08);
  padding: 6px 13px;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease);
}
.svc-card__links a:hover { background: var(--color-blue); color: #fff; }

.icon-card {
  background: #fff; padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center;
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card--left { text-align: left; }
.icon-card__icon {
  width: 54px; height: 54px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5, 60, 247, 0.09); color: var(--color-blue);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.icon-card--left .icon-card__icon { margin: 0 0 16px; }
.icon-card__icon svg { width: 26px; height: 26px; }
.icon-card h3 { margin-bottom: 9px; font-size: 1.12rem; }
.icon-card p { color: var(--color-text-light); font-size: 15px; }

/* ============ Split / prose ============ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 38px; } }
.split__img img { width: 100%; }
.prose p { margin-bottom: 16px; max-width: 72ch; }
.prose--wide p { max-width: 78ch; }

/* print-frame: matted photo w/ caption plate */
.print-frame { position: relative; background: #fff; padding: 12px 12px 0; box-shadow: var(--shadow-md); }
.section--dark .print-frame, .ice-band .print-frame { background: var(--color-ink-2); }
.print-frame img { width: 100%; }
.print-frame figcaption {
  font-size: 13px; font-weight: 600; color: var(--color-text-light);
  padding: 11px 4px 12px; text-align: left;
}
.section--dark .print-frame figcaption, .ice-band .print-frame figcaption { color: var(--color-on-dark-muted); }

/* stats */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.stat__num { font-family: var(--font-display); font-size: 34px; color: var(--color-blue); transform: skewX(-6deg); }
.stat-row--dark .stat__num { color: var(--color-cyan); }
.stat__label { font-size: 13.5px; color: var(--color-text-light); font-weight: 600; }
.stat-row--dark .stat__label { color: var(--color-on-dark-muted); }

/* brand plates (refrigeration band) */
.brand-plates { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.brand-plates span {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.07em; font-size: 13.5px;
  color: #fff; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--color-border-dark);
  padding: 8px 15px 9px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}

/* ============ Timeline ============ */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 48px; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 21px; left: 3%; right: 3%;
  height: 2px; background: linear-gradient(90deg, var(--color-blue), var(--color-cyan));
}
.timeline__item { position: relative; padding-top: 56px; }
.timeline__year {
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 19px; letter-spacing: 0.04em;
  background: var(--color-ink); color: var(--color-cyan);
  padding: 8px 16px 9px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  filter: var(--drop-plate);
}
.timeline__item--now .timeline__year { background: var(--color-blue); color: #fff; }
.timeline__item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.timeline__item p { font-size: 14.5px; color: var(--color-text-light); }
@media (max-width: 1024px) { .timeline { grid-template-columns: repeat(2, 1fr); } .timeline::before { display: none; } }
@media (max-width: 600px) { .timeline { grid-template-columns: 1fr; } }

/* ============ Coupons ============ */
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 44px; align-items: stretch; }
@media (max-width: 1024px) { .coupon-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.coupon {
  position: relative; background: #fff; border: 2px dashed rgba(5, 60, 247, 0.45);
  padding: 34px 26px 30px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: var(--shadow-sm);
}
.coupon--featured { border-color: var(--color-cyan); border-style: solid; background: var(--color-ink); }
.coupon--featured .coupon__name { color: #fff; }
.coupon--featured .coupon__fine { color: var(--color-on-dark-muted); }
.coupon__flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-cyan); color: var(--color-ink);
  font-family: var(--font-display); text-transform: uppercase; font-size: 12.5px; letter-spacing: 0.08em;
  padding: 6px 16px 7px;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
.coupon__big { font-family: var(--font-display); font-size: 58px; line-height: 1; color: var(--color-blue); transform: skewX(-6deg); }
.coupon--featured .coupon__big { color: var(--color-cyan); }
.coupon__big em { font-style: normal; font-size: 0.55em; vertical-align: 0.32em; letter-spacing: 0.04em; }
.coupon__name { font-weight: 800; font-size: 1.05rem; color: var(--color-ink); max-width: 260px; }
.coupon__fine { font-size: 12.5px; color: var(--color-text-light); margin-bottom: 10px; }

/* rebate panel */
.rebate-panel {
  margin-top: 56px; background: #fff; box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-blue); padding: 40px 42px;
}
.rebate-panel p { max-width: 68ch; margin-bottom: 18px; color: var(--color-text-light); }

/* ============ Reviews ============ */
.review-card {
  background: var(--color-ink-2); border: 1px solid var(--color-border-dark);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; position: relative;
}
.review-card--light { background: #fff; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.review-card__g { position: absolute; top: 22px; right: 22px; }
.review-card__g svg { width: 24px; height: 24px; }
.review-card__stars { display: flex; gap: 2px; color: var(--color-google-star); }
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__text { font-size: 15px; line-height: 1.65; color: var(--color-on-dark-muted); flex: 1; white-space: pre-line; }
.review-card--light .review-card__text { color: var(--color-text); }
.review-card__author { font-weight: 800; color: #fff; }
.review-card--light .review-card__author { color: var(--color-ink); }
.review-card__when { font-size: 13px; color: var(--color-on-dark-muted); opacity: 0.75; }
.review-card--light .review-card__when { color: var(--color-text-light); opacity: 1; }
.reviews__cta { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 42px; }

.rating-plates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
@media (max-width: 900px) { .rating-plates { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.rating-plate {
  background: var(--color-ink); color: #fff; text-align: center; padding: 30px 20px;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  filter: var(--drop-plate);
  text-decoration: none; display: block;
  transition: transform var(--speed-fast) var(--ease);
}
a.rating-plate:hover { transform: translateY(-3px); }
.rating-plate__stars { display: flex; justify-content: center; gap: 3px; color: var(--color-google-star); margin-bottom: 8px; }
.rating-plate__stars svg { width: 19px; height: 19px; }
.rating-plate__fb { color: #fff; margin-bottom: 8px; }
.rating-plate__fb svg { width: 22px; height: 22px; }
.rating-plate__num { font-family: var(--font-display); font-size: 46px; line-height: 1; color: var(--color-cyan); transform: skewX(-6deg); }
.rating-plate__meta { font-size: 13.5px; color: var(--color-on-dark-muted); margin-top: 7px; font-weight: 600; }

/* ============ Proof grid ============ */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 44px; }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.proof-note { text-align: center; margin-top: 30px; color: var(--color-text-light); font-size: 15px; }

/* ============ Areas ============ */
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 42px; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.area-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; box-shadow: var(--shadow-sm); text-decoration: none;
  padding: 30px 22px;
  border-bottom: 4px solid var(--color-cyan);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-card__pin { color: var(--color-blue); }
.area-card__pin svg { width: 26px; height: 26px; }
.area-card__city { font-family: var(--font-display); text-transform: uppercase; font-size: 21px; letter-spacing: 0.03em; color: var(--color-ink); }
.area-card__phone { font-weight: 700; color: var(--color-blue); font-size: 15px; }

/* ============ Steps ============ */
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); margin-top: 44px; }
@media (max-width: 800px) { .step-grid { grid-template-columns: 1fr; } }
.step { background: #fff; box-shadow: var(--shadow-sm); padding: 30px 26px; position: relative; }
.step__num {
  font-family: var(--font-display); font-size: 26px; color: #fff; background: var(--color-blue);
  width: 46px; height: 46px; display: flex; align-items: center; justify-content: center;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
  margin-bottom: 16px; filter: var(--drop-plate);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--color-text-light); font-size: 15px; }

/* ============ Check list ============ */
.check-list { list-style: none; margin: 20px 0; display: grid; gap: 12px; }
.check-list--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .check-list--2col { grid-template-columns: 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-weight: 600; }
.check-list li svg { width: 19px; height: 19px; color: var(--color-blue); flex-shrink: 0; margin-top: 4px; }
.check-list li a { color: var(--color-text); text-decoration: none; border-bottom: 1px solid var(--color-border); transition: color var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease); }
.check-list li a:hover { color: var(--color-blue); border-color: var(--color-blue); }

/* warranty panel */
.warranty-panel { background: var(--color-ink); color: #fff; padding: 34px 32px; clip-path: polygon(18px 0, 100% 0, calc(100% - 18px) 100%, 0 100%); filter: var(--drop-plate); }
.warranty-panel h3 { color: var(--color-cyan); font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.3rem; margin-bottom: 20px; transform: skewX(-6deg); }
.warranty-row { display: flex; align-items: center; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--color-border-dark); font-size: 15px; color: var(--color-on-dark-muted); }
.warranty-row:last-child { border-bottom: 0; }
.warranty-row__term {
  font-family: var(--font-display); font-size: 17px; color: var(--color-ink); background: var(--color-cyan);
  min-width: 76px; text-align: center; padding: 5px 10px 6px; flex-shrink: 0;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.warranty-row--muted { opacity: 0.6; }
.warranty-row--muted .warranty-row__term { background: rgba(255,255,255,0.25); color: #fff; }

/* contact lines */
.contact-lines { display: grid; gap: 14px; margin: 22px 0; }
.contact-line { display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--color-surface); padding: 16px 20px; border-left: 0; border-bottom: 3px solid var(--color-cyan); flex-wrap: wrap; }
.contact-line__city { font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.contact-line__city svg { width: 18px; height: 18px; color: var(--color-blue); }
.contact-line__phone { font-family: var(--font-display); font-size: 22px; color: var(--color-blue); text-decoration: none; letter-spacing: 0.03em; }
.contact-line__phone:hover { color: var(--color-blue-hover); }
.footer__contact-item--onlight { color: var(--color-text); }
.footer__contact-item--onlight svg { color: var(--color-blue); }

/* ============ Band (form) ============ */
.band { position: relative; padding: var(--section-pad) 0; overflow: hidden; color: var(--color-on-dark-muted);
  background:
    radial-gradient(ellipse 900px 500px at 100% 0%, rgba(5, 60, 247, 0.45), transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 100%, rgba(49, 251, 237, 0.1), transparent 55%),
    var(--color-ink);
}
.band__grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.band__grid > * { min-width: 0; }
@media (max-width: 900px) { .band__grid { grid-template-columns: 1fr; } }
.band__pitch p { max-width: 56ch; }
.form-card { background: #fff; padding: 32px 30px; box-shadow: var(--shadow-lg); }
.form-card__title { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; color: var(--color-ink); letter-spacing: 0.03em; transform: skewX(-6deg); }
.form-card__sub { font-size: 14px; color: var(--color-text-light); margin: 6px 0 18px; }

/* ============ Forms ============ */
.lead-form { max-width: 680px; margin: 40px auto 0; background: #fff; padding: 38px 36px; box-shadow: var(--shadow-md); }
.lead-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form__full { grid-column: 1 / -1; }
@media (max-width: 600px) { .lead-form__grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-label { font-weight: 700; font-size: 0.85rem; margin-bottom: 6px; color: var(--color-text); }
.form-input, .form-textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--color-border);
  font-family: var(--font-body); font-size: 1rem; color: var(--color-text); background: #fff;
  transition: border-color var(--speed-fast) var(--ease), box-shadow var(--speed-fast) var(--ease);
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--color-blue); box-shadow: 0 0 0 3px rgba(5, 60, 247, 0.14); }
.lead-form__submit {
  grid-column: 1 / -1;
  font-family: var(--font-display); font-size: 17px; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--color-blue); color: #fff; border: 0; padding: 16px 32px; cursor: pointer;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  filter: var(--drop-plate);
  transition: background var(--speed-fast) var(--ease), transform var(--speed-fast) var(--ease);
}
.lead-form__submit:hover { background: var(--color-blue-hover); transform: translateY(-2px); }
.lead-form__consent { grid-column: 1 / -1; font-size: 12px; line-height: 1.5; color: var(--color-text-light); margin-top: 6px; }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 40px auto 0; }
.faq-item { border: 1.5px solid var(--color-border); margin-bottom: 10px; background: #fff; }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  width: 100%; text-align: left; padding: 18px 22px; cursor: pointer;
  font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; color: var(--color-ink);
  background: #fff; border: 0;
  transition: background var(--speed-fast) var(--ease);
}
.faq-item__question:hover { background: var(--color-surface); }
.faq-item__question svg { flex-shrink: 0; transition: transform var(--speed-fast) var(--ease); }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height var(--speed) var(--ease); }
.faq-item.active .faq-item__answer { max-height: 420px; }
.faq-item__answer-inner { padding: 2px 22px 20px; color: var(--color-text-light); }

/* ============ CTA banner ============ */
.cta-section { background: linear-gradient(100deg, var(--color-blue) 0%, #0730C9 100%); color: #fff; padding: 84px 0; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: clamp(30px, 3.6vw, 44px); transform: skewX(-6deg); margin-bottom: 12px; }
.cta-section p { max-width: 620px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.9); }

/* ============ Map ============ */
.map-section { line-height: 0; }
.map-embed { width: 100%; height: 320px; border: 0; }

/* ============ Footer ============ */
.footer { position: relative; background: var(--color-ink); color: var(--color-on-dark-muted); padding: 78px 0 40px; overflow: hidden; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 44px; position: relative; z-index: 2; }
@media (max-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo img { width: 200px; height: auto; }
.footer__brand-desc { font-size: 14.5px; margin: 18px 0; max-width: 34ch; }
.footer__rating { display: flex; align-items: center; gap: 8px; color: var(--color-google-star); font-size: 13px; margin-bottom: 7px; text-decoration: none; }
.footer__rating-stars { display: inline-flex; gap: 1px; flex-shrink: 0; }
a.footer__rating:hover span:last-child { color: var(--color-cyan); }
.footer__rating svg { width: 14px; height: 14px; }
.footer__rating span { color: var(--color-on-dark-muted); font-weight: 600; }
.footer__social { display: flex; gap: 13px; margin-top: 16px; }
.footer__social a { color: var(--color-on-dark-muted); transition: color var(--speed-fast) var(--ease); }
.footer__social a:hover { color: var(--color-cyan); }
.footer__social svg { width: 21px; height: 21px; }
.footer__heading { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.footer__links a { display: block; padding: 4.5px 0; color: var(--color-on-dark-muted); text-decoration: none; font-size: 14.5px; transition: color var(--speed-fast) var(--ease); }
.footer__links a:hover { color: var(--color-cyan); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; padding: 5px 0; font-size: 14.5px; }
.footer__contact-item svg { width: 16px; height: 16px; color: var(--color-cyan); flex-shrink: 0; margin-top: 4px; }
.footer__contact-item a { color: #fff; text-decoration: none; font-weight: 700; }
.footer__contact-item a:hover { color: var(--color-cyan); }
.footer__contact-item em { font-style: normal; font-weight: 400; color: var(--color-on-dark-muted); font-size: 12.5px; }
.footer__bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--color-border-dark); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13.5px; }
.legal-footer { background: var(--color-ink-3); color: rgba(233, 240, 255, 0.6); text-align: center; padding: 16px 20px; font-size: 12.5px; }
.legal-footer a { color: rgba(233, 240, 255, 0.6); text-decoration: none; }
.legal-footer a:hover { color: var(--color-cyan); }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--speed-slow) var(--ease-out), transform var(--speed-slow) var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 767px) {
  :root { --section-pad: 64px; }
  body { font-size: 16px; }
  .hero__title { font-size: clamp(30px, 8.4vw, 38px); }
  .btn-pair .btn, .hero__actions .btn { width: 100%; text-align: center; }
  .hero__actions { flex-direction: column; }
  .stat-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .rebate-panel { padding: 28px 22px; }
  .lead-form { padding: 28px 20px; }
  .footer__bottom { justify-content: center; text-align: center; }
}
