/* ==========================================================================
   Dom-el Serwis Krzysztof Zalewski — Naprawa lodówek 24h
   Lekki arkusz stylów (bez frameworków)
   ========================================================================== */

/* --- Zmienne ------------------------------------------------------------- */
:root {
  --navy-900: #061627;
  --navy-800: #0b2338;
  --navy-700: #123350;
  --navy-600: #1b4568;
  --ice-400: #38bdf8;
  --ice-300: #7dd3fc;
  --ice-100: #e0f2fe;
  --red-500: #e63946;
  --red-600: #cf2b38;

  --ink: #10222f;
  --ink-soft: #4a5c69;
  --line: #e2e9ef;
  --bg: #ffffff;
  --bg-soft: #f5f8fb;

  --radius: 18px;
  --nav-h: 76px;
  --container: 1140px;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}
html, body { overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3 {
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

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

a { color: var(--navy-600); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-500); }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--ice-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: #fff;
  color: var(--navy-800);
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Układ --------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

.section { padding: 92px 0; position: relative; }
.section--soft { background: var(--bg-soft); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin-bottom: .4em;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin: 0;
}
.section-head--light h2 { color: #fff; }
.section-head--light p { color: rgba(224, 242, 254, .78); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy-600);
}
.eyebrow--light { color: var(--ice-300); }

/* --- Przyciski ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 18px; font-size: .93rem; }

.btn--primary {
  background: var(--red-500);
  color: #fff;
  box-shadow: 0 10px 28px rgba(230, 57, 70, .3);
}
.btn--primary:hover { background: var(--red-600); color: #fff; }

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: #fff; }

/* --- Nawigacja ----------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(6, 22, 39, .72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: background-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck {
  background: rgba(6, 22, 39, .95);
  box-shadow: 0 6px 24px rgba(6, 22, 39, .25);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Znak 24h w nawigacji — lockup typograficzny (bez logo) */
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

/* Tarcza — zamknięty okrąg czyta się jak pełna doba */
.brand__dial {
  position: relative;
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(120% 120% at 28% 10%, rgba(56, 189, 248, .26), transparent 58%),
    linear-gradient(165deg, var(--navy-700), var(--navy-900));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .16),
    0 6px 18px rgba(3, 12, 22, .35);
  transition: box-shadow .15s ease;
}

/* Obwódka gradientowa = pełne 360° doby */
@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
  .brand__dial::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 50%;
    background: conic-gradient(from -6deg,
      var(--ice-300) 0deg,
      var(--ice-400) 92deg,
      rgba(224, 242, 254, .22) 214deg,
      rgba(56, 189, 248, .6) 312deg,
      var(--ice-300) 360deg);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
    pointer-events: none;
  }
}

/* "24" i "h" na wspólnej linii bazowej */
.brand__24 {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
  transform: translateY(1px); /* optyczne wyśrodkowanie cyfr w okręgu */
}
.brand__num {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}
.brand__unit {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ice-300);
}

/* Wordmark tekstowy + podpis */
.brand__text { display: grid; gap: 3px; min-width: 0; }
.brand__name {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
}
.brand__name span { font-weight: 500; color: rgba(224, 242, 254, .68); }
.brand__note {
  display: flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ice-300);
  white-space: nowrap;
}
.brand__since {
  padding-left: 9px;
  margin-left: 9px;
  border-left: 1px solid rgba(255, 255, 255, .2);
  color: rgba(224, 242, 254, .55);
}

/* Stany — jawne kolory, bo globalne `a:hover` przebiłoby `.brand` */
.brand:hover .brand__dial { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 8px 22px rgba(3, 12, 22, .45); }
.brand:hover .brand__name { color: var(--ice-100); }
.brand:hover .brand__name span { color: rgba(224, 242, 254, .82); }
.brand:focus-visible { border-radius: 14px; outline-offset: 5px; }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  display: block;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .78);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav__links a:hover { color: #fff; background: rgba(255, 255, 255, .1); }
.nav__links a.is-active { color: #fff; background: rgba(56, 189, 248, .2); }

.nav__cta { display: inline-flex; }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 96px;
  background:
    radial-gradient(900px 480px at 88% -8%, rgba(56, 189, 248, .28), transparent 60%),
    radial-gradient(700px 420px at 4% 108%, rgba(230, 57, 70, .18), transparent 62%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 64px;
  align-items: center;
}

.badge-24h {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ice-300);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, .3); }
  50% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero h1 {
  margin: 20px 0 20px;
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  letter-spacing: -.03em;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--ice-300), var(--ice-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 52ch;
  font-size: 1.1rem;
  color: rgba(224, 242, 254, .82);
}
.hero__lead strong { color: #fff; font-weight: 600; }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 40px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 32px;
  max-width: 500px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.hero__facts div strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -.02em;
  color: #fff;
}
.hero__facts div span {
  font-size: .85rem;
  color: rgba(224, 242, 254, .65);
}

