/* =========================================================================
   csotanyirtok.hu – fő stíluslap
   Egyedi vizuális identitás: meleg világos alap + mély petróleum kontrasztblokkok
   Mobile-first. Külső font/CSS dependency nélkül (sebesség + GDPR).
   ========================================================================= */

/* ---------------------------------------------------------------- TOKENEK */
:root {
  /* szín */
  --ink: #14100d;
  --ink-2: #3a322c;
  --muted: #6e625a;
  --cream: #fffbf6;
  --sand: #f7efe5;
  --sand-2: #f0e3d4;
  --line: rgba(20, 16, 13, 0.1);
  --line-2: rgba(20, 16, 13, 0.16);

  --brand: #d64524;
  --brand-700: #b0341a;
  --brand-100: #fde8e1;
  --amber: #f2a93b;
  --amber-100: #fdf0d8;

  --deep: #16323d;
  --deep-2: #0e232b;

  --ok: #1f7a52;

  /* felület */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(20, 16, 13, 0.05), 0 2px 8px rgba(20, 16, 13, 0.04);
  --shadow: 0 2px 6px rgba(20, 16, 13, 0.06), 0 14px 34px -12px rgba(20, 16, 13, 0.16);
  --shadow-lg: 0 4px 10px rgba(20, 16, 13, 0.07), 0 30px 60px -20px rgba(20, 16, 13, 0.28);

  /* ritmus */
  --wrap: 1180px;
  --gutter: 20px;
  --sec-y: 56px;

  /* tipográfia – rendszerfontok, nincs külső betöltés */
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  /* mobil sticky CTA magassága (JS állítja be) */
  --sticky-h: 0px;
}

@media (min-width: 768px) {
  :root { --gutter: 28px; --sec-y: 80px; }
}
@media (min-width: 1024px) {
  :root { --sec-y: 96px; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--sticky-h);
}

img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--brand-700); text-underline-offset: 3px; }
a:hover { color: var(--brand); }

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.14;
  letter-spacing: -0.022em;
  font-weight: 720;
  text-wrap: balance;
}
h1 { font-size: clamp(1.95rem, 6.2vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 4.6vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 2.6vw, 1.4rem); }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }
strong { font-weight: 680; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:where(a, button, summary, input, select, textarea):focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

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

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--deep); color: #fff; padding: 10px 16px; border-radius: 10px;
  text-decoration: none; transition: top 0.15s;
}
.skip-link:focus { top: 8px; color: #fff; }

/* --------------------------------------------------------------- LAYOUT */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.section { padding-block: var(--sec-y); position: relative; }
.section--tight { padding-block: calc(var(--sec-y) * 0.62); }

.section--sand { background: var(--sand); }
.section--deep {
  background:
    radial-gradient(120% 90% at 82% 0%, #234b5a 0%, transparent 58%),
    linear-gradient(168deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #e5eef1;
}
.section--deep h2, .section--deep h3 { color: #fffbf6; }
.section--deep a:not(.btn) { color: var(--amber); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.775rem; font-weight: 730; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-700); margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--brand); border-radius: 2px; flex: none;
}
.section--deep .eyebrow { color: var(--amber); }
.section--deep .eyebrow::before { background: var(--amber); }

.lead { font-size: 1.06rem; color: var(--ink-2); max-width: 62ch; }
.section--deep .lead { color: #c9d8de; }
.section-head { max-width: 70ch; margin-bottom: 34px; }

/* ---------------------------------------------------------------- GOMBOK */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 24px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid transparent; border-radius: 999px;
  font-weight: 680; font-size: 1rem; line-height: 1.2; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  box-shadow: 0 1px 2px rgba(20, 16, 13, 0.16), 0 10px 22px -12px rgba(214, 69, 36, 0.7);
  text-align: center;
}
.btn:hover { color: var(--btn-fg); transform: translateY(-1px); box-shadow: 0 3px 8px rgba(20,16,13,.14), 0 18px 30px -14px rgba(214,69,36,.75); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line-2); box-shadow: none;
}
.btn--ghost:hover { background: rgba(20, 16, 13, 0.045); box-shadow: none; }

.btn--light { --btn-bg: #fffbf6; --btn-fg: var(--deep-2); box-shadow: 0 10px 26px -14px rgba(0,0,0,.6); }
.btn--light:hover { box-shadow: 0 16px 34px -16px rgba(0,0,0,.65); }

.btn--outline-light {
  --btn-bg: transparent; --btn-fg: #fffbf6;
  border-color: rgba(255, 251, 246, 0.34); box-shadow: none;
}
.btn--outline-light:hover { background: rgba(255, 251, 246, 0.1); box-shadow: none; }

.btn--deep { --btn-bg: var(--deep); --btn-fg: #fffbf6; box-shadow: 0 10px 24px -14px rgba(22,50,61,.9); }

.btn--lg { min-height: 58px; padding: 16px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 420px) {
  .btn-row > .btn { width: 100%; }
}

.linkish {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 660; text-decoration: none; color: var(--brand-700);
}
.linkish:hover { text-decoration: underline; }
.linkish::after { content: "\2192"; transition: transform 0.15s; }
.linkish:hover::after { transform: translateX(3px); }

/* ---------------------------------------------------------------- HEADER */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 251, 246, 0.9);
  backdrop-filter: saturate(1.5) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 22px -18px rgba(20, 16, 13, 0.7); }

.header__inner {
  display: flex; align-items: center; gap: 14px;
  min-height: 64px;
}
@media (min-width: 1024px) { .header__inner { min-height: 76px; } }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; min-width: 0; }
.brand__mark { width: 34px; height: 34px; border-radius: 10px; flex: none; }
.brand__name { font-weight: 780; font-size: 1.02rem; letter-spacing: -0.03em; line-height: 1.15; }
.brand__name span { display: block; font-size: 0.66rem; font-weight: 560; letter-spacing: 0.02em; color: var(--muted); }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 2px; }
  .nav a {
    padding: 9px 12px; border-radius: 10px; text-decoration: none;
    color: var(--ink-2); font-weight: 600; font-size: 0.94rem;
  }
  .nav a:hover { background: rgba(20, 16, 13, 0.05); color: var(--ink); }
  .nav a[aria-current="page"] { color: var(--brand-700); background: var(--brand-100); }
}

