/* =============================================================
   Támba Klíma – stíluslap
   "Tűz és jég" arculat. Minden szín tokenként a :root-ban.
   Mobil-először, fluid tipográfia, reszponzív rácsok.
   ============================================================= */

/* ---------- Design tokenek ---------- */
:root {
  /* Hideg (jég) */
  --cold-100: #eaf6ff;
  --cold-300: #4fc3f7;
  --cold-500: #1e9be0;
  --cold-700: #0b5cab;
  --cold-900: #073b73;

  /* Meleg (tűz) */
  --warm-300: #ffd21e;
  --warm-400: #ff8a1f;
  --warm-500: #f5561d;
  --warm-700: #c42911;

  /* Kiemelés */
  --accent-yellow: #ffc400;

  /* Semleges */
  --ink: #0e1621;
  --ink-soft: #3a4a5a;
  --muted: #5b6b7b;
  --line: #dde6ee;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --surface-2: #eef4fa;

  /* Gradiensek */
  --grad-cta: linear-gradient(135deg, var(--cold-500) 0%, var(--warm-500) 100%);
  --grad-cta-hover: linear-gradient(135deg, var(--cold-700) 0%, var(--warm-700) 100%);
  --grad-fireice: linear-gradient(115deg,
      var(--cold-900) 0%, var(--cold-700) 22%, var(--cold-500) 40%,
      #f4f9ff 50%,
      var(--warm-400) 60%, var(--warm-500) 78%, var(--warm-700) 100%);

  /* Forma */
  --radius: 14px;
  --radius-sm: 9px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(14, 22, 33, .06), 0 2px 8px rgba(14, 22, 33, .06);
  --shadow-md: 0 6px 18px rgba(14, 22, 33, .10), 0 2px 6px rgba(14, 22, 33, .06);
  --shadow-lg: 0 18px 48px rgba(11, 92, 171, .18);

  /* Rács */
  --container: 1180px;
  --gutter: clamp(1rem, 4vw, 2.25rem);
  --section-y: clamp(3.25rem, 8vw, 6rem);

  /* Tipográfia */
  --font-display: "Montserrat", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;

  --header-h: 68px;
}

/* ---------- Reset / alap ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--cold-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--warm-500); }
strong { font-weight: 700; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 800; color: var(--ink); }
h1 { font-size: clamp(2rem, 1.3rem + 3.4vw, 3.4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.9vw, 2.3rem); letter-spacing: -0.3px; }
h3 { font-size: clamp(1.15rem, 1rem + 0.7vw, 1.4rem); }
p + p { margin-top: 0.85rem; }

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

/* ---------- Segéd ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--tint { background: var(--surface); }
.section--cold { background: linear-gradient(180deg, var(--cold-100), #ffffff); }
.section--ink { background: var(--cold-900); color: #eaf3fb; }
.section--ink h2, .section--ink h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem); color: var(--ink-soft); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cold-700);
  margin-bottom: .6rem;
}
.section--ink .eyebrow { color: var(--cold-300); }
.section-head { max-width: 62ch; margin-bottom: clamp(1.6rem, 4vw, 2.6rem); }
.section-head.center { margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--surface); color: var(--ink); padding: .6rem 1rem;
  border-radius: 8px; box-shadow: var(--shadow-md); transition: top .2s;
}
.skip-link:focus { top: 8px; }

/* ---------- Gombok ---------- */
.btn {
  --_bg: var(--grad-cta);
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.4rem; border-radius: 999px; border: 0;
  color: #fff; background-image: var(--_bg);
  box-shadow: var(--shadow-md);
  transition: transform .15s ease, box-shadow .15s ease, background-image .15s ease;
  min-height: 48px;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); background-image: var(--grad-cta-hover); }