/* Logo firmy w hero — bez ramki, z poświatą */
.hero__logo { position: relative; text-align: center; }
.hero__logo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34%;
  width: 130%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(56, 189, 248, .2), transparent 62%);
  pointer-events: none;
}
.hero__logo img {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto 26px;
  filter: drop-shadow(0 18px 40px rgba(3, 12, 22, .5));
}
.hero__company {
  position: relative;
  margin: 0 0 22px;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.hero__contact {
  position: relative;
  display: grid;
  gap: 10px;
  justify-content: center;
}
.hero__contact li {
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(224, 242, 254, .85);
  text-align: left;
}
.hero__contact svg { flex: none; width: 19px; height: 19px; color: var(--ice-400); }
.hero__contact a { color: #fff; font-weight: 600; text-decoration: none; }
.hero__contact a:hover { color: var(--ice-300); text-decoration: underline; }

/* --- Oferta — dwa filary, bez ramek ------------------------------------- */
.offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.offer__ico {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ice-100);
  color: var(--navy-700);
}
.offer__ico svg { width: 30px; height: 30px; }
.offer__tag {
  margin: 0 0 8px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-500);
}
.offer__item h3 { font-size: 1.42rem; margin-bottom: .5em; }
.offer__item > p:last-child { color: var(--ink-soft); margin: 0; }
.offer__item strong { color: var(--ink); font-weight: 600; }

/* --- O firmie ------------------------------------------------------------ */
.about {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: center;
}
.about h2 { font-size: clamp(1.85rem, 4vw, 2.5rem); }
.about > div > p { color: var(--ink-soft); }
.about__img { width: min(100%, 340px); margin: 0 auto; }

