/* ==========================================================================
   Auto Serwis RAFEX — style.css
   ========================================================================== */

@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/plus-jakarta-sans-latin-ext-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Jakarta";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url("../fonts/plus-jakarta-sans-latin-wght-normal.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-950: #051326;
  --navy-900: #0B2545;
  --navy-800: #13315C;
  --navy-700: #1E4273;
  --orange: #FF6B1A;
  --orange-600: #E9580A;
  --orange-100: #FFE9DC;
  --steel: #7F8C9A;
  --steel-300: #A9B4C0;
  --mist: #DDE3EA;
  --paper: #F4F6F9;
  --white: #FFFFFF;
  --ink: #0B1B30;
  --ink-soft: #4A5A6E;
  --ok: #2FBF71;

  --font: "Jakarta", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgb(11 37 69 / .06), 0 2px 8px rgb(11 37 69 / .05);
  --shadow: 0 10px 30px -10px rgb(11 37 69 / .18), 0 2px 6px rgb(11 37 69 / .06);
  --shadow-lg: 0 30px 60px -20px rgb(5 19 38 / .45);
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: #fff; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 100; background: var(--orange); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.icon { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 52px; padding: 0 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em; white-space: nowrap;
  transition: transform .25s var(--ease), background-color .25s, box-shadow .25s, color .25s, border-color .25s;
}
.btn .icon { width: 20px; height: 20px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 30px -8px rgb(255 107 26 / .6); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 14px 34px -8px rgb(255 107 26 / .7); }
.btn--ghost { color: #fff; border: 1.5px solid rgb(255 255 255 / .25); background: rgb(255 255 255 / .04); backdrop-filter: blur(8px); }
.btn--ghost:hover { border-color: rgb(255 255 255 / .6); background: rgb(255 255 255 / .1); }
.btn--dark { background: var(--navy-900); color: #fff; }
.btn--dark:hover { background: var(--navy-800); }
.btn--light { background: #fff; color: var(--navy-900); }
.btn--light:hover { background: var(--paper); }
.btn--sm { min-height: 44px; padding: 0 1.1rem; font-size: .95rem; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--header-h);
  transition: background-color .3s, box-shadow .3s, backdrop-filter .3s;
}
.header.is-scrolled { background: rgb(5 19 38 / .82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); box-shadow: 0 1px 0 rgb(255 255 255 / .06); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.header__logo img { height: 40px; width: auto; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { padding: .55rem .9rem; border-radius: 999px; color: rgb(255 255 255 / .78); font-weight: 600; font-size: .95rem; transition: color .2s, background-color .2s; }
.nav a:hover { color: #fff; background: rgb(255 255 255 / .08); }
.header__cta { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; color: #fff; background: rgb(255 255 255 / .08); align-items: center; justify-content: center; }
.menu-toggle .icon { width: 24px; height: 24px; }
.menu-toggle .icon-close { display: none; }
.menu-open .menu-toggle .icon-close { display: block; }
.menu-open .menu-toggle .icon-open { display: none; }

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; }
  .header__cta .btn { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px var(--gutter) 24px; background: var(--navy-950); border-top: 1px solid rgb(255 255 255 / .06);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .25s, transform .25s var(--ease), visibility .25s;
  }
  .nav a { padding: 1rem .25rem; border-radius: 0; font-size: 1.15rem; border-bottom: 1px solid rgb(255 255 255 / .06); color: #fff; }
  .nav .btn { margin-top: 1rem; border: 0; }
  .menu-open .nav { transform: none; opacity: 1; visibility: visible; }
  .menu-open .header { background: var(--navy-950); }
}
@media (min-width: 961px) { .nav .nav__call { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--navy-950); color: #fff;
  padding: calc(var(--header-h) + clamp(40px, 8vw, 96px)) 0 clamp(56px, 8vw, 104px);
}
.hero::before { /* grid */
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgb(255 255 255 / .045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 75%);
}
.hero::after { /* glow */
  content: ""; position: absolute; z-index: -1; width: 900px; height: 900px; right: -260px; top: -320px;
  background: radial-gradient(circle, rgb(255 107 26 / .28), rgb(255 107 26 / 0) 60%);
  pointer-events: none;
}
.hero__mark { position: absolute; z-index: -1; right: -80px; bottom: -120px; width: min(560px, 60vw); opacity: .06; transform: rotate(-8deg); pointer-events: none; filter: grayscale(1) brightness(3); }
.hero__grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem; padding: .45rem .9rem .45rem .5rem;
  border-radius: 999px; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .1);
  font-size: .85rem; font-weight: 600; color: rgb(255 255 255 / .85);
}
.eyebrow__dot { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; }
.eyebrow__dot .icon { width: 13px; height: 13px; color: #fff; stroke-width: 2.4; }
.hero h1 { margin-top: 1.4rem; font-size: clamp(2.5rem, 6.4vw, 4.8rem); line-height: 1.02; letter-spacing: -.035em; }
.hero h1 .accent { color: var(--orange); }
.hero h1 .muted { color: var(--steel-300); }
.hero__lead { margin-top: 1.5rem; max-width: 36rem; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: rgb(255 255 255 / .72); }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__badges { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; color: rgb(255 255 255 / .75); font-size: .95rem; font-weight: 600; }
.hero__badges li { display: flex; align-items: center; gap: .5rem; }
.hero__badges .icon { width: 20px; height: 20px; color: var(--orange); }

/* status card */
.status-card {
  position: relative; border-radius: var(--radius-lg); padding: 28px;
  background: linear-gradient(160deg, rgb(255 255 255 / .09), rgb(255 255 255 / .03));
  border: 1px solid rgb(255 255 255 / .12); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}
.status-card__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.status-card__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgb(255 255 255 / .55); font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .8rem; border-radius: 999px; font-size: .85rem; font-weight: 700; background: rgb(255 255 255 / .08); }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--steel-300); }
.status-pill.is-open { background: rgb(47 191 113 / .15); color: #7BE3A8; }
.status-pill.is-open::before { background: var(--ok); box-shadow: 0 0 0 0 rgb(47 191 113 / .6); animation: pulse 2s infinite; }
.status-pill.is-closed { background: rgb(255 107 26 / .14); color: #FFB287; }
.status-pill.is-closed::before { background: var(--orange); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgb(47 191 113 / .6); } 70% { box-shadow: 0 0 0 8px rgb(47 191 113 / 0); } 100% { box-shadow: 0 0 0 0 rgb(47 191 113 / 0); } }
.status-card__phone { display: block; margin-top: 1.4rem; font-size: clamp(1.9rem, 3.4vw, 2.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; transition: color .2s; }
.status-card__phone:hover { color: var(--orange); }
.status-card__note { margin-top: .5rem; font-size: .92rem; color: rgb(255 255 255 / .6); }
.hours { margin-top: 1.4rem; border-top: 1px solid rgb(255 255 255 / .1); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid rgb(255 255 255 / .08); font-size: .98rem; color: rgb(255 255 255 / .75); }
.hours li strong { white-space: nowrap; color: #fff; font-weight: 700; font-variant-numeric: tabular-nums; }
.hours li.is-today { color: #fff; }
.hours li.is-today span::after { content: "dziś"; margin-left: .5rem; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .15rem .45rem; border-radius: 6px; background: var(--orange); color: #fff; vertical-align: 2px; }
.status-card__addr { margin-top: 1.2rem; display: flex; gap: .75rem; align-items: flex-start; color: rgb(255 255 255 / .75); font-size: .95rem; }
.status-card__addr .icon { color: var(--orange); margin-top: 2px; }
.status-card__addr a { color: #fff; font-weight: 700; text-decoration: underline; text-decoration-color: rgb(255 255 255 / .3); text-underline-offset: 3px; }
.status-card__addr a:hover { text-decoration-color: var(--orange); }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

/* ---------- Marquee ---------- */
.marquee { background: var(--orange); color: #fff; overflow: hidden; padding: 16px 0; position: relative; }
.marquee__track { display: flex; width: max-content; gap: 0; animation: marquee 40s linear infinite; }
.marquee__track ul { display: flex; align-items: center; }
.marquee__track li { display: flex; align-items: center; gap: 1.25rem; padding-right: 1.25rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -.01em; text-transform: uppercase; white-space: nowrap; }
.marquee__track li::after { content: ""; width: 8px; height: 8px; background: var(--navy-900); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--navy-950); color: #fff; overflow: hidden; }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.kicker { display: inline-flex; align-items: center; gap: .55rem; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.kicker::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section-head h2 { margin-top: .9rem; font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section-head p { margin-top: 1rem; font-size: 1.12rem; color: var(--ink-soft); }
.section--dark .section-head p { color: rgb(255 255 255 / .68); }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service {
  position: relative; display: flex; flex-direction: column; gap: 1rem; padding: 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--mist); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service:hover::after { transform: scaleX(1); }
.service__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--paper); color: var(--navy-900); transition: background-color .3s, color .3s; }
.service:hover .service__icon { background: var(--orange); color: #fff; }
.service__icon .icon { width: 26px; height: 26px; }
.service h3 { font-size: 1.08rem; letter-spacing: -.015em; line-height: 1.25; }
.service p { font-size: .94rem; color: var(--ink-soft); line-height: 1.55; }
.service--feature { grid-column: span 2; background: var(--navy-900); color: #fff; border-color: transparent; justify-content: space-between; min-height: 260px; }
.service--feature::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgb(255 107 26 / .35), transparent 65%); }
.service--feature .service__icon { background: var(--orange); color: #fff; }
.service--feature h3 { font-size: 1.5rem; }
.service--feature p { color: rgb(255 255 255 / .72); font-size: 1rem; max-width: 30rem; }
.service__tag { position: absolute; top: 24px; right: 24px; font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: .35rem .7rem; border-radius: 999px; background: rgb(255 255 255 / .1); }

@media (max-width: 1080px) { .services { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  {
  .services { grid-template-columns: 1fr; }
  .service--feature { grid-column: auto; }
  .service { flex-direction: row; align-items: flex-start; padding: 18px; }
  .service--feature { flex-direction: column; }
  .service > div { min-width: 0; }
}

/* ---------- Vehicles ---------- */
.vehicles { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.vehicle {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .9rem; text-align: center;
  padding: 26px 12px; border-radius: var(--radius); background: #fff; border: 1px solid var(--mist);
  font-weight: 700; font-size: .98rem; line-height: 1.25; transition: transform .3s var(--ease), box-shadow .3s, color .3s;
}
.vehicle .icon { width: 44px; height: 44px; stroke-width: 1.5; color: var(--navy-900); transition: color .3s; }
.vehicle:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vehicle:hover .icon { color: var(--orange); }
@media (max-width: 1080px) { .vehicles { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .vehicles { grid-template-columns: repeat(2, 1fr); } .vehicle:last-child { grid-column: span 2; } }

/* ---------- Heavy (trucks) split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .9rem; }
.split__lead { margin-top: 1.2rem; font-size: 1.12rem; color: rgb(255 255 255 / .72); }
.checklist { margin-top: 1.8rem; display: grid; gap: .9rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; }
.checklist .check { width: 26px; height: 26px; border-radius: 50%; background: rgb(255 107 26 / .15); color: var(--orange); display: grid; place-items: center; flex: none; margin-top: 1px; }
.checklist .check .icon { width: 15px; height: 15px; stroke-width: 3; }
.split .btn { margin-top: 2.2rem; }

.truck-visual {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 20%, rgb(255 107 26 / .22), transparent 55%), linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgb(255 255 255 / .08); overflow: hidden; display: grid; place-items: center;
}
.truck-visual::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgb(255 255 255 / .05) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .05) 1px, transparent 1px); background-size: 40px 40px; }
.truck-visual svg.illu { position: relative; width: 86%; height: auto; }
.stat { position: absolute; background: #fff; color: var(--ink); border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow-lg); }
.stat strong { display: block; font-size: 1.5rem; letter-spacing: -.03em; line-height: 1.1; color: var(--navy-900); }
.stat span { font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.stat--a { top: 8%; left: 7%; }
.stat--b { bottom: 8%; right: 7%; background: var(--orange); color: #fff; }
.stat--b strong, .stat--b span { color: #fff; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .truck-visual { max-width: 560px; } }

/* ---------- Features / why us ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { padding: 30px; border-radius: var(--radius); background: #fff; border: 1px solid var(--mist); transition: box-shadow .3s, transform .3s var(--ease); }
.feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature__icon { width: 56px; height: 56px; border-radius: 16px; background: var(--orange-100); color: var(--orange-600); display: grid; place-items: center; }
.feature__icon .icon { width: 28px; height: 28px; }
.feature h3 { margin-top: 1.3rem; font-size: 1.25rem; }
.feature p { margin-top: .6rem; color: var(--ink-soft); font-size: .98rem; }
@media (max-width: 960px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

/* ---------- Tow truck CTA band ---------- */
.tow {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 64px);
  background: linear-gradient(120deg, var(--orange) 0%, #FF8A3D 100%); color: #fff;
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
}
.tow::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, rgb(255 255 255 / .06) 0 18px, transparent 18px 36px); }
.tow > * { position: relative; }
.tow__icon { width: 64px; height: 64px; border-radius: 18px; background: rgb(255 255 255 / .18); display: grid; place-items: center; margin-bottom: 1.2rem; }
.tow__icon .icon { width: 34px; height: 34px; }
.tow h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.tow p { margin-top: .8rem; font-size: 1.12rem; color: rgb(255 255 255 / .92); max-width: 40rem; }
.tow__actions { display: flex; flex-direction: column; gap: .75rem; }
.tow .btn--dark { min-height: 60px; font-size: 1.15rem; padding: 0 1.8rem; }
@media (max-width: 800px) { .tow { grid-template-columns: 1fr; } .tow__actions { flex-direction: row; flex-wrap: wrap; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: rgb(255 255 255 / .04); border: 1px solid rgb(255 255 255 / .08); }
.step__num { font-size: 3.6rem; font-weight: 800; line-height: 1; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.5px rgb(255 107 26 / .9); }
.step h3 { margin-top: 1.2rem; font-size: 1.3rem; }
.step p { margin-top: .6rem; color: rgb(255 255 255 / .68); font-size: 1rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Area ---------- */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.area h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .9rem; }
.area__lead { margin-top: 1.2rem; font-size: 1.12rem; color: var(--ink-soft); }
.towns { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.towns li { display: inline-flex; align-items: center; gap: .45rem; padding: .6rem 1rem; border-radius: 999px; background: #fff; border: 1px solid var(--mist); font-weight: 700; font-size: .95rem; }
.towns li .icon { width: 16px; height: 16px; color: var(--orange); }
.area__map { position: relative; }
.area__map svg { width: 100%; height: auto; }
@media (max-width: 900px) { .area { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; display: grid; gap: 12px; }
.faq details { border-radius: var(--radius); background: #fff; border: 1px solid var(--mist); transition: box-shadow .3s, border-color .3s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 22px 24px; font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 34px; height: 34px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background-color .3s, color .3s; }
.faq summary .plus .icon { width: 18px; height: 18px; stroke-width: 2.4; }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq details p { padding: 0 24px 22px; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; }
.contact-card { border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; padding: clamp(28px, 4vw, 44px); position: relative; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 360px; height: 360px; right: -140px; bottom: -160px; border-radius: 50%; background: radial-gradient(circle, rgb(255 107 26 / .3), transparent 65%); pointer-events: none; }
.contact-card h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
.contact-list { margin-top: 1.8rem; display: grid; gap: 1.4rem; position: relative; z-index: 1; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci { width: 48px; height: 48px; border-radius: 14px; background: rgb(255 255 255 / .08); display: grid; place-items: center; flex: none; color: var(--orange); }
.contact-list small { display: block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgb(255 255 255 / .5); }
.contact-list .val { font-size: 1.1rem; font-weight: 700; line-height: 1.45; }
.contact-list a.val:hover { color: var(--orange); }
.contact-card .hours { margin-top: .4rem; border-top: 0; }
.contact-card .hours li { padding: .45rem 0; font-size: .98rem; }
.contact-card .hours li:last-child { border-bottom: 0; }
.pay { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .4rem; }
.pay span { display: inline-flex; align-items: center; gap: .4rem; padding: .4rem .8rem; border-radius: 10px; background: rgb(255 255 255 / .08); font-weight: 700; font-size: .92rem; }
.contact-card .btn { margin-top: 2rem; position: relative; z-index: 1; }

.map { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; background: var(--navy-800); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; text-align: center; padding: 32px; color: #fff;
  background:
    radial-gradient(circle at 50% 45%, rgb(255 107 26 / .25), transparent 40%),
    linear-gradient(rgb(255 255 255 / .05) 1px, transparent 1px) 0 0 / 32px 32px,
    linear-gradient(90deg, rgb(255 255 255 / .05) 1px, transparent 1px) 0 0 / 32px 32px,
    var(--navy-900);
}
.map__pin { width: 76px; height: 76px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; box-shadow: 0 0 0 12px rgb(255 107 26 / .18), 0 0 0 28px rgb(255 107 26 / .08); }
.map__pin .icon { width: 36px; height: 36px; color: #fff; }
.map__placeholder strong { font-size: 1.3rem; }
.map__placeholder small { color: rgb(255 255 255 / .6); max-width: 26rem; font-size: .85rem; }
.map__actions { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 960px) { .contact { grid-template-columns: 1fr; } .map { min-height: 400px; } }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgb(255 255 255 / .65); padding: 72px 0 32px; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo img { height: 42px; width: auto; }
.footer__about { margin-top: 1.2rem; max-width: 22rem; }
.footer h3 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.1rem; }
.footer li + li { margin-top: .55rem; }
.footer a:hover { color: var(--orange); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgb(255 255 255 / .08); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .85rem; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Mobile call bar ---------- */
.callbar { display: none; }
@media (max-width: 760px) {
  .callbar {
    position: fixed; z-index: 60; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 8px; padding: 8px; border-radius: 20px;
    background: rgb(5 19 38 / .9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    box-shadow: var(--shadow-lg); border: 1px solid rgb(255 255 255 / .08);
    transform: translateY(140%); transition: transform .4s var(--ease);
  }
  .callbar.is-visible { transform: none; }
  .callbar .btn { min-height: 50px; padding: 0 1rem; }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 110px; }
}

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }

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

/* ---------- Simple page (privacy, 404) ---------- */
.page { padding: calc(var(--header-h) + 64px) 0 96px; }
.page-body .header { background: var(--navy-950); }
.prose { max-width: 760px; }
.prose h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.4rem; margin: 2.2rem 0 .8rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose p + p { margin-top: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-top: .6rem; }
.prose a { color: var(--orange-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Photos
   ========================================================================== */
picture { display: block; }
picture img { width: 100%; height: 100%; object-fit: cover; }

/* Hero background photo */
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg img { object-position: 60% 60%; transform: scale(1.04); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(5 19 38 / .96) 0%, rgb(5 19 38 / .88) 38%, rgb(5 19 38 / .55) 70%, rgb(5 19 38 / .4) 100%),
    linear-gradient(0deg, rgb(5 19 38 / .9) 0%, rgb(5 19 38 / 0) 35%),
    linear-gradient(180deg, rgb(5 19 38 / .7) 0%, rgb(5 19 38 / 0) 25%);
  background-size: auto; mask-image: none; -webkit-mask-image: none;
}
.hero::after { opacity: .6; }
@media (max-width: 960px) {
  .hero::before { background: linear-gradient(180deg, rgb(5 19 38 / .72) 0%, rgb(5 19 38 / .82) 45%, rgb(5 19 38 / .95) 100%); }
}

/* Trucks photo */
.truck-visual { aspect-ratio: 4 / 3.4; place-items: stretch; }
.truck-visual::before { display: none; }
.truck-visual__img { position: absolute; inset: 0; }
.truck-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(5 19 38 / 0) 55%, rgb(5 19 38 / .45)); pointer-events: none; }
.stat { z-index: 1; }

/* Vehicles + machine photo */
.vehicles-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 16px; align-items: stretch; }
.vehicles-wrap .vehicles { grid-template-columns: repeat(2, 1fr); }
.vehicles-wrap .vehicle { flex-direction: row; justify-content: flex-start; text-align: left; padding: 22px; gap: 1rem; }
.vehicles-wrap .vehicle .icon { width: 36px; height: 36px; }
.vehicles-wrap .vehicle:last-child { grid-column: auto; }
.vehicle--cta { padding: 0 !important; background: var(--orange); border-color: transparent; color: #fff; }
.vehicle--cta a { display: flex; align-items: center; gap: 1rem; width: 100%; height: 100%; padding: 22px; flex-wrap: wrap; }
.vehicle--cta .icon { color: #fff !important; }
.vehicle--cta small { display: block; width: 100%; margin-top: -.6rem; padding-left: calc(36px + 1rem); font-weight: 600; opacity: .85; font-size: .85rem; }
.vehicle--cta:hover { background: var(--orange-600); }

.photo-card { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; background: var(--navy-900); }
.photo-card picture { position: absolute; inset: 0; }
.photo-card img { transition: transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgb(5 19 38 / 0) 50%, rgb(5 19 38 / .85)); }
.photo-card figcaption { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; color: #fff; }
.photo-card figcaption strong { display: block; font-size: 1.35rem; letter-spacing: -.02em; }
.photo-card figcaption span { font-size: .95rem; color: rgb(255 255 255 / .78); }
@media (max-width: 900px) {
  .vehicles-wrap { grid-template-columns: 1fr; }
  .photo-card { min-height: 0; aspect-ratio: 4 / 3; }
}
@media (max-width: 420px) {
  .vehicles-wrap .vehicle { padding: 16px; gap: .7rem; font-size: .92rem; }
  .vehicles-wrap .vehicle .icon { width: 30px; height: 30px; }
  .vehicle--cta a { padding: 16px; gap: .7rem; }
  .vehicle--cta small { padding-left: 0; margin-top: 0; }
}

/* Tow band photo */
.tow { gap: 0; grid-template-columns: 1fr; padding-right: calc(40% + clamp(24px, 4vw, 48px)); min-height: 380px; }
.tow__actions { flex-direction: row; flex-wrap: wrap; margin-top: 1.8rem; }
.tow__photo { position: absolute !important; top: 0; right: 0; bottom: 0; width: 40%; }
.tow__photo img { object-position: 60% 62%; }
.tow__photo::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 90px; background: linear-gradient(90deg, #FF7A2E, rgb(255 122 46 / 0)); z-index: 1; }
@media (max-width: 800px) {
  .tow { padding: 0 clamp(24px, 5vw, 40px) clamp(28px, 5vw, 40px); min-height: 0; }
  .tow__photo { position: relative !important; order: -1; width: auto; margin: 0 calc(-1 * clamp(24px, 5vw, 40px)) 1.5rem; aspect-ratio: 16 / 10; }
  .tow__photo::before { inset: auto 0 0 0; width: auto; height: 80px; background: linear-gradient(0deg, #FF7A2E, rgb(255 122 46 / 0)); }
  .tow > div:first-child { position: relative; }
}

/* ==========================================================================
   Two phone numbers: workshop + roadside assistance
   ========================================================================== */
.btn__stack { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.btn__stack small { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.header__tow { color: #fff; border: 1.5px solid rgb(255 255 255 / .25); background: rgb(255 255 255 / .06); }
.header__tow:hover { border-color: var(--orange); background: rgb(255 107 26 / .12); }
.header__tow .icon { color: var(--orange); }
@media (max-width: 1180px) { .header__tow { display: none !important; } }
.nav .btn--ghost.nav__call { margin-top: .6rem; border: 1.5px solid rgb(255 255 255 / .25); }

.phones { margin-top: 1.3rem; display: grid; gap: .6rem; }
.phone-row { display: flex; align-items: center; gap: .9rem; padding: .8rem 1rem; border-radius: 16px; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .1); transition: border-color .25s, background-color .25s, transform .25s var(--ease); }
.phone-row:hover { border-color: var(--orange); background: rgb(255 107 26 / .1); transform: translateY(-2px); }
.phone-row__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--orange); color: #fff; flex: none; }
.phone-row--tow .phone-row__ic { background: rgb(255 255 255 / .1); color: var(--orange); }
.phone-row small { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgb(255 255 255 / .6); }
.phone-row strong { display: block; font-size: clamp(1.4rem, 2.6vw, 1.75rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.15; }

.btn--tow { background: #fff; color: var(--navy-900); }
.btn--tow .icon { color: var(--orange); }
@media (max-width: 760px) {
  .callbar { grid-template-columns: 1fr 1fr 50px; }
  .callbar .btn { padding: 0 .55rem; font-size: .9rem; gap: .4rem; }
  .callbar .btn--icon { padding: 0; }
}

/* ==========================================================================
   Service links, CTA card, sub pages
   ========================================================================== */
a.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.service h3 a:hover { color: var(--orange-600); }
.service--feature h3 a:hover { color: #fff; }
.more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .6rem; font-weight: 700; font-size: .9rem; color: var(--orange-600); }
.service--feature .more { color: var(--orange); }
.more .icon { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.service:hover .more .icon { transform: translateX(4px); }
.service--cta { background: var(--navy-900); color: #fff; border-color: transparent; }
.service--cta .service__icon { background: var(--orange); color: #fff; }
.service--cta p { color: rgb(255 255 255 / .7); }
.service--cta .btn { position: relative; z-index: 2; }
.tow__actions .btn--light .icon { color: var(--orange); }

/* Sub page hero */
.hero--sub { padding-bottom: clamp(48px, 7vw, 88px); }
.hero--sub h1 { font-size: clamp(2.3rem, 5.4vw, 4rem); }
.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: .88rem; color: rgb(255 255 255 / .6); font-weight: 600; margin-bottom: 1.2rem; }
.crumbs a { color: rgb(255 255 255 / .85); }
.crumbs a:hover { color: var(--orange); }
.crumbs span[aria-hidden] { opacity: .5; }
.hero--sub .hero__grid { grid-template-columns: 1.3fr .8fr; }
@media (max-width: 960px) { .hero--sub .hero__grid { grid-template-columns: 1fr; } }

.prose-block { max-width: 820px; }
.prose-block p { color: var(--ink-soft); font-size: 1.08rem; }
.prose-block p + p { margin-top: 1rem; }
.prose-block h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: .9rem 0 1.2rem; }
.section--dark .prose-block p { color: rgb(255 255 255 / .72); }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related a { position: relative; display: flex; flex-direction: column; gap: .6rem; padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--mist); transition: transform .3s var(--ease), box-shadow .3s; }
.related a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.related .service__icon { margin-bottom: .4rem; }
.related strong { font-size: 1.15rem; letter-spacing: -.015em; }
.related span.txt { color: var(--ink-soft); font-size: .95rem; }
@media (max-width: 860px) { .related { grid-template-columns: 1fr; } }

.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-duo .photo-card { min-height: 460px; }
@media (max-width: 760px) { .photo-duo { grid-template-columns: 1fr; } .photo-duo .photo-card { min-height: 0; aspect-ratio: 4 / 3; } }
.split > *, .hero__grid > *, .area > * { min-width: 0; }
.nav a { white-space: nowrap; }
@media (min-width: 961px) and (max-width: 1240px) { .nav a { padding: .55rem .6rem; font-size: .92rem; } .header__inner { gap: 1rem; } }
@media (max-width: 1320px) { .header__tow { display: none !important; } }

/* Dark canvas behind the page: no white strip when the phone "bounces"
   past the top (or bottom) of the page while scrolling */
html, body { background-color: var(--navy-950); }
main { display: block; background-color: var(--white); }


/* ==========================================================================
   MOBILE POLISH + in-app browser (Messenger / Facebook / Instagram) fixes
   ========================================================================== */
/* Solid header everywhere, so no white shows behind it when the page is
   pulled down in in-app browsers (their background is always white). */
.header { background: rgb(5 19 38 / .94); -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px); }
/* Dark area above the top of the page, revealed by the iOS "bounce" */
body { position: relative; }
body::before { content: ""; position: absolute; left: 0; right: 0; top: -100vh; height: 100vh; background: var(--navy-950); pointer-events: none; }
html { overscroll-behavior-y: none; }

.lbl-sm { display: none; }
.hours li.is-today span span::after { content: none; }

@media (max-width: 760px) {
  .lbl-lg { display: none; }
  .lbl-sm { display: inline; }

  /* Hero: one clear set of call buttons, no repeated numbers below */
  .hero { padding-top: calc(var(--header-h) + 28px); padding-bottom: 40px; }
  .hero h1 { margin-top: 1rem; }
  .hero__lead { margin-top: 1rem; }
  .hero__actions { margin-top: 1.6rem; flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__badges { display: none; }
  .hero__grid { gap: 20px; }

  /* Contact card in the hero: numbers are already in the buttons above -> show only status, hours, address */
  .hero .status-card { padding: 18px 20px; border-radius: 20px; }
  .hero .status-card .phones { display: none; }
  .hero .status-card .status-card__label { font-size: 0; }
  .hero .status-card .status-card__label::after { content: "Godziny otwarcia"; font-size: .78rem; }
  .hero .hours { margin-top: .8rem; }
  .hours li { padding: .55rem 0; font-size: .95rem; }
  .status-card__addr { margin-top: .8rem; font-size: .9rem; }

  /* Tighter sections */
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2, .split h2, .area h2, .prose-block h2 { font-size: 1.85rem; }
  .section-head p, .split__lead, .area__lead { font-size: 1rem; }

  /* Feature cards: icon left, text right – much shorter */
  .features { gap: 10px; }
  .feature { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; padding: 18px; }
  .feature__icon { width: 44px; height: 44px; border-radius: 12px; grid-row: span 2; }
  .feature__icon .icon { width: 22px; height: 22px; }
  .feature h3 { margin-top: 0; font-size: 1.05rem; }
  .feature p { margin-top: .25rem; font-size: .92rem; }

  /* Service cards: compact 2-column tiles (title only) */
  .services { gap: 10px; grid-template-columns: 1fr 1fr; }
  .service { flex-direction: column; align-items: flex-start; gap: .6rem; padding: 14px; }
  .service:not(.service--feature):not(.service--cta) p { display: none; }
  .service h3 { font-size: .95rem; }
  .service__icon { width: 40px; height: 40px; border-radius: 12px; }
  .service__icon .icon { width: 22px; height: 22px; }
  .service .more { margin-top: .3rem; font-size: .82rem; }
  .service--feature, .service--cta { grid-column: 1 / -1; }
  .service--cta { flex-direction: row; flex-wrap: wrap; align-items: center; padding: 18px; }
  .service--cta > div { flex: 1; min-width: 150px; }
  .service--feature { min-height: 0; padding: 20px; }
  .service--feature h3 { font-size: 1.2rem; }
  .service__tag { display: none; }

  /* Steps */
  .steps { gap: 10px; }
  .step { padding: 20px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; }
  .step__num { font-size: 2.4rem; grid-row: span 2; }
  .step h3 { margin-top: 0; font-size: 1.1rem; }
  .step p { margin-top: .3rem; font-size: .95rem; }

  /* Tow band + CTA bands */
  .tow h2 { font-size: 1.6rem; }
  .tow p { font-size: 1rem; }
  .tow__actions .btn { width: 100%; }

  /* Contact card at the bottom */
  .contact-card { padding: 24px 20px; }
  .contact-list { gap: 1rem; margin-top: 1.2rem; }
  .contact-list .ci { width: 40px; height: 40px; }
  .map { min-height: 340px; }

  /* Towns, FAQ */
  .towns li { padding: .45rem .8rem; font-size: .88rem; }
  .faq summary { padding: 18px; font-size: 1rem; }
  .faq details p { padding: 0 18px 18px; }

  /* Bottom call bar: fully hidden until the hero call buttons scroll away */
  .callbar { transform: translateY(calc(100% + 90px)); opacity: 0; visibility: hidden; transition: transform .4s var(--ease), opacity .3s, visibility .4s; }
  .callbar.is-visible { transform: none; opacity: 1; visibility: visible; }

  /* Trucks section stats: smaller */
  .stat { padding: 10px 14px; }
  .stat strong { font-size: 1.15rem; }
}


/* ==========================================================================
   NO DUPLICATE NUMBERS + tidy call bar
   ========================================================================== */
/* Header call buttons appear only after the hero call buttons scroll away,
   so a number is never shown twice on one screen */
.js .header__cta .btn { opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .3s, transform .3s var(--ease), visibility .3s; }
.js.past-hero .header__cta .btn, .js.menu-open .header__cta .btn { opacity: 1; visibility: visible; transform: none; }
.hero .status-card__label { font-size: .8rem !important; }
.hero .status-card__label::after { content: none !important; }
.hero .hours { margin-top: 1rem; }

@media (max-width: 760px) {
  .callbar { grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; }
  .callbar .btn { min-height: 52px; padding: 0 14px; font-size: .95rem; gap: .5rem; white-space: nowrap; }
  .callbar .btn .icon { width: 19px; height: 19px; }
}
@media (max-width: 360px) {
  .callbar .btn { font-size: .88rem; padding: 0 10px; }
  .callbar .btn .icon { display: none; }
}
