/* ==========================================================================
   tractari-24.ro — Tractări auto non-stop, București & Ilfov
   Palette: asphalt night / hazard amber / concrete day
   Type: Barlow Condensed (display) + Barlow (body), self-hosted
   ========================================================================== */

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-500.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-600.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-700.woff2") format("woff2");
}

:root {
  --ink:        #0E1319;
  --asphalt:    #131A21;
  --panel:      #1B242E;
  --line-night: rgba(154, 167, 180, 0.16);

  --amber:          #FFB300;
  --amber-deep:     #E08900;
  --amber-on-light: #A66800;

  --white:      #EEF1F4;
  --muted:      #9AA7B4;

  --day:        #F1F3F4;
  --ink-day:    #14181D;
  --muted-day:  #4C5865;
  --line-day:   rgba(20, 24, 29, 0.1);

  --green:      #34C06B;

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body:    "Barlow", "Helvetica Neue", Arial, sans-serif;

  --radius: 8px;
  --container: 1180px;

  --chevron: repeating-linear-gradient(
    -45deg,
    var(--amber) 0 14px,
    var(--ink) 14px 28px
  );

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23g)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- Reset ---------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--ink);
}

h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p, ul, ol { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

.section--day :focus-visible { outline-color: var(--ink-day); }
.cta-band :focus-visible { outline-color: var(--ink); }
.callbar:focus-visible { outline-color: var(--ink); outline-offset: -6px; }

::selection { background: var(--amber); color: var(--ink); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  z-index: 100;
  padding: 0.7rem 1.2rem;
  background: var(--amber);
  color: var(--ink);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* ---------- Typography helpers ---------- */

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-day);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 3px;
  background: var(--amber);
  vertical-align: middle;
  margin-right: 0.7rem;
}

.eyebrow--amber { color: var(--amber); }

.section__lede {
  max-width: 32em;
  margin-top: 1rem;
  font-size: clamp(1.15rem, 1.35vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted-day);
}

.section--night .section__lede { color: var(--muted); }

/* ---------- Layout ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow { max-width: 860px; }

.section { padding-block: clamp(4rem, 9vw, 7rem); }

.section[id] { scroll-margin-top: 5.5rem; }

.section--day {
  background: var(--day);
  color: var(--ink-day);
}

.section--night {
  background:
    var(--grain),
    radial-gradient(90rem 40rem at 80% -20%, rgba(255, 179, 0, 0.05), transparent 60%),
    var(--asphalt);
  color: var(--white);
}

.section__head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section__cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn svg {
  width: 1.35em;
  height: 1.35em;
  fill: currentColor;
  flex: none;
}

.btn:active { transform: translateY(1px); }

.btn--amber {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(255, 179, 0, 0.28);
}

.btn--amber:hover {
  background: var(--amber-deep);
  box-shadow: 0 8px 30px rgba(255, 179, 0, 0.4);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: var(--line-night);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
  transform: translateY(-2px);
}

.btn--night {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(14, 19, 25, 0.35);
}

.btn--night:hover {
  background: #060a0e;
  transform: translateY(-2px);
}

.btn--night b, .btn--night small { color: var(--white); }

.btn--lg { padding: 1rem 2rem; font-size: 1.25rem; }

.btn--xl {
  padding: 1.05rem 1.9rem;
  font-size: 1.15rem;
}

.btn__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  text-align: left;
}

.btn__stack small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  opacity: 0.75;
  text-transform: none;
}

.btn__stack b {
  font-size: 1.5em;
  letter-spacing: 0.05em;
}

.btn--phone {
  background: var(--amber);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  font-size: 1.1rem;
}

.btn--phone:hover { background: var(--amber-deep); }

/* ---------- Live dot ---------- */

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  flex: none;
  box-shadow: 0 0 0 0 rgba(52, 192, 107, 0.55);
  animation: livePulse 2s ease-out infinite;
}

@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(52, 192, 107, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(52, 192, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 192, 107, 0); }
}

/* ---------- Header ---------- */

.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: linear-gradient(rgba(14, 19, 25, 0.85), rgba(14, 19, 25, 0.55) 70%, transparent);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(14, 19, 25, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line-night);
}

.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand__mark { width: 38px; height: 38px; flex: none; }

.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--white);
  white-space: nowrap;
}

.brand__tld { color: var(--amber); }

