/* ============================================================
   BabyCenter Klub – Kelengye-tanácsadás Landing
   Stíluslap — pure CSS, build tool nélkül
   ============================================================ */

/* ── 1. RESET & CSS VÁLTOZÓK ────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* BabyCenter bordó brand színek */
  --bc-brand:       #a41124;
  --bc-brand-dark:  #7f0d1b;
  --bc-brand-soft:  #c94352;
  --bc-brand-pale:  #f8e8ea;
  --bc-gold:        #c89b55;
  --bc-cream:       #faf6f0;
  --bc-text:        #2c2523;

  /* Strukturális változók (visszafelé kompatibilis aliasok) */
  --clr-bg:         var(--bc-cream);
  --clr-bg-warm:    #FFF8F4;
  --clr-bg-alt:     #eef2ee;
  --clr-bg-white:   #FFFFFF;
  --clr-brand:      var(--bc-brand);
  --clr-brand-dk:   var(--bc-brand-dark);
  --clr-brand-lt:   var(--bc-brand-pale);
  --clr-text:       var(--bc-text);
  --clr-text-md:    #6B5E58;
  --clr-text-lt:    #9C8880;
  --clr-border:     #E8DDD5;
  --clr-footer:     #2E2620;
  --clr-footer-txt: #C0AEA6;

  /* Tipográfia */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue',
          Arial, 'Noto Sans', sans-serif;

  /* Tér */
  --section-pad: 80px;
  --radius:      16px;
  --radius-sm:   8px;
  --radius-pill: 50px;

  /* Árnyék */
  --shadow:    0 4px 24px rgba(58, 51, 46, .08);
  --shadow-md: 0 8px 32px rgba(58, 51, 46, .12);

  /* Animáció */
  --ease: .2s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── 2. SEGÉDOSZTÁLYOK ──────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-title {
  font-size: clamp(22px, 3vw, 34px);
  text-align: center;
  margin-bottom: 48px;
  color: var(--clr-text);
}

.section-lead {
  text-align: center;
  color: var(--clr-text-md);
  max-width: 680px;
  margin: -28px auto 48px;
  font-size: 16px;
  line-height: 1.75;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ── 3. GOMBOK ──────────────────────────────────────────────── */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-nav,
.btn-submit,
.btn-sticky {
  display: inline-block;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  text-align: center;
  cursor: pointer;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease),
              box-shadow var(--ease);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--clr-brand);
  color: #fff;
  padding: 14px 28px;
  border-color: var(--clr-brand);
}
.btn-primary:hover {
  background: var(--clr-brand-dk);
  border-color: var(--clr-brand-dk);
  box-shadow: 0 4px 16px rgba(164, 17, 36, .3);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-brand);
  padding: 14px 28px;
  border-color: var(--clr-brand);
}
.btn-secondary:hover {
  background: var(--clr-brand);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--clr-text);
  padding: 11px 24px;
  border-color: var(--clr-border);
  font-size: 14px;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--clr-brand);
  color: var(--clr-brand);
}

/* ── 4. NAVBAR ──────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}

.logo {
  display: block;
  flex: 0 0 auto;
  min-width: 200px;
  line-height: 1;
}
.logo img {
  width: clamp(180px, 18vw, 300px);
  max-height: 64px;
  object-fit: contain;
  display: block;
}
.logo-baby   { font-size: 20px; font-weight: 800; color: var(--clr-brand); }
.logo-center { font-size: 20px; font-weight: 800; color: var(--clr-text); }
.logo-klub   {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--clr-text-lt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--clr-text-md);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--clr-brand); background: var(--clr-brand-lt); }

.btn-nav {
  background: var(--clr-brand);
  color: #fff;
  padding: 9px 20px;
  font-size: 14px;
  flex-shrink: 0;
  border-radius: var(--radius-pill);
  border: 2px solid var(--clr-brand);
}
.btn-nav:hover { background: var(--clr-brand-dk); border-color: var(--clr-brand-dk); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger { position: relative; }
.hamburger::before,
.hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -6px; }
.hamburger::after  { top:  6px; }

/* ── 5. WELCOME BANNER ──────────────────────────────────────── */
.welcome-banner {
  background: #FDF5E6;
  border-bottom: 1px solid #F0E5D0;
  padding: 11px 0;
  font-size: 14px;
  text-align: center;
  color: var(--clr-text-md);
  line-height: 1.5;
}
.welcome-banner strong { color: var(--clr-text); }

/* ── 6. HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #FAF6F0 0%, var(--bc-brand-pale) 60%, #FAF6F0 100%);
  padding: 56px 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.hero-content { padding-bottom: 56px; }

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-brand);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--clr-text);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--clr-text-md);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Form doboz */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
  border-top: 4px solid var(--clr-brand);
  margin-bottom: -2px; /* vizuálisan „beleúszik" a trust sávba */
}

.form-card-title {
  font-size: 22px;
  color: var(--clr-brand);
  margin-bottom: 8px;
  line-height: 1.3;
}

