/* ============================================================
   ingyenlakasriaszto.hu — design system
   Palette:  éjkék #0C1622 · panelkék #142438 · sziréna #E8382F
             élő-jel zöld #2FBF71 · acélfehér #F1F4F6 · acél #56677A
   Type:     Archivo (display+body) · IBM Plex Mono (adat, státusz)
   ============================================================ */

:root {
  --ink: #0C1622;
  --ink-2: #142438;
  --ink-3: #1D3450;
  --red: #E8382F;
  --red-deep: #C22A23;
  --green: #2FBF71;
  --paper: #F1F4F6;
  --white: #FFFFFF;
  --steel: #56677A;
  --line: #DCE3E9;
  --line-dark: rgba(255, 255, 255, 0.12);
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1160px;
  --radius: 10px;
  --shadow: 0 18px 50px -18px rgba(12, 22, 34, 0.28);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

main { overflow-x: clip; }
@supports not (overflow-x: clip) {
  main { overflow-x: hidden; }
}

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

::selection { background: var(--red); color: #fff; }

/* ---------- típusskála ---------- */

h1, h2, h3, h4 { font-weight: 800; line-height: 1.12; letter-spacing: -0.015em; }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--red);
  flex: none;
}

.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; text-wrap: balance; }
.section-lead { color: var(--steel); max-width: 640px; font-size: 18px; text-wrap: pretty; }

/* ============================================================
   STÁTUSZSÁV
   ============================================================ */

.statusbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  color: #B8C4D0;
  font-family: var(--mono);
  font-size: 12.5px;
}
.statusbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.statusbar a { color: #fff; font-weight: 600; }

.live { display: inline-flex; align-items: center; gap: 8px; color: var(--green); }
.live .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.55);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(47, 191, 113, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 191, 113, 0); }
}

/* ============================================================
   FEJLÉC
   ============================================================ */

.site-head { position: sticky; top: 0; z-index: 60; }

.mainbar {
  background: rgba(12, 22, 34, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-dark);
}
.mainbar .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand:hover { text-decoration: none; }
.brand svg { width: 34px; height: 38px; flex: none; }
.brand-name { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1.1; }
.brand-name em { font-style: normal; color: var(--red); display: block; font-family: var(--mono); font-weight: 600; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; }

.site-nav { margin-left: auto; }
.site-nav ul { list-style: none; display: flex; gap: 4px; }
.site-nav a {
  color: #C7D1DC;
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); text-decoration: none; }
.site-nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -2px 0 var(--red); border-radius: 6px 6px 0 0; }

.nav-cta {
  flex: none;
  background: var(--red);
  color: #fff !important;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 18px;
  border-radius: 7px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-deep); text-decoration: none !important; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-dark);
  color: #fff;
  border-radius: 7px;
  padding: 9px 12px;
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .statusbar .status-right { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    padding: 10px 24px 18px;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav a { padding: 12px 10px; font-size: 16px; }
  .site-nav a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--red); border-radius: 0 6px 6px 0; }
  .mainbar .nav-cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(232, 56, 47, 0.16), transparent 62%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 0.38;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,22,34,0.92) 0%, rgba(12,22,34,0.55) 55%, rgba(12,22,34,0.75) 100%),
    linear-gradient(180deg, rgba(12,22,34,0.85) 0%, transparent 30%, rgba(20,36,56,0.9) 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 70%, transparent);
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 88px;
}

.hero h1 {
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 900;
  margin: 0 0 20px;
}
.hero h1 .zero {
  color: var(--red);
  font-family: var(--mono);
  font-weight: 600;
  white-space: nowrap;
}
.hero-lead { color: #B8C4D0; font-size: 19px; max-width: 520px; margin-bottom: 30px; }
.hero-lead strong { color: #fff; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { text-decoration: none; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px rgba(232, 56, 47, 0.6); }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: #fff; }

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: #8FA0B2;
  list-style: none;
}
.hero-facts li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* ---------- ügyeleti konzol (szignatúra) ---------- */

.console {
  background: rgba(9, 16, 26, 0.88);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-family: var(--mono);
  overflow: hidden;
}
.console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8FA0B2;
}
.console-head .live { font-size: 11.5px; }