.nav {
  display: flex;
  gap: 1.7rem;
  margin-left: auto;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:hover {
  color: var(--white);
  border-bottom-color: var(--amber);
}

.header__cta { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  background: rgba(14, 19, 25, 0.97);
  border-bottom: 1px solid var(--line-night);
  max-height: calc(100dvh - 68px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu a:not(.btn) {
  padding: 0.8rem 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--line-night);
}

.mobile-menu .btn { margin-top: 1.2rem; justify-content: center; }

body.nav-open .mobile-menu { display: flex; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--ink);
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    var(--grain),
    radial-gradient(70rem 36rem at 75% 110%, rgba(255, 179, 0, 0.1), transparent 55%),
    radial-gradient(60rem 30rem at 15% -20%, rgba(38, 52, 66, 0.4), transparent 60%),
    linear-gradient(180deg, #0A0E13 0%, var(--ink) 55%, #10161D 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding: clamp(7.5rem, 14vh, 10rem) clamp(1.25rem, 4vw, 2.5rem) 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--line-night);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  animation: fadeUp 0.5s ease both;
}

.hero__title {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.1rem, 9.5vw, 6.8rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line span {
  display: inline-block;
  transform: translateY(110%);
  animation: lineUp 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.hero__line:nth-child(1) span { animation-delay: 0s; }
.hero__line:nth-child(2) span { animation-delay: 0.08s; }
.hero__line:nth-child(3) span { animation-delay: 0.16s; }

.hero__accent {
  color: var(--amber);
  text-shadow: 0 0 0.12em rgba(255, 179, 0, 0.28);
}

.hero__sub {
  max-width: 33em;
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  animation: fadeUp 0.5s ease 0.2s both;
}

.hero__sub strong { color: var(--white); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.2rem;
  animation: fadeUp 0.5s ease 0.3s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.2rem;
  margin-top: 2.4rem;
  padding: 0;
  list-style: none;
  animation: fadeUp 0.5s ease 0.4s both;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.hero__trust svg {
  width: 19px;
  height: 19px;
  fill: var(--amber);
  flex: none;
}

@keyframes lineUp {
  to { transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Night scene ---------- */

.scene {
  position: relative;
  z-index: 1;
  margin-top: auto;
  height: clamp(180px, 30vh, 280px);
}

.scene__skyline {
  position: absolute;
  bottom: 86px;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0.9;
}

.scene__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 86px;
  background:
    var(--grain),
    linear-gradient(180deg, #171f27 0%, #12181f 100%);
  border-top: 1px solid #232D38;
}

.scene__lane {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #D8C687 0 56px,
    transparent 56px 128px
  );
  opacity: 0.75;
  animation: laneMove 1.1s linear infinite;
}

@keyframes laneMove {
  to { transform: translateX(-128px); }
}

.scene__truck {
  position: absolute;
  bottom: 24px;
  left: clamp(0.5rem, 5vw, 6rem);
  width: min(680px, 88vw);
  height: auto;
  animation: truckIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.2s both;
}

@keyframes truckIn {
  from { transform: translateX(-60px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

.beacon--a { animation: beaconBlink 1.2s steps(1) infinite; }
.beacon--b { animation: beaconBlink 1.2s steps(1) 0.6s infinite; }

.beacon-glow {
  filter: blur(10px);
  opacity: 0;
}

.beacon-glow--a { animation: glowBlink 1.2s steps(1) infinite; }
.beacon-glow--b { animation: glowBlink 1.2s steps(1) 0.6s infinite; }

@keyframes beaconBlink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0.25; }
}

@keyframes glowBlink {
  0%, 49%  { opacity: 0.55; }
  50%, 100% { opacity: 0; }
}

.beacon-refl {
  filter: blur(5px);
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
}

.beacon-refl--a { animation: reflBlink 1.2s steps(1) infinite; }
.beacon-refl--b { animation: reflBlink 1.2s steps(1) 0.6s infinite; }

@keyframes reflBlink {
  0%, 49%   { opacity: 0.16; }
  50%, 100% { opacity: 0; }
}

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  background: var(--amber);
  border-block: 6px solid var(--ink);
  position: relative;
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  background: var(--chevron);
  z-index: 2;
}

.ticker::before { left: 0; }
.ticker::after { right: 0; }

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0.7rem 0;
  animation: tickerMove 13s linear infinite;
}

.ticker__track > * { margin-right: 2.2rem; }

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  white-space: nowrap;
}

.ticker__track i {
  font-style: normal;
  font-size: 0.6rem;
  color: var(--ink);
  opacity: 0.55;
}

@keyframes tickerMove {
  to { transform: translateX(-25%); }
}

/* ---------- Cards (services) ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.card {
  background: #FFFFFF;
  border: 1px solid var(--line-day);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: var(--chevron);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(20, 24, 29, 0.1);
}

.card:hover::before { opacity: 1; }

.card__icon {
  width: 48px;
  height: 48px;
  color: var(--amber-on-light);
  margin-bottom: 1.1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 1rem;
  color: var(--muted-day);
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-night);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.8rem;
}

.step__km {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.3rem 0.7rem 0.25rem;
  border: 2px solid var(--white);
  border-radius: 6px;
  background: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.step__km b {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.55rem;
}

.step p {
  font-size: 1rem;
  color: var(--muted);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.2rem;
  width: 1.2rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--amber) 0 5px, transparent 5px 10px);
}

/* ---------- Coverage ---------- */

.coverage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.coverage__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.6rem;
  padding: 0;
  list-style: none;
}

.coverage__tags li {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--line-day);
  border-radius: 999px;
  background: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-day);
}

.coverage__roads {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted-day);
}

