/* ── GLOBAL ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

nav.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(200, 160, 106, 0.2);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--wood-dark);
  border-radius: 2px;
  transition: background 0.2s;
}

/* ── NAV OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── NAV DRAWER ── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  background: white;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.14);
  overflow-y: auto;
}
.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav-drawer-close {
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--text-mid);
  padding: 4px;
  transition: color 0.2s;
}
.nav-drawer-close:hover { color: var(--wood-dark); }

.nav-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.nav-drawer-links a {
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--wood-dark);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.2s;
}
.nav-drawer-links a:hover { color: var(--coral); }

.nav-drawer-divider {
  height: 1px;
  background: rgba(200, 160, 106, 0.2);
  margin-bottom: 24px;
}

.nav-drawer-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: auto;
}
.nav-drawer-footer-links a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  padding: 7px 0;
  transition: color 0.2s;
}
.nav-drawer-footer-links a:hover { color: var(--text-mid); }

.nav-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--wood-dark);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--wood-dark); }

.btn-nav {
  background: var(--coral);
  color: white !important;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(255, 138, 101, 0.35);
  transition: transform 0.15s, box-shadow 0.15s !important;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 138, 101, 0.45) !important;
  color: white !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffaf3 0%, #fafaf8 60%);
  text-align: center;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18;
}
.blob-1 { width: 500px; height: 500px; background: var(--sky);   top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--mint);  bottom: 0;   left: -80px;  }
.blob-3 { width: 300px; height: 300px; background: var(--yellow); top: 30%;   left: 10%;   }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
  box-shadow: 0 3px 12px rgba(255, 209, 102, 0.4);
}

.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(54px, 9vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  color: var(--wood-dark);
  margin-bottom: 24px;
}
.hero-title span { display: inline-block; }
.hero-title .wobble { color: #3dabea; }

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 44px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--coral);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255, 138, 101, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 138, 101, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text-mid);
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid var(--wood-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--text-dark);
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(255, 209, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-premium:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(255, 209, 102, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 16px 38px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* ── HERO MOCKUP ── */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.phone-shell {
  background: #2e2018;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08);
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.phone-screen {
  background: #caeafa;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.phone-screen img { width: 100%; height: 100%; display: block; }

.float-toy {
  position: absolute;
  width: 72px;
  height: 72px;
  cursor: pointer;
}
.float-toy img { width: 100%; height: 100%; transform-origin: bottom center; }
.hero-mockup .float-toy:nth-child(1) { top: -40px; left: 5%;  }
.hero-mockup .float-toy:nth-child(2) { top: -40px; right: 5%; }
.hero-mockup .float-toy:nth-child(3) { bottom: -40px; left: 10%;  }
.hero-mockup .float-toy:nth-child(4) { bottom: -40px; right: 10%; }

/* ── AWARDS BAR ── */
.awards-bar {
  background: white;
  border-top: 2px solid rgba(200, 160, 106, 0.15);
  border-bottom: 2px solid rgba(200, 160, 106, 0.15);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.award-item { display: flex; align-items: center; gap: 12px; color: var(--text-mid); font-weight: 600; font-size: 15px; }
.award-icon { font-size: 28px; }
.stars { display: flex; gap: 3px; color: var(--yellow-dark); font-size: 18px; margin-bottom: 4px; }

/* ── SECTION SHARED ── */
section { padding: 100px 40px; }

.section-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--wood-dark);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-body {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 560px;
}

/* ── ACTIVITIES ── */
.inside-section { background: white; text-align: center; }
.inside-section .section-title { margin-bottom: 14px; }
.inside-section .section-body { margin: 0 auto 64px; }

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.activity-card {
  background: transparent;
  border-radius: var(--radius-lg);
  padding: 32px 20px 24px;
  text-align: center;
  border: none;
  cursor: default;
}
.activity-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: block;
  transform-origin: bottom center;
}

@keyframes icon-bounce {
  0%   { transform: scaleX(1)    scaleY(1); }
  18%  { transform: scaleX(1.07) scaleY(0.9); }
  38%  { transform: scaleX(0.93) scaleY(1.14); }
  58%  { transform: scaleX(1.03) scaleY(0.96); }
  76%  { transform: scaleX(0.98) scaleY(1.04); }
  100% { transform: scaleX(1)    scaleY(1); }
}

.activity-icon.animate-bounce,
.float-toy img.animate-bounce {
  animation: icon-bounce 0.5s ease both;
}
.activity-icon img { width: 100%; height: 100%; }
.activity-icon.wide { width: 110px; height: 72px; }

.activity-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--wood-dark);
  margin-bottom: 8px;
}

.activity-desc { font-size: 14px; color: var(--text-mid); line-height: 1.5; }

.activity-badge {
  display: inline-block;
  margin-top: 12px;
  background: var(--yellow);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: 'Fredoka', sans-serif;
}