.header__cta { display: none; }
@media (min-width: 768px) { .header__cta { display: inline-flex; } }

.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--deep); font-weight: 730; font-size: 0.95rem;
  padding: 8px 10px; border-radius: 10px; white-space: nowrap;
}
@media (max-width: 767px) { .header__phone { display: none; } }

.burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: transparent; border: 1px solid var(--line-2); border-radius: 12px; cursor: pointer;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span { position: relative; display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 10px var(--gutter) 22px;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .mobile-nav, .mobile-nav.is-open { display: none; } }
.mobile-nav a {
  display: block; padding: 13px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink); font-weight: 620;
}
.mobile-nav .btn { margin-top: 16px; }

/* ------------------------------------------------------------------ HERO */
.hero {
  position: relative;
  background:
    radial-gradient(90% 70% at 88% 6%, var(--amber-100) 0%, transparent 60%),
    radial-gradient(70% 60% at 4% 96%, var(--brand-100) 0%, transparent 58%),
    linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  padding-block: 28px 40px;
  overflow: clip;
}
@media (min-width: 768px) { .hero { padding-block: 46px 58px; } }
@media (min-width: 1024px) { .hero { padding-block: 58px 76px; } }

.hero__grid { display: grid; gap: 26px; align-items: center; }
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 46px; }
}

.hero h1 { margin-bottom: 14px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 62%, rgba(242, 169, 59, 0.45) 62%);
  padding-inline: 2px;
}
.hero__sub { font-size: 1.04rem; color: var(--ink-2); margin-bottom: 18px; max-width: 54ch; }
@media (min-width: 768px) { .hero__sub { font-size: 1.12rem; } }

.hero__badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.78); border: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 640; color: var(--ink-2); white-space: nowrap;
}
.badge svg { flex: none; color: var(--brand); }

.hero__price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px;
  margin: 0 0 20px; padding: 13px 17px;
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 12px; box-shadow: var(--shadow-sm);
  font-size: 0.94rem; color: var(--ink-2);
}
.hero__price b { font-size: 1.26rem; font-weight: 780; color: var(--ink); letter-spacing: -0.02em; }