.coverage__roads strong {
  color: var(--ink-day);
  font-weight: 600;
}

.coverage__map {
  background: #FFFFFF;
  border: 1px solid var(--line-day);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 24px 60px rgba(20, 24, 29, 0.08);
}

.coverage__map svg { width: 100%; height: auto; }

.map-patrol circle:first-child { filter: blur(2px); }

.pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: mapPulse 2.6s ease-out infinite;
}

.pulse--2 { animation-delay: 1.3s; }

@keyframes mapPulse {
  0%   { transform: scale(0.5); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}

/* ---------- Pricelist ---------- */

.pricelist {
  list-style: none;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: var(--panel);
  border: 1px solid var(--line-night);
  border-radius: var(--radius);
}

.pricelist li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 0.95rem 0;
}

.pricelist li + li { border-top: 1px solid var(--line-night); }

.pricelist span {
  font-weight: 500;
  color: var(--white);
}

.pricelist em {
  flex: 1;
  border-bottom: 2px dotted rgba(154, 167, 180, 0.35);
  transform: translateY(-4px);
}

.pricelist b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--amber);
  white-space: nowrap;
}

.pricelist__note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
}

/* ---------- FAQ ---------- */

.faq details {
  background: #FFFFFF;
  border: 1px solid var(--line-day);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  overflow: hidden;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary:hover { color: var(--amber-on-light); }

.faq__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--amber-on-light);
  transition: transform 0.25s ease;
}

.faq__icon::before { width: 18px; height: 2.5px; }
.faq__icon::after { width: 2.5px; height: 18px; }

.faq details[open] .faq__icon::after { transform: rotate(90deg); }

.faq details[open] p {
  animation: faqOpen 0.3s ease both;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq details p {
  padding: 0 1.3rem 1.3rem;
  color: var(--muted-day);
  max-width: 60em;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--amber);
  color: var(--ink);
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 14px;
  background: var(--chevron);
}

.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }

.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band__eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  opacity: 0.8;
}


/* ---------- Footer ---------- */

.footer {
  background: #0A0E13;
  color: var(--muted);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 26em;
}

.footer__col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer__col p { font-size: 0.95rem; }

.footer__col strong { color: var(--amber); }

.footer__col a {
  color: var(--white);
  text-decoration: none;
}

.footer__col a:hover { color: var(--amber); }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-night);
  font-size: 0.875rem;
}

.footer__legal nav {
  display: flex;
  gap: 1.4rem;
}

.footer__legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer__legal a:hover { color: var(--white); }

/* ---------- Mobile call bar ---------- */

.callbar {
  display: none;
  position: fixed;
  inset-inline: 0.8rem;
  bottom: calc(0.8rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.2rem;
  border-radius: 12px;
  background: var(--amber);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.45);
}

.callbar b { white-space: nowrap; }

.callbar__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.8;
}

@media (max-width: 355px) {
  .callbar__label { display: none; }
}

/* ---------- Scroll reveal ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards .reveal:nth-child(2), .steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards .reveal:nth-child(3), .steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.cards .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */

/* Desktop-uri cu înălțime mică: aducem scena în prim-plan */
@media (min-width: 901px) and (max-height: 1000px) {
  .hero__content { padding-top: clamp(5.5rem, 10vh, 7rem); }
  .hero__title { font-size: clamp(2.9rem, 8.2vw, 5.6rem); }
  .hero__sub { margin-top: 1.2rem; }
  .hero__actions { margin-top: 1.8rem; }
  .hero__trust { margin-top: 1.9rem; }
  .scene { height: 200px; }
  .scene__road { height: 70px; }
  .scene__skyline { bottom: 70px; }
  .scene__truck { bottom: 18px; width: min(560px, 70vw); }
}

@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }

  .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }

  .coverage { grid-template-columns: 1fr; }
  .coverage__map { max-width: 480px; margin-inline: auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .callbar { display: flex; }
  body { padding-bottom: 4.6rem; }

  .cta-band__inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .hero__actions .btn--xl { width: 100%; justify-content: center; }
  .hero__actions .btn--ghost { width: 100%; justify-content: center; }

  .scene__truck { width: 120vw; left: -6vw; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .hero__line span { transform: none; animation: none; }
  .reveal, html.js .reveal { opacity: 1; transform: none; }
  .beacon, .beacon-glow { animation: none; opacity: 1; }
  .beacon-glow { opacity: 0.4; }
  .beacon-refl { animation: none; opacity: 0.12; }
  .ticker__track { animation: none; }
  .scene__lane { animation: none; }
  .pulse { animation: none; opacity: 0; }
  .map-patrol { display: none; }
}
