/* MesterPc — közös stíluslap (index, szerviz, egyedi-gepek, kapcsolat, munkalap) */

/* ---------- Saját (self-hosted) fontok ----------
   S7: korábban a Google Fonts-ról töltöttük (fonts.googleapis.com CSS +
   fonts.gstatic.com fájlok) — ugyanezek a fájlok (Archivo változó wght 400–900,
   IBM Plex Mono 400/500; latin + latin-ext, a magyar ő/ű a latin-ext-ben) most
   a saját domainről jönnek: nincs külön, renderelést blokkoló, más originre
   menő CSS-kérés. Forrás: @fontsource-variable/archivo 5.3.0,
   @fontsource/ibm-plex-mono 5.3.0 (OFL-1.1, lásd assets/fonts/OFL-*.txt).
   A fájlnév verziót tartalmaz: új fontverzió = új fájlnév (1 éves cache).
   Abszolút URL kell: a build a CSS-t a /_h/ alá teszi (relatív út ott eltörne). */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-ext-wght.v5-3-0.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/assets/fonts/archivo-latin-wght.v5-3-0.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-ext-400.v5-3-0.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-400.v5-3-0.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-ext-500.v5-3-0.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-latin-500.v5-3-0.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy: #08376B;
  --offwhite: #F6F5F2;
  --lightblue: #4A7FA5;
  --near-black: #0B0E14;
  --cyan: #4FD1C5;
  --white: #FFFFFF;

  --font-base: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --header-h: 64px;

  /* A hasított hero törésvonalának pozíciója. Hoverre mozdul el. */
  --split: 50%;
  --split-ease: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

/* Biztonsági háló: a natív [hidden]-t bármelyik komponens explicit
   display-e felülírhatja specificitás-egyezésnél — ez mindig nyerjen. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  line-height: 1.5;
  color: var(--navy);
  background: var(--offwhite);

  /* Fejléc-téma: alapból világos oldal (navy logó + navy menü) */
  --logo-navy-display: block;
  --logo-white-display: none;
  --header-nav-color: var(--navy);
}

/* Sötét belső oldal (Egyedi Gépek): fehér logó + fehér menü */
body.theme-dark {
  --logo-navy-display: none;
  --logo-white-display: block;
  --header-nav-color: var(--white);
}

/* Kezdőlap: a logó a világos panel fölött ül (navy marad),
   a menü a sötét panel fölött (fehérre vált). */
body.home {
  --header-nav-color: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* ---------- Felső navigáció (minden oldalon) ---------- */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header-h);
  display: flex;
  align-items: center;

  /* Semleges, áttetsző réteg: mindkét panel fölött megül, egyiket sem nyomja el */
  background: rgba(125, 135, 150, 0.14);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  backdrop-filter: blur(16px) saturate(120%);
  border-bottom: 1px solid rgba(125, 135, 150, 0.22);
}

.top-bar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.top-bar-logo {
  height: 26px;
  width: auto;
}

.top-bar-logo--navy {
  display: var(--logo-navy-display);
}

.top-bar-logo--white {
  display: var(--logo-white-display);
}

.top-bar-nav {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  color: var(--header-nav-color);
}

.top-bar-menu-toggle { display: none; }

.top-bar-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.top-bar-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.top-bar-nav a:hover::after,
.top-bar-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* D-i18n: HU|EN nyelvváltó a fejlécben — kicsi, visszafogott, nem versenyez
   a fő navigációval. Lásd public/i18n.js a mechanizmus indoklásáért. */
.lang-switch {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  margin-left: 0.25rem;
}

.lang-switch button {
  all: unset;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.lang-switch button:hover {
  opacity: 0.85;
}

.lang-switch button.is-active {
  opacity: 1;
  background: rgba(127, 127, 127, 0.18);
}

/* Belső oldalakon a fix fejléc alatt helyet hagyunk a tartalomnak */
body.inner-page {
  padding-top: var(--header-h);
}

/* ---------- Kezdőlap: hasított hero ---------- */

.split-hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  background: var(--near-black);
  overflow: hidden;
}

/* A hover a body-n állítja a törésvonalat, így a hero és a fejléc is együtt mozog */
body:has(.hero-panel--service:hover) {
  --split: 58%;
}

body:has(.hero-panel--custom:hover) {
  --split: 42%;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 2rem 4rem;
  text-decoration: none;
  overflow: hidden;
  transition: flex-basis var(--split-ease);
}

.hero-panel--service {
  flex: 0 0 var(--split);
  color: var(--navy);
}

.hero-panel--custom {
  flex: 1 1 auto;
  color: var(--white);
}

/* Háttérréteg külön pszeudo-elemen, hogy a lágy átmenet maszkja
   a szöveget ne érintse */
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-panel--service::before {
  background: var(--offwhite);
  /* A világos panel jobb széle rövid, de lágy sávon olvad a sötét háttérbe */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
}

.hero-panel--custom::before {
  background: radial-gradient(120% 90% at 62% 50%, rgba(79, 209, 197, 0.16), transparent 68%);
  opacity: 0.65;
  transition: opacity var(--split-ease);
}

.hero-panel--custom:hover::before {
  opacity: 1;
}

/* ---------- Hero: háttérvideó ---------- */

/* A videó a tartalom mögött ül (z-index), teljes panelt kitölti, és abban a
   sávban, ahol a szöveg és a gomb van, jelentősen visszahalványul, hogy a
   szöveg olvasható maradjon a mozgó kép felett. */
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  transform: scale(1.02);
  transition: opacity var(--split-ease), transform var(--split-ease);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 14%, rgba(0, 0, 0, 0.15) 32%, rgba(0, 0, 0, 0.15) 68%, #000 86%, #000 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 14%, rgba(0, 0, 0, 0.15) 32%, rgba(0, 0, 0, 0.15) 68%, #000 86%, #000 100%);
}