.hero__note { font-size: 0.85rem; color: var(--muted); margin: 14px 0 0; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: var(--sand-2);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__tag {
  position: absolute; left: 14px; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px; border-radius: 16px;
  background: rgba(255, 251, 246, 0.95); backdrop-filter: blur(8px);
  box-shadow: var(--shadow); font-size: 0.85rem; font-weight: 620; line-height: 1.35;
}
@media (min-width: 480px) { .hero__tag { right: auto; max-width: min(340px, 86%); } }
.hero__tag .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--ok); flex: none;
  box-shadow: 0 0 0 4px rgba(31, 122, 82, 0.16);
}

/* ------------------------------------------------------------ TRUST STRIP */
.trust {
  background: var(--deep);
  color: #e3ecef;
  padding-block: 18px;
}
.trust__list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px;
  list-style: none; margin: 0; padding: 0;
}
@media (min-width: 768px) { .trust__list { grid-template-columns: repeat(4, 1fr); } }
.trust__list li {
  display: flex; align-items: flex-start; gap: 9px; margin: 0;
  font-size: 0.85rem; font-weight: 600; line-height: 1.35;
}
.trust__list svg { flex: none; color: var(--amber); margin-top: 2px; }

/* --------------------------------------------------------------- KÁRTYÁK */
.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px;
  box-shadow: var(--shadow-sm);
}

.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--2, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* váltakozó kép+szöveg blokk */
.split { display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px; }
  .split--rev .split__media { order: 2; }
}
.split__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); background: var(--sand-2);
  aspect-ratio: 4 / 3; object-fit: cover;
}

.split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 42, 51, 0.20);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.split__media--tall img { aspect-ratio: 3 / 4; }

/* ------------------------------------------------------- SÜRGETŐ / JELEK */
.signs { display: grid; gap: 12px; grid-template-columns: 1fr; margin: 0; padding: 0; list-style: none; }
@media (min-width: 560px) { .signs { grid-template-columns: 1fr 1fr; } }
.signs li {
  display: flex; gap: 12px; align-items: flex-start; margin: 0;
  padding: 15px 16px; border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 251, 246, 0.14);
  font-size: 0.93rem; line-height: 1.45;
}
.signs .n {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--amber); color: var(--deep-2);
  font-size: 0.78rem; font-weight: 800;
}

/* ----------------------------------------------------------------- FAJOK */
.species { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .species { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.species article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.species img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--sand-2); }
.species .body { padding: 18px 18px 20px; }
.species h3 { margin-bottom: 6px; }
.species p { margin: 0; font-size: 0.92rem; color: var(--ink-2); }
.species .tag {
  display: inline-block; margin-bottom: 9px; padding: 4px 10px; border-radius: 999px;
  background: var(--sand); font-size: 0.71rem; font-weight: 700; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--ink-2);
}

