/* =============================================
   CSODAPATAK CSALÁDI BÖLCSŐDE
   style.css – v3.0
   ============================================= */

/* --- DESIGN TOKENS --- */
:root {
  --blue-dark:   #0F3C5C;
  --blue-mid:    #3DB4DE;
  --yellow:      #FFC928;
  --green:       #5BB84F;
  --green-light: #EAF6E7;
  --bg:          #FFFDF5;
  --bg-alt:      #F4F8FB;
  --text:        #1A2E3B;
  --text-muted:  #5A7080;
  --white:       #FFFFFF;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;

  --shadow-sm:   0 2px 8px rgba(15,60,92,0.07);
  --shadow-md:   0 6px 24px rgba(15,60,92,0.11);
  --shadow-lg:   0 12px 40px rgba(15,60,92,0.15);

  --font-display: 'Dancing Script', cursive;
  --font-body:    'Montserrat', sans-serif;

  --nav-h: 72px;
  --dev-banner-h: 38px;
  --max-w: 1120px;
  --gap:   2rem;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- UTILITY --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--blue-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}
.text-center { text-align: center; }
.text-center .section-lead { margin-inline: auto; }

/* --- FEJLESZTÉS ALATT SÁV --- */
.dev-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--yellow);
  color: var(--blue-dark);
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  padding: .55rem 1rem;
  letter-spacing: .02em;
}

/* =============================================
   HEADER / NAV – TELJESEN ÚJ KÓD
   ============================================= */

/*
  Struktúra:
  <header class="header">          ← fix pozíció, fehér háttér, semmi padding
    <div class="header-safe-pad">  ← ez viseli a safe-area-t
      <div class="container">      ← 72px magas, flex, logó + nav
*/

.header {
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 900;
  background: #FFFDF5;
  border-bottom: 1px solid rgba(15, 60, 92, 0.08);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 12px rgba(15, 60, 92, 0.1);
}

/* Ez az elem tolja le a tartalmat a státuszsáv alá iPhone-on */
.header::before {
  content: '';
  display: block;
  height: env(safe-area-inset-top, 0px);
  background: #FFFDF5;
}

/* A container fix 72px magas – a safe-area FÖLÖTTE van a ::before-ban */
.header .container {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-wrap img { height: 48px; width: auto; }
.logo-wrap .logo-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-dark);
  line-height: 1.2;
}
.logo-wrap .logo-sub {
  font-size: .7rem;
  color: var(--text-muted);
  display: block;
}

/* Nav links */
.nav-list {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-list a {
  display: inline-block;
  padding: .45rem .85rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav-list a:hover { background: var(--green-light); color: var(--blue-dark); }
.nav-list a.active { color: var(--blue-mid); }
.nav-list .nav-cta {
  background: var(--yellow);
  color: var(--blue-dark) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-lg);
  margin-left: .4rem;
}
.nav-list .nav-cta:hover { background: var(--blue-mid); color: var(--white) !important; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  width: 40px; height: 40px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-dark);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   WAVE DIVIDER  (a "patak" motívum)
   ============================================= */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-block: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100svh;
  padding-top: calc(var(--dev-banner-h) + var(--nav-h) + env(safe-area-inset-top, 0px));
  margin-top: calc(-1 * env(safe-area-inset-top, 0px));
  padding-bottom: 0;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--gap);
  min-height: calc(100svh - var(--nav-h));
  padding-block: 2rem;
}
.hero-text { padding-block: 3rem; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: .35rem .85rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--blue-dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-mid);
}
.hero-desc {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Info chips below CTA */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--white);
  border: 1px solid rgba(15,60,92,.1);
  border-radius: var(--radius-lg);
  padding: .3rem .75rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow-sm);
}
.chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Hero image area */
.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #d4eefc 0%, #e8f6e8 100%);
  aspect-ratio: 3/3.5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* placeholder ha még nincs kép */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}
.img-placeholder .placeholder-icon { font-size: 4rem; line-height: 1; }

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue-dark);
  white-space: nowrap;
}
.hero-badge .badge-icon { font-size: 1.6rem; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); background: #ffd84a; }
.btn-outline {
  background: transparent;
  border-color: var(--blue-dark);
  color: var(--blue-dark);
}
.btn-outline:hover { background: var(--blue-dark); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--blue-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { box-shadow: var(--shadow-md); }

/* =============================================
   SECTION WRAPPER
   ============================================= */
.section {
  padding-block: 5rem;
}
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-lead { color: rgba(255,255,255,.7); }

/* =============================================
   CARDS  (közös alap)
   ============================================= */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* =============================================
   BENEFIT CARDS  (főoldal)
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--green);
}
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: .5rem;
}
.benefit-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   STAT STRIP
   ============================================= */
.stats-strip {
  background: var(--blue-dark);
  padding-block: 3.5rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =============================================
   ABOUT PAGE – Csapat kártyák
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, #d4eefc 0%, #e8f6e8 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  color: var(--text-muted);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.25rem 1rem 1.5rem; }
.team-info h3 { font-size: 1.05rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .25rem; }
.team-info .team-role {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--green);
  margin-bottom: .5rem;
}
.team-info p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; font-style: italic; }

