/* =========================================================
   SOS GUMI — 2026 arculat
   Sötét, "asphalt & signal" automotive design system
   ========================================================= */

/* A fontok külön fájlban: assets/css/fonts.css (a build-fonts.py generálja) */

/* ---------- Tokenek ---------- */
:root {
  --bg: #08090b;
  --bg-2: #0d0f13;
  --bg-3: #12151a;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);

  --text: #f4f6f8;
  --muted: #98a1ad;
  --dim: #6c7581;

  --red: #ff2e2e;
  --red-2: #ff7a18;
  --red-soft: rgba(255, 46, 46, 0.14);
  --grad: linear-gradient(115deg, #ff2e2e 0%, #ff7a18 100%);
  --grad-soft: linear-gradient(115deg, rgba(255, 46, 46, .18), rgba(255, 122, 24, .10));
  --green: #2fd07a;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --shadow: 0 24px 70px -28px rgba(0, 0, 0, .9);
  --glow: 0 0 0 1px rgba(255, 46, 46, .35), 0 20px 60px -20px rgba(255, 46, 46, .45);

  --maxw: 1220px;
  --pad: clamp(18px, 4vw, 40px);
  --header-h: 74px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  min-height: 100vh;
}

img,
svg,
iframe { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

ul,
ol { list-style: none; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
  border-radius: 4px;
}

[hidden] { display: none !important; }

/* ---------- Tipográfia ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 6.4vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); line-height: 1.25; }

p { text-wrap: pretty; }

.lead {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: var(--muted);
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-2);
  padding: 7px 14px;
  border: 1px solid rgba(255, 122, 24, .28);
  border-radius: 100px;
  background: rgba(255, 122, 24, .07);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { position: relative; }

.section {
  padding-block: clamp(46px, 6.2vw, 92px);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(26px, 3.4vw, 46px);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .lead { margin-inline: auto; }

.section-head h2 { margin: 14px 0 12px; }

/* halvány rácsvonalak / textúra */
.tex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.tex-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 78%);
}

.tex-glow {
  background:
    radial-gradient(600px 320px at 12% 0%, rgba(255, 46, 46, .18), transparent 70%),
    radial-gradient(520px 300px at 92% 18%, rgba(255, 122, 24, .13), transparent 70%);
}

.wrap { position: relative; z-index: 1; }

/* =========================================================
   Gombok
   ========================================================= */
.btn {
  --btn-bg: var(--grad);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 52px;
  border: 0;
  border-radius: 100px;
  background: var(--btn-bg);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  box-shadow: 0 14px 34px -14px rgba(255, 60, 30, .85);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, #ff7a18, #ff2e2e);
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -16px rgba(255, 60, 30, .95); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn svg { width: 19px; height: 19px; flex: none; }

.btn-ghost {
  --btn-bg: transparent;
  border: 1px solid var(--line-2);
  box-shadow: none;
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost::after { background: rgba(255, 255, 255, .07); }
.btn-ghost:hover { box-shadow: none; border-color: rgba(255, 255, 255, .35); }

.btn-wa {
  --btn-bg: #1fb954;
  box-shadow: 0 14px 34px -16px rgba(31, 185, 84, .9);
}
.btn-wa::after { background: #25d366; }
.btn-wa:hover { box-shadow: 0 20px 40px -16px rgba(31, 185, 84, .95); }

.btn-lg { padding: 18px 34px; min-height: 60px; font-size: 16.5px; }
.btn-sm { padding: 11px 18px; min-height: 42px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* =========================================================
   Fejléc
   ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad);
  z-index: 200;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease), border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}

.site-header.stuck {
  background: rgba(8, 9, 11, .78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  flex: none;
  min-width: 0;
}

.brand-lock {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: -.035em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.brand-wheel {
  width: .86em;
  height: .86em;
  margin: 0 .01em;
  flex: none;
  filter: drop-shadow(0 3px 10px rgba(255, 60, 30, .55));
}

.brand-lock i {
  font-style: normal;
  color: var(--muted);
  margin-left: .32em;
  transition: color .3s;
}

.brand:hover .brand-lock i { color: var(--text); }

.brand small {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: .185em;
  color: var(--dim);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s, background .25s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .35s var(--ease);
}

.nav a:hover { color: var(--text); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--text); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
}

.header-phone svg { width: 16px; height: 16px; color: var(--red-2); }
.header-phone:hover { border-color: rgba(255, 122, 24, .55); background: rgba(255, 122, 24, .08); transform: translateY(-2px); }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  position: relative;
  margin-left: auto;
}

.burger span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform .35s var(--ease), opacity .2s;
}