/* Hoverre a videó felnagyul és felvilágosodik, a másik panelé pedig elhalványul */
.hero-panel:hover .hero-art {
  opacity: 0.8;
  transform: scale(1.06);
}

.split-hero:hover .hero-panel:not(:hover) .hero-art {
  opacity: 0.32;
}

/* A Szerviz panel videója most már a teljes felületen élesen, homályosítás
   nélkül látszik — a szöveg olvashatóságát nem egy panel-szintű elhalványítás
   adja, hanem egy külön, csak a szöveg köré illesztett homályos "plató"
   (lásd lent, .hero-panel--service .hero-content::before). */
.hero-panel--service .hero-art {
  opacity: 0.92;
  /* Ugyanaz a maszk-technika, mint a ::before háttérrétegen (fent) —
     így a videó és a mögötte lévő szín pontosan ugyanúgy fakul el a
     panelek határán, nem két, egymáshoz nem illő réteg egymáson. */
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to right, #000 0%, #000 80%, transparent 100%);
}

/* A Szerviz panelen a hoverre való ránagyítás is visszafogottabb, mint a
   másikon — a fényesebb, jobban látszó videón az eredeti mérték túl
   erősnek, túl "beleZoom"-olónak hatott */
.hero-panel--service:hover .hero-art {
  opacity: 1;
  transform: scale(1.02);
}

.hero-panel--service .hero-content {
  position: relative;
}

.hero-panel--service .hero-content::before {
  content: "";
  position: absolute;
  inset: -5rem -8rem;
  z-index: -1;
  background: radial-gradient(closest-side, rgba(246, 245, 242, 0.6) 0%, rgba(246, 245, 242, 0.32) 45%, transparent 100%);
  transition: opacity var(--split-ease);
}

/* Hoverre a videó felerősödik (lásd fent) — a szöveg mögötti folt is
   erősödjön vele együtt, különben a szöveg belefolyna a világosabb videóba */
.hero-panel--service:hover .hero-content::before {
  background: radial-gradient(closest-side, rgba(246, 245, 242, 0.82) 0%, rgba(246, 245, 242, 0.5) 45%, transparent 100%);
}

.hero-panel--service:hover .hero-art {
  opacity: 0.9;
}

/* ---------- Hero: tartalom ---------- */

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  text-align: center;
  transition: transform var(--split-ease), opacity var(--split-ease);
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-panel--service .hero-eyebrow {
  color: var(--lightblue);
}

.hero-panel--custom .hero-eyebrow {
  color: var(--cyan);
}

.hero-content h2 {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0 0 0.85rem;
}

.hero-content p {
  font-size: 1.05rem;
  margin: 0 0 1.9rem;
  opacity: 0.85;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hero-cta .arrow {
  transition: transform 0.35s ease;
}

.hero-panel:hover .hero-cta .arrow {
  transform: translateX(4px);
}

.hero-panel--service .hero-cta {
  background: var(--lightblue);
  color: var(--white);
}

.hero-panel--service:hover .hero-cta {
  box-shadow: 0 8px 28px rgba(74, 127, 165, 0.4);
}

.hero-panel--custom .hero-cta {
  background: var(--cyan);
  color: var(--near-black);
}

.hero-panel--custom:hover .hero-cta {
  box-shadow: 0 0 34px rgba(79, 209, 197, 0.55);
}

/* A nem választott oldal finoman háttérbe lép */
.split-hero:hover .hero-panel:not(:hover) .hero-content {
  opacity: 0.5;
  transform: scale(0.97);
}

.hero-panel:hover .hero-content {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .split-hero {
    flex-direction: column;
  }

  .hero-panel {
    flex: 1 1 auto;
    min-height: 68vh;
    padding: 5rem 1.5rem 3rem;
  }

  .hero-panel--service {
    padding-top: 6.5rem;
  }

  /* Álló elrendezésnél a lágy átmenet alulra kerül */
  .hero-panel--service::before {
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 82%, transparent 100%);
  }

  .top-bar-inner {
    padding: 0 1.25rem;
  }

  .top-bar-nav {
    gap: 1.4rem;
    /* Mobilon a fejléc a világos panel fölött ül */
    color: var(--navy);
  }

  body.theme-dark .top-bar-nav {
    color: var(--white);
  }
}

/* Mobilon a teljes méretű navigáció egy érintésbarát, billentyűzettel is
   kezelhető menüből nyílik. A fejléc így egy sorban marad. */
@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .top-bar { background: rgba(246, 245, 242, .97); }
  body.theme-dark .top-bar { background: rgba(23, 28, 37, .97); }
  .top-bar-inner {
    flex-direction: row;
    gap: 1rem;
    padding: 0 1rem;
  }

  .top-bar-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    padding: .65rem 1rem 1rem;
    background: var(--offwhite);
    border-bottom: 1px solid rgba(8, 55, 107, .16);
    box-shadow: 0 18px 28px rgba(8, 55, 107, .14);
    color: var(--navy);
  }
  body.theme-dark .top-bar-nav { background: #171c25; color: var(--white); }
  .top-bar-nav.is-open { display: flex; }
  .top-bar-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(8, 55, 107, .1);
    font-size: .85rem;
    letter-spacing: .05em;
  }
  body.theme-dark .top-bar-nav a { border-bottom-color: rgba(255, 255, 255, .1); }
  .top-bar-nav .lang-switch { margin: .8rem 0 0; min-height: 44px; }
  .top-bar-nav .lang-switch button { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .top-bar-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 .75rem;
    border-radius: 9px;
    border: 1px solid rgba(8, 55, 107, .2);
    background: rgba(255, 255, 255, .55);
    color: var(--navy);
    font-weight: 700;
  }
  body.theme-dark .top-bar-menu-toggle {
    border-color: rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-art .part,
  .hero-panel,
  .hero-content,
  .hero-cta {
    transition: none;
  }

  .hero-panel:hover .hero-art .part {
    transform: none;
  }
}

