/* ---------- Reset & base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #fff8ec;
  --white: #ffffff;
  --sun: #ffc93c;
  --sun-dark: #ffab00;
  --coral: #ff7a59;
  --coral-dark: #ff5630;
  --sky: #4ec5f1;
  --sky-dark: #1fa8da;
  --grass: #6fcf6f;
  --grass-dark: #45b26b;
  --pink: #ff8fc7;
  --pink-dark: #ff5fae;
  --text: #2e3a46;
  --text-muted: #6b7a86;
  --border: #ffe3b3;
  --card-bg: #ffffff;
  --shadow: 0 6px 20px rgba(255, 138, 80, 0.16);
  --shadow-lg: 0 16px 40px rgba(255, 106, 80, 0.22);
  --radius: 22px;
  --radius-sm: 14px;
  --max-width: 1120px;
  --transition: 0.25s ease;
  --primary: var(--coral);
  --primary-dark: var(--coral-dark);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Quicksand", "Segoe UI", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
  font-family: "Baloo 2", "Quicksand", sans-serif;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; position: relative; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: color-mix(in srgb, var(--coral) 14%, transparent);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.section-head p { color: var(--text-muted); font-size: 1.02rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 1rem;
  font-family: "Baloo 2", sans-serif;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--sun));
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(255, 122, 89, 0.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 30px rgba(255, 122, 89, 0.5); }
.btn-ghost { background: var(--white); border: 3px solid var(--sky); color: var(--sky-dark); }
.btn-ghost:hover { background: var(--sky); color: #fff; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Top brand bar (logo only, no classic nav) ---------- */
.brand-bar {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo {
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.logo .dot-o { color: var(--sky-dark); }
.logo .blob {
  width: 34px; height: 34px;
  border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%;
  background: linear-gradient(135deg, var(--sun), var(--coral));
  display: inline-block;
}

/* ---------- Decorative blobs & floats ---------- */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.float-char {
  position: absolute;
  animation: floaty 5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 60px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 2px dashed var(--sun-dark);
  color: var(--coral-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); line-height: 1.1; margin-bottom: 18px; color: var(--text); }
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--coral), var(--pink-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-art {
  position: relative;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--sky), var(--grass));
}
.hero-art img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 30px 0 10px; }
.stat-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 22px 12px;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
}
.stat-num { font-family: "Baloo 2", sans-serif; font-size: clamp(1.6rem, 3.6vw, 2.3rem); font-weight: 800; color: var(--coral-dark); }
.stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; font-weight: 700; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card-bg);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-8px) rotate(-0.5deg); box-shadow: var(--shadow-lg); border-color: var(--sun); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.08) rotate(1deg); }
.card-body { padding: 22px; }
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  background: var(--sky);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.card-body p { color: var(--text-muted); font-size: 0.92rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.card-link { color: var(--coral-dark); font-weight: 800; font-size: 0.9rem; }

/* ---------- Skills / feature strip ---------- */
.skills-strip { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.skill-pill {
  padding: 11px 22px;
  border-radius: 999px;
  border: 3px solid var(--border);
  background: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--text);
}
.skill-pill:nth-child(4n+1) { border-color: var(--sun); }
.skill-pill:nth-child(4n+2) { border-color: var(--sky); }
.skill-pill:nth-child(4n+3) { border-color: var(--grass); }
.skill-pill:nth-child(4n+4) { border-color: var(--pink); }

/* ---------- Testimonial carousel ---------- */
.carousel { position: relative; max-width: 700px; margin: 0 auto; }
.carousel-track-wrap { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.5s ease; }
.carousel-slide { min-width: 100%; padding: 44px; text-align: center; background: var(--white); border: 3px solid var(--border); }
.carousel-slide p.quote { font-size: 1.15rem; margin-bottom: 20px; }
.carousel-slide .person { font-weight: 800; color: var(--coral-dark); }
.carousel-slide .role { color: var(--text-muted); font-size: 0.85rem; }
.carousel-controls { display: flex; justify-content: center; gap: 14px; margin-top: 20px; align-items: center; }
.carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--sun);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--coral-dark);
}
.carousel-arrow:hover { background: var(--sun); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; background: var(--border); border: none; padding: 0; }
.carousel-dots button.active { background: var(--coral); width: 24px; border-radius: 6px; }