.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }

.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobil menü panel */
.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  z-index: 119;
  background: rgba(8, 9, 11, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--pad) 26px;
  display: none;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
  animation: dropIn .32s var(--ease);
}

.mobile-nav.open { display: flex; }

@keyframes dropIn {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: none; }
}

.mobile-nav a {
  padding: 15px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
}

.mobile-nav a span { color: var(--dim); font-size: 13px; font-family: 'Inter', sans-serif; font-weight: 400; }
.mobile-nav .btn {
  margin-top: 18px;
  padding-inline: 18px;
  font-size: 15px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 26px);
  padding-bottom: 44px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 78% 8%, rgba(255, 46, 46, .20), transparent 62%),
    radial-gradient(700px 500px at 8% 84%, rgba(255, 122, 24, .13), transparent 66%),
    linear-gradient(180deg, #0a0b0e 0%, #08090b 62%, #0b0d10 100%);
}

/* mozgó "úttest" a hero alján */
.road {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  pointer-events: none;
  overflow: hidden;
  mask-image: linear-gradient(to top, #000 30%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 30%, transparent 100%);
}

.road::before {
  content: '';
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 54px;
  height: 5px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg,
      rgba(255, 255, 255, .30) 0 76px,
      transparent 76px 168px);
  animation: roadmove 2.1s linear infinite;
}

.road::after {
  content: '';
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 16px;
  height: 3px;
  opacity: .5;
  background: repeating-linear-gradient(90deg,
      rgba(255, 122, 24, .55) 0 42px,
      transparent 42px 130px);
  animation: roadmove 1.35s linear infinite;
}

@keyframes roadmove {
  from { transform: translateX(0); }
  to { transform: translateX(-168px); }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  width: 100%;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
  padding: 9px 18px 9px 12px;
  border-radius: 100px;
  border: 1px solid rgba(47, 208, 122, .3);
  background: rgba(47, 208, 122, .09);
  font-size: 13.5px;
  font-weight: 600;
  color: #b8f2d4;
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex: none;
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--green);
  animation: ping 1.9s var(--ease) infinite;
}

@keyframes ping {
  0% { transform: scale(.55); opacity: .9; }
  80%, 100% { transform: scale(1.5); opacity: 0; }
}

.hero h1 { margin: 18px 0 16px; }

.hero h1 .line { display: block; overflow: hidden; }

.hero h1 .line > i {
  display: block;
  font-style: normal;
  transform: translateY(105%);
  animation: riseIn .95s var(--ease) forwards;
}

.hero h1 .line:nth-child(2) > i { animation-delay: .12s; }
.hero h1 .line:nth-child(3) > i { animation-delay: .24s; }

@keyframes riseIn {
  to { transform: none; }
}

.hero-sub {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 26px;
}

.hero-sub b { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  font-size: 14px;
  color: var(--muted);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* hero jobb oldal: kártya + kerék */
.hero-card {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .015));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(255, 122, 24, .5), transparent 45%, rgba(255, 46, 46, .35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tyre-wrap {
  display: grid;
  place-items: center;
  margin-bottom: 26px;
}

.tyre {
  width: min(230px, 52vw);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .7));
  animation: spin 9s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-card h3 { margin-bottom: 6px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-stats div { text-align: center; }

.hero-stats b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stats span {
  font-size: 11.5px;
  color: var(--dim);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* =========================================================
   Futószalag
   ========================================================= */
.marquee {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 46, 46, .08), rgba(255, 122, 24, .05));
  overflow: hidden;
  padding: 15px 0;
  display: flex;
  gap: 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: none;
  padding-right: 34px;
  animation: slide 34s linear infinite;
  white-space: nowrap;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes slide {
  to { transform: translateX(-100%); }
}

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.7vw, 17px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  display: flex;
  align-items: center;
  gap: 34px;
}

.marquee-track span::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* =========================================================
   Szolgáltatás kártyák (bento)
   ========================================================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  grid-column: span 2;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
  padding: 26px 24px 24px;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
  min-width: 0;
}

