/* ================================================================
   POMOC DROGOWA RAWICZ — SHARED STYLES
================================================================ */

/* === DESIGN TOKENS === */
:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --surface: #15151a;
  --surface-2: #1c1c22;
  --surface-3: #26262e;
  --border: #26262e;
  --border-light: #3a3a44;

  --red: #e4141c;
  --red-dark: #b00d14;
  --red-bright: #ff2530;
  --red-glow: rgba(228, 20, 28, 0.35);

  --yellow: #f5b800;
  --yellow-warm: #ffc72c;
  --yellow-dark: #c99700;

  --white: #ffffff;
  --off-white: #f4f4f6;
  --gray: #8a8a93;
  --gray-mid: #5c5c66;
  --gray-dark: #3a3a42;
  --gray-light: #c4c4cc;

  --success: #3dd68c;

  --font-display: 'Anton', 'Arial Black', sans-serif;
  --font-heading: 'Archivo', sans-serif;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;

  --shadow-red: 0 20px 40px -15px var(--red-glow);
  --shadow-dark: 0 25px 50px -15px rgba(0, 0, 0, 0.6);

  --container: 1360px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET + BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--off-white);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--red); color: var(--white); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; position: relative; }
@media (max-width: 560px) {
  .container { padding: 0 18px; }
}

/* Noise overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.08 0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

/* === TYPOGRAPHY === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--red);
}
.eyebrow.yellow { color: var(--yellow); }
.eyebrow.yellow::before { background: var(--yellow); }
.eyebrow.white { color: var(--white); }
.eyebrow.white::before { background: var(--white); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.heading {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  color: var(--white);
}
.section-title em { font-style: normal; color: var(--red); }
.section-title .y { color: var(--yellow); }

.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-light);
  max-width: 620px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 25px 50px -15px rgba(255, 37, 48, 0.55);
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--bg);
}
.btn-yellow:hover {
  background: var(--yellow-warm);
  transform: translateY(-2px);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* === UTILITY BAR === */
.utility-bar {
  position: relative;
  z-index: 10;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
}
.utility-left { display: flex; gap: 24px; align-items: center; }
.utility-left .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.utility-left .sep { color: var(--gray-dark); }
.utility-right { display: flex; gap: 20px; align-items: center; }
.utility-right a:hover { color: var(--red); }
@media (max-width: 900px) {
  .utility-bar { display: none; }
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  height: 88px;
  width: auto;
  display: block;
  transition: opacity 0.2s var(--ease);
}
.logo:hover .logo-img { opacity: 0.85; }
.footer-about .logo-img { height: 110px; }
@media (max-width: 700px) {
  .logo-img { height: 64px; }
  .footer-about .logo-img { height: 88px; }
}
.logo-mark {
  width: 46px; height: 46px;
  background: var(--red);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--white);
  position: relative;
  transform: rotate(-3deg);
  box-shadow: 0 6px 20px -6px var(--red-glow);
}
.logo-mark svg { width: 26px; height: 26px; }
.logo-mark::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px solid var(--red);
  border-radius: 8px;
  opacity: 0.4;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text .brand {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.logo-text .sub {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--red);
  margin-top: 4px;
  border-top: 1px solid var(--border-light);
  padding-top: 4px;
}

.nav { display: flex; gap: 4px; align-items: center; list-style: none; }
.nav > li { position: relative; list-style: none; }
.nav > li > a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  position: relative;
}
.nav > li > a:hover, .nav > li > a.active { color: var(--white); }
.nav > li > a.active::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
}
.nav > li.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 8px;
  vertical-align: middle;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-dark);
  list-style: none;
}
.nav > li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--surface-2); color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.phone-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 10px 10px 8px;
  background: rgba(228, 20, 28, 0.08);
  border: 1px solid rgba(228, 20, 28, 0.3);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.phone-btn:hover {
  background: rgba(228, 20, 28, 0.15);
  border-color: var(--red);
}
.phone-icon {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.phone-icon svg { width: 18px; height: 18px; }
.phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  padding-right: 12px;
}
.phone-text small {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.phone-text strong {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.burger { display: none; width: 44px; height: 44px; border-radius: 8px; border: 1px solid var(--border-light); }
.burger span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px auto; transition: 0.3s; }

@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: block; }
  .header .container { height: 76px; }
  .phone-text { display: none; }
  .phone-btn { padding: 4px; }
}