/* ---------- Belső oldalak — közös elrendezés ---------- */

body.inner-page {
  padding-top: var(--header-h);
}

body.theme-dark {
  background: var(--near-black);
  color: var(--white);
  /* A böngésző natív vezérlőit (pl. a <select> lenyíló listáját) is
     sötét témában rendereli — enélkül a lenyíló lista háttere gyakran
     rendszer-alapértelmezett fehér marad, a mi fehér szövegünk pedig
     eltűnik rajta. */
  color-scheme: dark;
}

.page-hero {
  padding: clamp(5rem, 9vw, 7rem) 1.5rem clamp(3.5rem, 7vw, 5rem);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 0.9rem;
}

.page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  opacity: 0.85;
}

.page-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--lightblue);
}

body.theme-dark .page-eyebrow {
  color: var(--cyan);
}

.page-section {
  max-width: 920px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-section--wide {
  max-width: 1180px;
}

.page-section h2 {
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
}

.note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 1rem;
}

/* ---------- Apple-stílusú modulok: bőséges térköz, háttérszín-váltás,
   nincs kemény elválasztó vonal a szekciók között ---------- */

.module {
  padding: clamp(3.75rem, 8vw, 6.5rem) 1.5rem;
}

.module--surface {
  /* Finom, szín szerinti háttérváltás border helyett */
  background: rgba(8, 55, 107, 0.035);
}

body.theme-dark .module--surface {
  background: rgba(255, 255, 255, 0.035);
}

.module-inner {
  max-width: 920px;
  margin: 0 auto;
}

.module-header {
  max-width: 620px;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}

.module-header h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.1;
  margin: 0.55rem 0 0.9rem;
}

.module-header p {
  font-size: 1.05rem;
  opacity: 0.72;
  margin: 0;
}

.module-foot {
  max-width: 620px;
  margin: 2.5rem auto 0;
  text-align: center;
}

/* Visszafogott, szöveges CTA — ahol nem ez az elsődleges akció */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--lightblue);
}

body.theme-dark .link-arrow {
  color: var(--cyan);
}

.link-arrow .arrow {
  transition: transform 0.2s ease;
}

.link-arrow:hover .arrow {
  transform: translateX(3px);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.link-list a {
  color: inherit;
  font-weight: 600;
}

/* Fehér "felszín" a tartalomnak, akár alap, akár mosott háttér felett —
   kártyák, táblázat-kártya és az űrlap közös alapja */
.surface-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 10px 34px rgba(8, 55, 107, 0.06);
}

body.theme-dark .surface-card {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

/* ---------- Kártyák, listák ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}

.card {
  border-radius: 14px;
  padding: 1.5rem;
  background: var(--white);
  box-shadow: 0 8px 26px rgba(8, 55, 107, 0.06);
}

body.theme-dark .card {
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  font-size: 0.93rem;
  opacity: 0.8;
}

/* Halványabb, tájékoztató doboz (pl. amit nem vállalunk) */
.callout {
  border-left: 3px solid var(--lightblue);
  background: rgba(74, 127, 165, 0.07);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
}

body.theme-dark .callout {
  border-left-color: var(--cyan);
  background: rgba(79, 209, 197, 0.07);
}

.callout ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.callout li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
}

/* Számozott folyamat */
.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3.1rem;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -0.15rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid currentColor;
  opacity: 0.9;
}

.steps h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  font-size: 0.93rem;
  opacity: 0.8;
}

/* ---------- Árazás táblázat ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(8, 55, 107, 0.14);
}

.price-table thead th {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.price-table td:last-child {
  font-family: var(--font-mono);
  white-space: nowrap;
  font-weight: 500;
}

/* ---------- Gombok ---------- */

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--lightblue);
  color: var(--white);
}

body.theme-dark .btn {
  background: var(--cyan);
  color: var(--near-black);
}

.btn:disabled {
  background: rgba(8, 55, 107, 0.12);
  color: rgba(8, 55, 107, 0.55);
  cursor: not-allowed;
}

/* Másodlagos, kisebb súlyú kapcsolatfelvételi opciók */
.secondary-contact {
  margin-top: 1.75rem;
  font-size: 0.9rem;
  opacity: 0.72;
  text-align: center;
}

.secondary-contact a {
  color: inherit;
}

/* ---------- Űrlapok ---------- */

/* A mezőváltozók korábban CSAK a .form-card-on voltak definiálva. Az Egyedi
   Gépek konfigurátorában viszont nincs .form-card, így ott a var() feloldatlan
   maradt — és mivel a feloldatlan var() az egész deklarációt érvényteleníti, a
   `border` és a `background` a kezdőértékre esett vissza: keret és háttér
   nélküli, gyakorlatilag láthatatlan beviteli mezők. Ezért az alapértékek
   mostantól globálisak; a .form-card-os felülírás megmarad. */
:root {
  --field-bg: var(--white);
  --field-border: rgba(8, 55, 107, 0.18);
}

body.theme-dark {
  --field-bg: rgba(255, 255, 255, 0.05);
  --field-border: rgba(255, 255, 255, 0.2);
}

.form-card {
  --field-bg: var(--white);
  --field-border: rgba(8, 55, 107, 0.18);
  border-radius: 16px;
  padding: 1.9rem;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(8, 55, 107, 0.07);
}

