/* ============================================================
   Darázsirtás SOS — style.css  (DARK / v2)
   Tokens, layout, components
   ============================================================ */

:root {
  /* --- felület --- */
  --bg:         #05070F;   /* alap: éjkék-fekete */
  --bg-2:       #090E20;   /* kártya / sávok */
  --bg-3:       #0C1430;   /* kiemelt panel */
  --navy:       #0A2472;   /* márkakék — glow, gradiens */
  --navy-deep:  #061544;

  /* --- akcent --- */
  --amber:      #FFBA08;
  --amber-hot:  #FF8A00;

  /* --- tipó --- */
  --text:       #EEF1FA;
  --muted:      #939CBC;
  --line:       rgba(255, 255, 255, 0.10);
  --line-soft:  rgba(255, 255, 255, 0.06);

  --font-display: "Bricolage Grotesque", "Instrument Sans", system-ui, sans-serif;
  --font-body:    "Instrument Sans", system-ui, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius: 18px;
  --radius-sm: 10px;
  --header-h: 72px;



*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 64px; /* helyet ad a mobil sticky hívássávnak */
}
@media (min-width: 1000px) {
  body { padding-bottom: 0; }
}

/* finom filmszemcse az egész oldalon */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin: 0 0 var(--space-4);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { margin: 0 0 var(--space-4); max-width: 64ch; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; }

.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  background: var(--amber);
  color: #10131F;
  padding: var(--space-3) var(--space-4);
  font-weight: 600;
  z-index: 300;
}
.skip-link:focus { left: var(--space-4); top: var(--space-4); }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container {
  width: min(1220px, 100% - 2.5rem);
  margin-inline: auto;
}
@media (min-width: 700px) {
  .container { width: min(1220px, 100% - 4rem); }
}

/* minden anchor a fix fejléc alá görgessen */
main#fomenu,
section[id],
div[id] {
  scroll-margin-top: 88px;
}

/* ---------- Szekció-ritmus ---------- */

.section {
  padding-block-start: clamp(80px, 9vw, 140px);
  position: relative;
}
#kapcsolat { padding-block-end: clamp(80px, 9vw, 140px); }

.section-head { max-width: 68ch; }

.section-eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin: 0 0 var(--space-4);
}
.section-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(30px, 5.2vw, 52px);
  margin-bottom: var(--space-4);
}
.section-title em {
  font-style: normal;
  color: var(--amber);
}

.section-lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
}

/* ---------- Gombok ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 52px;
  padding: 0 var(--space-6);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-amber {
  background: linear-gradient(180deg, var(--amber), var(--amber-hot));
  color: #14100A;
  box-shadow: 0 8px 30px rgba(255, 138, 0, .28);
}
.btn-amber:hover { box-shadow: 0 12px 38px rgba(255, 138, 0, .42); }

.btn-ghost {
  background: rgba(255, 255, 255, .04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .09); }

.btn-navy {
  background: var(--amber);
  color: #14100A;
}
.btn-navy:hover { box-shadow: 0 10px 30px rgba(255, 186, 8, .3); }

.btn-small { min-height: 42px; padding: 0 var(--space-5); font-size: 14px; }
.btn-large { min-height: 60px; padding: 0 var(--space-7); font-size: 17px; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 186, 8, .5);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease;
}
.text-link:hover { color: var(--amber); border-color: var(--amber); }

/* ---------- Fejléc (fix, a hero fölött úszik) ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-compact {
  background: rgba(5, 7, 15, .82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: var(--header-h);
  min-height: var(--header-h);
}

/* LOGÓ BAL OLDAL */
.site-header .wordmark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 170px;
  height: 60px;
  flex: 0 0 170px;
  text-decoration: none;
  overflow: hidden;
}

.site-header .wordmark .header-logo {
  display: block;
  width: 170px;
  height: 60px;
  max-width: 170px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;

  transform: none;
}