.card::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  left: var(--mx, 50%);
  top: var(--my, 0%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 90, 30, .20), transparent 62%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 24, .4);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 122, 24, .25);
  margin-bottom: 20px;
  color: var(--red-2);
}

.card-icon svg { width: 25px; height: 25px; }

.card h3 { margin-bottom: 10px; }

.card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.card-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  padding: 8px 15px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line);
}

.card-price small { font-size: 12.5px; color: var(--dim); font-weight: 500; }

.card-wide { grid-column: span 3; }

.card-hero {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  background:
    radial-gradient(700px 240px at 88% 50%, rgba(255, 46, 46, .18), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012));
}

.card-hero .card-body { min-width: 0; }
.card-hero p { max-width: 62ch; }

/* =========================================================
   Folyamat — idővonal
   ========================================================= */
.process {
  background: linear-gradient(180deg, var(--bg) 0%, #0a0c0f 45%, var(--bg) 100%);
}

.timeline {
  max-width: 860px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tl {
  position: relative;
  padding-left: 78px;
  min-width: 0;
}

/* vezetosav a lepesek kozott */
.tl::before,
.tl::after {
  content: '';
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: -16px;
  width: 2px;
  border-radius: 2px;
}

.tl::before { background: var(--line); }

.tl::after {
  background: var(--grad);
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 1s var(--ease) .15s;
}

.tl.in::after { transform: scaleY(1); }

.tl:last-child::before,
.tl:last-child::after { display: none; }

.tl-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--muted);
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  transition: background .55s var(--ease), color .55s, border-color .55s, box-shadow .55s;
  z-index: 1;
}

.tl.in .tl-dot {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(255, 60, 30, .95);
}

.tl-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: 22px 26px 24px;
  min-width: 0;
  transition: border-color .5s var(--ease), transform .5s var(--ease);
}

.tl.in .tl-card { border-color: rgba(255, 122, 24, .28); }
.tl-card:hover { transform: translateY(-3px); }

.tl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  margin-bottom: 9px;
}

.tl-time {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-2);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 122, 24, .28);
  background: rgba(255, 122, 24, .07);
  white-space: nowrap;
}

.tl-card p { color: var(--muted); font-size: 15.5px; }

.tl-card b { color: var(--text); font-weight: 600; }

/* zaro sav */
.tl-foot {
  max-width: 860px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.tl-fact {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  font-size: 14.5px;
  color: var(--muted);
  min-width: 0;
}

.tl-fact svg { width: 20px; height: 20px; flex: none; color: var(--red-2); }
.tl-fact b { color: var(--text); font-family: 'Space Grotesk', sans-serif; display: block; font-size: 15px; }

/* =========================================================
   Árak
   ========================================================= */
.price-tabs {
  display: inline-flex;
  padding: 5px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .04);
  gap: 4px;
  margin-bottom: 34px;
}

.price-tabs button {
  border: 0;
  background: transparent;
  padding: 11px 22px;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
  transition: color .3s, background .35s var(--ease);
  white-space: nowrap;
}

.price-tabs button.on {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px -14px rgba(255, 60, 30, .9);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 16px;
}

/* a 4. kartya (flotta) teljes szelessegben, vizszintes elrendezessel */
@media (min-width: 940px) {
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .price-card.span-all {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    gap: 10px 44px;
    align-items: center;
  }

  .price-card.span-all .price-list {
    margin: 0;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 34px;
    grid-row: 1 / span 3;
    grid-column: 2;
    align-self: center;
  }

  .price-card.span-all h3 { grid-column: 1; }
  .price-card.span-all .price-value { grid-column: 1; margin-bottom: 2px; }
  .price-card.span-all .price-unit { grid-column: 1; margin-bottom: 0; }
}

.price-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .45s var(--ease), border-color .4s;
}

.price-card:hover { transform: translateY(-5px); border-color: rgba(255, 122, 24, .38); }

.price-card.featured {
  border-color: rgba(255, 46, 46, .45);
  background:
    radial-gradient(420px 200px at 50% 0%, rgba(255, 46, 46, .18), transparent 70%),
    linear-gradient(165deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .012));
}

.price-tag {
  align-self: flex-start;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--grad);
  color: #fff;
}

.price-card h3 { margin-bottom: 14px; }

.price-value {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -.03em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}

.price-unit { font-size: 13px; color: var(--dim); margin-bottom: 20px; }