body.theme-dark .form-card {
  --field-bg: rgba(255, 255, 255, 0.05);
  --field-border: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field[hidden] {
  display: none;
}

.field label {
  font-weight: 600;
  font-size: 0.85rem;
}

.field input,
.field select,
.field textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 9px;
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  color: inherit;
  font-size: 1rem;
  font-family: inherit;
}

/* A lenyíló lista elemei nem örökölhetik a fenti `color: inherit`-et: sötét
   témán az fehér, a listát viszont a rendszer sokszor világos háttérrel
   rajzolja (Androidon jellemzően), és a fehér szöveg eltűnik rajta. A
   `color-scheme: dark` erre nem elég, mert a lista megjelenését végül a
   platform dönti el. Ezért itt explicit, mindkét témán olvasható párost
   adunk meg — ezt a natív lista ténylegesen figyelembe veszi. */
.field select option {
  background-color: #ffffff;
  color: #0b0e14;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--lightblue);
  outline-offset: 1px;
}

body.theme-dark .field input:focus,
body.theme-dark .field select:focus,
body.theme-dark .field textarea:focus {
  outline-color: var(--cyan);
}

/* ---------- Hamarosan-blokk ---------- */

.soon {
  border: 1px dashed rgba(8, 55, 107, 0.25);
  border-radius: 14px;
  padding: 1.75rem;
}

body.theme-dark .soon {
  border-color: rgba(255, 255, 255, 0.28);
}

.soon-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(74, 127, 165, 0.14);
  color: var(--lightblue);
  margin-bottom: 1rem;
}

body.theme-dark .soon-badge {
  background: rgba(79, 209, 197, 0.16);
  color: var(--cyan);
}

/* ---------- Munkalap ---------- */

.lookup-form {
  max-width: 440px;
  margin: 0 auto;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.status-pill {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(8, 55, 107, 0.07);
  border: 1px solid rgba(8, 55, 107, 0.12);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* Munkalapkód mező — monospace, mint egy valódi jegyazonosító */
#munkalap-kod {
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

/* Előnézeti váz a jegy mezőire */
.ticket-preview {
  border: 1px solid rgba(8, 55, 107, 0.14);
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--white);
  opacity: 0.75;
}

.ticket-preview dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}

.ticket-preview dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.35rem;
}

.ticket-preview dd {
  margin: 0;
}

.skeleton {
  display: block;
  height: 0.85rem;
  border-radius: 4px;
  background: rgba(8, 55, 107, 0.12);
}

.skeleton + .skeleton {
  margin-top: 0.4rem;
  width: 70%;
}

/* ---------- Kapcsolat ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-list {
  margin: 0;
}

.contact-list dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.3rem;
}

.contact-list dd {
  margin: 0 0 1.4rem;
  font-size: 1.02rem;
}

.contact-list a {
  color: inherit;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-row-icon {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.contact-row-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.75;
}

.contact-row-body {
  flex: 1;
  min-width: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.highlight-hours {
  display: inline-block;
  background: rgba(74, 127, 165, 0.12);
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
}

/* Google-értékelés jelvény */
.review-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(8, 55, 107, 0.16);
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(8, 55, 107, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 55, 107, 0.12);
}

.review-badge .stars {
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: #E8A33D;
}

.review-badge .score {
  font-size: 1.25rem;
  font-weight: 700;
}

.review-badge .review-meta {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Térkép */
.map-embed {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(8, 55, 107, 0.14);
  background: rgba(8, 55, 107, 0.05);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ---------- Lábléc ---------- */

.site-footer {
  border-top: 1px solid rgba(8, 55, 107, 0.12);
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.87rem;
  opacity: 0.72;
}

body.theme-dark .site-footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin: 0.3rem 0;
}

.site-footer a {
  color: inherit;
}

/* ---------- Szerviz: ígéret-sáv (nem kártyarács, tudatosan középre) ---------- */

.promise-band {
  text-align: center;
}

.promise-band h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.005em;
  line-height: 1.25;
  max-width: 38ch;
  margin: 0 auto;
}

.promise-band p {
  max-width: 42ch;
  margin: 1rem auto 0;
  opacity: 0.7;
  font-size: 1.02rem;
}

/* ---------- Szerviz: ikon-kártyák ---------- */

.icon-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  overflow: visible;
}

.icon-card .icon-draw {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.7;
  stroke-linejoin: round;
  stroke-linecap: round;
}

/* Szétnyíló ikonok — laptop, PC, konzol: valódi, szétválasztható "alkatrészeik" vannak */
.icon-card--explode .icon-draw {
  transition: transform 0.3s ease;
}

.icon-card--explode:hover .icon-draw {
  transform: var(--shift);
}

/* Nagyító ikonok — diagnosztika, adatmentés, garancia, karbantartás:
   nincs mit szétszedni rajtuk, a szétnyílás inkább esetlen lenne */
.icon-card--zoom svg {
  transition: transform 0.3s ease;
  transform-origin: center;
}

.icon-card--zoom:hover svg {
  transform: scale(1.12);
}

/* ---------- Szerviz V2: négylépéses hibabejelentő ---------- */

.form-step[hidden] {
  display: none;
}

.service-form-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.service-form-progress li {
  border-bottom: 2px solid var(--form-border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.35;
  padding: 0 0 0.7rem;
}

.service-form-progress li.is-complete {
  border-color: var(--lightblue);
  color: var(--lightblue);
}

.service-form-progress li.is-current {
  border-color: var(--cyan);
  color: var(--text);
  font-weight: 700;
}

.service-summary-title {
  margin: 0 0 1rem;
}

.service-form-summary {
  display: grid;
  gap: 0;
  margin: 0 0 1.5rem;
}

.service-form-summary > div {
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) minmax(0, 1.7fr);
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--form-border);
}