/* JOBB OLDAL */
.header-contact {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.header-phone {
  display: none;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}

.header-phone:hover {
  color: var(--amber);
}

@media (min-width: 760px) {
  .header-phone {
    display: inline;
  }
}

/* MOBIL */
@media (max-width: 600px) {
  .site-header .wordmark {
    width: 135px;
    height: 54px;
    flex-basis: 135px;
  }

  .site-header .wordmark .header-logo {
    width: 135px;
    height: 54px;
    max-width: 135px;
    max-height: 54px;
  }

  .header-contact {
    gap: 8px;
  }
}

/* ---------- HERO ---------- */

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: var(--space-7);
  overflow: hidden;
}

@media (min-width: 1000px) {
  .hero {
    padding-bottom: 0;
  }
}


/* ---------- HERO HÁTTÉR ---------- */

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-color: var(--bg);
  background-image: url("/img/darazs.webp");
  background-size: cover;
  background-position: 65% 40%;
  background-repeat: no-repeat;
}


/* finom háttérmozgás */

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1%, -1%, 0);
  }
}


/* ---------- SÖTÉTÍTŐ RÉTEG ---------- */

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 15, 0.88) 0%,
      rgba(5, 7, 15, 0.68) 32%,
      rgba(5, 7, 15, 0.32) 60%,
      rgba(5, 7, 15, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 7, 15, 0.30) 0%,
      rgba(5, 7, 15, 0.08) 55%,
      rgba(5, 7, 15, 0.70) 100%
    );
}

@media (max-width: 600px) {
  .hero-media {
    background-size: contain;
    background-position: center 18%;
    background-color: var(--bg);
  }

  .hero-media::after {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 15, 0.25) 0%,
        rgba(5, 7, 15, 0.35) 35%,
        rgba(5, 7, 15, 0.75) 72%,
        rgba(5, 7, 15, 0.95) 100%
      );
  }
}

/* ---------- HERO TARTALOM ---------- */

/* ============================================================
   HERO TARTALOM
   ============================================================ */

.hero-grid {
  position: relative;
  z-index: 2;

  width: min(1220px, 100% - 2.5rem);
  margin-inline: auto;

  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: end;
}

@media (min-width: 700px) {
  .hero-grid {
    width: min(1220px, 100% - 4rem);
  }
}

@media (min-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1.08fr 0.92fr;
    column-gap: var(--space-8);
    align-items: center;
  }
}


/* ============================================================
   HERO CÍM
   ============================================================ */

.hero-title {
  font-size: clamp(38px, 8.2vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  color: var(--amber);
}


/* ============================================================
   HERO ALCÍM
   ============================================================ */

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 44ch;
  margin-bottom: var(--space-6);
}


/* ============================================================
   MOBIL HERO SZÖVEG
   ============================================================ */

@media (max-width: 600px) {

  .hero-grid {
    width: calc(100% - 36px);
    gap: 48px;
  }

  .hero-grid__main {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(34px, 9.5vw, 43px);
    line-height: 1;
    letter-spacing: -0.035em;

    max-width: 100%;
    margin: 0 auto 20px;

    color: #ffffff;
    text-align: center;

    text-shadow:
      0 3px 8px rgba(0, 0, 0, 0.95),
      0 6px 24px rgba(0, 0, 0, 0.75);
  }

  .hero-title em {
    display: block;
    margin-top: 8px;

    font-style: normal;
    color: var(--amber);
    text-align: center;

    text-shadow:
      0 3px 8px rgba(0, 0, 0, 0.95),
      0 6px 24px rgba(0, 0, 0, 0.75);
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;

    max-width: 34ch;
    margin: 0 auto 24px;

    color: #f1f3f9;
    text-align: center;

    text-shadow:
      0 2px 5px rgba(0, 0, 0, 1),
      0 4px 14px rgba(0, 0, 0, 0.9);
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* ---------- HERO GOMBOK ---------- */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-5);
}


/* ---------- VISSZAHÍVÁS KÁRTYA ---------- */