/* ------------------------------------------------------------- MÓDSZEREK */
.methods { display: grid; gap: 18px; }
.method {
  display: grid; gap: 0;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
}
@media (min-width: 780px) {
  .method { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); align-items: stretch; }
  .method:nth-child(even) .method__media { order: 2; }
}
.method__media { background: var(--sand-2); }
.method__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
@media (min-width: 780px) { .method__media img { aspect-ratio: auto; min-height: 100%; } }
.method__body { padding: 22px; }
@media (min-width: 780px) { .method__body { padding: 30px; } }
.method__body h3 { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.method__price {
  font-size: 0.8rem; font-weight: 750; color: var(--brand-700);
  background: var(--brand-100); padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.method dl { margin: 14px 0 0; display: grid; gap: 10px; }
.method dt {
  font-size: 0.71rem; font-weight: 750; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1px;
}
.method dd { margin: 0; font-size: 0.93rem; color: var(--ink-2); }

/* ----------------------------------------------------------------- ÁRAK */
.pricing { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1080px) { .pricing { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; } }

.price-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card h3 { font-size: 1.14rem; margin-bottom: 4px; }
.price-card__from { font-size: 0.77rem; color: var(--muted); font-weight: 600; }
.price-card__amount {
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
  margin: 6px 0 14px;
  font-size: 1.8rem; font-weight: 790; letter-spacing: -0.03em; line-height: 1.05;
}
.price-card__amount .suffix { font-size: 0.95rem; font-weight: 640; color: var(--muted); letter-spacing: -0.01em; }
.price-card p { font-size: 0.92rem; color: var(--ink-2); }
.price-card ul { list-style: none; padding: 0; margin: 0 0 18px; }
.price-card li { display: flex; gap: 9px; font-size: 0.89rem; color: var(--ink-2); margin-bottom: 7px; }
.price-card li svg { flex: none; color: var(--ok); margin-top: 4px; }
.price-card .btn { margin-top: auto; }

.price-card--feature {
  background: linear-gradient(170deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #eef3f5; border-color: transparent;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 1080px) { .price-card--feature { margin-block: -10px; padding-block: 34px; } }
.price-card--feature h3 { color: #fff; }
.price-card--feature p, .price-card--feature li { color: #c5d4db; }
.price-card--feature .price-card__from { color: #9ab0ba; }
.price-card--feature .price-card__amount .suffix { color: #9ab0ba; }
.price-card--feature li svg { color: var(--amber); }
.price-card__ribbon {
  position: absolute; top: -11px; left: 22px;
  background: var(--amber); color: var(--deep-2);
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}

.price-note {
  margin-top: 20px; padding: 15px 18px;
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 0.9rem; color: var(--ink-2);
}
.price-note p:last-child { margin-bottom: 0; }
.price-note strong { color: var(--ink); }
.section--sand .price-note { background: #fff; }

/* -------------------------------------------------------------- FOLYAMAT */
.steps { display: grid; gap: 18px 14px; counter-reset: step; list-style: none; padding: 0; margin: 0; }
@media (min-width: 700px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.steps li {
  position: relative; margin: 0; padding: 26px 20px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: -14px; left: 20px;
  width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 6px 14px -6px rgba(214, 69, 36, 0.8);
}
.steps h3 { font-size: 1.02rem; margin: 6px 0 5px; }
.steps p { margin: 0; font-size: 0.9rem; color: var(--ink-2); }

/* ------------------------------------------------------------- CTA SÁVOK */
.cta-band {
  background: linear-gradient(135deg, var(--brand) 0%, #e2662f 55%, var(--amber) 130%);
  color: #fff; border-radius: var(--radius-xl);
  padding: 30px 24px; box-shadow: var(--shadow-lg);
  display: grid; gap: 18px; align-items: center;
}
@media (min-width: 900px) {
  .cta-band { grid-template-columns: minmax(0, 1fr) auto; gap: 32px; padding: 38px 40px; }
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.95); margin: 0; max-width: 58ch; }
.cta-band .btn--light { --btn-fg: var(--brand-700); }

.sos { display: grid; gap: 22px; align-items: center; }
@media (min-width: 900px) { .sos { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 44px; } }
.sos__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--deep-2); }
.hours {
  list-style: none; margin: 18px 0 0; padding: 0;
  border-top: 1px solid rgba(255, 251, 246, 0.16);
}
.hours li {
  display: flex; justify-content: space-between; gap: 16px; margin: 0;
  padding: 11px 0; border-bottom: 1px solid rgba(255, 251, 246, 0.16);
  font-size: 0.94rem;
}
.hours b { font-weight: 700; }

/* ---------------------------------------------------------------- TERÜLET */
.area-list {
  display: flex; flex-wrap: wrap; gap: 7px; list-style: none; padding: 0; margin: 16px 0 0;
}
.area-list li {
  margin: 0; padding: 6px 12px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 0.83rem; font-weight: 600; color: var(--ink-2);
}

/* ------------------------------------------------------------- CAROUSEL */
.reviews__head {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px;
}
.rating-summary {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.rating-summary__score { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.rating-summary__meta { font-size: 0.8rem; color: var(--muted); }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars svg { width: 16px; height: 16px; }

.carousel { position: relative; }
.carousel__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 380px);
  gap: 14px;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 0 18px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .carousel__track { grid-auto-columns: minmax(0, calc(33.333% - 10px)); } }

.review {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 12px;
}
.review__top { display: flex; align-items: center; gap: 11px; }
.review__avatar { width: 42px; height: 42px; border-radius: 50%; flex: none; background: var(--sand-2); }
.review__who { min-width: 0; }
.review__name { font-weight: 700; font-size: 0.95rem; }
.review__date { font-size: 0.78rem; color: var(--muted); }
.review__text { margin: 0; font-size: 0.93rem; color: var(--ink-2); }
.review__src { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; color: var(--muted); margin-top: auto; }

.placeholder-flag {
  display: inline-block; align-self: flex-start;
  padding: 3px 9px; border-radius: 6px;
  background: repeating-linear-gradient(45deg, #fdf0d8, #fdf0d8 8px, #fbe6c2 8px, #fbe6c2 16px);
  border: 1px dashed #d9a441;
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.08em; color: #8a5d10;
}

.carousel__nav { display: none; gap: 8px; }
@media (min-width: 900px) { .carousel__nav { display: flex; } }
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-2); background: #fff; cursor: pointer;
  display: grid; place-items: center; color: var(--ink);
  transition: background 0.15s;
}
.carousel__btn:hover { background: var(--sand); }
.carousel__btn[disabled] { opacity: 0.35; cursor: default; }

.carousel__dots { display: flex; gap: 6px; justify-content: center; margin-top: 2px; }
@media (min-width: 900px) { .carousel__dots { display: none; } }
.carousel__dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--line-2); transition: width 0.18s, background 0.18s;
}
.carousel__dots button[aria-current="true"] { background: var(--brand); width: 22px; border-radius: 999px; }

/* ------------------------------------------------------------------ GYIK */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 18px; box-shadow: var(--shadow-sm);
}
.faq details[open] { border-color: var(--line-2); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 17px 34px 17px 0; position: relative;
  font-weight: 680; font-size: 1rem; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%;
  width: 10px; height: 10px; margin-top: -8px;
  border-right: 2px solid var(--brand); border-bottom: 2px solid var(--brand);
  transform: rotate(45deg); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq .faq__a { padding: 0 0 18px; font-size: 0.95rem; color: var(--ink-2); }
.faq .faq__a p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ FORM */
.form-wrap { display: grid; gap: 26px; }
@media (min-width: 960px) { .form-wrap { grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr); gap: 44px; align-items: start; } }

.form-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow);
}
@media (min-width: 768px) { .form-card { padding: 32px; } }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 660; font-size: 0.9rem; margin-bottom: 6px; }
.field .req { color: var(--brand); }
.field .hint { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

.input, .textarea, .select {
  width: 100%; padding: 13px 15px;
  background: var(--cream); border: 1px solid var(--line-2); border-radius: 12px;
  font-size: 1rem; line-height: 1.45;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; background: #fff;
  border-color: var(--brand); box-shadow: 0 0 0 4px rgba(214, 69, 36, 0.13);
}
.textarea { min-height: 108px; resize: vertical; }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--brand-700); background: #fff6f3;
}