.btn:active { transform: translateY(0); }
.btn--ghost {
  background-image: none; background-color: transparent;
  color: var(--cold-700); border: 2px solid var(--cold-500); box-shadow: none;
}
.btn--ghost:hover { background-color: var(--cold-100); color: var(--cold-900); border-color: var(--cold-700); }
.btn--light { background-image: none; background-color: #fff; color: var(--cold-900); }
.btn--light:hover { background-color: #eef6ff; color: var(--cold-900); }
.btn--lg { font-size: 1.05rem; padding: 1.05rem 1.7rem; }
.btn--block { width: 100%; justify-content: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

.icon { width: 1.2em; height: 1.2em; flex: none; }

/* ---------- Fejléc / navigáció ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand__logo { height: 38px; width: auto; }
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .5px; }
.brand__text .cold { color: var(--cold-600, var(--cold-700)); }
.brand__text .warm { color: var(--warm-500); }

.nav { display: flex; align-items: center; gap: .4rem; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--ink-soft); text-decoration: none;
  padding: .55rem .7rem; border-radius: 8px;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--cold-900); background: var(--cold-100); }
@media (min-width: 1201px) { .nav .phone-btn { display: none; } }

.header-cta { display: inline-flex; align-items: center; gap: .5rem; }
.phone-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 800; font-size: .98rem;
  color: #fff; background-image: var(--grad-cta);
  padding: .7rem 1.05rem; border-radius: 999px; text-decoration: none;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.phone-btn:hover { color: #fff; background-image: var(--grad-cta-hover); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: var(--surface); border-radius: 10px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 1200px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .6rem var(--gutter) 1rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform .25s ease;
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: .85rem .6rem; font-size: 1.05rem; }
  .nav .phone-btn { margin-top: .6rem; justify-content: center; }
  .header-cta .phone-btn { display: none; }
}

/* ---------- Ragadós mobil hívásgomb ---------- */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; padding: .5rem .8rem calc(.5rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96); border-top: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.call-bar .btn { width: 100%; }
@media (max-width: 720px) {
  .call-bar { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--cold-900); color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background: var(--grad-fireice); background-size: 180% 180%; }
@media (prefers-reduced-motion: no-preference) {
  .hero__bg { animation: driftbg 24s ease-in-out infinite alternate; }
}
@keyframes driftbg { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(7,15,25,.30), rgba(7,15,25,.62));
}
.hero__fx { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .9; mix-blend-mode: screen; }
.hero__inner {
  display: grid; gap: 1.4rem;
  padding-block: clamp(3rem, 9vw, 6.5rem);
  max-width: 44rem;
}

/* Hero: valódi arculati tábla + szöveg egymás mellett (szöveg SOHA a képen) */
.hero__grid {
  display: grid; gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(2.25rem, 6vw, 4.5rem);
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); }
}
.hero__sign { margin: 0; display: flex; flex-direction: column; gap: .55rem; }
.hero__sign img {
  width: 100%; height: auto; border-radius: 12px;
  border: 5px solid rgba(255, 255, 255, .92);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .45);
}
@media (min-width: 900px) {
  .hero__sign img { transform: rotate(-1.6deg); }
}
.hero__sign figcaption {
  text-align: center; font-size: .84rem; color: #dbeaf6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}
.hero__copy { max-width: 44rem; display: grid; gap: 1.25rem; }
.hero__copy .trust { margin-top: .2rem; }
.hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero h1 .cold { color: #cdeeff; }
.hero h1 .warm { color: #ffd9a8; }
.hero__sub { font-size: clamp(1.05rem, 1rem + 0.6vw, 1.3rem); color: #eaf3fb; max-width: 40ch; }
.hero .btn-row { margin-top: .4rem; }
.hero__price {
  display: inline-flex; align-items: baseline; gap: .5rem; margin-top: .3rem;
  font-family: var(--font-display); font-weight: 700; color: #fff;
}
.hero__price b { font-size: 1.5rem; color: var(--accent-yellow); text-shadow: 0 1px 0 rgba(0,0,0,.4); }

.trust {
  display: flex; flex-wrap: wrap; gap: .5rem .9rem; margin-top: 1.4rem;
  list-style: none; padding: 0;
}
.trust li {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: .86rem; font-weight: 600;
  padding: .4rem .7rem; border-radius: 999px; backdrop-filter: blur(3px);
}
.trust svg { width: 1rem; height: 1rem; color: var(--cold-300); }

/* Ferde szekció-elválasztó */
.slant-top { clip-path: polygon(0 3vw, 100% 0, 100% 100%, 0 100%); margin-top: -3vw; }
.slant-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3vw), 0 100%); }

/* ---------- Kártyarácsok ---------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--cold-500);
  display: flex; flex-direction: column; gap: .55rem;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card--warm { border-top-color: var(--warm-500); }
.card__icon {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff; background: var(--cold-500);
}
.card--warm .card__icon { background: var(--warm-500); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-top: .2rem; }
.card p { color: var(--muted); font-size: .96rem; }
.card__foot { margin-top: auto; padding-top: .6rem; font-weight: 700; font-family: var(--font-display); font-size: .9rem; }
.card__foot a { text-decoration: none; }

/* ---------- "Miért mi" ---------- */
.why-list { list-style: none; padding: 0; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.why-list li {
  display: flex; gap: .8rem; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem; box-shadow: var(--shadow-sm);
}
.why-list .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-cta); color: #fff; display: grid; place-items: center;
}
.why-list .tick svg { width: 17px; height: 17px; }
.why-list b { font-family: var(--font-display); display: block; margin-bottom: .15rem; }
.why-list span.txt { color: var(--muted); font-size: .94rem; }