.hero-card {
  position: relative;
  z-index: 3;

  background:
    linear-gradient(
      180deg,
      rgba(12, 20, 48, 0.90),
      rgba(6, 10, 26, 0.92)
    );

  border: 1px solid var(--line);
  border-radius: var(--radius);

  padding: var(--space-6);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (min-width: 1000px) {
  .hero-card {
    padding: var(--space-7);
  }
}

.hero-card__title {
  font-size: 24px;
  margin-bottom: var(--space-2);
}

.hero-card__hint {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: var(--space-5);
}


/* ---------- Sürgető sáv (az egyetlen világos blokk) ---------- */

.urgency {
  margin-top: clamp(72px, 8vw, 120px);
  background: linear-gradient(120deg, var(--amber), var(--amber-hot));
  color: #14100A;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  box-shadow: 0 24px 70px rgba(255, 138, 0, .22);
}
.urgency__text {
  font-family: var(--font-display);
  font-size: clamp(21px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 22ch;
}
.urgency .btn {
  background: #14100A;
  color: var(--amber);
  box-shadow: none;
}
.urgency .btn:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, .35); }

/* ============================================================
   URGENCY CTA – MOBIL
   ============================================================ */

@media (max-width: 600px) {

  .urgency {
    margin-top: 56px;

    padding: 30px 20px 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 22px;

    text-align: center;

    border-radius: 24px;

    box-shadow:
      0 20px 50px rgba(255, 138, 0, .20),
      0 0 40px rgba(255, 186, 8, .08);
  }

  .urgency__text {
    width: 100%;
    max-width: 19ch;

    margin: 0 auto;

    font-size: clamp(24px, 7vw, 30px);
    line-height: 1.08;
    letter-spacing: -0.025em;

    text-align: center;
  }

  .urgency .btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 310px;
    min-height: 58px;

    margin: 0 auto;

    background: #14100A;
    color: var(--amber);

    border-radius: 999px;

    font-size: 17px;
    font-weight: 700;

    text-align: center;

    box-shadow:
      0 12px 28px rgba(0, 0, 0, .25);
  }

}

/* ---------- 12 oszlopos rács ---------- */

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-6);
}
.col-span-4 { grid-column: span 4; }
.col-span-5 { grid-column: span 5; }
.col-span-6 { grid-column: span 6; }
.col-span-7 { grid-column: span 7; }
.col-span-8 { grid-column: span 8; }
.col-start-7 { grid-column-start: 7; }

@media (max-width: 860px) {
  .grid-12 [class*="col-span-"],
  .grid-12 [class*="col-start-"] {
    grid-column: 1 / -1;
  }
}

/* ---------- Mit vállalunk ---------- */

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
@media (min-width: 900px) {
  .service-list { grid-template-columns: repeat(3, 1fr); }
}

.service-list li {
  background: linear-gradient(180deg, var(--bg-2), rgba(9, 14, 32, .4));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  transition: border-color .2s ease, transform .2s ease;
}
.service-list li:hover {
  border-color: rgba(255, 186, 8, .45);
  transform: translateY(-3px);
}
.service-list h3 { font-size: 20px; margin-bottom: var(--space-3); }
.service-list p { color: var(--muted); margin: 0; font-size: 15px; }

.callout-box {
  margin-top: var(--space-5);
  border: 1px solid rgba(255, 186, 8, .35);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
  background: rgba(255, 186, 8, .06);
  padding: var(--space-5);
}
.callout-box p { margin: 0; color: var(--text); }
.callout-box strong { color: var(--amber); }

/* ---------- Signature: helyszínrajz ---------- */

.house-diagram {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-7);
  align-items: start;
}
@media (min-width: 960px) {
  .house-diagram { grid-template-columns: minmax(460px, 1.05fr) 1fr; gap: var(--space-8); }
}

.house-diagram__svg-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px; /* NE változtasd: a hotspotok %-os pozíciója ehhez igazodik */
  background-color: #070C1C;
  background-image:
    linear-gradient(rgba(120, 150, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 255, .07) 1px, transparent 1px),
    radial-gradient(80% 70% at 50% 40%, rgba(10, 36, 114, .55), transparent 70%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
  overflow: hidden;
}
@media (min-width: 960px) {
  .house-diagram__svg-wrap { position: sticky; top: 104px; }
}