.form-card-subtitle {
  font-size: 13px;
  color: var(--clr-text-md);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Űrlap */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

.required { color: var(--clr-brand); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 13px;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--clr-text);
  background: #FDFAF8;
  transition: border-color var(--ease), background var(--ease);
  width: 100%;
  min-height: 44px; /* akadálymentesség */
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clr-brand);
  background: #fff;
}
.form-group input.field-error,
.form-group select.field-error,
.form-group textarea.field-error {
  border-color: #E03060;
  background: #FFF5F7;
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* Select nyíl */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%233A332E'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

/* Checkbox */
.form-checkbox { margin-top: 2px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--clr-text-md);
  line-height: 1.55;
  user-select: none;
}
.checkbox-label input[type="checkbox"] {
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--clr-brand);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* Submit gomb */
.btn-submit {
  background: var(--clr-brand);
  color: #fff;
  padding: 15px 24px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 700;
  border: none;
  width: 100%;
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--clr-brand-dk);
  box-shadow: 0 4px 16px rgba(164, 17, 36, .3);
  transform: translateY(-1px);
}

/* Siker üzenet */
.form-success {
  text-align: center;
  padding: 32px 16px;
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3   { font-size: 22px; margin-bottom: 12px; }
.form-success p    { color: var(--clr-text-md); font-size: 16px; line-height: 1.7; }

/* ── 7. TRUST BADGES ────────────────────────────────────────── */
.trust-badges {
  background: #fff;
  border-bottom: 1px solid var(--clr-border);
  padding: 28px 0;
}

.trust-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
}
.trust-icon { font-size: 18px; flex-shrink: 0; }