/* ---------- Folyamat ---------- */
.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.steps li {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.2rem 1.2rem; box-shadow: var(--shadow-sm);
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -18px; left: 1.1rem;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--grad-cta); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm);
}
.steps b { font-family: var(--font-display); display: block; margin-bottom: .2rem; }
.steps p { color: var(--muted); font-size: .93rem; }

/* ---------- Árak ---------- */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; border-collapse: collapse; min-width: 460px; }
.price-table th, .price-table td { text-align: left; padding: .95rem 1.1rem; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--surface-2); font-family: var(--font-display); font-size: .9rem; letter-spacing: .3px; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table .amount { font-family: var(--font-display); font-weight: 700; color: var(--cold-900); }
.price-note {
  margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm);
  background: var(--cold-100); border: 1px dashed var(--cold-500);
  font-size: .92rem; color: var(--ink-soft);
}
.price-highlight {
  margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  background: var(--grad-cta); color: #fff; font-family: var(--font-display); font-weight: 700;
}

/* Mobilon: az árlista sorai blokká állnak, hogy vízszintes görgetés nélkül
   lássék az ár is (a szűk oszlop miatt korábban jobbra kellett húzni). */
@media (max-width: 560px) {
  .price-table-wrap { overflow-x: visible; }
  .price-table { min-width: 0; }
  .price-table thead { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
  .price-table tr { display: block; padding: .85rem 1.1rem; border-bottom: 1px solid var(--line); }
  .price-table tbody tr:last-child { border-bottom: 0; }
  .price-table td { display: block; padding: 0; border: 0; }
  .price-table td:first-child { font-weight: 500; }
  .price-table td:last-child,
  .price-table th:last-child { text-align: left; white-space: normal; margin-top: .15rem; }
  .price-table .amount { font-size: 1.05rem; }
}

/* Ár-kártyák (mobil / kiemelt) */
.price-cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.price-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow-sm); border-top: 4px solid var(--cold-500);
}
.price-card.is-warm { border-top-color: var(--warm-500); }
.price-card .k { color: var(--muted); font-size: .9rem; }
.price-card .v { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--cold-900); margin-top: .2rem; }
.price-card .v small { font-size: .8rem; color: var(--muted); font-weight: 600; }

/* ---------- Rólunk – 3 fotó egy sorban (mindig egyenlő oszlop) ---------- */
.photo-trio { display: grid; gap: clamp(1rem, 2.5vw, 1.5rem); grid-template-columns: 1fr; }
@media (min-width: 620px) { .photo-trio { grid-template-columns: repeat(3, 1fr); } }
.photo-trio figure { margin: 0; }
.photo-trio img {
  display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 14px; border: 1px solid var(--line);
}

/* ---------- Vélemények ---------- */
.testimonial-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.testimonial {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.3rem;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--warm-500);
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial p { margin: 0; color: var(--ink); font-size: 1rem; }
.testimonial__author {
  margin-top: auto; padding-top: .6rem; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.testimonial__name { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--cold-700); }