.house-svg { width: 100%; height: auto; display: block; }

.house-line {
  stroke: rgba(190, 210, 255, .85);
  stroke-width: 2;
  fill: none;
  stroke-linejoin: round;
}
.house-fill { fill: rgba(10, 36, 114, .35); }
.house-line-thin {
  stroke: rgba(190, 210, 255, .45);
  stroke-width: 1.2;
  fill: none;
}

.hotspot {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 0;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 186, 8, .18), 0 0 18px rgba(255, 186, 8, .8);
  cursor: pointer;
  transform: translate(-50%, -50%);
  padding: 0;
  transition: box-shadow .2s ease, background .2s ease;
}
.hotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 186, 8, .55);
  animation: ping 2.6s ease-out infinite;
}
.hotspot:nth-of-type(2)::after { animation-delay: .4s; }
.hotspot:nth-of-type(3)::after { animation-delay: .8s; }
.hotspot:nth-of-type(4)::after { animation-delay: 1.2s; }
.hotspot:nth-of-type(5)::after { animation-delay: 1.6s; }
.hotspot:nth-of-type(6)::after { animation-delay: 2s; }
@keyframes ping {
  0%   { transform: scale(0.7); opacity: .9; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hotspot::after { animation: none; opacity: .5; }
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  background: #FFFFFF;
  box-shadow: 0 0 0 5px rgba(255, 186, 8, .32), 0 0 26px rgba(255, 186, 8, 1);
}

.hotspot--eresz  { left: 68.3%; top: 43.3%; }
.hotspot--redony { left: 33.3%; top: 50.5%; }
.hotspot--tetoter{ left: 45%;   top: 31%; }
.hotspot--kemeny { left: 57.3%; top: 26.2%; }
.hotspot--fa     { left: 83.3%; top: 35.7%; }
.hotspot--terasz { left: 78.3%; top: 83.3%; }

@media (max-width: 640px) {
  .hotspot { width: 26px; height: 26px; }
}

.hotspot-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.hotspot-detail {
  padding: var(--space-5);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(9, 14, 32, .55);
  opacity: .5;
  transition: opacity .2s ease, border-color .2s ease, background .2s ease;
}
.hotspot-detail h3 { font-size: 17px; margin-bottom: var(--space-2); }
.hotspot-detail p { margin: 0 0 var(--space-2); color: var(--muted); font-size: 15px; }
.hotspot-detail__meta {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  letter-spacing: 0.06em;
  color: var(--amber) !important;
  margin: 0 !important;
}
.hotspot-detail.is-active {
  opacity: 1;
  background: var(--bg-3);
  border-color: rgba(255, 186, 8, .5);
}

/* ============================================================
   HOTSPOT KÁRTYÁK – MOBIL SCROLL AKTÍV ÁLLAPOT
   ============================================================ */

@media (max-width: 640px) {

  .hotspot-detail {
    opacity: 0.42;
    transform: scale(0.98);

    transition:
      opacity .35s ease,
      transform .35s ease,
      border-color .35s ease,
      background .35s ease,
      box-shadow .35s ease;
  }

  .hotspot-detail.is-active {
    opacity: 1;
    transform: scale(1);

    background: var(--bg-3);

    border-color: rgba(255, 186, 8, .65);

    box-shadow:
      0 0 0 1px rgba(255, 186, 8, .12),
      0 15px 45px rgba(0, 0, 0, .30),
      0 0 30px rgba(255, 186, 8, .08);
  }

  .hotspot-detail.is-active h3 {
    color: #fff;
  }

  .hotspot-detail.is-active p {
    color: var(--text);
  }

  .hotspot-detail.is-active .hotspot-detail__meta {
    color: var(--amber) !important;
  }
}
/* ---------- CTA-sor ---------- */

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4) var(--space-6);
  margin-top: clamp(56px, 6vw, 88px);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}