/* === MOBILE MENU === */
@media (max-width: 1200px) {
  .burger { position: relative; z-index: 1001; cursor: pointer; background: transparent; }
  .burger span { transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); transform-origin: center; }
  body.menu-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.menu-open .burger span:nth-child(2) { opacity: 0; }
  body.menu-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  body.menu-open { overflow: hidden; }

  nav { position: static; }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    gap: 0;
    padding: 100px 28px 40px;
    background: var(--bg-2);
    border-left: 1px solid var(--border-light);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
    z-index: 1000;
    align-items: stretch;
    justify-content: flex-start;
  }
  body.menu-open .nav { transform: translateX(0); }

  .nav > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav > li:last-child { border-bottom: none; }
  .nav > li > a {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-family: var(--font-cond);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
  }
  .nav > li > a.active { color: var(--red-bright); }
  .nav > li > a::after { display: none; }

  .nav .has-dropdown > a { pointer-events: none; color: var(--gray); font-size: 12px; letter-spacing: 0.15em; padding-bottom: 8px; }
  .nav .dropdown {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 14px 0;
    min-width: 0;
    width: 100%;
  }
  .nav .dropdown li { border: none; }
  .nav .dropdown a {
    padding: 10px 0 10px 14px;
    font-size: 14px;
    color: var(--gray-light);
    border-left: 2px solid var(--border-light);
    text-transform: none;
    letter-spacing: 0.01em;
    font-family: var(--font-body);
    font-weight: 500;
  }
  .nav .dropdown a:hover { color: var(--white); border-left-color: var(--red); background: transparent; }

  /* Backdrop */
  body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    pointer-events: none;
    animation: fadeIn 0.25s var(--ease-out);
  }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* === BREADCRUMBS === */
.breadcrumbs {
  background: var(--bg-2);
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumbs .container { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { color: var(--gray-dark); }
.breadcrumbs .current { color: var(--red); }

/* === HERO (main page) === */
.hero {
  position: relative;
  min-height: 88vh;
  padding: 80px 0 140px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 30%, rgba(228, 20, 28, 0.08), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -2;
}
.hero-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg, transparent 0, transparent 40px,
    rgba(228, 20, 28, 0.06) 40px, rgba(228, 20, 28, 0.06) 42px,
    transparent 42px, transparent 80px,
    rgba(228, 20, 28, 0.12) 80px, rgba(228, 20, 28, 0.12) 82px
  );
  mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 20%, transparent 80%);
  z-index: -1;
  opacity: 0.7;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-content { position: relative; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 8px;
  background: rgba(228, 20, 28, 0.1);
  border: 1px solid rgba(228, 20, 28, 0.3);
  border-radius: 999px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}