.field__error { display: none; margin-top: 5px; font-size: 0.82rem; color: var(--brand-700); font-weight: 600; }
.field.has-error .field__error { display: block; }

.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: 0.86rem; color: var(--ink-2); line-height: 1.5; }
.checkbox input { width: 20px; height: 20px; margin: 2px 0 0; flex: none; accent-color: var(--brand); }

/* honeypot – vizuálisan és a fókuszsorrendből is elrejtve */
.hp {
  position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0;
}

.form-status { margin-top: 14px; padding: 13px 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-status.is-error { display: block; background: #fdecea; border: 1px solid #f3bbb0; color: #96301a; }
.form-status.is-ok { display: block; background: #e8f5ee; border: 1px solid #a8d8bf; color: #14603f; }

.form-aside { display: grid; gap: 14px; }
.form-aside .card { padding: 20px; }
.form-aside h3 { font-size: 1.04rem; }
.form-aside p { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 0; }
.contact-line { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; margin-bottom: 12px; }
.contact-line:last-child { margin-bottom: 0; }
.contact-line svg { flex: none; color: var(--brand); margin-top: 3px; }
.contact-line a { font-weight: 700; text-decoration: none; }
.contact-line span { min-width: 0; word-break: break-word; }

/* ---------------------------------------------------------------- FOOTER */
.footer {
  background: var(--deep-2); color: #b2c2ca;
  padding-block: 44px 28px; font-size: 0.9rem;
}
.footer a { color: #d8e3e8; text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; gap: 28px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer h2, .footer h3 { color: #fff; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__brand img { width: 36px; height: 36px; border-radius: 11px; }
.footer__brand b { color: #fff; font-size: 1.02rem; letter-spacing: -0.02em; }
.footer__bottom {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between;
  font-size: 0.81rem; color: #899da5;
}

/* ----------------------------------------------------- MOBIL STICKY CTA */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 251, 246, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 26px -18px rgba(20, 16, 13, 0.8);
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta .btn { min-height: 46px; padding: 10px 12px; font-size: 0.93rem; border-radius: 12px; box-shadow: none; }
.sticky-cta .btn--ghost { border-color: var(--line-2); background: #fff; }

/* ------------------------------------------------------- COOKIE BANNER */
.cookie {
  position: fixed; z-index: 120; left: 10px; right: 10px;
  bottom: calc(10px + var(--sticky-h));
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  display: none;
}
.cookie.is-open { display: block; }
@media (min-width: 760px) { .cookie { left: auto; right: 20px; bottom: 20px; max-width: 430px; } }
.cookie h2 { font-size: 1.04rem; margin-bottom: 8px; }
.cookie p { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 14px; }
.cookie__actions { display: grid; gap: 8px; }
@media (min-width: 420px) { .cookie__actions { grid-template-columns: 1fr 1fr; } }
.cookie__actions .btn { min-height: 46px; font-size: 0.92rem; padding: 10px 14px; box-shadow: none; }
.cookie__settings-btn { grid-column: 1 / -1; }
.cookie__prefs { display: none; margin: 4px 0 14px; border-top: 1px solid var(--line); padding-top: 14px; }
.cookie__prefs.is-open { display: block; }
.cookie__pref { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 12px; font-size: 0.85rem; }
.cookie__pref input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--brand); }
.cookie__pref b { display: block; color: var(--ink); }

/* --------------------------------------------------------- SZÖVEGES OLDAL */
.legal { max-width: 820px; }
.legal h2 { font-size: clamp(1.22rem, 3.4vw, 1.55rem); margin-top: 2em; }
.legal h3 { font-size: 1.05rem; margin-top: 1.6em; }
.legal table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 0.91rem; min-width: 440px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--sand); font-weight: 700; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.page-hero {
  background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
  padding-block: 30px 28px; border-bottom: 1px solid var(--line);
}
@media (min-width: 768px) { .page-hero { padding-block: 50px 42px; } }
.page-hero h1 { margin-bottom: 10px; }
.page-hero p { margin: 0; color: var(--ink-2); max-width: 62ch; }

.breadcrumb { font-size: 0.81rem; color: var(--muted); margin-bottom: 14px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.breadcrumb li { margin: 0; display: flex; gap: 6px; align-items: center; }
.breadcrumb li + li::before { content: "/"; color: var(--line-2); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-700); text-decoration: underline; }

/* ------------------------------------------------------------ KÖSZÖNJÜK */
.thanks { text-align: center; padding-block: 56px 66px; }
.thanks__icon {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: #e8f5ee; color: var(--ok);
  box-shadow: 0 0 0 10px rgba(31, 122, 82, 0.08);
}
.thanks .btn-row { justify-content: center; }

/* --------------------------------------------------------------- APRÓSÁG */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.stack-24 > * + * { margin-top: 24px; }

/* jelek – világos hátterű változat */
.signs--light li {
  background: #fff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
}
.signs--light .n { background: var(--brand); color: #fff; }

/* hero badge lista alaphelyzetbe állítása (ul) */
.hero__badges { list-style: none; padding: 0; }

/* hero: kompaktabb tipográfia kis kijelzőn, hogy a CTA az első képernyőre essen */
@media (max-width: 479px) {
  .hero h1 { font-size: 1.82rem; line-height: 1.12; }
  .hero__sub { font-size: 1rem; margin-bottom: 16px; }
  .hero__price { padding: 11px 15px; margin-bottom: 16px; }
  .hero__price b { font-size: 1.18rem; }
  .hero__badges { gap: 6px; margin-top: 16px; margin-bottom: 0; }
  .badge { font-size: .78rem; padding: 6px 11px; }
  .hero__note { margin-top: 12px; }
}

/* a hero badge-ek a CTA után következnek – kis felső térköz kell */
.hero__badges { margin-top: 18px; margin-bottom: 0; }

.brand__logo {
  display: block;
  width: auto;
  height: 68px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .brand__logo {
    height: 52px;
  }
}

/* Csótányt látott szekció – kép petrol overlay */
#csotanyt-latott .split__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

#csotanyt-latott .split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 42, 51, 0.22);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}