/* ── 8. MIÉRT MI ────────────────────────────────────────────── */
.why-us { background: var(--clr-bg); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon { margin-bottom: 18px; }
.card h3   { font-size: 18px; margin-bottom: 10px; }
.card p    { font-size: 15px; color: var(--clr-text-md); line-height: 1.7; }

/* ── 9. HOGYAN MŰKÖDIK ──────────────────────────────────────── */
.how-it-works {
  background: linear-gradient(180deg, #FFF8F4 0%, var(--clr-bg) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.step {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--clr-brand);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p  { font-size: 14px; color: var(--clr-text-md); line-height: 1.7; }

.step-arrow {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

/* ── 10. KENÉZY SZEKCIÓ ─────────────────────────────────────── */
.kenezy { background: var(--clr-bg); }

.kenezy-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}

/* Galéria */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
}
.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-ph-1 { background: linear-gradient(135deg, #DDD0C8, #C8B8AE); }
.img-ph-2 { background: linear-gradient(135deg, #C8B8AE, #B8A899); }
.img-ph-3 { background: linear-gradient(135deg, #BEB0A6, #AEA098); }
.img-ph-4 { background: linear-gradient(135deg, #B0A09A, #A09088); }
.img-ph-label {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* TikTok embed */
.tiktok-embed-wrap {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}
.tiktok-embed-wrap .tiktok-embed {
  max-width: 400px;
  min-width: 280px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .tiktok-embed-wrap .tiktok-embed {
    max-width: 100%;
    min-width: 0;
  }
}

.tiktok-link-text {
  font-size: 13px;
  color: var(--clr-text-md);
  text-align: center;
}
.tiktok-link-text a {
  color: var(--clr-brand);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color var(--ease);
}
.tiktok-link-text a:hover { text-decoration-color: var(--clr-brand); }

/* Kenézy rendezvényfotók */
.event-photo {
  margin: 0;
  overflow: visible;  /* felülírja a .gallery-item overflow:hidden-jét */
  aspect-ratio: unset; /* az arány az img-en van, nem a figure-n */
}
.event-photo img {
  width: 100%;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.event-photo figcaption {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bc-text);
  font-weight: 600;
  text-align: left;
  opacity: 1;
  visibility: visible;
}

.kenezy-footer-text {
  text-align: center;
  color: var(--clr-text-md);
  font-size: 15px;
}
.kenezy-footer-text a {
  color: var(--clr-brand);
  font-weight: 600;
  text-decoration: underline;
}

/* ── 11. ÚJSZÜLÖTT KEZDŐLISTA ───────────────────────────────── */
.kezdolista { background: var(--clr-bg-alt); }

.kezdolista-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Kelengyelista grafika */
.kezdolista-img {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kezdolista-img a {
  display: block;
}
.kezdolista-img img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--ease);
}
.kezdolista-img a:hover img {
  box-shadow: var(--shadow-md), 0 0 0 3px var(--bc-brand-pale);
}

/* Kelengyelista info doboz */
.kezdolista-note {
  background: #fff;
  border-left: 4px solid var(--bc-brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--clr-text-md);
  line-height: 1.75;
}
.kezdolista-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--clr-text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
}

/* Tartalom */
.kezdolista-content h2 { margin-bottom: 16px; }
.kezdolista-content p  { color: var(--clr-text-md); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--bc-text);
}
.feature-check {
  color: var(--bc-brand);
  font-size: 16px;
  flex-shrink: 0;
}

/* ── 12. FAQ ────────────────────────────────────────────────── */
.faq { background: #fff; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item[open] { border-color: var(--clr-brand); }

.faq-item summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 56px; /* érintési terület */
  user-select: none;
  transition: background var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--clr-brand);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: #FDF8F5; }

.faq-answer {
  padding: 0 20px 18px;
  animation: faqSlide .2s ease;
}
.faq-answer p {
  color: var(--clr-text-md);
  font-size: 15px;
  line-height: 1.75;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0);    }
}

/* ── 13. WEBSHOP ÁTVEZETÉS ──────────────────────────────────── */
.webshop { background: var(--clr-bg); border-top: 1px solid var(--clr-border); }

.webshop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.webshop-content { flex: 1; min-width: 240px; }
.webshop-content h4  { font-size: 20px; margin-bottom: 8px; }
.webshop-content p   { color: var(--clr-text-md); font-size: 15px; line-height: 1.7; max-width: 520px; }

/* ── 14. SOCIAL ─────────────────────────────────────────────── */
.social {
  background: linear-gradient(135deg, var(--bc-brand-pale) 0%, var(--clr-bg) 100%);
}

.social-inner { text-align: center; }
.social-inner h2 { margin-bottom: 14px; }
.social-inner p  {
  color: var(--clr-text-md);
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 36px;
}

.social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  min-height: 48px; /* akadálymentesség */
  transition: transform var(--ease), opacity var(--ease), box-shadow var(--ease);
}
.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.facebook  { background: #1877F2; }
.instagram { background: linear-gradient(45deg, #E1306C 0%, #833AB4 50%, #F77737 100%); }
.tiktok    { background: #010101; }
.youtube   { background: #FF0000; }

/* ── 15. FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--clr-footer);
  color: var(--clr-footer-txt);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: block;
  margin-bottom: 14px;
}
.footer-logo .logo-baby   { font-size: 22px; font-weight: 800; color: var(--clr-brand); }
.footer-logo .logo-center { font-size: 22px; font-weight: 800; color: #fff; }
.footer-logo .logo-klub   {
  font-size: 10px;
  font-weight: 400;
  color: var(--clr-footer-txt);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.footer-col p { font-size: 14px; line-height: 1.85; }
.footer-col p + p { margin-top: 4px; }
.footer-col a { transition: color var(--ease); }
.footer-col a:hover { color: #fff; }

.footer-col h4 {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  text-align: center;
  color: #7A6860;
}

/* ── 16. STICKY MOBIL CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 246, 240, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--clr-border);
  display: none; /* JS mutatja mobilon */
  transition: opacity var(--ease);
}
.sticky-cta--visible { display: flex; }

.btn-sticky {
  display: block;
  width: 100%;
  background: var(--clr-brand);
  color: #fff;
  padding: 15px 20px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: none;
}
.btn-sticky:hover { background: var(--clr-brand-dk); }

/* ── 17. RESZPONZÍV ─────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links a { padding: 8px 9px; font-size: 13px; }
  .kenezy-layout { grid-template-columns: 1fr 320px; }
  .kezdolista-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
}

/* Széles mobil / kis tablet */
@media (max-width: 900px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-content  { padding-bottom: 0; }
  .form-card     { margin-bottom: 0; }

  .cards-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .step-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .kenezy-layout       { grid-template-columns: 1fr; }
  .kenezy-video-col    { max-width: 340px; margin: 0 auto; width: 100%; }

  .kezdolista-inner { grid-template-columns: 1fr; gap: 32px; }
  .book-placeholder { order: -1; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobil */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Logó méretkorlátozás mobilon */
  .logo { min-width: 140px; }
  .logo img { width: 150px; max-height: 48px; }

  /* Kenézy fotó képaláírás mobilon */
  .event-photo figcaption { font-size: 13px; }

  /* Nav hamburger */
  .nav-toggle { display: block; }
  .btn-nav    { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px 16px;
    border-bottom: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open   { display: flex; }
  .nav-links a      { padding: 12px 14px; font-size: 15px; border-radius: var(--radius-sm); }
  .navbar           { position: sticky; overflow: visible; }

  /* Hero */
  .hero-cta          { flex-direction: column; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; }

  /* Trust */
  .trust-inner { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Webshop */
  .webshop-inner { flex-direction: column; align-items: flex-start; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; }

  /* Sticky CTA */
  body { padding-bottom: 76px; }
}

/* Kis mobil */
@media (max-width: 480px) {
  .container  { padding: 0 16px; }
  .form-card  { padding: 24px 18px; }
  .section-title { font-size: 20px; }
  .hero-content h1 { font-size: 26px; }
  .gallery-grid { gap: 8px; }
  .social-icon span { display: none; } /* csak ikon mobilon */
  .social-icon { padding: 12px; border-radius: 50%; }
}

/* ── 18. HONEYPOT ───────────────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ── 19. FORM HIBAÜZENET (szerveroldali hiba esetén) ────────── */
.form-error {
  background: #FFF5F7;
  border: 1.5px solid #E03060;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
}
.form-error p {
  color: #B01040;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

/* Preferált mozgáscsökkentés */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
