/* ==========================================================================
   Z-Mobil Telefonszaküzlet és Szerviz – Komárom
   style.css · Készítette: webhack.eu
   ========================================================================== */

/* ---------- Betűtípusok ---------- */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-var.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
/* Méretre hangolt tartalék betű: amíg a webfont betölt, nem ugrik el a szöveg */
@font-face {
  font-family: "PJS Fallback";
  src: local("Arial"), local("ArialMT"), local("Helvetica Neue"), local("HelveticaNeue"),
       local("Helvetica"), local("Roboto"), local("Liberation Sans"), local("LiberationSans");
  size-adjust: 105.6%;
  ascent-override: 98.3%;
  descent-override: 21%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "PJS Fallback Heavy";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Helvetica Neue Bold"), local("HelveticaNeue-Bold"),
       local("Roboto Bold"), local("Roboto-Bold"), local("Liberation Sans Bold"), local("LiberationSans-Bold");
  font-weight: 100 900;
  size-adjust: 103.2%;
  ascent-override: 100.6%;
  descent-override: 21.5%;
  line-gap-override: 0%;
}

/* ---------- Tokenek ---------- */
:root {
  /* A régi oldal kék főcím-színe. Ha a régi style.css-ben más a hex kód, csak ezt az egy sort írd át. */
  --hero-blue: #1f5bf2;

  --brand: var(--hero-blue);
  --brand-600: #1a4fd6;
  --brand-700: #1745b8;
  --brand-50: #eef3fe;
  --brand-100: #dde7fd;

  --ink: #0e1a2b;
  --ink-2: #33445c;
  --muted: #5b6b82;
  --line: #dbe3ee;
  --line-2: #c3cfdf;
  --steel: #f1f4f9;
  --steel-2: #e7edf5;
  --navy: #0a1830;
  --navy-2: #13254a;
  --on-navy: #c6d1e2;
  --on-navy-2: #aebbd0;
  --amber: #e89a2c;
  --green: #0f7a3d;

  --font: "Plus Jakarta Sans", "PJS Fallback", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-heavy: "Plus Jakarta Sans", "PJS Fallback Heavy", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --r-xl: 32px;
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 72px;
  --section-y: clamp(4.5rem, 3rem + 5vw, 7.5rem);
  --ease-out: cubic-bezier(.2, .8, .2, 1);
}
/* A sötétebb árnyalatok a --hero-blue színből számolódnak, így egyetlen hex kód átírása elég */
@supports (color: color-mix(in srgb, red 50%, blue)) {
  :root {
    --brand-600: color-mix(in srgb, var(--hero-blue) 86%, #000);
    --brand-700: color-mix(in srgb, var(--hero-blue) 72%, #000);
    --brand-50: color-mix(in srgb, var(--hero-blue) 7%, #fff);
    --brand-100: color-mix(in srgb, var(--hero-blue) 15%, #fff);
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-2);
  background: #fff;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 64em) {
  body { font-size: 1.0625rem; }
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-heavy);
  color: var(--ink);
  text-wrap: balance;
  overflow-wrap: break-word;
}
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
table { border-collapse: collapse; }

a {
  color: var(--brand-700);
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
}
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--brand-600);
  outline-offset: 3px;
}
::selection { background: var(--brand-100); color: var(--ink); }

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nowrap { white-space: nowrap; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  top: -200px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1.1rem;
  border-radius: var(--r-sm);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

main:focus { outline: none; }

/* ---------- Gombok ---------- */
.btn {
  --btn-bg: var(--brand-600);
  --btn-fg: #fff;
  --btn-bd: var(--btn-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 3rem;
  padding: .75rem 1.25rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: 14px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { --btn-bg: var(--brand-700); }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.25rem; height: 1.25rem; }

.btn-lg {
  min-height: 3.5rem;
  padding: .9rem 1.5rem;
  border-radius: 16px;
  font-size: 1.0625rem;
}

.btn-secondary {
  --btn-bg: #fff;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-2);
}
.btn-secondary:hover { --btn-bg: var(--steel); --btn-bd: var(--ink-2); }

.btn-light {
  --btn-bg: #fff;
  --btn-fg: var(--brand-700);
  --btn-bd: #fff;
}
.btn-light:hover { --btn-bg: var(--brand-50); --btn-bd: var(--brand-50); }

.btn-ghost-light {
  --btn-bg: transparent;
  --btn-fg: #fff;
  --btn-bd: rgb(255 255 255 / .5);
}
.btn-ghost-light:hover { --btn-bg: rgb(255 255 255 / .12); --btn-bd: #fff; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* ---------- Élő nyitvatartás-jelző ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-2);
}
.status-dot {
  position: relative;
  width: .625rem;
  height: .625rem;
  flex: none;
  border-radius: 50%;
  background: var(--muted);
}
.status[data-state="open"] .status-dot { background: #16a34a; box-shadow: 0 0 0 4px rgb(22 163 74 / .16); }
.status[data-state="closing"] .status-dot { background: var(--amber); box-shadow: 0 0 0 4px rgb(232 154 44 / .2); }
.status[data-state="closed"] .status-dot { background: #94a3b8; }
.status[data-state="holiday"] .status-dot { background: var(--amber); }

/* ---------- Fejléc és menü ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / .94);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .site-header {
    background: rgb(255 255 255 / .9);
    -webkit-backdrop-filter: saturate(1.5) blur(14px);
    backdrop-filter: saturate(1.5) blur(14px);
  }
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgb(10 24 48 / .5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
  margin-right: auto;
  border-radius: 8px;
}
.brand img {
  width: 148px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.nav-desktop { display: none; }
.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: .125rem;
  height: 100%;
  list-style: none;
}
.nav-desktop a {
  display: block;
  padding: .55rem .75rem;
  border-radius: var(--r-sm);
  color: var(--ink-2);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease, background-color .15s ease;
}
.nav-desktop a:hover { color: var(--ink); background: var(--steel); }
.nav-desktop a[aria-current="true"] { color: var(--ink); }
.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--w, 0px);
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--brand);
  opacity: 0;
  transform: translateX(var(--x, 0px));
  pointer-events: none;
}
.nav-indicator.is-active { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .nav-indicator.is-ready {
    transition: transform .4s var(--ease-out), width .4s var(--ease-out), opacity .2s ease;
  }
}

.header-call { display: none; white-space: nowrap; }
.header-call .num { display: none; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: .5rem .95rem;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.menu-btn:hover { border-color: var(--ink-2); }
.menu-btn .icon { width: 1.25rem; height: 1.25rem; }

@media (min-width: 37.5em) {
  .header-call { display: inline-flex; min-height: 44px; padding: .5rem 1rem; border-radius: 12px; font-size: .9375rem; }
}
@media (min-width: 64em) {
  .nav-desktop {
    position: relative;
    display: flex;
    align-self: stretch;
    margin-inline: auto;
  }
  .brand { margin-right: 0; }
  .menu-btn { display: none; }
  .header-inner { gap: 1.5rem; }
}
@media (min-width: 80em) {
  .header-call .num { display: inline; }
}

/* Teljes képernyős mobilmenü (popover) */
.menu-sheet {
  position: fixed;
  inset: 0;
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0 0 calc(1.5rem + env(safe-area-inset-bottom));
  border: 0;
  background: #fff;
  color: var(--ink);
  overflow-y: auto;
  overscroll-behavior: contain;
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-10px);
}
.menu-sheet:popover-open { display: flex; opacity: 1; transform: none; }
.menu-sheet.is-open { display: flex; opacity: 1; transform: none; }
.menu-sheet::backdrop { background: transparent; }
@media (prefers-reduced-motion: no-preference) {
  .menu-sheet {
    transition: opacity .22s ease, transform .3s var(--ease-out), overlay .3s allow-discrete, display .3s allow-discrete;
  }
  @starting-style {
    .menu-sheet:popover-open { opacity: 0; transform: translateY(-10px); }
  }
}
:root:has(.menu-sheet:popover-open) { overflow: hidden; }
.menu-open { overflow: hidden; }

.sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line);
}
.sheet-top img { width: 148px; height: 40px; object-fit: contain; object-position: left center; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.icon-btn:hover { border-color: var(--ink-2); }
.icon-btn .icon { width: 1.4rem; height: 1.4rem; }

.sheet-nav ul { list-style: none; padding-block: .5rem; }
.sheet-nav li + li { border-top: 1px solid var(--line); }
.sheet-nav a {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  align-items: center;
  column-gap: 1rem;
  padding-block: .8rem;
  color: var(--ink);
  text-decoration: none;
}
.sheet-nav .tile {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--steel);
  color: var(--brand-700);
}
.sheet-nav .tile .icon { width: 1.35rem; height: 1.35rem; }
.sheet-link-title {
  font-family: var(--font-heavy);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.sheet-link-desc { font-size: .875rem; color: var(--muted); line-height: 1.35; }
.sheet-nav a:hover .sheet-link-title { color: var(--brand-700); }

.sheet-foot {
  display: grid;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1.25rem;
}
.sheet-foot .btn { width: 100%; }
.sheet-foot .status { margin-bottom: .25rem; }
.sheet-social { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.sheet-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 44px;
  padding: .5rem .85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
}
.sheet-social a:hover { border-color: var(--ink-2); }

/* Alsó gyorsgombok mobilon */
.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: .5rem;
  padding: .625rem var(--gutter) calc(.625rem + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / .96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px -24px rgb(10 24 48 / .5);
}
.dock .btn { min-height: 3.25rem; }
.js .dock { transition: transform .3s var(--ease-out), visibility .3s; }
.js .dock:not(.is-visible) { transform: translateY(115%); visibility: hidden; }
@media (min-width: 64em) {
  .dock { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-block: clamp(2rem, 1rem + 3.5vw, 4.5rem) clamp(2.5rem, 1.5rem + 2.5vw, 4rem);
  overflow: clip;
}
.hero-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 60em) {
  .hero-grid { grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr); }
}

.hero-copy { container-type: inline-size; }

.hero-title {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-size: clamp(1rem, .95rem + .3vw, 1.1875rem);
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.3;
  color: var(--ink-2);
}
.hero-kicker .icon { width: 1.25rem; height: 1.25rem; color: var(--brand-600); }
.hero-main {
  display: block;
  color: var(--hero-blue);
  font-size: clamp(2.5rem, 12vw, 5.5rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.04em;
}
@supports (container-type: inline-size) {
  .hero-main { font-size: clamp(2.25rem, 100cqi / 6.1, 5.5rem); }
}

.hero-lead {
  max-width: 34em;
  margin-bottom: 2rem;
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-2);
}

.hero-actions { margin-bottom: 1.25rem; }
@media (max-width: 29.99em) {
  .hero-actions .btn { width: 100%; }
}

.hero-promises {
  display: grid;
  gap: .7rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  list-style: none;
}
.hero-promises li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.hero-promises .icon { width: 1.35rem; height: 1.35rem; color: var(--brand-600); }
@media (min-width: 40em) {
  .hero-promises { grid-template-columns: repeat(3, auto); justify-content: start; column-gap: 1.75rem; }
}

/* A röntgenrajz */
.xr-figure { margin: 0; }
.xr {
  --grid: #dfe6ef;
  position: relative;
  aspect-ratio: 1;
  container-type: inline-size;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background-color: var(--steel);
  background-image:
    radial-gradient(circle at 30% 45%, rgb(255 255 255 / .9), rgb(255 255 255 / 0) 55%),
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 100% 100%, 5% 5%, 5% 5%;
  background-position: 0 0, -1px -1px, -1px -1px;
}
.xr-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.xr-part, .xr-lead { transition: opacity .25s ease; }

.xr-labels { position: absolute; inset: 0; list-style: none; }
.xr-labels li {
  position: absolute;
  left: 61.6%;
  right: 3%;
  top: calc(var(--y) * 1%);
  transform: translateY(-50%);
}
.xr-labels a {
  display: inline-flex;
  flex-direction: column;
  max-width: 100%;
  padding: .35em .65em .38em;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgb(255 255 255 / .92);
  color: var(--ink);
  font-size: clamp(.75rem, 3.05cqi, 1rem);
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 6px 16px -12px rgb(10 24 48 / .5);
  transition: border-color .15s ease, background-color .15s ease, color .15s ease;
}
.xr-name { font-weight: 700; }
.xr-hint { font-size: .82em; font-weight: 500; color: var(--muted); }
.xr-labels a:hover, .xr-labels a:focus-visible {
  border-color: var(--brand-600);
  background: #fff;
  color: var(--brand-700);
}
@container (max-width: 25rem) {
  .xr-hint { display: none; }
}

.xr:has(.xr-labels a:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead) { opacity: .22; }
.xr:has([data-part="screen"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="screen"],
.xr:has([data-part="board"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="board"],
.xr:has([data-part="battery"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="battery"],
.xr:has([data-part="frame"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="frame"],
.xr:has([data-part="water"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="water"],
.xr:has([data-part="port"]:is(:hover, :focus-visible)) :is(.xr-part, .xr-lead)[data-part="port"] { opacity: 1; }

.xr-caption {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .9375rem;
  color: var(--muted);
}
.xr-caption .icon { width: 1.2rem; height: 1.2rem; color: var(--brand-600); }

@media (prefers-reduced-motion: no-preference) {
  .xr-cover { animation: xr-scan 1.35s cubic-bezier(.55, .05, .3, 1) .3s both; }
  .xr-lead, .xr-labels li { animation: xr-in .45s ease both; animation-delay: calc(1.55s + var(--i, 0) * 90ms); }
}
@media (prefers-reduced-motion: reduce) {
  .xr-cover { display: none; }
}
@keyframes xr-scan {
  to { transform: translateY(500px); }
}
@keyframes xr-in {
  from { opacity: 0; }
}

/* ---------- Szekciók – közös ---------- */
.section { padding-block: var(--section-y); }
.section-alt { background: var(--steel); }

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem);
}
.section-head h2 {
  font-size: clamp(1.875rem, 1.3rem + 2.3vw, 2.875rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.028em;
}
.section-lead {
  margin-top: 1rem;
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-2);
}

.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--steel-2);
}
.photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.photo-wide img { aspect-ratio: 4 / 3; }
.photo-square img { aspect-ratio: 1; }
.photo figcaption {
  padding: .9rem 1.1rem;
  font-size: .875rem;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.ticks { display: grid; gap: .65rem; list-style: none; }
.ticks li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .2em;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231745b8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12.5 4 4 8-8.5'/%3E%3C/svg%3E") center / 70% no-repeat;
}

.fine {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Szerviz ---------- */
.service-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4.5rem);
}
@media (min-width: 60em) {
  .service-layout {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }
  .service-photo {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
  }
}

.service-list { display: grid; }
.service {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1.25rem;
  padding-block: 1.6rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}
.service:first-child { padding-top: 0; border-top: 0; }
.service-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  transition: background-color .3s ease, color .3s ease;
}
.service-icon .icon { width: 1.5rem; height: 1.5rem; }
.service h3 {
  margin-bottom: .45rem;
  font-size: clamp(1.1875rem, 1.1rem + .4vw, 1.375rem);
  line-height: 1.25;
  letter-spacing: -.014em;
}
.service p + p { margin-top: .6rem; }
.service:target .service-icon { background: var(--brand-600); color: #fff; }
.service:target h3 { color: var(--brand-700); }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .9rem;
  list-style: none;
}
.chips li {
  padding: .28rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--steel);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink-2);
}