.hero-eyebrow .live-dot {
  width: 24px; height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-eyebrow .live-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--red);
  animation: ping 1.8s infinite;
}
.hero-eyebrow .live-dot::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--white);
  border-radius: 50%;
}
@keyframes ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.9s var(--ease-out) 0.2s both;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 {
  display: block;
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}
.hero-title .line-2 .accent {
  color: var(--red);
  -webkit-text-stroke: 0;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray-light);
  max-width: 540px;
  margin-bottom: 40px;
  animation: fadeUp 1s var(--ease-out) 0.35s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  animation: fadeUp 1s var(--ease-out) 0.45s both;
}
.hero-meta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}
.hero-meta-item { display: flex; flex-direction: column; gap: 6px; }
.hero-meta-item .k {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.hero-meta-item .v {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-meta-item .v.red { color: var(--red-bright); }

.hero-visual {
  position: relative;
  aspect-ratio: 1.1 / 1;
  animation: fadeUp 1.2s var(--ease-out) 0.4s both;
}
.hero-visual-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 40%, #2a2016 0%, transparent 60%),
    linear-gradient(160deg, #1a1a22 0%, #0d0d12 100%);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dark);
}
.truck-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.truck-scene .sun {
  position: absolute;
  top: 30%; right: 15%;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255, 200, 120, 0.4) 0%, rgba(255, 150, 80, 0.1) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.truck-scene .ground {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(180deg, #0f0d0a 0%, #050505 100%);
}

.hero-truck-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-badge {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--bg);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.05;
  right: -20px;
  top: -20px;
  animation: spin 18s linear infinite;
  box-shadow: 0 20px 50px -10px rgba(245, 184, 0, 0.5);
  z-index: 2;
}
.hero-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}
.hero-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-floating-card {
  position: absolute;
  left: -24px;
  bottom: 40px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-dark);
  z-index: 2;
  backdrop-filter: blur(10px);
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-floating-card .icon-chip {
  width: 44px; height: 44px;
  background: rgba(61, 214, 140, 0.15);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--success);
}
.hero-floating-card .text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-floating-card .text small {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.hero-floating-card .text strong {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.hero-marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  overflow: hidden;
  border-top: 1px solid var(--border-light);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: slide 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--gray-mid);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-track span::after {
  content: "◆";
  color: var(--red);
  font-size: 14px;
}
@keyframes slide { to { transform: translateX(-50%); } }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { aspect-ratio: 4/3; }
  .hero-meta { gap: 24px; }
}

/* === SUBPAGE HERO (shorter, more focused) === */
.sub-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.sub-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(228, 20, 28, 0.1), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -2;
}
.sub-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.18;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: var(--white);
  margin: 24px 0 28px;
}
.sub-hero h1 em {
  font-style: normal;
  color: var(--red);
}
.sub-hero-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 36px;
  max-width: 600px;
}
.sub-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.sub-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.sub-hero-meta .item .n {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}
.sub-hero-meta .item .n .plus { color: var(--red); }
.sub-hero-meta .item .l {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 960px) {
  .sub-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .sub-hero-meta { grid-template-columns: repeat(3, 1fr); padding: 22px; }
  .sub-hero-meta .item .n { font-size: 34px; }
}

/* === STATS STRIP === */
.stats-strip {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-strip .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
  border-left: 1px solid var(--border);
  position: relative;
}
.stat-item:first-child { border-left: none; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0;
}
.stat-item .num .plus { color: var(--red); }
.stat-item .label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}
@media (max-width: 820px) {
  .stats-strip .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat-item { border-left: none; padding: 0; }
}