.testimonial__source { font-size: .8rem; color: var(--muted); }

/* ---------- Galéria ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.4rem; }
.gallery-filters button {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: .5rem .9rem; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft);
}
.gallery-filters button[aria-pressed="true"] { background: var(--grad-cta); color: #fff; border-color: transparent; }

.gallery { display: grid; gap: .8rem; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); }
.gallery button.shot {
  display: block; width: 100%; padding: 0; border: 0; cursor: pointer; background: none;
  aspect-ratio: 4 / 3;
}
.gallery button.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery button.shot:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: .8rem; color: #fff; padding: 1.6rem .8rem .6rem;
  background: linear-gradient(180deg, transparent, rgba(7,15,25,.72));
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; place-items: center; padding: 1.2rem;
  background: rgba(7,15,25,.85); backdrop-filter: blur(3px); }
.lightbox[data-open="true"] { display: grid; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; font-size: 1.3rem;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav.prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 1rem; top: 50%; transform: translateY(-50%); }

/* ---------- GYIK ---------- */
.faq-search { margin-bottom: 1.6rem; }
.faq-search input {
  width: 100%; font: inherit; color: var(--ink);
  padding: .85rem 1.1rem; border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); min-height: 48px;
}
.faq-search input:focus { border-color: var(--cold-500); outline: none; box-shadow: 0 0 0 3px rgba(30,155,224,.18); }
.faq-noresult {
  padding: 1rem 1.15rem; border-radius: var(--radius-sm);
  background: var(--cold-100); border: 1px dashed var(--cold-500); color: var(--ink-soft);
}
.faq-group { margin-bottom: 2rem; }
.faq-group > h3 { margin-bottom: .8rem; color: var(--cold-700); }
.faq {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: .6rem; overflow: hidden;
}
.faq > summary {
  cursor: pointer; list-style: none; padding: 1rem 1.15rem;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::after {
  content: "+"; font-size: 1.4rem; color: var(--cold-500); flex: none; transition: transform .2s;
}
.faq[open] > summary::after { content: "\2212"; }
.faq[open] > summary { color: var(--cold-900); }
.faq__body { padding: 0 1.15rem 1.15rem; color: var(--ink-soft); }

/* ---------- Akciók ---------- */
section[data-promos] { padding-bottom: clamp(1rem, 2.5vw, 1.5rem); }
section[data-promos] + #szolgaltatasok { padding-top: clamp(2rem, 5vw, 3rem); }
.promo-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem, 2.5vw, 1.5rem); }
.promo {
  flex: 1 1 280px; max-width: 400px;
  display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .15s ease, box-shadow .15s ease;
}
.promo:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.promo img { display: block; width: 100%; height: auto; }
.promo__cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .8rem 1rem; font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--cold-700);
}
.promo__cta svg { width: 1.1em; height: 1.1em; }
.promo-empty { color: var(--muted); }

/* ---------- Márkák ---------- */
.brands { display: flex; flex-wrap: wrap; gap: .6rem; }
.brands span {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
}
.brands .brands__primary {
  display: inline-flex; align-items: center; gap: .55rem;
  background-image: var(--grad-cta); color: #fff; border-color: transparent;
}
.brands .brands__primary em {
  font-style: normal; font-size: .68rem; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .25); padding: .14rem .5rem; border-radius: 999px;
}

/* ---------- Szolgáltatási terület ---------- */
.area-wrap { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); align-items: center; }
.area-map {
  border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden;
  background: var(--cold-100); aspect-ratio: 16 / 10; display: grid; place-items: center; color: var(--cold-700);
}