/* ---------- Page hero (sub pages) ---------- */
.page-hero { padding: 56px 0 36px; text-align: center; }
.page-hero h1 { font-size: clamp(2.1rem, 4vw, 2.9rem); margin-bottom: 14px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- Filters ---------- */
.filter-row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 3px solid var(--border);
  background: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.filter-btn.active { background: var(--coral); border-color: var(--coral); color: #fff; }

.gallery-item { cursor: pointer; }
.gallery-item.hidden { display: none; }

/* ---------- Modal / Lightbox ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(46, 58, 70, 0.55);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  z-index: 400;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--card-bg);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--sun);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-media { aspect-ratio: 16/9; overflow: hidden; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 28px; }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none;
  z-index: 5;
  font-weight: 800;
}
.modal-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.modal-body p { color: var(--text-muted); margin-bottom: 16px; }
.modal-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.modal-meta span { font-size: 0.78rem; font-weight: 800; padding: 5px 12px; border-radius: 999px; background: var(--sky); color: #fff; }
.modal-simple .modal-body { text-align: center; padding: 40px 28px; }

/* ---------- Mini game widgets ---------- */
.widget-card {
  background: var(--white);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.widget-card h3 { margin-bottom: 6px; }
.widget-card .desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; }

.memory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 340px; margin: 0 auto; }
.memory-card {
  aspect-ratio: 1;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--grass));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: transparent;
  transition: transform 0.4s, background var(--transition), color var(--transition);
  border: none;
}
.memory-card.flipped, .memory-card.matched { background: var(--white); border: 3px solid var(--sun); color: var(--text); }
.memory-card.matched { opacity: 0.55; }
.memory-status { text-align: center; margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; font-weight: 700; }

.count-game { text-align: center; }
.count-display {
  font-size: 3.5rem;
  margin: 10px 0 20px;
  min-height: 70px;
}
.count-options { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.count-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--sky);
  background: var(--white);
  font-family: "Baloo 2", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky-dark);
}
.count-btn:hover { background: var(--sky); color: #fff; }
.count-btn.correct { background: var(--grass); border-color: var(--grass-dark); color: #fff; }
.count-btn.wrong { background: var(--coral); border-color: var(--coral-dark); color: #fff; }
.count-status { margin-top: 16px; font-weight: 800; color: var(--coral-dark); min-height: 24px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { border-color: var(--coral); }
.price-badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--sun));
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.price-card .plan-icon { font-size: 2.4rem; margin-bottom: 10px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.price-card .plan-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 18px; }
.price-amount { font-family: "Baloo 2", sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--coral-dark); margin-bottom: 4px; }
.price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 700; }
.price-features { list-style: none; text-align: left; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--text); }
.price-features li .check { color: var(--grass-dark); font-weight: 800; }
.payments-note {
  max-width: 640px; margin: 50px auto 0;
  background: var(--white);
  border: 3px dashed var(--sky);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; font-size: 0.92rem; color: var(--text); }
.form-field .hint { font-weight: 500; color: var(--text-muted); font-size: 0.8rem; }
.form-field input, .form-field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 3px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--sky); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field.invalid input, .form-field.invalid textarea { border-color: var(--coral-dark); }
.field-error { color: var(--coral-dark); font-size: 0.8rem; font-weight: 700; display: none; }
.form-field.invalid .field-error { display: block; }
.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 800;
}
.form-status.show { display: block; }
.form-status.success { background: color-mix(in srgb, var(--grass) 20%, transparent); color: var(--grass-dark); }
.form-status.error { background: color-mix(in srgb, var(--coral) 18%, transparent); color: var(--coral-dark); }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info-card { background: var(--white); border: 3px solid var(--border); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; }
.contact-info-card .label { color: var(--text-muted); font-size: 0.78rem; text-transform: uppercase; font-weight: 800; letter-spacing: 0.04em; margin-bottom: 4px; }
.contact-info-card .value { font-weight: 800; }
.contact-mode-toggle { display: flex; gap: 10px; margin-bottom: 20px; }
.contact-mode-toggle button {
  flex: 1;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 3px solid var(--border);
  background: var(--white);
  font-weight: 800;
  color: var(--text-muted);
}
.contact-mode-toggle button.active { border-color: var(--sky); color: var(--sky-dark); background: color-mix(in srgb, var(--sky) 12%, transparent); }