.price-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14.5px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.price-list li { display: flex; gap: 11px; align-items: flex-start; }

.price-list svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 3px;
  color: var(--red-2);
}

/* apró árak táblázat */
.price-table {
  margin-top: 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
}

.price-table-scroll { overflow-x: auto; }

.price-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 15px;
}

.price-table th,
.price-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.price-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dim);
  background: rgba(255, 255, 255, .03);
}

.price-table td:first-child { white-space: normal; color: var(--text); }
.price-table td:last-child {
  text-align: right;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--red-2);
}

.price-table tr:last-child td { border-bottom: 0; }
.price-table tbody tr { transition: background .25s; }
.price-table tbody tr:hover { background: rgba(255, 255, 255, .03); }

.price-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--dim);
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: var(--r);
  border: 1px dashed var(--line-2);
}

.price-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--red-2); }

/* =========================================================
   Lefedettség / térkép
   ========================================================= */
.coverage {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: stretch;
}

.coverage-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  background: #0d0f13;
  min-width: 0;
}

.coverage-map iframe {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 46vw, 430px);
  border: 0;
  filter: grayscale(.35) invert(.92) hue-rotate(180deg) contrast(.92);
}

.district-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.district-cloud span {
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}

.district-cloud span:hover {
  border-color: rgba(255, 122, 24, .45);
  color: var(--text);
  transform: translateY(-2px);
}

.info-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  min-width: 0;
}

.info-row svg { width: 21px; height: 21px; color: var(--red-2); flex: none; margin-top: 2px; }
.info-row b { display: block; font-family: 'Space Grotesk', sans-serif; margin-bottom: 2px; }
.info-row p { color: var(--muted); font-size: 14.5px; overflow-wrap: anywhere; }
.info-row a { color: var(--text); border-bottom: 1px solid rgba(255, 122, 24, .5); }

/* =========================================================
   Vélemények
   ========================================================= */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.review {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  transition: transform .45s var(--ease), border-color .4s;
}

.review:hover { transform: translateY(-5px); border-color: rgba(255, 122, 24, .35); }

.stars { display: flex; gap: 3px; color: #ffb020; }
.stars svg { width: 17px; height: 17px; }

.review p { color: var(--muted); font-size: 15px; flex: 1; }

.review footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex: none;
}

.review footer b { display: block; font-size: 15px; }
.review footer span { font-size: 12.5px; color: var(--dim); }

/* =========================================================
   GYIK
   ========================================================= */
.faq { max-width: 860px; margin-inline: auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--text);
  transition: color .3s;
}

.faq-q:hover { color: var(--red-2); }

.faq-icon {
  margin-left: auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .4s var(--ease), background .3s, border-color .3s;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; transition: transform .4s var(--ease); }

.faq-item.open .faq-icon {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

.faq-item.open .faq-icon::after { transform: scaleY(0); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > div { overflow: hidden; }

.faq-a p {
  color: var(--muted);
  padding: 0 60px 26px 4px;
  font-size: 15.5px;
}

/* =========================================================
   CTA sáv
   ========================================================= */
.cta {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(40px, 6vw, 74px) clamp(26px, 5vw, 64px);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(255, 122, 24, .34), transparent 70%),
    linear-gradient(120deg, #c81b1b, #ff4a12);
  box-shadow: 0 34px 90px -36px rgba(255, 60, 30, .8);
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000, transparent 72%);
  pointer-events: none;
}

.cta > * { position: relative; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: rgba(255, 255, 255, .92); font-size: clamp(1rem, 2vw, 1.15rem); max-width: 56ch; margin-inline: auto; }

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.cta .btn {
  background: #fff;
  color: #16181c;
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, .8);
}