/* === SECTION HELPERS === */
.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }
.section-sm p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-light);
  margin-bottom: 20px;
}
.section-sm p:last-of-type { margin-bottom: 0; }
.section-bg-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-surface { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* === DLACZEGO WARTO (why) === */
.why {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "DLACZEGO";
  position: absolute;
  top: -40px;
  right: -60px;
  font-family: var(--font-display);
  font-size: 320px;
  line-height: 0.8;
  color: var(--surface);
  z-index: 0;
  pointer-events: none;
  letter-spacing: -0.02em;
}
.why-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}
.why-head .yellow-bar {
  width: 80px;
  height: 4px;
  background: var(--yellow);
  margin-top: 24px;
}
.why-head .big-num {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.85;
  color: var(--yellow);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.why-head .big-num-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  max-width: 320px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s var(--ease);
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}
.why-card:hover { background: var(--surface-2); }
.why-card .icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
  color: var(--red);
}
.why-card .num {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gray-dark);
  letter-spacing: 0.1em;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
}
@media (max-width: 900px) {
  .why-head { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* === USŁUGI (services grid) === */
.services {
  background: var(--bg-2);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.services-head p { color: var(--gray-light); font-size: 17px; max-width: 440px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  background: var(--surface-2);
  box-shadow: 0 30px 60px -20px rgba(228, 20, 28, 0.3);
}
.service-card:hover .service-arrow {
  background: var(--red);
  color: var(--white);
  transform: rotate(-45deg);
}
.service-card .tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}
.service-card .icon {
  width: 64px; height: 64px;
  background: rgba(228, 20, 28, 0.1);
  border: 1px solid rgba(228, 20, 28, 0.3);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red-bright);
  margin-bottom: 28px;
  transition: all 0.3s var(--ease);
}
.service-card:hover .icon {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-light);
  margin-bottom: 24px;
}
.service-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.service-card ul li {
  font-family: var(--font-cond);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 13px;
  width: 12px; height: 2px;
  background: var(--red);
}
.service-arrow {
  margin-top: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: all 0.3s var(--ease);
  align-self: flex-end;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* === SERVICE DETAIL (subpage content blocks) === */
.service-detail {
  padding: 100px 0;
  background: var(--bg);
}
.sd-intro {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  margin-bottom: 80px;
  align-items: start;
}
.sd-intro h2 { margin-bottom: 24px; }
.sd-intro-desc p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 20px;
}
.sd-intro-desc p strong { color: var(--white); }
@media (max-width: 900px) { .sd-intro { grid-template-columns: 1fr; gap: 40px; } }

.sd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sd-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s var(--ease);
}
.sd-block:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.sd-block .ico {
  width: 56px; height: 56px;
  background: rgba(228, 20, 28, 0.12);
  border: 1px solid rgba(228, 20, 28, 0.3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--red-bright);
  flex-shrink: 0;
}
.sd-block h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.005em;
}
.sd-block p { font-size: 15px; line-height: 1.65; color: var(--gray-light); }
.sd-block .link {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-top: auto;
  padding-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sd-block .link:hover { color: var(--white); }
@media (max-width: 760px) { .sd-grid { grid-template-columns: 1fr; } }

/* === PROCESS STEPS === */
.process { background: var(--bg); position: relative; overflow: hidden; }
.process-head { margin-bottom: 80px; text-align: center; }
.process-head .lead { margin: 20px auto 0; text-align: center; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps.steps-3 { grid-template-columns: repeat(3, 1fr); }
.process-steps::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-light) 0, var(--border-light) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.process-step .badge {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-light);
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.process-step:hover .badge {
  border-color: var(--red);
  background: rgba(228, 20, 28, 0.1);
  transform: translateY(-4px);
}
.process-step .badge .num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  line-height: 1;
}
.process-step .badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px dashed var(--border-light);
  border-radius: 50%;
  opacity: 0.5;
}
.process-step .badge .icon {
  position: absolute;
  top: -14px; right: -14px;
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 20px -8px var(--red-glow);
}
.process-step h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.process-step p { font-size: 14px; line-height: 1.55; color: var(--gray-light); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 60px 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 520px) { .process-steps { grid-template-columns: 1fr; } }