/* ---------- Folyamat ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-7);
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
}
.step-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: var(--space-4);
}
.step h3 { font-size: 19px; margin-bottom: var(--space-2); }
.step p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Miért minket ---------- */

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-7);
}
@media (min-width: 760px) {
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}
.reason {
  padding: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 20, 48, .55), rgba(5, 7, 15, .2));
}
.reason h3 { font-size: 19px; margin-bottom: var(--space-2); }
.reason p { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Árlista ---------- */

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: var(--space-7) 0 var(--space-6);
  background: var(--bg-2);
}
.price-table { width: 100%; min-width: 520px; }

.price-table th,
.price-table td {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--line-soft);
  font-size: 15px;
}
.price-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
}
.price-table td { color: var(--muted); }
.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--amber);
  white-space: nowrap;
}
.price-table tbody tr:hover td { background: rgba(255, 255, 255, .025); color: var(--text); }
.price-table tr:last-child td { border-bottom: none; }

/* ---------- Garancia ---------- */

.guarantee-panel {
  margin-top: var(--space-6);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255, 138, 0, .16), transparent 60%),
    var(--bg-2);
  padding: clamp(28px, 4vw, 56px);
}
.guarantee-panel p:last-child { margin-bottom: 0; }

/* ---------- GYIK ---------- */

.accordion {
  margin-top: var(--space-7);
  border-top: 1px solid var(--line);
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; font-size: 16px; }

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: color .15s ease;
}
.accordion-trigger:hover { color: var(--amber); }
.accordion-trigger::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--amber);
  flex-shrink: 0;
}
.accordion-trigger[aria-expanded="true"] { color: var(--amber); }
.accordion-trigger[aria-expanded="true"]::after { content: "\2212"; }

.accordion-panel {
  padding-bottom: var(--space-5);
  color: var(--muted);
  max-width: 68ch;
}
.accordion-panel p { margin: 0; }
.accordion-panel a { color: var(--amber); }

/* ---------- Űrlapok ---------- */

.form-row { margin-bottom: var(--space-4); }

.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: var(--space-2);
}
.form-row .optional { text-transform: none; letter-spacing: 0; }

.form-row input,
.form-row textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .04);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.form-row textarea {
  min-height: 104px;
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(147, 156, 188, .7); }
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, .07);
  outline: none;
}