.service-form-summary dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.service-form-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.service-privacy-check {
  align-items: flex-start;
  display: flex;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.5;
}

.service-privacy-check input {
  flex: 0 0 auto;
  height: 18px;
  margin-top: 0.15rem;
  width: 18px;
}

@media (max-width: 640px) {
  .service-form-progress {
    display: block;
    margin-bottom: 1.35rem;
    border-bottom: 5px solid var(--form-border);
    border-radius: 3px;
  }

  .service-form-progress li { display: none; }
  .service-form-progress li.is-current {
    display: block;
    position: relative;
    padding: 0 0 0.85rem;
    border: 0;
    color: var(--navy);
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .service-form-progress li.is-current::before {
    content: attr(data-step-indicator) " / 4 · ";
    color: var(--lightblue);
    font-weight: 700;
  }
  .service-form-progress li.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 75%;
    bottom: -5px;
    height: 5px;
    border-radius: 3px;
    background: var(--navy);
  }
  .service-form-progress li.is-current[data-step-indicator="2"]::after { right: 50%; }
  .service-form-progress li.is-current[data-step-indicator="3"]::after { right: 25%; }
  .service-form-progress li.is-current[data-step-indicator="4"]::after { right: 0; }

  .service-form-summary > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

.form-more {
  margin: 0.25rem 0 1.5rem;
}

.form-more summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--lightblue);
  list-style: none;
}

.form-more summary::-webkit-details-marker {
  display: none;
}

.form-more summary::before {
  content: "+ ";
}

.form-more[open] summary::before {
  content: "− ";
}

.form-more .field {
  margin-top: 1rem;
}

.field-hint {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  opacity: 0.6;
  margin: 0.4rem 0 0;
}

.field-error {
  font-size: 0.8rem;
  color: #B3261E;
  margin: 0.4rem 0 0;
}

.field-error[hidden] {
  display: none;
}

.radio-group {
  border: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.radio-group legend {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  padding: 0;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.55rem;
}

.radio-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--lightblue);
}

.step-back {
  margin: 0 0 1.5rem;
}

button.link-arrow {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* ---------- Egyedi Gépek: konfigurátor (Maingear-ihletésű, két hasábos) ---------- */

.config-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.config-visual-col {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.config-visual-col h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.005em;
  margin: 0 0 0.35rem;
}

.config-tagline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  opacity: 0.55;
  margin: 0 0 1.75rem;
}

.config-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fix magasság, hogy a hasáb ne ugráljon, amikor más arányú házra váltunk. */
  height: clamp(240px, 34vh, 380px);
}

.config-visual svg {
  width: min(100%, 380px);
  height: auto;
}

.config-visual .is-hidden {
  display: none;
}

.config-visual-photo {
  max-width: min(100%, 380px);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Sötét hátterű házaknál ez választja el a fotót a közel-fekete háttértől. */
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55))
          drop-shadow(0 0 1px rgba(255, 255, 255, 0.28));
  animation: haz-photo-in 0.28s ease-out;
}

@keyframes haz-photo-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .config-visual-photo { animation: none; }
}

.config-visual-caption {
  margin-top: 1.1rem;
  text-align: center;
}

.config-visual-caption strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
}

.config-visual-caption span {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  opacity: 0.55;
}

.config-visual .draw {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
  opacity: 0.9;
}

/* Kompakt, ragadós sáv a jobb hasáb tetején */

.config-topbar {
  position: sticky;
  top: var(--header-h);
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0 1.1rem;
  background: var(--near-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.config-topbar-status .label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}

.config-topbar-status .value {
  font-weight: 700;
  font-size: 0.98rem;
}

/* Lapos opciósorok (accordion, kártya-háttér nélkül) */

.option-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.option-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.option-row > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
}

.option-row > summary::-webkit-details-marker {
  display: none;
}

.option-row-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-row-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-row-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.option-row-text strong {
  font-size: 1rem;
  font-weight: 700;
}

.option-row-text span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  opacity: 0.6;
}

.option-row-chevron {
  margin-left: auto;
  flex: none;
  opacity: 0.55;
  transition: transform 0.25s ease;
}

.option-row[open] .option-row-chevron {
  transform: rotate(180deg);
}

.option-row-body {
  padding: 0 0 1.75rem 3.25rem;
  display: grid;
  gap: 1.1rem;
}

.option-note {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  opacity: 0.5;
  margin: 0;
}

.option-group-label {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 0.5rem 0 -0.4rem;
}

.option-group-label:first-child {
  margin-top: 0;
}

/* GPU-lista: kategóriánként lenyíló <details> csoportok, hogy ne kelljen az
   összes videokártyát végigpörgetni */

.gpu-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gpu-category summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0;
}

.gpu-category summary::-webkit-details-marker {
  display: none;
}

.gpu-category summary::before {
  content: "▸";
  display: inline-block;
  font-size: 0.75em;
  opacity: 0.6;
  transition: transform 0.15s ease;
}

.gpu-category[open] summary::before {
  transform: rotate(90deg);
}

.gpu-category .option-grid {
  margin-top: 0.6rem;
}

.gpu-category:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.6rem;
}

/* Választó kártyarács — ez nyílik le minden opciósorban */

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.option-card {
  position: relative;
  display: block;
  cursor: pointer;
}

.option-card[hidden] {
  display: none;
}

.option-card input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.option-card-inner {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.9rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.option-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 7px;
  margin-bottom: 0.7rem;
  padding: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  opacity: 0.4;
}

/* Valódi márka-logó a szöveges helyőrző helyén */
.brand-logo {
  max-width: 68%;
  max-height: 60%;
  opacity: 1;
}