/* === COVERAGE MAP === */
.coverage { background: var(--bg); position: relative; overflow: hidden; padding: 140px 0; }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.coverage-text h2 { margin-bottom: 32px; }
.coverage-text p { font-size: 17px; line-height: 1.7; color: var(--gray-light); margin-bottom: 32px; }
.coverage-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 20px;
  margin-bottom: 40px;
  list-style: none;
}
.coverage-cities li {
  padding: 8px 0;
  font-family: var(--font-cond);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.coverage-cities li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage-map {
  position: relative;
  aspect-ratio: 1 / 1.02;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(228, 20, 28, 0.15) 0%, transparent 60%),
    var(--surface);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  padding: 40px;
}
.coverage-map .grid-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border-light) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 70%);
  opacity: 0.5;
}
.coverage-map .hub { position: absolute; top: 42%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.coverage-map .hub::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(228, 20, 28, 0.3), 0 0 30px var(--red);
  transform: translate(-50%, -50%);
}
.coverage-map .hub::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 2s ease-out infinite;
}
@keyframes ripple {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(10); opacity: 0; }
}
.coverage-map .hub-label {
  position: absolute;
  top: 30px; left: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.coverage-map .radius {
  position: absolute;
  top: 42%; left: 50%;
  width: 70%; aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(228, 20, 28, 0.35);
  border-radius: 50%;
  z-index: 1;
}
.coverage-map .radius.outer { width: 95%; border-color: rgba(228, 20, 28, 0.15); }
.coverage-map .pin {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--yellow);
  z-index: 2;
}
.coverage-map .pin-label {
  position: absolute;
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
  z-index: 2;
}
.coverage-map .area-badge {
  position: absolute;
  right: 30px; bottom: 30px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-red);
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
  z-index: 4;
}
.coverage-map .area-badge .num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.coverage-map .area-badge .lab {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}
@media (max-width: 900px) { .coverage-inner { grid-template-columns: 1fr; gap: 60px; } }

/* === GUARANTEES BANNER === */
.guarantees {
  background: var(--red);
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.guarantees::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 50%, rgba(0, 0, 0, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 50%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.guarantees .container { position: relative; z-index: 1; }
.guar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 0;
}
.guar-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.guar-item:last-child { border-right: none; }
.guar-item .icon { width: 40px; height: 40px; color: var(--yellow); }
.guar-item h4 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.guar-item p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media (max-width: 900px) { .guar-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } .guar-item { border-right: none; padding: 0; } }
@media (max-width: 500px) { .guar-grid { grid-template-columns: 1fr; } }

/* === BULLET LIST (jak możemy pomóc / pomożemy ci) === */
.bullets-section { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--border); }
.bullets-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.bullets-wrap h2 { margin-bottom: 24px; }
.bullets-wrap > div > p { font-size: 16px; line-height: 1.7; color: var(--gray-light); }
.bullets-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
}
.bullets-list li {
  display: flex;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-light);
  transition: all 0.3s var(--ease);
}
.bullets-list li:hover {
  border-color: var(--red);
  transform: translateX(2px);
}
.bullets-list li .tick {
  width: 22px; height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}
.bullets-list li .tick svg { width: 12px; height: 12px; }
@media (max-width: 960px) {
  .bullets-wrap { grid-template-columns: 1fr; gap: 40px; }
  .bullets-list { grid-template-columns: 1fr; }
}