/* ── SPLIT SECTIONS ── */
.features-section { background: #fafaf8; }
.world-section { background: #ffffff; }

.world-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.world-image-placeholder {
  background: linear-gradient(135deg, #caeafa 0%, #b6e0c4 50%, #f8d45d 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}
.world-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.placeholder-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
  font-weight: 600;
}

.world-text .section-label { margin-bottom: 12px; }
.world-text .section-title { margin-bottom: 20px; }
.world-text .section-body  { margin-bottom: 36px; }

.world-features { display: flex; flex-direction: column; gap: 18px; }

.world-feature { display: flex; align-items: flex-start; gap: 16px; }

.world-feature-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.dot-sky    { background: #caeafa; }
.dot-mint   { background: #cef1da; }
.dot-yellow { background: #f8e9b8; }
.dot-peach  { background: #f8d0f2; }

.world-feature-text strong {
  font-family: 'Fredoka', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--wood-dark);
  display: block;
  margin-bottom: 4px;
}
.world-feature-text span { font-size: 15px; color: var(--text-mid); line-height: 1.5; }

/* ── PREMIUM ── */
/* ── STAY TUNED ── */
.stay-tuned-section {
  background: linear-gradient(145deg, #fff4ee 0%, #eef6fe 55%, #f0faf4 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 40px;
}

.stay-tuned-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob-st-1 { width: 420px; height: 420px; background: var(--coral);  top: -160px; left: -80px; }
.blob-st-2 { width: 360px; height: 360px; background: var(--sky);    bottom: -120px; right: -60px; }
.blob-st-3 { width: 280px; height: 280px; background: var(--yellow); top: 10%; right: 15%; }

.stay-tuned-toys {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.stay-tuned-toys .float-toy { position: absolute; pointer-events: auto; }
.stay-tuned-toys .float-toy:nth-child(1) { bottom: 14%; left: 14%;  width: 72px; height: 72px; }
.stay-tuned-toys .float-toy:nth-child(2) { bottom: 10%; right: 14%; width: 84px; height: 84px; }
.stay-tuned-toys .float-toy:nth-child(3) { bottom: 38%; left: 22%;  width: 60px; height: 60px; }
.stay-tuned-toys .float-toy:nth-child(4) { bottom: 34%; right: 22%; width: 60px; height: 60px; }

.stay-tuned-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.stay-tuned-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 24px;
  box-shadow: 0 3px 12px rgba(248, 212, 93, 0.45);
}

.stay-tuned-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(52px, 8vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--wood-dark);
  margin-bottom: 18px;
  display: inline-block;
  animation: wobble 3s ease-in-out infinite 0.5s backwards;
}

.stay-tuned-body {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 36px;
}

.stay-tuned-platforms {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.stay-tuned-platforms span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: var(--radius-pill);
  padding: 10px 26px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.premium-section {
  background: #fafaf8;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.premium-section::before {
  content: none;
}

.premium-inner { position: relative; max-width: 800px; margin: 0 auto; }

.premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--text-dark);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 28px;
}

.premium-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--wood-dark);
  margin-bottom: 20px;
}
.premium-subtitle { font-size: 20px; color: var(--text-mid); line-height: 1.65; margin-bottom: 56px; }

.premium-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }

.perk-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: left;
  transition: background 0.2s;
}
.perk-card:hover { background: rgba(255,255,255,0.11); }
.perk-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.perk-name { font-family: 'Fredoka', sans-serif; font-size: 18px; font-weight: 600; color: white; margin-bottom: 8px; }
.perk-text { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.55; }

.premium-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── QUOTES ── */
.quotes-section { background: #ffffff; text-align: center; }
.quotes-header { max-width: 600px; margin: 0 auto 60px; }

.coming-soon-section {
  background-color: #2e2018;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  position: relative;
}

.quotes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }

.quote-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  border: 2px solid rgba(200, 160, 106, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}
.quote-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.quote-stars { display: flex; gap: 4px; color: var(--yellow-dark); font-size: 16px; margin-bottom: 16px; }
.quote-text { font-size: 16px; color: var(--text-mid); line-height: 1.65; font-style: italic; margin-bottom: 20px; }
.quote-author { font-family: 'Fredoka', sans-serif; font-weight: 600; color: var(--wood-dark); font-size: 16px; }
.quote-role { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #fef5e7 0%, #e8f5fd 50%, #eaf7ef 100%);
  text-align: center;
  padding: 120px 40px;
}
.final-cta .section-title { margin-bottom: 20px; }
.final-cta .section-body  { margin: 0 auto 48px; }
.final-cta .hero-ctas     { margin-bottom: 36px; }
.free-note { font-size: 15px; color: var(--text-light); font-weight: 600; }

/* ── FOOTER ── */
footer {
  background: #2a2827;
  color: #ffffff;
  padding: 48px 40px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--yellow);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.footer-nav { display: flex; list-style: none; }
.footer-nav a { color: #ffffff; text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
.footer-nav a:hover { color: rgba(255,255,255,0.7); }

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.7); }
.footer-legal-links { display: flex; gap: 20px; list-style: none; }
.footer-legal-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; transition: color 0.2s; }
.footer-legal-links a:hover { color: #ffffff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stay-tuned-toys .float-toy:nth-child(3),
  .stay-tuned-toys .float-toy:nth-child(4) { display: none; }
}

@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  footer { padding-left: 24px; padding-right: 24px; }
  .nav-inner { gap: 16px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-legal { align-items: center; }
  .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 72px 24px; }
  .premium-perks { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .world-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-section .world-image-placeholder { order: -1; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 24px 60px; }
  .premium-perks { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-mockup .float-toy { width: 58px; height: 58px; }
  .hero-mockup .float-toy:nth-child(1) { top: -29px; left: 2%; }
  .hero-mockup .float-toy:nth-child(2) { top: -29px; right: 2%; }
  .hero-mockup .float-toy:nth-child(3) { bottom: -29px; left: 5%; }
  .hero-mockup .float-toy:nth-child(4) { bottom: -29px; right: 5%; }
  .stay-tuned-toys .float-toy { width: 50px; height: 50px; }
  .stay-tuned-toys .float-toy:nth-child(1) { bottom: 6%; left: 8%; }
  .stay-tuned-toys .float-toy:nth-child(2) { bottom: 4%; right: 8%; }
  .stay-tuned-section { padding: 100px 24px; }
  .awards-bar { gap: 24px; padding: 20px 24px; }
  .award-item:first-child { display: none; }
}