.cta .btn::after { background: #f1f1f1; }

.cta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.cta .btn-ghost::after { background: rgba(255, 255, 255, .16); }

/* =========================================================
   Lábléc
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #08090b, #0b0d10);
  padding-top: clamp(50px, 7vw, 80px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
  padding-bottom: 40px;
}

.site-footer .brand { margin-bottom: 18px; }
.site-footer .brand-lock { font-size: 27px; }

.footer-grid h4 {
  font-size: 12.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-grid p { color: var(--muted); font-size: 14.5px; max-width: 40ch; }
.footer-grid ul { display: flex; flex-direction: column; gap: 9px; }

.footer-grid li a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color .25s, padding-left .3s var(--ease);
  display: inline-block;
}

.footer-grid li a:hover { color: var(--text); padding-left: 5px; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.footer-contact svg { width: 17px; height: 17px; color: var(--red-2); flex: none; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: var(--dim);
}

.footer-bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--text); }

/* =========================================================
   Lebegő elemek
   ========================================================= */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 118;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8, 9, 11, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.dock a {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 9px 4px;
  border-radius: 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  min-height: 52px;
}

.dock a svg { width: 19px; height: 19px; }
.dock a.primary { background: var(--grad); color: #fff; border-color: transparent; }
.dock a.wa { background: #1fb954; color: #fff; border-color: transparent; }

.fab {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 117;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab a,
.fab button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  background: rgba(20, 22, 26, .92);
  backdrop-filter: blur(10px);
  cursor: pointer;
  color: var(--text);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, .95);
  transition: transform .35s var(--ease), background .3s;
}

.fab a:hover,
.fab button:hover { transform: translateY(-4px); }

.fab svg { width: 24px; height: 24px; }
.fab .wa { background: #25d366; border-color: transparent; color: #fff; }

#toTop { opacity: 0; pointer-events: none; transition: opacity .35s, transform .35s var(--ease); }
#toTop.show { opacity: 1; pointer-events: auto; }

/* toast */
.toast-host {
  position: fixed;
  top: calc(var(--header-h) + 12px);
  right: 16px;
  left: 16px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  max-width: min(420px, 100%);
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 15px 18px;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  background: rgba(18, 20, 24, .97);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  font-size: 14.5px;
  animation: toastIn .4s var(--ease);
}

.toast.out { animation: toastOut .3s var(--ease) forwards; }
.toast svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.toast.ok svg { color: var(--green); }
.toast.err svg { color: var(--red); }
.toast b { display: block; font-family: 'Space Grotesk', sans-serif; margin-bottom: 2px; }
.toast p { color: var(--muted); font-size: 13.5px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-14px) scale(.97); }
  to { opacity: 1; transform: none; }
}

@keyframes toastOut {
  to { opacity: 0; transform: translateY(-10px) scale(.97); }
}

/* =========================================================
   Belső oldalak
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(60px, 9vw, 110px));
  padding-bottom: clamp(84px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(760px 420px at 76% 0%, rgba(255, 46, 46, .2), transparent 65%),
    radial-gradient(600px 400px at 4% 60%, rgba(255, 122, 24, .12), transparent 70%),
    linear-gradient(180deg, #0a0b0e, #08090b);
}

.page-hero .road { height: 118px; opacity: .5; }
.page-hero h1 { margin: 20px 0 18px; }

.prose { max-width: 74ch; }
.prose p { color: var(--muted); margin-bottom: 20px; }
.prose h3 { margin: 40px 0 14px; }
.prose strong { color: var(--text); }

.quote-box {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  background: linear-gradient(120deg, rgba(255, 46, 46, .09), rgba(255, 255, 255, .015));
  padding: 30px;
  margin: 34px 0;
}

.quote-box h3 { margin: 0 0 12px; }
.quote-box p { margin: 0; }

.check-list { display: grid; gap: 14px; margin-top: 24px; }

.check-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--muted);
  font-size: 15.5px;
}

.check-list svg { width: 22px; height: 22px; color: var(--green); margin-top: 2px; }
.check-list b { color: var(--text); font-family: 'Space Grotesk', sans-serif; }

.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.stat {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: 26px 24px;
  min-width: 0;
}

.stat b {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat span { color: var(--muted); font-size: 14.5px; }

/* =========================================================
   Foglalás űrlap
   ========================================================= */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .65fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.form-panel {
  border-radius: var(--r-xl);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: clamp(24px, 4vw, 42px);
  min-width: 0;
}

.form-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.form-steps i {
  flex: 1;
  min-width: 40px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .1);
  transition: background .45s var(--ease);
}

.form-steps i.on { background: var(--grad); }

.field { margin-bottom: 20px; min-width: 0; }

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 9px;
  color: var(--muted);
}

.field label .req { color: var(--red-2); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 13px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  font-size: 15.5px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  min-width: 0;
}

.field textarea { min-height: 110px; resize: vertical; }

.field input::placeholder,
.field textarea::placeholder { color: #5d6672; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 24, .7);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, .12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: rgba(255, 46, 46, .8);
  box-shadow: 0 0 0 4px rgba(255, 46, 46, .12);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7a18' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
  padding-right: 46px;
  cursor: pointer;
}