.brand-logo--mask {
  display: block;
  width: 60%;
  height: 55%;
  background: var(--logo-color, var(--white));
  -webkit-mask-image: var(--logo-src);
  mask-image: var(--logo-src);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* RAM-kártyák: nincs gyártói logó, ezért maga az érték (kapacitás/típus)
   a "kép" — nagy, jól látható szám + kis RAM-címke, hogy egyértelmű legyen,
   mire vonatkozik a szám. */
.option-card-thumb--value {
  opacity: 1;
  font-size: 1rem;
}

.ram-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.ram-thumb-value {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.ram-thumb-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Ház-kártyák: valódi termékfotó (assets/hazak/, a JSON kep_fajlnev mezője
   alapján) tölt be, amíg fel nem kerül a fotó, a <img> onerror gyártói
   logóra vagy — ismeretlen gyártónál — egy "fotó hamarosan" keretre esik
   vissza. Ha a fotó megérkezik a mappába, kódmódosítás nélkül megjelenik. */
.option-card-thumb--photo {
  opacity: 1;
  padding: 6%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 130% at 50% 20%, #252B36 0%, #1C222C 62%, #171B23 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.option-card-thumb--photo::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 9%;
  height: 22%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(2px);
  pointer-events: none;
}

.haz-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 7px;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.45));
}

.haz-photo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.haz-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.45;
  color: var(--white);
}

.haz-placeholder svg {
  width: 32%;
  height: 32%;
}

.haz-placeholder-text {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.03em;
}

.option-card-inner strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.option-card-meta {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  opacity: 0.55;
}

.option-card-badge {
  display: none;
  margin-top: 0.6rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--cyan);
  color: var(--near-black);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.option-card input:checked + .option-card-inner {
  border-color: var(--cyan);
  background: rgba(79, 209, 197, 0.08);
}

.option-card input:checked + .option-card-inner .option-card-badge {
  display: inline-block;
}

.option-card input:focus-visible + .option-card-inner {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

/* Szűrő-chipek (Ház) */

.option-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.option-filter-chip input {
  accent-color: var(--cyan);
}

/* Egyszerű / Haladó mód-kapcsoló (a bal hasáb illusztrációja fölött) */

.mode-switch {
  position: relative;
  display: inline-flex;
  padding: 4px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.mode-switch-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: var(--cyan);
  transition: transform 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.mode-switch[data-mode="advanced"] .mode-switch-pill {
  transform: translateX(100%);
}

.mode-switch-btn {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.6;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.mode-switch-btn.is-active {
  color: var(--near-black);
  opacity: 1;
}

.mode-switch-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.mode-switch-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  opacity: 0.5;
  margin: 0 0 1.5rem;
  max-width: 34ch;
}

@media (prefers-reduced-motion: reduce) {
  .mode-switch-pill {
    transition: none;
  }
}

/* Kompakt kártyarács: márkaválasztás kisebb logóval (CPU- és GPU-gyártó) */

.option-grid--compact {
  grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
}

.option-grid--compact .option-card-thumb {
  aspect-ratio: 5 / 2;
  padding: 0.3rem;
}

.option-grid--compact .brand-logo {
  max-width: 56%;
  max-height: 64%;
}

/* Teljesítmény-szint chipek (Egyszerű mód, videokártya) */

.tier-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tier-chip {
  position: relative;
  cursor: pointer;
}

.tier-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  margin: 0;
  cursor: pointer;
}

.tier-chip span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tier-chip:has(input:checked) span {
  border-color: var(--cyan);
  background: rgba(79, 209, 197, 0.1);
}

.tier-chip:has(input:focus-visible) span {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

.tier-chip.is-unavailable {
  cursor: not-allowed;
  opacity: 0.3;
}

/* Számlázási adatok — kihagyható blokk a beküldés előtt */

.billing-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.billing-block summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}

.billing-block summary span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.5;
}

.billing-block-body {
  padding: 0 1rem 1rem;
}

@media (max-width: 860px) {
  .config-grid {
    grid-template-columns: 1fr;
  }

  .config-visual-col {
    position: static;
    margin-bottom: 1rem;
  }

  /* Mobilon a ház-fotó a választólista FÖLÉ kerül, ezért alacsonyabb, hogy ne
     tolja le a tényleges beállításokat a képernyőről. */
  .config-visual {
    height: clamp(160px, 22vh, 240px);
  }
}