/* ---------- Footer ---------- */
.site-footer { padding: 60px 0 100px; text-align: center; }
.site-footer .logo { justify-content: center; margin-bottom: 14px; }
.site-footer p { color: var(--text-muted); max-width: 420px; margin: 0 auto 18px; }
.footer-links { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; margin-bottom: 18px; font-weight: 800; }
.footer-links a { color: var(--coral-dark); }
.footer-bottom { color: var(--text-muted); font-size: 0.82rem; }

.back-to-top {
  position: fixed;
  left: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sky);
  color: var(--sky-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 90;
  font-weight: 800;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==================================================
   Bubble navigation — floating circular menu
   ================================================== */
.bubble-nav {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 500;
}
.bubble-fab {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  border: none;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.bubble-fab:hover { transform: scale(1.06); }
.bubble-fab .icon-open, .bubble-fab .icon-close { position: absolute; transition: opacity 0.2s ease, transform 0.3s ease; }
.bubble-fab .icon-close { opacity: 0; transform: rotate(-45deg); }
.bubble-nav.open .bubble-fab .icon-open { opacity: 0; transform: rotate(45deg); }
.bubble-nav.open .bubble-fab .icon-close { opacity: 1; transform: rotate(0); }
.bubble-nav.open .bubble-fab { transform: scale(1.05) rotate(90deg); }

.bubble-list { position: absolute; right: 6px; bottom: 78px; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.bubble-item {
  display: flex; align-items: center; gap: 12px;
  opacity: 0;
  transform: translateY(16px) scale(0.7);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.bubble-nav.open .bubble-item { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.bubble-nav.open .bubble-item:nth-child(4) { transition-delay: 0.02s; }
.bubble-nav.open .bubble-item:nth-child(3) { transition-delay: 0.07s; }
.bubble-nav.open .bubble-item:nth-child(2) { transition-delay: 0.12s; }
.bubble-nav.open .bubble-item:nth-child(1) { transition-delay: 0.17s; }

.bubble-item-label {
  background: var(--text);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.bubble-item-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: var(--shadow);
  border: 3px solid #fff;
}
.bubble-item[data-color="sky"] .bubble-item-circle { background: var(--sky); }
.bubble-item[data-color="grass"] .bubble-item-circle { background: var(--grass-dark); }
.bubble-item[data-color="pink"] .bubble-item-circle { background: var(--pink-dark); }
.bubble-item[data-color="sun"] .bubble-item-circle { background: var(--sun-dark); }
.bubble-item.active .bubble-item-circle { outline: 3px solid var(--text); outline-offset: 2px; }

.bubble-backdrop {
  position: fixed; inset: 0;
  background: rgba(46, 58, 70, 0.25);
  backdrop-filter: blur(2px);
  z-index: 400;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.bubble-nav.open ~ .bubble-backdrop,
.bubble-backdrop.show { opacity: 1; visibility: visible; }

/* ---------- Demo membership switcher ---------- */
.demo-bar { display: flex; justify-content: center; padding: 14px 0 0; }
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  border: 3px dashed var(--sky);
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.demo-pill .demo-tag { color: var(--sky-dark); text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.04em; }
.demo-pill [data-plan-label] { color: var(--coral-dark); }
.demo-options { display: flex; gap: 6px; }
.demo-options button {
  padding: 7px 14px;
  border-radius: 999px;
  border: 2px solid var(--border);
  background: var(--cream);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.demo-options button.active {
  background: linear-gradient(135deg, var(--coral), var(--sun));
  color: #fff;
  border-color: transparent;
}

/* ---------- Locked (premium) adventure cards ---------- */
.locked-card { position: relative; }
.locked-card .card-media { position: relative; }
.locked-card .card-media img { filter: grayscale(0.65) brightness(0.65); }
.locked-card .lock-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--text);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.locked-card .lock-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  z-index: 1;
  pointer-events: none;
}
.locked-card .unlock-hint { color: var(--coral-dark); font-weight: 800; font-size: 0.82rem; margin-top: 6px; }
.plan-status-banner {
  display: none;
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
  background: var(--white);
  border: 3px solid var(--sun);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  font-weight: 800;
  color: var(--coral-dark);
}
.plan-status-banner.show { display: block; }
.price-card.current-plan { border-color: var(--grass-dark); }
.price-card.current-plan .price-badge { background: linear-gradient(135deg, var(--grass), var(--grass-dark)); }

/* ---------- Utility ---------- */
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 10px; }
  .hero-art { order: -1; max-width: 340px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .bubble-nav { right: 18px; bottom: 18px; }
  .bubble-item-label { display: none; }
}