.field select option { background: #14171c; color: var(--text); }

.field input[type="date"] { cursor: pointer; }
.field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(65%) sepia(60%) saturate(3000%) hue-rotate(345deg);
  cursor: pointer;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0 18px;
}

.field-hint { font-size: 12.5px; color: var(--dim); margin-top: 7px; }
.field-error { font-size: 12.5px; color: #ff7676; margin-top: 7px; display: none; }
.field.invalid .field-error { display: block; }

/* szolgáltatás választó chipek */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color .3s, background .3s, transform .3s var(--ease);
  min-width: 0;
  min-height: 52px;
}

.field label.chip {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text);
}

.chip:hover { transform: translateY(-2px); border-color: rgba(255, 122, 24, .45); }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip svg { width: 20px; height: 20px; color: var(--red-2); flex: none; }
.chip span { min-width: 0; }

.chip:has(input:checked) {
  border-color: var(--red-2);
  background: linear-gradient(120deg, rgba(255, 46, 46, .16), rgba(255, 122, 24, .08));
}

.chip input:focus-visible ~ span { text-decoration: underline; }

/* lathato jelolonegyzet (adatkezelesi hozzajarulas) */
.chip-check .box {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  border: 2px solid var(--line-2);
  flex: none;
  display: grid;
  place-items: center;
  margin-top: 1px;
  transition: background .25s var(--ease), border-color .25s;
}

.chip-check .box::after {
  content: '';
  width: 11px;
  height: 6px;
  border-left: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
  margin-top: -4px;
  transform: rotate(-45deg) scale(0);
  transition: transform .28s var(--ease);
}

.chip-check:has(input:checked) .box {
  background: var(--grad);
  border-color: transparent;
}

.chip-check:has(input:checked) .box::after { transform: rotate(-45deg) scale(1); }

.chip-check input:focus-visible ~ .box {
  outline: 2px solid var(--red-2);
  outline-offset: 3px;
}

/* időpont rács */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 10px;
}

.slot {
  padding: 13px 6px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, .035);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
  min-height: 48px;
}

.slot:hover:not(:disabled) { transform: translateY(-3px); border-color: rgba(255, 122, 24, .6); }

.slot.on {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px -14px rgba(255, 60, 30, .9);
}

.slot:disabled {
  opacity: .32;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* oldalsó infó doboz */
.side-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .012));
  padding: 28px 26px;
  min-width: 0;
}

.side-card + .side-card { margin-top: 16px; }
.side-card h3 { margin-bottom: 16px; }

.side-sticky { position: sticky; top: calc(var(--header-h) + 20px); }