.console-body { padding: 10px 6px; }
.console-row {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 11px 14px;
  font-size: 13px;
  border-radius: 8px;
}
.console-row + .console-row { border-top: 1px dashed rgba(255,255,255,0.07); }
.console-row .t { color: #5F7186; font-size: 12px; }
.console-row .e { color: #D7E0E9; }
.console-row .e small { display: block; color: #728699; }
.console-row.alarm { background: rgba(232, 56, 47, 0.09); }
.console-row.alarm .e { color: #fff; font-weight: 600; }

.tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.tag-red { background: var(--red); color: #fff; }
.tag-green { background: rgba(47, 191, 113, 0.16); color: var(--green); border: 1px solid rgba(47, 191, 113, 0.4); }
.tag-dim { background: rgba(255,255,255,0.07); color: #9FB0C1; }

.console-foot {
  padding: 12px 18px;
  border-top: 1px solid var(--line-dark);
  font-size: 12px;
  color: #7C8DA0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.console-foot b { color: var(--green); font-weight: 600; }

@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 42px; padding-top: 52px; padding-bottom: 60px; }
  .console-row { grid-template-columns: 60px 1fr; }
  .console-row .tag { grid-column: 2; justify-self: start; }
}

/* ---------- fotós szekciók ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}
.split-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.split-photo .photo-chip {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(12, 22, 34, 0.88);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--red);
}
.split-list { list-style: none; margin-top: 22px; }
.split-list li { padding: 10px 0 10px 30px; position: relative; border-bottom: 1px dashed var(--line); font-size: 16px; }
.split-list li:last-child { border-bottom: 0; }
.split-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }

.photo-band {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.photo-band > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.photo-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,22,34,0.55) 0%, rgba(12,22,34,0.25) 100%),
    linear-gradient(90deg, rgba(12,22,34,0.9) 0%, rgba(12,22,34,0.6) 60%, rgba(12,22,34,0.3) 100%);
}
.photo-band .wrap {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.photo-band blockquote {
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: 640px;
  margin-bottom: 18px;
}
.photo-band blockquote { text-shadow: 0 2px 18px rgba(12,22,34,0.55); }
.photo-band blockquote em { font-style: normal; color: #FF9B94; }
.photo-band p { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: #F1F4F6; text-shadow: 0 1px 10px rgba(12,22,34,0.75); }

/* ============================================================
   RIASZTÓSZALAG (marquee)
   ============================================================ */

.tape {
  background: var(--red);
  color: #fff;
  overflow: hidden;
  transform: rotate(-1.1deg) scale(1.02);
  border-top: 1px solid var(--red-deep);
  border-bottom: 1px solid var(--red-deep);
  margin: -14px 0 0;
  position: relative;
  z-index: 5;
}
.tape-track {
  display: flex;
  width: max-content;
  animation: tape-scroll 36s linear infinite;
}
.tape ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 11px 21px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tape li::after { content: "▲"; margin-left: 42px; font-size: 8px; opacity: 0.65; }
@keyframes tape-scroll { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .tape-track { animation: none; }
  .live .dot { animation: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   SZEKCIÓK
   ============================================================ */

.section { padding: 84px 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-white { background: var(--white); }
.section-head { margin-bottom: 46px; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- ajánlat: adunk / kérünk ---------- */

.deal {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}
.deal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
}
.deal-card.ask { background: var(--ink); color: #fff; border-color: var(--ink); }
.deal-card h3 {
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--red);
}
.deal-list { list-style: none; }
.deal-list li {
  padding: 9px 0 9px 30px;
  position: relative;
  border-bottom: 1px dashed var(--line);
  font-size: 16px;
}
.deal-card.ask .deal-list li { border-color: rgba(255,255,255,0.14); }
.deal-list li:last-child { border-bottom: 0; }
.deal-list li::before {
  content: "＋";
  position: absolute; left: 0; top: 9px;
  color: var(--green);
  font-weight: 700;
}
.deal-card.ask .deal-list li::before { content: "→"; color: var(--red); }

.deal-note { margin-top: 18px; font-size: 14px; color: var(--steel); }
.deal-card.ask .deal-note { color: #9FB0C1; }
.deal-card.ask .big-zero {
  font-family: var(--mono);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin: 6px 0 18px;
}
.deal-card.ask .big-zero small { font-size: 0.35em; color: #8FA0B2; font-weight: 500; letter-spacing: 0.1em; }

.deal-img {
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}
.deal-img figcaption { font-family: var(--mono); font-size: 12px; color: var(--steel); margin-top: 12px; }

@media (max-width: 980px) { .deal { grid-template-columns: 1fr; } }

/* ---------- árkártyák ---------- */

.prices { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}
.price-card.business::before { background: var(--ink); }
.price-kind { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--steel); margin-bottom: 8px; }
.price-card h3 { font-size: 26px; margin-bottom: 18px; }
.price-value { font-family: var(--mono); font-weight: 600; font-size: 15px; color: var(--steel); margin-bottom: 24px; }
.price-value b {
  display: block;
  font-size: clamp(38px, 4.4vw, 50px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.price-value b em { font-style: normal; color: var(--red); }
.price-feats { list-style: none; margin-bottom: 28px; flex: 1; }
.price-feats li { padding: 8px 0 8px 28px; position: relative; font-size: 15.5px; border-bottom: 1px dashed var(--line); }
.price-feats li:last-child { border: 0; }
.price-feats li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card .btn { align-self: flex-start; }

@media (max-width: 860px) { .prices { grid-template-columns: 1fr; } }

/* ---------- folyamat idővonal ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.step-time {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
}
.step.alert .step-time { color: var(--red); }
.step h3 { font-size: 19px; margin-bottom: 10px; color: #fff; }
.step p { font-size: 14.5px; color: #9FB0C1; }
.step::after {
  content: "→";
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 20px;
  z-index: 2;
}
.step:last-child::after { content: none; }

@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { content: none; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step::after { content: none !important; }
}

/* ---------- védelmi területek ---------- */

.protect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.protect {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.protect:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.protect .icon {
  width: 46px; height: 46px;
  border-radius: 9px;
  background: rgba(232, 56, 47, 0.09);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.protect .icon svg { width: 24px; height: 24px; }
.protect h3 { font-size: 19px; margin-bottom: 10px; }
.protect p { font-size: 14.5px; color: var(--steel); }

@media (max-width: 980px) { .protect-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .protect-grid { grid-template-columns: 1fr; } }

/* ---------- lefedettség ---------- */

.coverage { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.cover-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 760px) { .cover-row { grid-template-columns: 1fr; gap: 20px; } }
.cover-stat { border-left: 3px solid var(--red); padding-left: 20px; margin-bottom: 26px; }
.cover-stat b { font-family: var(--mono); font-weight: 600; font-size: 40px; display: block; line-height: 1.1; letter-spacing: -0.02em; }
.cover-stat span { color: var(--steel); font-size: 15px; }

details.areas {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
details.areas summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
details.areas summary::-webkit-details-marker { display: none; }
details.areas summary::after { content: "＋"; color: var(--red); font-size: 20px; font-weight: 400; }
details.areas[open] summary::after { content: "－"; }
details.areas .areas-body { padding: 0 24px 24px; color: var(--steel); font-size: 14.5px; }
details.areas .areas-body h4 { font-size: 14px; margin: 18px 0 6px; color: var(--ink); font-family: var(--mono); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
details.areas + details.areas { margin-top: 14px; }

@media (max-width: 900px) { .coverage { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- GYIK ---------- */

.faq-list { max-width: 820px; }
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; color: var(--red); font-size: 20px; font-weight: 400; flex: none; }
.faq[open] summary::after { content: "－"; }
.faq .faq-body { padding: 0 24px 22px; color: var(--steel); font-size: 15.5px; }

/* ---------- ajánlatkérés ---------- */

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }

.contact-info { color: #C7D1DC; }
.contact-info h2 { color: #fff; }
.contact-rows { list-style: none; margin-top: 30px; }
.contact-rows li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line-dark);
  font-size: 15.5px;
}
.contact-rows .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #7C8DA0; padding-top: 3px; }
.contact-rows a { color: #fff; font-weight: 600; }
.contact-rows .cancel { color: #FFB4AE; }

.qform {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 38px;
  box-shadow: var(--shadow);
}
.qform h3 { font-size: 24px; margin-bottom: 6px; }
.qform > p { color: var(--steel); font-size: 15px; margin-bottom: 26px; }
.qform .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 15.5px;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 56, 47, 0.14);
  background: #fff;
}
.qform .btn { min-width: 240px; }
.form-note { font-size: 13px; color: var(--steel); margin-top: 14px; text-align: center; }
.form-ok {
  display: none;
  background: rgba(47, 191, 113, 0.12);
  border: 1px solid rgba(47, 191, 113, 0.5);
  color: #157A47;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  margin-top: 16px;
}
.form-ok.show { display: block; }
.form-err {
  display: none;
  background: rgba(232, 56, 47, 0.1);
  border: 1px solid rgba(232, 56, 47, 0.45);
  color: #B3261E;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  margin-top: 16px;
}
.form-err.show { display: block; }

.captcha-field input { max-width: 180px; }
.gdpr-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--steel);
  line-height: 1.5;
  margin: 4px 0 18px;
  cursor: pointer;
}
.gdpr-row input {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex: none;
  accent-color: var(--red);
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .qform .grid2 { grid-template-columns: 1fr; gap: 0; }
  .qform { padding: 28px 22px; }
}

/* ---------- CTA sáv (aloldalak) ---------- */

.cta-band { background: var(--red); color: #fff; }
.cta-band .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.cta-band h2 { font-size: clamp(24px, 3.4vw, 34px); max-width: 640px; }
.cta-band .btn { background: var(--ink); color: #fff; }
.cta-band .btn:hover { background: #000; }

/* ============================================================
   ALOLDAL
   ============================================================ */

.page-hero {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  color: #fff;
  padding: 62px 0 58px;
  position: relative;
  overflow: hidden;
}
.page-hero.has-photo {
  background:
    linear-gradient(90deg, rgba(12,22,34,0.94) 0%, rgba(12,22,34,0.78) 55%, rgba(12,22,34,0.45) 100%),
    var(--hero-img) center 40% / cover no-repeat, var(--ink);
  padding: 88px 0 84px;
}
.page-hero::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,56,47,0.22), transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(30px, 4.6vw, 46px); max-width: 780px; margin-bottom: 16px; }
.page-hero .lead { color: #B8C4D0; font-size: 18px; max-width: 640px; }
.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: #7C8DA0; margin-bottom: 22px; }
.crumbs a { color: #B8C4D0; }

.article { max-width: 800px; }
.article h2 { font-size: 27px; margin: 44px 0 14px; }
.article h2:first-child { margin-top: 0; }
.article h3 { font-size: 20px; margin: 30px 0 10px; }
.article p { margin-bottom: 16px; color: #33414F; }
.article ul, .article ol { margin: 0 0 18px 22px; color: #33414F; }
.article li { margin-bottom: 8px; }
.article .hl {
  background: var(--white);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 26px 0;
  box-shadow: 0 8px 24px -14px rgba(12,22,34,0.18);
}
.article .hl p:last-child { margin-bottom: 0; }

.price-table { width: 100%; border-collapse: collapse; margin: 18px 0 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; font-size: 14.5px; }
.price-table caption { caption-side: top; text-align: left; font-weight: 800; font-size: 17px; padding: 0 0 12px; color: var(--ink); }
.price-table th, .price-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.price-table th { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--steel); background: var(--paper); }
.price-table td.num { font-family: var(--mono); font-weight: 600; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: 0; }
.table-scroll { overflow-x: auto; }

/* ============================================================
   LÁBLÉC
   ============================================================ */

.site-foot { background: var(--ink); color: #9FB0C1; font-size: 14.5px; }
.site-foot .wrap { padding-top: 64px; padding-bottom: 28px; }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line-dark); }
.site-foot h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.site-foot ul { list-style: none; }
.site-foot li { padding: 4px 0; }
.site-foot a { color: #C7D1DC; }
.site-foot a:hover { color: #fff; }
.foot-brand p { margin-top: 14px; max-width: 320px; }
.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  color: #5F7186;
}
.foot-alarm { color: #FFB4AE; font-weight: 600; }

@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr; gap: 30px; } }