@media (max-width: 560px) {
  /* Keskeny kijelzőn a címke és az érték egymás mellett mindkettő tördelődne,
     egymásba csúszva ("Becsült / FPS (Full / HD)") — ezért egymás alá. */
  .summary-metric {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .summary-metric > span:first-child {
    font-size: 0.78rem;
    opacity: 0.55;
  }

  /* A ragadós sáv mobilon két sorba tört és sok helyet vett el a képernyőből. */
  .config-topbar {
    padding: 0.7rem 0 0.75rem;
    gap: 0.55rem;
  }

  .config-topbar .btn {
    width: 100%;
    text-align: center;
  }
}

/* Lenyíló panel (pl. a garancia-kérdés a "Használt alkatrész" válaszától
   függően) — grid-template-rows animálva, mert a height:auto nem animálható */
.reveal-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.reveal-panel.is-open {
  grid-template-rows: 1fr;
}

.reveal-panel-inner {
  min-height: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-panel {
    transition: none;
  }
}

/* Radio-párok (használt alkatrész / garancia) */

.radio-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.radio-pair label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.radio-pair input {
  accent-color: var(--cyan);
}

.radio-pair input:checked + span,
.radio-pair label:has(input:checked) {
  border-color: var(--cyan);
}

/* Összegző panel */

.summary-panel {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.summary-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.summary-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.summary-list .check {
  color: var(--cyan);
  flex: none;
}

.summary-metrics {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
}

.summary-metric {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.88rem;
}

.summary-metric .pending {
  opacity: 0.5;
  font-style: italic;
}

/* ==== Munkalap — ügyfél-oldali jegymegtekintés (munkalap.html) ====
   Két hasábos elrendezés: ugyanaz a sticky-mechanika, mint az Egyedi Gépek
   konfigurátorának .config-grid / .config-visual-col párosánál, csak
   világos témára hangolva és saját névvel, hogy ne ütközzön a konfigurátor
   dark-theme feltételezéseivel. */
.ml-wrap { max-width: 980px; margin: 0 auto; padding: 0 1.5rem 4rem; }
.ml-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.ml-side { position: sticky; top: calc(var(--header-h) + 1.5rem); display: flex; flex-direction: column; gap: 1.1rem; }
@media (max-width: 860px) {
  .ml-grid { grid-template-columns: 1fr; }
  .ml-side { position: static; }
}

.ml-panel { background: var(--white); border-radius: 14px; padding: 1.3rem 1.4rem; box-shadow: 0 8px 26px rgba(8, 55, 107, 0.06); }

.ticket-code { font-family: var(--font-mono); font-size: 0.8rem; opacity: 0.6; margin-bottom: 0.5rem; }

.status-pill.is-done { background: rgba(47, 125, 99, 0.1); border-color: rgba(47, 125, 99, 0.3); color: #2F7D63; }

/* Függőleges lépéssor — csak a haladást mutatja, dátum/idővonal nélkül */
.v-stepper { list-style: none; margin: 1.1rem 0 0; padding: 0; }
.v-stepper li { position: relative; padding: 0 0 1.1rem 1.4rem; font-size: 0.83rem; opacity: 0.5; }
.v-stepper li:last-child { padding-bottom: 0; }
.v-stepper li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 9px; height: 9px; border-radius: 50%;
  background: rgba(8, 55, 107, 0.18);
}
.v-stepper li::after {
  content: ""; position: absolute; left: 4px; top: 12px; bottom: 0; width: 1px; background: rgba(8, 55, 107, 0.14);
}
.v-stepper li:last-child::after { display: none; }
.v-stepper li.is-past { opacity: 0.75; }
.v-stepper li.is-past::before { background: var(--lightblue); }
.v-stepper li.is-current { opacity: 1; font-weight: 700; color: var(--navy); }
.v-stepper li.is-current::before { background: var(--navy); width: 11px; height: 11px; left: -1px; }

.eta-line { font-size: 0.8rem; opacity: 0.6; margin-top: 0.9rem; }

.price-headline { text-align: left; }
.price-headline .label { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.25rem; }
.price-headline .value { font-family: var(--font-mono); font-weight: 700; font-size: 1.6rem; color: var(--navy); line-height: 1.1; }
.price-headline .sub { display: block; font-size: 0.78rem; opacity: 0.6; margin-top: 0.35rem; }

.quote-badge { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.7rem; border-radius: 999px; margin-top: 0.8rem; }
.quote-badge.is-pending { background: rgba(168, 117, 46, 0.14); color: #8A6326; }
.quote-badge.is-accepted { background: rgba(47, 125, 99, 0.12); color: #2F7D63; }

.notify-row {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.82rem;
}
.notify-row input { margin-top: 0.2rem; width: 16px; height: 16px; accent-color: var(--lightblue); flex: 0 0 auto; }
.notify-row .sub { opacity: 0.6; font-size: 0.75rem; margin-top: 0.2rem; }

.review-side {
  background: rgba(47, 125, 99, 0.08);
  border: 1px solid rgba(47, 125, 99, 0.25);
}
.review-side strong { display: block; font-size: 0.88rem; margin-bottom: 0.7rem; color: #2F7D63; }

/* ---- Fül-sáv: a top-bar-nav aláhúzásos logikáját követi ---- */
.ml-tabs { display: flex; gap: 1.6rem; flex-wrap: wrap; border-bottom: 1px solid rgba(8, 55, 107, 0.14); margin-bottom: 1.4rem; }
.ml-tab {
  background: none; border: none; cursor: pointer; font-family: var(--font-base);
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); opacity: 0.5; padding: 0 0 0.8rem; position: relative;
}
.ml-tab.is-active { opacity: 1; }
.ml-tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--navy); }
.ml-panel-body[hidden] { display: none; }

.contact-list { margin: 0; display: grid; gap: 1rem; }
.contact-list dt { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.2rem; }
.contact-list dd { margin: 0; font-size: 0.97rem; }

.price-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.price-table th, .price-table td { text-align: left; padding: 0.7rem 0; border-bottom: 1px solid rgba(8, 55, 107, 0.12); vertical-align: top; }
.price-table thead th { font-family: var(--font-mono); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.55; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-family: var(--font-mono); white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }

.highlight-hours { display: inline-block; background: rgba(74, 127, 165, 0.12); border-radius: 6px; padding: 0.1rem 0.5rem; font-weight: 500; font-size: 0.72rem; font-family: var(--font-mono); }
.vat-tag { display: inline-block; background: rgba(8, 55, 107, 0.07); color: var(--navy); border-radius: 6px; padding: 0.1rem 0.5rem; font-weight: 500; font-size: 0.72rem; font-family: var(--font-mono); }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.35rem; }
.cost-vat-note { margin: 0.6rem 0 0; }

.cost-total { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-top: 1rem; padding: 0.9rem 1.1rem; border-radius: 10px; background: rgba(8, 55, 107, 0.06); }
.cost-total-label { font-weight: 700; font-size: 0.95rem; margin-right: 0.6rem; }
.cost-total-note { font-size: 0.78rem; opacity: 0.6; }
.cost-total-value { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--navy); white-space: nowrap; }