.sos-box {
  border-radius: var(--r-lg);
  padding: 28px 26px;
  background:
    radial-gradient(400px 200px at 80% 0%, rgba(255, 122, 24, .3), transparent 70%),
    linear-gradient(140deg, #c81b1b, #ff4a12);
  color: #fff;
  min-width: 0;
}

.sos-box h3 { color: #fff; margin-bottom: 8px; }
.sos-box p { color: rgba(255, 255, 255, .9); font-size: 14.5px; margin-bottom: 20px; }

.sos-box .btn {
  background: #fff;
  color: #16181c;
  width: 100%;
}

.sos-box .btn::after { background: #f0f0f0; }

/* siker képernyő */
.success-panel {
  text-align: center;
  padding: clamp(30px, 5vw, 56px);
  border-radius: var(--r-xl);
  border: 1px solid rgba(47, 208, 122, .35);
  background: linear-gradient(160deg, rgba(47, 208, 122, .13), rgba(255, 255, 255, .015));
}

.success-panel .tick {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: rgba(47, 208, 122, .16);
  border: 1px solid rgba(47, 208, 122, .45);
  color: var(--green);
  animation: pop .5s var(--ease);
}

.success-panel .tick svg { width: 38px; height: 38px; }

@keyframes pop {
  from { transform: scale(.6); opacity: 0; }
  to { transform: none; opacity: 1; }
}

.success-panel h2 { margin-bottom: 12px; }
.success-panel p { color: var(--muted); max-width: 48ch; margin: 0 auto 12px; }

.summary-box {
  margin: 26px auto 0;
  max-width: 460px;
  text-align: left;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  padding: 22px 24px;
}

.summary-box dl { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 10px 18px; font-size: 14.5px; }
.summary-box dt { color: var(--dim); }
.summary-box dd { text-align: right; font-weight: 600; overflow-wrap: anywhere; }

/* =========================================================
   Scroll reveal
   ========================================================= */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}

.rv.in { opacity: 1; transform: none; }

.rv-d1 { transition-delay: .07s; }
.rv-d2 { transition-delay: .14s; }
.rv-d3 { transition-delay: .21s; }
.rv-d4 { transition-delay: .28s; }
.rv-d5 { transition-delay: .35s; }

/* =========================================================
   Reszponzív
   ========================================================= */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .card-hero { grid-column: span 4; }
  .card-wide { grid-column: span 4; }
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 940px) {
  .nav,
  .header-cta { display: none; }
  .burger { display: block; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-card { max-width: 520px; }
  .hero { min-height: auto; }


  .coverage { grid-template-columns: minmax(0, 1fr); }
  .booking-layout { grid-template-columns: minmax(0, 1fr); }
  .side-sticky { position: static; }
  .card-hero { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .card { grid-column: span 2; }
  .card-hero,
  .card-wide { grid-column: span 2; }

  .dock { display: flex; }
  .fab { display: none; }
  .footer-bottom { padding-bottom: 110px; }

  .faq-a p { padding-right: 20px; }

  /* --- ar-fulek: torjenek tobb sorba, ne vagodjanak le --- */
  .price-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    border-radius: 18px;
    gap: 6px;
    margin-bottom: 24px;
  }
  .price-tabs button { border-radius: 14px; padding: 12px 10px; font-size: 13px; }
  .price-tabs button:last-child { grid-column: 1 / -1; }

  /* --- hero: kompaktabb --- */
  .hero { padding-bottom: 30px; }
  .hero-card { padding: 22px 20px; }
  .tyre { width: min(150px, 42vw); }
  .tyre-wrap { margin-bottom: 18px; }

  .hero-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 18px;
    padding-top: 14px;
  }
  .hero-stats div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-stats div:last-child { border-bottom: 0; padding-bottom: 0; }
  .hero-stats b { font-size: 1.35rem; }
  .hero-stats span { font-size: 11.5px; letter-spacing: .04em; }

  /* --- lablec: ket oszlop a linkeknek --- */
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 18px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .site-footer .brand { margin-bottom: 18px; }
.site-footer .brand-lock { font-size: 27px; }

.footer-grid h4 { margin-bottom: 12px; }

  /* --- idovonal, terulet, gyik --- */
  .tl-card p { font-size: 15px; }
  .district-cloud { gap: 6px; }
  .district-cloud span { font-size: 12.5px; padding: 6px 11px; }
  .info-row { padding: 15px 16px; }
  .faq-q { padding: 19px 4px; }
  .review { padding: 22px; }
  .price-card { padding: 24px 22px; }
  .card p { font-size: 14.5px; }
}

@media (max-width: 560px) {
  .tl { padding-left: 62px; }
  .tl-dot { width: 44px; height: 44px; border-radius: 15px; font-size: 16px; }
  .tl::before,
  .tl::after { left: 21px; top: 48px; bottom: -18px; }
  .tl-card { padding: 19px 20px 21px; }
  .tl-head { gap: 8px 14px; }
}

@media (max-width: 520px) {
  :root { --header-h: 66px; }
  .brand-lock { font-size: 21px; }
  .brand small { font-size: 8.5px; letter-spacing: .15em; }
  .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .hero-actions .btn { width: 100%; }
  .cta-actions .btn { width: 100%; }
  .summary-box dl { grid-template-columns: minmax(0, 1fr); gap: 4px 0; }
  .summary-box dd { text-align: left; margin-bottom: 10px; }
  .toast-host { top: auto; bottom: 90px; }
}

@media (max-width: 380px) {
  .bento { grid-template-columns: 1fr; }
  .card,
  .card-hero,
  .card-wide { grid-column: span 1; }
}

/* =========================================================
   Mozgáscsökkentés
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }

  .rv { opacity: 1 !important; transform: none !important; }
  .hero h1 .line > i { transform: none !important; }
}

/* Nyomtatás */
@media print {
  .site-header, .dock, .fab, .marquee, .road, .cta { display: none !important; }
  body { background: #fff; color: #000; }
}