.form-row--hidden {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.field-error {
  color: #FF7A6B;
  font-size: 13px;
  margin: var(--space-1) 0 0;
  min-height: 0;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-row input {
  width: 18px; height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--amber);
}
.checkbox-row a { color: var(--amber); }

.form-status {
  margin: var(--space-3) 0 0;
  font-size: 14px;
  font-weight: 600;
  min-height: 0;
}
.form-status.is-success { color: #4ADE80; }
.form-status.is-error { color: #FF7A6B; }

.form.is-success .form-row,
.form.is-success button[type="submit"] { display: none; }

.form--contact {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin-top: var(--space-6);
}
@media (min-width: 860px) {
  .form--contact { margin-top: 0; padding: var(--space-7); }
}

/* ---------- Kapcsolat ---------- */

/* ============================================================
   KAPCSOLAT SZEKCIÓ
   ============================================================ */

.contact-section {
  width: min(760px, 100%);
  margin-inline: auto;
  text-align: center;
}


/* ---------- FEJLÉC ---------- */

.contact-heading {
  max-width: 680px;
  margin: 0 auto var(--space-7);
  text-align: center;
}

.contact-heading .section-eyebrow {
  justify-content: center;
}

.contact-heading .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.contact-heading .section-title em {
  color: var(--amber);
  font-style: normal;
}

.contact-heading .section-lead {
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* ---------- KÁRTYA ---------- */

.contact-card {
  position: relative;
  overflow: hidden;

  width: 100%;
  padding: clamp(28px, 5vw, 48px);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(10, 36, 114, .30),
      transparent 55%
    ),
    linear-gradient(
      180deg,
      rgba(12, 20, 48, .92),
      rgba(6, 10, 26, .96)
    );

  border: 1px solid rgba(255, 186, 8, .22);
  border-radius: var(--radius);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .38),
    0 0 50px rgba(10, 36, 114, .10);

  text-align: center;
}


/* felső sárga fény */

.contact-card::before {
  content: "";
  position: absolute;

  top: 0;
  left: 50%;

  width: 45%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    var(--amber),
    transparent
  );

  box-shadow: 0 0 20px rgba(255, 186, 8, .45);
}


/* ---------- ADATOK ---------- */

.contact-facts {
  width: 100%;
  max-width: 580px;

  margin: 0 auto var(--space-6);

  text-align: center;
}

.contact-facts > div {
  padding: 18px 10px;

  border-bottom: 1px solid var(--line-soft);

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 7px;
}

.contact-facts > div:first-child {
  padding-top: 0;
}

.contact-facts dt {
  font-family: var(--font-mono);

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;

  color: var(--muted);

  text-align: center;
}

.contact-facts dd {
  margin: 0;

  font-size: 17px;
  font-weight: 600;

  color: var(--text);

  text-align: center;
}


/* ---------- TELEFONSZÁM ---------- */

.contact-facts .contact-phone {
  color: var(--amber);

  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;

  letter-spacing: -0.02em;

  text-decoration: none;

  transition:
    color .2s ease,
    text-shadow .2s ease;
}

.contact-facts .contact-phone:hover {
  color: #fff;

  text-shadow:
    0 0 22px rgba(255, 186, 8, .55);
}


/* ---------- CTA ---------- */

.contact-cta {
  display: flex;

  width: min(360px, 100%);
  min-height: 60px;

  margin: 28px auto 0;

  align-items: center;
  justify-content: center;

  text-align: center;

  font-size: 17px;
  font-weight: 700;
}


/* ---------- ALSÓ BIZALMI SOR ---------- */

.contact-note {
  margin: 18px auto 0 !important;

  color: var(--muted) !important;

  font-size: 12px !important;
  line-height: 1.6;

  text-align: center;

  letter-spacing: .02em;
}


/* ============================================================
   MOBIL
   ============================================================ */

@media (max-width: 600px) {

  .contact-section {
    width: 100%;
  }

  .contact-heading {
    margin-bottom: 30px;
  }

  .contact-heading .section-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.02;
  }

  .contact-heading .section-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .contact-card {
    padding: 30px 20px 26px;
    border-radius: 24px;
  }

  .contact-facts > div {
    padding: 17px 5px;
  }

  .contact-facts dd {
    font-size: 16px;
  }

  .contact-facts .contact-phone {
    font-size: 26px;
  }

  .contact-cta {
    width: 100%;
    min-height: 60px;

    margin-top: 24px;

    border-radius: 999px;
  }

  .contact-note {
    max-width: 30ch;
  }
}

/* ---------- Lábléc ---------- */

.site-footer {
  margin-top: clamp(80px, 9vw, 140px);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6, 21, 68, .35), var(--bg));
  padding: var(--space-8) 0 var(--space-7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: var(--space-3);
}
.footer-brand span { color: var(--amber); }
.footer-inner p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 var(--space-2);
}
.footer-inner a { color: var(--text); text-decoration: none; }
.footer-inner a:hover { color: var(--amber); }

/* ---------- Mobil hívássáv ---------- */

.mobile-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(5, 7, 15, .92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
@media (min-width: 1000px) {
  .mobile-call-bar { display: none; }
}
.mobile-call-bar__call,
.mobile-call-bar__back {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.mobile-call-bar__call {
  background: linear-gradient(180deg, var(--amber), var(--amber-hot));
  color: #14100A;
}
.mobile-call-bar__back { color: var(--text); }

/* ---------- Scroll reveal — fail-safe ---------- */
/*
   Alapállapotban MINDEN tartalom látható.
   A JS csak azokat az elemeket rejti el röviden, amelyeket ténylegesen figyel.
   Így ha a JavaScript nem tölt be vagy hibázik, az oldal akkor sem lesz üres.
*/
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}

.reveal.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.reveal-ready,
  .reveal.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