.quote-approval { margin-top: 1.1rem; padding: 1rem 1.1rem; border-radius: 10px; border: 1px solid rgba(168, 117, 46, 0.35); background: rgba(168, 117, 46, 0.06); }
.quote-approval.is-accepted { border-color: rgba(47, 125, 99, 0.3); background: rgba(47, 125, 99, 0.07); }
.quote-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.8rem; cursor: pointer; }
.quote-check input { margin-top: 0.2rem; width: 17px; height: 17px; accent-color: #A8752E; flex: 0 0 auto; }
.quote-approval .note { margin: 0.7rem 0 0; }
.quote-approval.is-accepted strong { color: #2F7D63; }

.payment-row { margin-top: 1.1rem; font-size: 0.9rem; }
.payment-row dt { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.55; margin: 0 0 0.2rem; }
.payment-row dd { margin: 0; }
.payment-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; margin: 0.7rem 0 0; }
.payment-summary > div { min-width: 0; padding: 0.75rem; border-radius: 10px; background: rgba(8, 55, 107, 0.04); }
.payment-summary dt { min-height: 2.2em; font-size: 0.72rem; line-height: 1.1; color: var(--muted); }
.payment-summary dd { margin: 0.35rem 0 0; font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem; overflow-wrap: anywhere; }
.payment-summary dd.is-overpaid { color: #A8752E; }

@media (max-width: 430px) {
  .payment-summary { grid-template-columns: 1fr; }
  .payment-summary dt { min-height: 0; }
  .payment-summary > div { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
}

.photo-grid { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.photo-thumb {
  width: 84px; height: 84px; border-radius: 8px;
  background: repeating-linear-gradient(135deg, rgba(8,55,107,0.06), rgba(8,55,107,0.06) 8px, rgba(8,55,107,0.12) 8px, rgba(8,55,107,0.12) 16px);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; opacity: 0.6; text-align: center; padding: 0.3rem;
  border: none; cursor: zoom-in; font-family: inherit;
}
.photo-thumb:hover { opacity: 0.85; }

.doc-group { margin-bottom: 1.6rem; }
.doc-group:last-child { margin-bottom: 0; }
.doc-group h3 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; font-family: var(--font-mono); font-weight: 500; opacity: 0.55; margin: 0 0 0.7rem; }

.invoice-row { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(8, 55, 107, 0.1); font-size: 0.9rem; }
.invoice-row:last-of-type { border-bottom: none; }
.invoice-row .invoice-actions { display: flex; gap: 1rem; flex: none; }
.invoice-row button, .invoice-row a { color: var(--lightblue); font-weight: 600; font-size: 0.85rem; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }

.lightbox-overlay { position: fixed; inset: 0; z-index: 100; background: rgba(11, 14, 20, 0.7); display: flex; align-items: center; justify-content: center; padding: 2rem; }
.lightbox-overlay[hidden] { display: none; }
.lightbox-box { background: var(--white); border-radius: 14px; padding: 1.5rem; max-width: 440px; width: 100%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.lightbox-preview { aspect-ratio: 4 / 3; border-radius: 10px; background: repeating-linear-gradient(135deg, rgba(8,55,107,0.06), rgba(8,55,107,0.06) 10px, rgba(8,55,107,0.12) 10px, rgba(8,55,107,0.12) 20px); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; opacity: 0.65; margin-bottom: 1.1rem; padding: 1rem; }
.lightbox-title { font-weight: 700; margin-bottom: 0.9rem; }
.lightbox-actions { display: flex; justify-content: center; gap: 0.75rem; }

.msg-thread { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.1rem; }
.msg { max-width: 82%; padding: 0.6rem 0.85rem; border-radius: 12px; font-size: 0.88rem; }
.msg.from-ugyfel { align-self: flex-end; background: var(--lightblue); color: #fff; border-bottom-right-radius: 4px; }
.msg.from-staff { align-self: flex-start; background: rgba(8, 55, 107, 0.05); border: 1px solid rgba(8, 55, 107, 0.12); border-bottom-left-radius: 4px; }
.msg-meta { display: block; font-family: var(--font-mono); font-size: 0.64rem; opacity: 0.75; margin-top: 0.3rem; }
.channel-tag { display: inline-block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 0.05rem 0.4rem; border-radius: 4px; background: rgba(255,255,255,0.25); margin-right: 0.35rem; }
.msg.from-staff .channel-tag { background: rgba(168, 117, 46, 0.15); color: #8A6326; }

.config-error {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #ff9d8a;
}

.warranty-title { margin: 0 0 1rem; font-size: 1.2rem; }
.warranty-items, .warranty-cases { display: grid; gap: .65rem; }
.warranty-item, .warranty-case { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .25rem .75rem; padding: .85rem; border: 1px solid rgba(16, 46, 73, .14); border-radius: 10px; }
.warranty-item strong, .warranty-case strong { min-width: 0; overflow-wrap: anywhere; }
.warranty-item span, .warranty-case span { color: var(--lightblue); font-size: .8rem; text-align: right; }
.warranty-item small, .warranty-case small { grid-column: 1 / -1; color: var(--muted); }
.warranty-cases { margin-top: 1.25rem; }
.warranty-cases h3 { margin: 0; }
.warranty-claim-form { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(16, 46, 73, .14); }
.warranty-claim-form h3 { margin: 0 0 .25rem; }
.warranty-claim-form select { width: 100%; min-height: 44px; }
.warranty-expired-note { display: block; color: #a8752e; font-weight: 700; font-size: .85rem; margin: .5rem 0; }

@media (max-width: 430px) {
  .warranty-item, .warranty-case { grid-template-columns: 1fr; }
  .warranty-item span, .warranty-case span { text-align: left; }
}