.checklist { display: grid; gap: 13px; margin: 28px 0; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist svg {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #16a34a;
}

.review {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* Gwiazdki z oceną częściową — stopień wypełnienia steruje --rating */
.review .stars {
  --fill: calc(var(--rating, 5) / 5 * 100%);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: #fbbc04;
}
@supports (background-clip: text) or (-webkit-background-clip: text) {
  .review .stars {
    background: linear-gradient(90deg, #fbbc04 var(--fill), #ccd6df var(--fill));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}
.review__score { color: var(--ink); font-weight: 700; }
.review__max { color: var(--ink-soft); margin-left: -9px; }

/* --- Karuzela marek ----------------------------------------------------- */
.marquee {
  overflow: hidden;
  padding: 8px 0 4px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.marquee__row {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.marquee__row li { display: grid; place-items: center; height: 60px; }
.marquee img {
  height: var(--h, 28px);
  width: auto;
  max-width: 190px;
  filter: grayscale(1);
  opacity: .72;
  transition: filter .25s ease, opacity .25s ease;
}
.marquee:hover img { filter: none; opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Zakres usług — bez ramek, lista rozdzielona kropkami */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 0;
  margin-top: 44px;
  color: var(--ink-soft);
  font-size: .98rem;
}
.tags li { display: flex; align-items: center; }
.tags li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 16px;
  border-radius: 50%;
  background: var(--ice-400);
  opacity: .6;
}

/* --- Kontakt — pełnoszerokościowy pas ----------------------------------- */
.contact-band {
  padding: 92px 0;
  background:
    radial-gradient(800px 400px at 78% 0%, rgba(56, 189, 248, .2), transparent 62%),
    linear-gradient(165deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.contact {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 60px;
  align-items: center;
}
.contact__company {
  margin: 0 0 26px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
}
.contact__list { display: grid; gap: 20px; margin-bottom: 34px; }
.contact__list li { display: flex; gap: 15px; align-items: flex-start; }
.contact__list svg { flex: none; width: 22px; height: 22px; margin-top: 3px; color: var(--ice-400); }
.contact__list li > span { min-width: 0; overflow-wrap: break-word; color: rgba(224, 242, 254, .82); }
.contact__list b {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ice-300);
}
.contact__list a { color: #fff; font-size: 1.14rem; font-weight: 700; text-decoration: none; }
.contact__list a:hover { color: var(--ice-300); text-decoration: underline; }

.map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(3, 12, 22, .45);
}
.map iframe { width: 100%; height: 100%; border: 0; }
.map__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  border: 0;
  background: linear-gradient(160deg, #eef5fa, #dbe8f2);
  color: var(--navy-800);
  font: inherit;
  text-align: center;
  cursor: pointer;
}
.map__placeholder strong { font-size: 1.05rem; }
.map__placeholder span { color: var(--ink-soft); font-size: .92rem; }
.map__placeholder svg { width: 40px; height: 40px; color: var(--navy-600); }

/* --- Pasek CTA ----------------------------------------------------------- */
.cta-strip {
  padding: 62px 0;
  background: linear-gradient(120deg, var(--red-500), #b4232f);
  color: #fff;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
.cta-strip p { max-width: 60ch; margin: 0 auto 28px; color: rgba(255, 255, 255, .88); }
.cta-strip .btn {
  background: #fff;
  color: var(--red-600);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}
.cta-strip .btn:hover { background: #fff; color: var(--navy-900); }

/* --- Stopka -------------------------------------------------------------- */
.footer {
  padding: 62px 0 28px;
  background: var(--navy-900);
  color: rgba(224, 242, 254, .7);
  font-size: .95rem;
}
.footer a { color: var(--ice-300); }
.footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__company img { height: 76px; width: auto; margin-bottom: 18px; opacity: .9; }
.footer__name {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}
.footer h3 {
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__links { display: grid; gap: 9px; }
.footer__links a { text-decoration: none; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  font-size: .86rem;
}
.footer__bottom p { margin: 0; }
.footer__seals { display: flex; align-items: center; gap: 14px; }

.to-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease;
}
.to-top:hover { background: rgba(255, 255, 255, .18); color: #fff; transform: translateY(-2px); }

/* --- Mobilny pasek telefonu ---------------------------------------------- */
.call-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 45;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(6, 22, 39, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.call-bar .btn { width: 100%; }

/* --- Animacja wejścia ---------------------------------------------------- */
/* Ukrywamy treść TYLKO gdy JS działa (klasa .js z <head>) — brak JS = treść widoczna */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .pulse { animation: none; box-shadow: 0 0 0 3px rgba(34, 197, 94, .3); }
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
  .marquee__row:last-child { display: none; }
}

/* --- RWD ----------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero__logo { order: -1; }
  .hero__logo img { width: min(100%, 340px); }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .offer { gap: 44px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .brand__since { display: none; }
}

@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__cta { display: none; }
  .brand { gap: 12px; }
  .brand__dial { width: 42px; height: 42px; }
  .brand__num { font-size: 1.02rem; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: grid;
    gap: 4px;
    padding: 14px 18px 22px;
    background: #061627;
    box-shadow: 0 20px 40px rgba(3, 12, 22, .4);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links a { padding: 13px 16px; border-radius: 12px; font-size: 1rem; }

  .call-bar { display: block; }
  body { padding-bottom: 74px; }

  .section, .contact-band { padding: 68px 0; }
  .hero { padding: calc(var(--nav-h) + 48px) 0 72px; }
  .offer { grid-template-columns: 1fr; gap: 48px; }
  .marquee__row { gap: 52px; padding-right: 52px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand { gap: 11px; }
  .brand__dial { width: 38px; height: 38px; }
  .brand__num { font-size: .95rem; }
  .brand__unit { font-size: .58rem; }
  .brand__name { font-size: .98rem; }
  .brand__note { font-size: .63rem; letter-spacing: .09em; }
  .hero__facts { gap: 18px; }
  .hero__contact li { font-size: .95rem; }
  .hero__company { font-size: 1.12rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn, .contact__info .btn { width: 100%; }
  .tags li:not(:last-child)::after { margin: 0 11px; }
}

/* --- Druk ---------------------------------------------------------------- */
@media print {
  .nav, .call-bar, .map, .cta-strip, .to-top, .marquee { display: none !important; }
  body { color: #000; }
  .hero, .contact-band, .footer { background: #fff !important; color: #000 !important; }
  .hero h1 em { color: #000 !important; -webkit-text-fill-color: #000 !important; }
}