/* Térkép – kattintásra betöltő (adatvédelem miatt) */
.map-embed {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--cold-100); aspect-ratio: 16 / 10;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-embed__cover {
  position: absolute; inset: 0; padding: 1.5rem;
  display: grid; place-content: center; justify-items: center; gap: .7rem; text-align: center;
  background:
    radial-gradient(120% 120% at 25% 15%, rgba(79, 195, 247, .28), transparent 60%),
    radial-gradient(120% 120% at 85% 95%, rgba(255, 138, 31, .22), transparent 60%),
    var(--cold-100);
}
.map-embed__pin { width: 40px; height: 40px; color: var(--cold-700); }
.map-embed__title { font-family: var(--font-display); font-weight: 700; color: var(--cold-900); }
.map-embed__note { font-size: .8rem; color: var(--muted); max-width: 34ch; }
.map-embed__link { font-size: .85rem; }

/* ---------- CTA sáv ---------- */
.cta-band { background: var(--grad-cta); color: #fff; }
.cta-band .container { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; justify-content: space-between; padding-block: clamp(2rem, 5vw, 3rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); }

/* ---------- Űrlap ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 4vw, 2rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .92rem; margin-bottom: .35rem; }
.field .req { color: var(--warm-500); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; min-height: 48px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cold-500); outline: none; box-shadow: 0 0 0 3px rgba(30,155,224,.18); }
.field--check { display: flex; gap: .6rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.field--check input { width: 20px; height: 20px; min-height: 0; margin-top: .15rem; flex: none; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .4rem; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); display: none; }
.form-status.is-ok { display: block; background: #e7f7ee; border: 1px solid #96d9b3; color: #14663f; }
.form-status.is-err { display: block; background: #fdecea; border: 1px solid #f0b3ad; color: #9b2c22; }

/* ---------- Kapcsolat lista ---------- */
.contact-list { list-style: none; padding: 0; display: grid; gap: .9rem; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; }
.contact-list .ci {
  flex: none; width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--cold-100); color: var(--cold-700);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list b { font-family: var(--font-display); display: block; }
.contact-list a { text-decoration: none; }

/* ---------- Lábléc ---------- */
.site-footer { background: var(--cold-900); color: #cfe2f1; padding-block: clamp(2.5rem, 6vw, 4rem) 2rem; }
.site-footer a { color: #cfe2f1; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.site-footer h4 { font-family: var(--font-display); color: #fff; font-size: .95rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: .7rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .4rem; font-size: .93rem; }
.footer-bottom { margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.14); font-size: .84rem; color: #9fc0d8; display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; justify-content: space-between; }
.site-footer .brand__text .cold { color: #8fd8ff; }
.site-footer .brand__text .warm { color: #ffb98a; }
.footer-sign {
  width: 100%; max-width: 320px; height: auto;
  border-radius: 10px; border: 3px solid rgba(255, 255, 255, .9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .35);
}

/* ---------- Chatbot helyőrző ---------- */
.chat-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: 95;
  width: 56px; height: 56px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad-cta); color: #fff; box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.chat-fab svg { width: 26px; height: 26px; }
@media (max-width: 720px) { .chat-fab { bottom: 84px; } }
.chat-pop {
  position: fixed; right: 16px; bottom: 84px; z-index: 96; width: min(320px, calc(100vw - 32px));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 1.1rem; display: none;
}
.chat-pop[data-open="true"] { display: block; }
@media (max-width: 720px) { .chat-pop { bottom: 150px; } }
.chat-pop h4 { font-family: var(--font-display); margin-bottom: .4rem; }
.chat-pop p { font-size: .9rem; color: var(--muted); margin-bottom: .8rem; }

/* ---------- Belső oldal fejléc ---------- */
.page-hero { background: linear-gradient(135deg, var(--cold-900), var(--cold-700)); color: #fff; padding-block: clamp(2.5rem, 7vw, 4.5rem); position: relative; overflow: hidden; }
.page-hero::after {
  content: ""; position: absolute; right: -10%; top: -40%; width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(245,86,29,.5), transparent 70%);
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero p { color: #dcebf6; max-width: 55ch; position: relative; margin-top: .6rem; }
.breadcrumb { font-size: .84rem; color: #a9c8de; margin-bottom: .6rem; position: relative; }
.breadcrumb a { color: #a9c8de; }

/* ---------- Apró ---------- */
.tag-warn { color: var(--warm-700); font-weight: 700; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.prose > * + * { margin-top: 1rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; }
.prose ul { padding-left: 1.2rem; }