/* === PRICING TABLE === */
.pricing { background: var(--bg-2); padding: 140px 0; position: relative; }
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.pricing-text h2 { margin-bottom: 28px; }
.pricing-text p { color: var(--gray-light); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.pricing-note {
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pricing-note .icon { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.pricing-note p { margin: 0; font-size: 14px; color: var(--gray-light); }
.pricing-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table-head {
  background: var(--bg);
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-table-head h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 0.01em; }
.pricing-table-head .badge {
  font-family: var(--font-cond);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.pricing-row .desc { font-size: 13px; color: var(--gray); margin-top: 4px; }
.pricing-row .price {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  white-space: nowrap;
}
.pricing-row .price small { font-family: var(--font-cond); font-size: 12px; color: var(--gray); font-weight: 500; margin-left: 4px; letter-spacing: 0.05em; }
@media (max-width: 900px) { .pricing-inner { grid-template-columns: 1fr; gap: 50px; } }

/* === FAQ === */
.faq { background: var(--surface); padding: 140px 0; position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: flex-start;
}
.faq-text h2 { margin-bottom: 24px; }
.faq-text p { color: var(--gray-light); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.faq-text .contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
}
.faq-text .contact-card .ico {
  width: 56px; height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}
.faq-text .contact-card .info { display: flex; flex-direction: column; gap: 2px; }
.faq-text .contact-card .info small {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.faq-text .contact-card .info strong { font-family: var(--font-display); font-size: 22px; color: var(--white); letter-spacing: 0.01em; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item.open { border-color: var(--red); }
.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red-bright); }
.faq-item .icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
  position: relative;
}
.faq-item .icon::before, .faq-item .icon::after {
  content: "";
  position: absolute;
  background: var(--white);
  transition: all 0.3s var(--ease);
}
.faq-item .icon::before { width: 12px; height: 1.5px; }
.faq-item .icon::after { width: 1.5px; height: 12px; }
.faq-item[open] .icon { background: var(--red); border-color: var(--red); }
.faq-item[open] .icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 28px 28px; color: var(--gray-light); font-size: 15px; line-height: 1.7; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
@media (max-width: 900px) { .faq-inner { grid-template-columns: 1fr; gap: 40px; } }

/* === CTA BANNER === */
.cta-banner { background: var(--bg); padding: 120px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(228, 20, 28, 0.15) 0%, transparent 70%);
}
.cta-banner .container { position: relative; text-align: center; }
.cta-banner .huge {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 160px);
  line-height: 1.22;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.cta-banner .huge em { font-style: normal; color: var(--red); }
.cta-banner .sub { font-size: 18px; color: var(--gray-light); max-width: 600px; margin: 0 auto 48px; }
.cta-banner .phones { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-banner .phone-big {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.cta-banner .phone-big:hover { background: var(--red); border-color: var(--red); }
.cta-banner .phone-big .pi {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
  transition: background 0.3s var(--ease);
}
.cta-banner .phone-big:hover .pi { background: var(--white); color: var(--red); }
.cta-banner .phone-big .num { font-family: var(--font-display); font-size: 28px; color: var(--white); letter-spacing: 0.02em; }

/* === CONTACT === */
.contact { background: var(--bg-2); padding: 140px 0; position: relative; border-top: 1px solid var(--border); }
.contact-head { text-align: center; margin-bottom: 72px; }
.contact-head p { color: var(--gray-light); font-size: 17px; max-width: 600px; margin: 20px auto 0; }
.contact-inner { display: block; max-width: 1100px; margin: 0 auto; }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 15px;
  transition: all 0.2s var(--ease);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(228, 20, 28, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.form-check { display: flex; gap: 12px; margin: 20px 0 24px; align-items: flex-start; font-size: 13px; color: var(--gray-light); line-height: 1.5; }
.form-check input { margin-top: 3px; accent-color: var(--red); }
.form-check a { color: var(--red-bright); text-decoration: underline; }
.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 700px) {
  .contact-info { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}
.info-card:hover { border-color: var(--red); transform: translateX(4px); }
.info-card .i {
  width: 52px; height: 52px;
  background: rgba(228, 20, 28, 0.12);
  border-radius: 12px;
  color: var(--red-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.info-card .c { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.info-card .c small {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.info-card .c strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.info-card .c span { font-size: 14px; color: var(--gray-light); line-height: 1.5; }
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group.full { grid-column: auto; }
}
@media (max-width: 560px) {
  .info-card { padding: 22px 20px; gap: 16px; }
  .info-card .i { width: 44px; height: 44px; border-radius: 10px; }
  .info-card .c strong { font-size: 16px; }
}

/* === FOOTER === */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 32px; position: relative; }
.footer-huge {
  font-family: var(--font-display);
  font-size: clamp(64px, 11vw, 170px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-light);
  text-align: center;
  margin-bottom: 80px;
  user-select: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li a {
  display: block;
  padding: 6px 0;
  font-family: var(--font-cond);
  font-size: 13px;
  color: var(--gray-light);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.footer-col li a:hover { color: var(--red-bright); }
.footer-about p { font-size: 14px; line-height: 1.7; color: var(--gray); margin: 20px 0; }
.footer-partner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  margin: 8px 0 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer-partner-label {
  font-family: var(--font-cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.footer-partner-logo {
  max-width: 180px;
  height: auto;
  display: block;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gray-light);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom { padding-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p, .footer-bottom a { font-family: var(--font-cond); font-size: 12px; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.footer-bottom .links a { margin-left: 24px; }
.footer-bottom .links a:hover { color: var(--white); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom .links a { margin: 0 16px 0 0; }
}

/* === FLOATING CALL BUTTON === */
.floating-call {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 15px 30px -10px var(--red-glow), 0 0 0 0 var(--red);
  animation: ringPulse 2s infinite;
}
@keyframes ringPulse {
  0% { box-shadow: 0 15px 30px -10px var(--red-glow), 0 0 0 0 rgba(228, 20, 28, 0.5); }
  100% { box-shadow: 0 15px 30px -10px var(--red-glow), 0 0 0 20px rgba(228, 20, 28, 0); }
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
.reveal[data-d="4"] { transition-delay: 0.4s; }
.reveal[data-d="5"] { transition-delay: 0.5s; }

/* === TESTIMONIALS === */
.testimonials { background: var(--bg); padding: 140px 0; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.testimonials-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.testimonials-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.testimonials-rating .stars { display: flex; gap: 2px; color: var(--yellow); }
.testimonials-rating .val { font-family: var(--font-display); font-size: 22px; color: var(--white); }
.testimonials-rating .lab {
  font-family: var(--font-cond);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.testimonial:hover { border-color: var(--red); transform: translateY(-4px); }
.testimonial .quote-mark { font-family: var(--font-display); font-size: 72px; color: var(--red); line-height: 0.7; margin-bottom: 16px; }
.testimonial .stars { display: flex; gap: 2px; color: var(--yellow); margin-bottom: 16px; }
.testimonial blockquote { font-size: 16px; line-height: 1.7; color: var(--off-white); margin-bottom: 28px; font-style: normal; }
.testimonial .author { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid var(--border); }
.testimonial .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial .author .meta { display: flex; flex-direction: column; line-height: 1.2; }
.testimonial .author .name { font-family: var(--font-cond); font-weight: 700; font-size: 16px; color: var(--white); letter-spacing: 0.02em; }
.testimonial .author .role { font-family: var(--font-cond); font-size: 12px; color: var(--gray); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* === FLEET === */
.fleet { background: var(--surface); position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.fleet::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 60px, rgba(245, 184, 0, 0.03) 60px, rgba(245, 184, 0, 0.03) 62px);
  pointer-events: none;
}
.fleet-head { margin-bottom: 80px; max-width: 800px; }
.fleet-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.fleet-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  position: relative;
}
.fleet-card:hover { border-color: var(--red); transform: translateY(-4px); }
.fleet-card.feat { grid-row: span 2; }
.fleet-card .img {
  aspect-ratio: 16/10;
  background: linear-gradient(140deg, #1a1a24 0%, #0a0a0e 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.fleet-card.feat .img { aspect-ratio: 4/5; }
.fleet-card .img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(228, 20, 28, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
}
.fleet-card .truck-illust {
  width: 80%;
  max-width: 320px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
  position: relative;
  z-index: 1;
}
.fleet-card .body { padding: 28px 32px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.fleet-card .cat { font-family: var(--font-cond); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--yellow); }
.fleet-card h3 { font-family: var(--font-heading); font-weight: 900; font-size: 22px; text-transform: uppercase; color: var(--white); line-height: 1.1; }
.fleet-card p { font-size: 14px; color: var(--gray-light); line-height: 1.55; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.fleet-specs .spec { display: flex; flex-direction: column; gap: 2px; }
.fleet-specs .spec .k { font-family: var(--font-cond); font-size: 10px; letter-spacing: 0.2em; color: var(--gray); text-transform: uppercase; font-weight: 600; }
.fleet-specs .spec .v { font-family: var(--font-mono); font-size: 14px; color: var(--white); font-weight: 500; }
@media (max-width: 960px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .fleet-card.feat { grid-row: auto; }
  .fleet-card.feat .img { aspect-ratio: 16/10; }
}
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } }
