/* ═══════════════════════════════════════════════
   SOMLI KALANDJAI – style.css
   Pontos másolat az eredeti design alapján
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fredoka+One&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand colours – kiolvasva a képből */
  --green-dark:    #1f5c3a;
  --green-mid:     #2d7a52;
  --green-light:   #6abf82;
  --teal:          #1a7c6e;
  --teal-btn:      #1e8c7a;
  --teal-dark:     #155f56;
  --yellow:        #f5a623;
  --yellow-light:  #fde8a0;
  --cream:         #fdf6e3;
  --cream2:        #f5ede0;
  --parchment:     #f0e6c8;
  --parchment-dark:#e0d0a0;
  --brown:         #6b4226;
  --brown-light:   #a07048;
  --purple:        #7b5ea7;
  --purple-light:  #c4b5e5;
  --purple-bg:     #ede8f5;
  --white:         #ffffff;
  --text-dark:     #2c3a2d;
  --text-mid:      #4a5c4b;
  --text-light:    #7a8e7b;
  --shadow:        rgba(0,0,0,.12);
  --shadow-green:  rgba(30,140,122,.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.25rem;
  color: var(--green-dark);
  line-height: 1.1;
}
.nav-logo img    { width: 44px; height: 44px; }
.nav-logo-text   { display: flex; flex-direction: column; }
.nav-logo-text span { display: block; }
.nav-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links li a {
  color: var(--text-dark);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links li a:hover { color: var(--teal); }

.btn-nav {
  background: var(--teal-btn);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 800 !important;
  font-size: .88rem !important;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 14px var(--shadow-green);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-nav:hover {
  background: var(--green-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-green);
}
.btn-nav .icon { font-size: 1rem; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  background-image: url('assets/Web/1hatter.png');
  background-size: cover;
  /*background: linear-gradient(155deg, #e2f3da 0%, #cde8cc 35%, #b4d9bc 70%, #9ecfaa 100%);*/
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 56px 64px 48px;
  overflow: hidden;
}

/* Subtle dot texture overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(116,198,157,.18) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Hill silhouette at bottom */
/*.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: -5%; right: -5%;
  height: 100px;
  background: var(--cream);
  border-radius: 60% 60% 0 0 / 80px 80px 0 0;
  pointer-events: none;
} */

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 520px;
}

.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.85rem;
  line-height: 1.08;
  color: var(--green-dark);
  text-shadow: 2px 3px 0 rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: .98rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 600;
}
.hero-desc strong { color: var(--green-dark); font-weight: 900; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-btn);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 40px;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: 0 6px 22px var(--shadow-green);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--shadow-green);
}

.hero-badges {
  display: flex;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.85);
}
.hero-badge .badge-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.9);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* Mascot on swing */
.hero-mascot-wrap {
  position: absolute;
  right: 60px;
  bottom: 0;
  z-index: 3;
  width: 380px;
}
.hero-mascot-wrap img {
  width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.15));
  animation: float 3.5s ease-in-out infinite;
}

/* Speech bubble */
.speech-bubble {
  position: absolute;
  right: 400px;
  top: 80px;
  z-index: 4;
  background: var(--white);
  border-radius: 18px;
  padding: 13px 18px;
  font-size: .78rem;
  font-weight: 900;
  color: var(--green-dark);
  text-align: center;
  line-height: 1.4;
  max-width: 130px;
  box-shadow: 0 5px 18px rgba(0,0,0,.14);
  animation: float 3.5s ease-in-out infinite;
  animation-delay: .3s;
}
.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border: 11px solid transparent;
  border-top-color: var(--white);
  border-bottom: 0;
}

@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-14px); }
}

/* ══════════════════════════════════════
   FEATURES / PARCHMENT SECTION
══════════════════════════════════════ */
.features-section {
  background: var(--cream2);
  padding: 64px 64px 56px;
  display: flex;
  gap: 52px;
  align-items: flex-start;
}

.features-left { flex: 1; }

.features-title {
  font-family: 'Fredoka One', cursive;
  font-size: 1.65rem;
  color: var(--green-dark);
  margin-bottom: 2px;
}
.features-sub {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 700;
  margin-bottom: 32px;
}

/* Parchment card background */
.features-parchment {
  background: linear-gradient(145deg, var(--parchment) 0%, #e8d8a8 100%);
  border-radius: 20px;
  padding: 32px;
  border: 2px solid var(--parchment-dark);
  box-shadow: 0 6px 24px rgba(107,66,38,.15);
  position: relative;
}
.features-parchment::before {
  content: '';
  position: absolute; inset: 4px;
  border: 1px dashed rgba(107,66,38,.18);
  border-radius: 16px;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.feature-card { display: flex; flex-direction: column; align-items: center; text-align: center; }
.feature-card .fi {
  width: 58px; height: 58px;
  margin-bottom: 10px;
}
.feature-card .fi img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h4 {
  font-size: .75rem;
  font-weight: 900;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: .76rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* Right side photo */
.features-right { flex: 0 0 270px; }
.features-right .somlo-photo {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  margin-bottom: 14px;
  overflow: hidden;
}
.features-note {
  font-size: .88rem;
  font-weight: 800;
  color: var(--brown);
  text-align: right;
  font-style: italic;
  line-height: 1.5;
  position: relative;
  padding-right: 8px;
}
.features-note::before {
  content: '↙';
  display: block;
  font-size: 1.4rem;
  text-align: right;
  margin-bottom: 4px;
}

/* ══════════════════════════════════════
   8 ÁLLOMÁS BANNER
══════════════════════════════════════ */
.stations-banner {
  background: var(--teal);
  padding: 30px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stations-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.06) 50%, transparent 100%);
}
.stations-banner h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.stations-banner p {
  color: rgba(255,255,255,.88);
  font-weight: 600;
  font-size: .95rem;
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.how-section {
  background: var(--cream);
  padding: 64px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.85rem;
  color: var(--green-dark);
  margin-bottom: 0;
}
.section-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 8px 0 0;
}
.section-divider span { font-size: 1.1rem; }

.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step {
  text-align: center;
  max-width: 140px;
  padding: 0 8px;
}
.step-icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 12px;
  background: var(--white);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  font-size: 2.2rem;
}
.step-num {
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.step h4 {
  font-size: .78rem;
  font-weight: 900;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 6px;
  line-height: 1.3;
}
.step p {
  font-size: .72rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.step-arrow {
  font-size: 2rem;
  color: var(--green-light);
  align-self: center;
  padding-bottom: 36px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   AGE GROUPS
══════════════════════════════════════ */
.age-section {
  background: var(--cream2);
  padding: 64px;
}
.age-grid {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}

.age-card {
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
}
.age-card.young  { background: linear-gradient(135deg, #ddf0de 0%, #c4e3cc 100%); }
.age-card.older  { background: linear-gradient(135deg, #ede8f5 0%, #d8cded 100%); }

.age-card .card-mascot {
  position: absolute;
  bottom: 0; right: 0;
  width: 140px;
  height: auto;
  opacity: 1;
}

.age-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 2px;
}
.age-card.young h3 { color: var(--green-dark); }
.age-card.older h3 { color: var(--purple); }

.age-label {
  font-size: .72rem;
  font-weight: 900;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.age-card p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 260px;
}

.btn-green {
  display: inline-block;
  background: var(--teal-btn);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 4px 14px var(--shadow-green);
  transition: background .2s, transform .15s;
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn-purple {
  display: inline-block;
  background: var(--purple);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 30px;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 4px 14px rgba(123,94,167,.35);
  transition: background .2s, transform .15s;
}
.btn-purple:hover { background: #5e4585; transform: translateY(-2px); }

/* Middle sign */
.age-middle { text-align: center; }
.age-sign {
  background: var(--yellow);
  border-radius: 14px;
  padding: 20px 18px;
  font-weight: 900;
  font-size: .9rem;
  color: var(--brown);
  line-height: 1.45;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transform: rotate(-4deg);
  display: inline-block;
  position: relative;
}
.age-sign::after {
  content: '';
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 22px;
  background: var(--brown-light);
  border-radius: 0 0 4px 4px;
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(155deg, #ddf0de 0%, #e8f5e2 50%, #d4ebd6 100%);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(116,198,157,.15) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-inner { position: relative; z-index: 2; }

.cta-mascot-img {
  width: 120px;
  margin: 0 auto 20px;
  animation: float 3.5s ease-in-out infinite;
}
.cta-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: var(--green-dark);
  margin-bottom: 18px;
  line-height: 1.25;
}
.cta-section p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 34px;
  line-height: 1.7;
}

/* ══════════════════════════════════════
   VALUE BAR
══════════════════════════════════════ */
.value-bar {
  background: var(--cream2);
  border-top: 2px solid #e0d4bc;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 30px 64px;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
}
.value-icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #253226;
  color: rgba(255,255,255,.7);
  padding: 52px 64px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 44px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo img { width: 42px; height: 42px; }
.footer-logo-text {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.1;
}
.footer-logo-sub {
  font-family: 'Nunito', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  color: var(--green-light);
  display: block;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.footer-about p {
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
}

footer h4 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul li a {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s;
}
footer ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: .82rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact a { color: rgba(255,255,255,.6); transition: color .2s; }
.footer-contact a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--teal-btn); color: var(--white); }

.footer-newsletter-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 12px;
}
.newsletter-form {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0,0,0,.2);
}
.newsletter-form input {
  flex: 1;
  padding: 11px 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-right: none;
  border-radius: 10px 0 0 10px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  outline: none;
  transition: background .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { background: rgba(255,255,255,.15); }
.newsletter-form button {
  background: var(--teal-btn);
  color: var(--white);
  border: none;
  padding: 11px 16px;
  border-radius: 0 10px 10px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: .75rem;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green-dark); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}
.footer-bottom a {
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-bottom-links { display: flex; gap: 16px; }

/* ══════════════════════════════════════
   UTILITIES & ANIMATIONS
══════════════════════════════════════ */
.text-center { text-align: center; }

/* Fade-in on scroll simulation via CSS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp .6s ease forwards;
}

/* ══════════════════════════════════════
   HAMBURGER GOMB
══════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
  z-index: 201;
}
.nav-hamburger:hover { background: rgba(0,0,0,.06); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════════════
   RESPONSIVE (alapszintű)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-mascot-wrap { width: 280px; right: 20px; }
  .speech-bubble    { right: 280px; }
  .hero h1          { font-size: 2.2rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }

  /* Hamburger megjelenik */
  .nav-hamburger { display: flex; }

  /* Mobilmenü – alapból rejtve */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 0 20px;
    box-shadow: 0 10px 32px rgba(0,0,0,.15);
    gap: 0;
    z-index: 198;
    border-top: 2px solid var(--green-light);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a {
    display: block;
    padding: 15px 24px;
    font-size: .97rem;
    color: var(--text-dark);
  }
  .nav-links li a:hover { color: var(--teal); background: rgba(0,0,0,.03); }

  /* CTA gomb mobilon */
  .btn-nav {
    margin: 12px 20px 4px !important;
    justify-content: center;
    border-radius: 30px !important;
    padding: 14px 22px !important;
    font-size: .95rem !important;
    box-shadow: 0 4px 16px var(--shadow-green) !important;
  }

  /* Hero */
  .hero         { flex-direction: column; padding: 40px 24px 120px; }
  .hero-mascot-wrap { position: absolute; width: 200px; right: 10px; bottom: 0; }
  .speech-bubble    { display: none; }

  /* Sections */
  .features-section { flex-direction: column; padding: 40px 24px; }
  .features-right   { flex: unset; width: 100%; }
  .age-grid { grid-template-columns: 1fr; }
  .age-middle { order: -1; }
  .steps-row  { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin: 4px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .value-bar   { gap: 28px; padding: 24px; }
  section, .features-section, .how-section, .age-section, .cta-section { padding: 40px 24px; }
  .stations-banner, footer { padding-left: 24px; padding-right: 24px; }
}