.tip {
  display: flex;
  gap: .6rem;
  margin-top: .9rem;
  padding: .8rem 1rem;
  border-left: 3px solid var(--amber);
  border-radius: 0 12px 12px 0;
  background: #fdf6ea;
  font-size: .9375rem;
  color: var(--ink);
}

.tip .icon { width: 1.25rem; height: 1.25rem; margin-top: .1rem; color: #b45309; }

.brands {
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding: 1.5rem clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.brands h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.brands p { color: var(--ink-2); }

.cta-strip {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.25rem;
  padding: clamp(1.6rem, 1rem + 2.5vw, 2.75rem);
  border-radius: var(--r-xl);
  background: var(--brand-600);
  color: #fff;
}
.cta-strip h3 {
  color: #fff;
  font-size: clamp(1.375rem, 1.2rem + .8vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.cta-strip p { margin-top: .5rem; color: #e3eafd; }
@media (min-width: 52em) {
  .cta-strip { grid-template-columns: minmax(0, 1fr) auto; }
}

/* ---------- Folyamat ---------- */
.steps {
  display: grid;
  gap: 0;
  list-style: none;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 1.1rem;
  padding-bottom: 2rem;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  grid-row: span 2;
  border: 2px solid var(--brand-600);
  border-radius: 50%;
  background: #fff;
  color: var(--brand-700);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.step::before {
  content: "";
  position: absolute;
  top: 2.75rem;
  bottom: 0;
  left: calc(1.375rem - 1px);
  width: 2px;
  background: repeating-linear-gradient(180deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.step:last-child::before { display: none; }
.step h3 {
  align-self: center;
  margin: .55rem 0 .35rem;
  font-size: 1.1875rem;
  line-height: 1.25;
  letter-spacing: -.012em;
}
.step p { grid-column: 2; color: var(--ink-2); }

@media (min-width: 64em) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2rem; }
  .step { display: block; padding-bottom: 0; }
  .step-num { margin-bottom: 1.25rem; }
  .step::before {
    top: calc(1.375rem - 1px);
    bottom: auto;
    left: 3.5rem;
    right: -1.25rem;
    width: auto;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
  }
  .step h3 { margin-top: 0; }
}

/* ---------- Tartozékok ---------- */
.acc-layout {
  display: grid;
  gap: clamp(2.5rem, 4vw, 4.5rem);
}
@media (min-width: 60em) {
  .acc-layout {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: start;
  }
  .acc-photo { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

.versus {
  position: relative;
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.versus-item { padding: clamp(1.4rem, 1rem + 1.5vw, 2rem); }
.versus-item + .versus-item { border-top: 1px solid var(--line); }
.versus-item h3 {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .6rem;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.versus-item h3 .icon { width: 1.5rem; height: 1.5rem; color: var(--brand-600); }
.versus-item p { margin-bottom: 1rem; color: var(--ink-2); }
.versus-best {
  margin-top: 1.1rem;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--ink);
}

@media (min-width: 44em) {
  .versus { grid-template-columns: 1fr 1fr; }
  .versus-item + .versus-item { border-top: 0; border-left: 1px solid var(--line); }
  
}

.acc-extras {
  display: grid;
  gap: 1.25rem;
  margin-block: 2rem;
  list-style: none;
}
@media (min-width: 44em) {
  .acc-extras { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.acc-extras li { display: grid; gap: .35rem; }
.acc-extras h3 {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.0625rem;
}
.acc-extras h3 .icon { width: 1.35rem; height: 1.35rem; color: var(--brand-600); }
.acc-extras p { font-size: .9375rem; color: var(--ink-2); }

/* ---------- Adás-vétel ---------- */
.trade-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (min-width: 60em) {
  .trade-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.trade-cols { display: grid; gap: 2rem; }
.trade-col h3 {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
.trade-col h3 .icon { width: 1.5rem; height: 1.5rem; color: var(--brand-600); }
.trade-actions { margin-top: 2.25rem; }

/* ---------- Videók ---------- */
.section-dark {
  background: var(--navy);
  color: var(--on-navy);
}
.section-dark h2 { color: #fff; }
.section-dark .section-lead { color: var(--on-navy); }
.section-dark a:not(.btn) { color: #9dbbff; }

.videos-head {
  display: grid;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
}
.videos-head .section-head { margin-bottom: 0; }
@media (min-width: 56em) {
  .videos-head { grid-template-columns: minmax(0, 1fr) auto; }
}

.reels {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(13.5rem, 1fr);
  gap: 1rem;
  margin-inline: calc(var(--gutter) * -1);
  padding: .25rem var(--gutter) 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-2) transparent;
}
.reels li { scroll-snap-align: start; }
@media (min-width: 64em) {
  .reels {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-inline: 0;
    padding: 0;
    overflow: visible;
  }
}
.reel {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy-2);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.reel img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.reel::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, rgb(10 24 48 / 0), rgb(10 24 48 / .92));
  pointer-events: none;
}
.reel-play {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px -8px rgb(0 0 0 / .5);
  transition: transform .2s var(--ease-out);
}
.reel-play .icon { width: 1.3rem; height: 1.3rem; margin-left: 2px; }
.reel-title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.reel:hover img { transform: scale(1.03); }
.reel:hover .reel-play { transform: scale(1.08); }
.reel:focus-visible { outline-color: #9dbbff; }

.videos-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 1.75rem;
}
.videos-foot .fine { color: var(--on-navy-2); max-width: 40rem; }

/* Videó felugró ablak */
.video-dialog {
  width: min(26rem, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.video-dialog::backdrop { background: rgb(6 14 30 / .78); }
.video-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem .75rem .75rem 1.25rem;
}
.video-dialog-title { font-weight: 700; color: #fff; }
.video-dialog .icon-btn { background: transparent; color: #fff; border-color: rgb(255 255 255 / .35); }
.video-frame {
  height: min(44rem, calc(100dvh - 9.5rem));
  background: #000;
}
.video-frame iframe, .video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}
.video-dialog .fine { padding: .75rem 1.25rem 1rem; color: var(--on-navy-2); }
@media (prefers-reduced-motion: no-preference) {
  .video-dialog[open] { animation: pop-in .25s var(--ease-out); }
}
@keyframes pop-in {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
}

/* ---------- Vélemények ---------- */
.reviews-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}
@media (min-width: 60em) {
  .reviews-layout { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); align-items: start; }
}
.reviews-intro .section-head { margin-bottom: 1.75rem; }
.reviews-intro .actions { margin-bottom: 1.5rem; }

.reviews {
  display: grid;
  gap: 1rem;
  list-style: none;
}
@media (min-width: 44em) {
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews li:first-child:nth-last-child(odd) { grid-column: 1 / -1; }
}
.review {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: clamp(1.4rem, 1rem + 1.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
}
.stars { display: flex; gap: .15rem; margin-bottom: 1rem; color: var(--amber); }
.stars .icon { width: 1.2rem; height: 1.2rem; }
.review blockquote { margin: 0 0 1.25rem; }
.review blockquote p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
}
.reviews li:first-child:nth-last-child(odd) .review blockquote p { font-size: clamp(1.125rem, 1.05rem + .4vw, 1.3125rem); }
.review figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .25rem .75rem;
  margin-top: auto;
  font-size: .9375rem;
}
.review-name { font-weight: 700; color: var(--ink); }
.review-src { color: var(--muted); }
.review.is-placeholder { border-style: dashed; border-color: var(--line-2); background: var(--steel); }
.review.is-placeholder blockquote p { color: var(--muted); }

/* ---------- GYIK ---------- */
.faq-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 60em) {
  .faq-layout { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); align-items: start; }
  .faq-layout .section-head { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}
.faq { border-top: 1px solid var(--line-2); }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  position: relative;
  display: block;
  padding: 1.2rem 3rem 1.2rem 0;
  font-family: var(--font-heavy);
  font-size: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  right: .6rem;
  top: 50%;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  border-radius: 2px;
  background: var(--brand-600);
  transition: transform .25s var(--ease-out);
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0deg); }
.faq summary:hover { color: var(--brand-700); }
.faq .answer { padding: 0 0 1.4rem; max-width: 44rem; }
.faq .answer p + p { margin-top: .6rem; }

/* ---------- Kapcsolat ---------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 56em) {
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.contact-card {
  display: grid;
  gap: 1.5rem;
}
.contact-name {
  font-size: clamp(1.375rem, 1.2rem + .8vw, 1.75rem);
  letter-spacing: -.02em;
  line-height: 1.15;
}
.contact-list { display: grid; gap: .85rem; list-style: none; }
.contact-list li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink); }
.contact-list .icon { width: 1.35rem; height: 1.35rem; margin-top: .15rem; color: var(--brand-600); }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--brand-700); }

.hours {
  width: 100%;
  max-width: 26rem;
  font-variant-numeric: tabular-nums;
}
.hours caption {
  margin-bottom: .5rem;
  font-family: var(--font-heavy);
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
}
.hours th, .hours td {
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 500;
}
.hours td { text-align: right; color: var(--ink); }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 700; color: var(--ink); }
.hours tr.is-today th::after {
  content: "ma";
  display: inline-block;
  margin-left: .5rem;
  padding: .05rem .45rem;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: .75rem;
  font-weight: 700;
  vertical-align: .1em;
}

.social-links { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 44px;
  padding: .45rem .9rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
}
.social-links a:hover { border-color: var(--ink-2); }

.map {
  position: relative;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #e9eef5;
  aspect-ratio: 4 / 3;
}
@media (min-width: 48em) {
  .map { aspect-ratio: 21 / 8; }
}
.map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-ui {
  position: absolute;
  left: 50%;
  bottom: clamp(1rem, 3vw, 1.75rem);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: .6rem;
  width: max-content;
  max-width: calc(100% - 2rem);
  text-align: center;
}
.map-ui .fine {
  padding: .3rem .7rem;
  border-radius: 999px;
  background: rgb(255 255 255 / .9);
  color: var(--ink-2);
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; margin-top: 1rem; }

.nearby {
  margin-top: 1.5rem;
  max-width: 50rem;
  color: var(--ink-2);
}

/* ---------- Lábléc ---------- */
.site-footer {
  padding-top: clamp(3.5rem, 3rem + 3vw, 5rem);
  background: var(--steel);
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: .9375rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem 2rem;
}
@media (min-width: 40em) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 64em) {
  .footer-grid { grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); }
}
.footer-brand img { width: 148px; height: 40px; object-fit: contain; object-position: left center; margin-bottom: 1rem; }
.footer-brand p { max-width: 22rem; }
.footer-title {
  margin-bottom: .9rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.footer-links { display: grid; gap: .45rem; list-style: none; }
.footer-links a, .site-footer address a { color: var(--ink-2); text-decoration: none; }
.footer-links a:hover, .site-footer address a:hover { color: var(--brand-700); text-decoration: underline; }
.site-footer address p + p { margin-top: .45rem; }
.footer-hours { display: grid; gap: .3rem; }

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem 2rem;
  margin-top: clamp(2.5rem, 4vw, 3.5rem);
  padding-block: 1.5rem;
  font-size: .875rem;
  color: var(--muted);
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  border-top: 1px solid var(--line-2);
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; list-style: none; }
.footer-bottom a { color: var(--ink-2); font-weight: 600; }
.footer-bottom a:hover { color: var(--brand-700); }
@media (max-width: 63.99em) {
  .site-footer { padding-bottom: calc(4.75rem + env(safe-area-inset-bottom)); }
}

/* ---------- Jogi oldalak ---------- */
.legal-hero {
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) clamp(2rem, 1.5rem + 2vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--steel);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; font-size: .9375rem; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--muted); }
.breadcrumb a { color: var(--ink-2); }
.legal-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.legal-hero p { margin-top: .75rem; max-width: 42rem; }
.legal-body { padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.prose { max-width: 46rem; }
.prose h2 {
  margin: 2.5rem 0 .75rem;
  font-size: clamp(1.375rem, 1.2rem + .7vw, 1.625rem);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.75rem 0 .5rem; font-size: 1.125rem; }
.prose p, .prose ul { margin-bottom: 1rem; }
.prose ul { padding-left: 1.25rem; }
.prose li + li { margin-top: .35rem; }
.data-list {
  display: grid;
  margin: 0 0 1rem;
  border-top: 1px solid var(--line);
}
.data-list div {
  display: grid;
  gap: .15rem 1.5rem;
  padding-block: .8rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 40em) {
  .data-list div { grid-template-columns: 14rem minmax(0, 1fr); }
}
.data-list dt { font-weight: 700; color: var(--ink); }
.data-list dd { margin: 0; }

.notfound {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h) - 12rem);
  padding-block: 4rem;
  text-align: center;
}
.notfound h1 {
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
}
.notfound p { margin: 1rem auto 2rem; max-width: 32rem; }
.notfound .actions { justify-content: center; }

/* ---------- Nyomtatás ---------- */
@media print {
  .site-header, .dock, .menu-sheet, .xr-figure, #videok, .map, .skip-link { display: none !important; }
  .section { padding-block: 1.5rem; }
  a { color: inherit; }
}

/* Saját videó: kattintásra helyben, a kártyában játszódik le */
.reel.is-playing::after { display: none; }
.reel video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}
.reel video:focus-visible { outline: 3px solid #9dbbff; outline-offset: -3px; }

.recommends { display: inline-flex; align-items: center; gap: .4rem; margin-bottom: 1rem; font-size: .875rem; font-weight: 700; color: var(--brand-700); }
.recommends .icon { width: 1.1rem; height: 1.1rem; }