/* =============================================
   VALUES  (about oldalon)
   ============================================= */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.value-item h4 { font-size: .95rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .25rem; }
.value-item p { font-size: .88rem; color: var(--text-muted); }

/* =============================================
   DAILY ROUTINE  (napirend oldal)
   ============================================= */
.timeline {
  position: relative;
  max-width: 680px;
  margin: 3rem auto 0;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-mid), var(--green));
  border-radius: 3px;
}
.time-block {
  position: relative;
  margin-bottom: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.time-block:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.time-block::before {
  content: '';
  position: absolute;
  left: -2.95rem;
  top: 1.4rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--blue-mid);
}
.time-block .time-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: .2rem;
}
.time-block h3 { font-size: 1rem; font-weight: 700; color: var(--blue-dark); margin-bottom: .3rem; }
.time-block p { font-size: .9rem; color: var(--text-muted); }

/* =============================================
   GALLERY
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #d4eefc, #e8f6e8);
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
/* placeholder a galériában */
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .4rem;
  color: var(--text-muted);
  font-size: .78rem; font-weight: 600;
}
.gallery-placeholder .pl-icon { font-size: 2.5rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(10,25,40,.92);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15); border: none; cursor: pointer;
  color: white; font-size: 1.8rem; width: 44px; height: 44px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* =============================================
   FAQ
   ============================================= */
.faq-list {
  max-width: 740px;
  margin: 3rem auto 0;
  display: flex; flex-direction: column; gap: .75rem;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item.active { border-color: var(--blue-mid); box-shadow: var(--shadow-md); }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body); font-size: .97rem; font-weight: 700;
  color: var(--blue-dark); text-align: left;
  transition: background .2s;
}
.faq-btn:hover { background: var(--bg-alt); }
.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
  font-size: .9rem;
  color: var(--green);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); background: var(--green); color: var(--white); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.active .faq-body { max-height: 400px; padding-bottom: 1.25rem; }
.faq-body p { padding: 0 1.5rem; font-size: .93rem; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail {
  display: flex; gap: .9rem; align-items: flex-start;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-detail h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-muted); margin-bottom: .1rem; }
.contact-detail a, .contact-detail p { font-size: .97rem; font-weight: 600; color: var(--blue-dark); }
.contact-detail a:hover { color: var(--blue-mid); }

.map-wrap {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 240px; border: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--blue-dark); }
.field input, .field select, .field textarea {
  padding: .7rem 1rem;
  border: 1.5px solid rgba(15,60,92,.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .93rem;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(61,180,222,.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.gdpr-check {
  display: flex; gap: .75rem; align-items: flex-start;
  font-size: .83rem; color: var(--text-muted); line-height: 1.5;
}
.gdpr-check input { flex-shrink: 0; margin-top: .2rem; accent-color: var(--green); }
.gdpr-check a { color: var(--blue-mid); }

/* Calendly embed */
.calendly-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1a5c8a 100%);
  padding-block: 5rem;
  text-align: center;
}
.cta-banner .section-title { color: var(--white); }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 540px; margin: .75rem auto 2rem; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.65);
  padding-block: 3.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 1.75rem;
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-sub { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; margin-top: .75rem; line-height: 1.7; }
.footer-col h4 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--white); }

/* =============================================
   PRIVACY / THANK YOU
   ============================================= */
.prose-section {
  padding-block: 5rem;
  padding-top: calc(var(--dev-banner-h) + var(--nav-h) + 3rem);
}
.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose h1 { font-family: var(--font-display); font-size: 2.5rem; color: var(--blue-dark); margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.2rem; font-weight: 700; color: var(--blue-dark); margin: 2rem 0 .75rem; }
.prose p { font-size: .97rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.prose a { color: var(--blue-mid); }
.prose ul { margin: .75rem 0 1rem 1.5rem; list-style: disc; }
.prose ul li { font-size: .97rem; color: var(--text-muted); margin-bottom: .4rem; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav mobile */
  .nav-list {
    z-index: 950;
    position: fixed;
    inset-block-start: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    inset-inline: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(calc(-100% - var(--nav-h) - env(safe-area-inset-top, 0px)));
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid rgba(15,60,92,.07);
    gap: .25rem;
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list a { padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: 1rem; }
  .nav-list .nav-cta { text-align: center; margin-left: 0; margin-top: .5rem; }
  .menu-toggle { display: flex; }

  /* Hero mobilon – szöveg ELŐSZÖR, kép utána */
  .hero { min-height: auto; padding-bottom: 0; }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    gap: 1.5rem;
  }
  .hero-text { order: 1; padding-block: 0; }
  .hero-visual { order: 2; align-self: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-img-wrap { border-radius: var(--radius-lg); aspect-ratio: 16/10; max-width: 100%; }
  .hero-badge { position: static; display: inline-flex; margin-top: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Grids */
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .hero-chips { gap: .4rem; }
}

/* ── ABOUT oldal 2-oszlopos layout mobilon ── */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:0.9fr"],
  [style*="grid-template-columns: 0.9fr"] {
    grid-template-columns: 1fr !important;
  }
  .hero-chips .chip { font-size: .72rem; padding: .25rem .55rem; }
  .stat-number { font-size: 2.4rem; }
}
