/* ============================================================
   My Seedo — Fintech Modern Landing Page
   Style: GoHenry × Greenlight × semi-flat
   Fonts: Poppins (headings) + Inter (body)
   ============================================================ */

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

:root {
  --green:      #22C55E;
  --green-dark: #16A34A;
  --green-light:#DCFCE7;
  --green-bg:   #F0FDF4;
  --yellow:     #F59E0B;
  --yellow-dark:#B45309;
  --yellow-light:#FEF9C3;
  --yellow-bg:  #FFFBEB;
  --blue:       #3B82F6;
  --blue-dark:  #2563EB;
  --blue-light: #DBEAFE;
  --blue-bg:    #EFF6FF;
  --fg:         #0F172A;
  --fg-muted:   #64748B;
  --bg:         #ffffff;
  --bg-alt:     #F8FAFC;
  --white:      #ffffff;
  --border:     #E2E8F0;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.14), 0 8px 20px rgba(0,0,0,0.1);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --max-w: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);
  --pad-y: clamp(56px, 8vw, 96px);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* === SECTION SHARED === */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fg); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 0.75rem;
  padding: 5px 14px; border-radius: 999px;
  letter-spacing: 0.04em; margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  margin-bottom: 12px;
  font-weight: 800;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.nav-brand {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem;
  color: var(--fg); letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.88rem;
  color: var(--fg-muted); padding: 8px 12px; border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover { background: var(--bg-alt); color: var(--fg); }
.nav-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  background: var(--green) !important; color: white !important;
  font-family: var(--font-head) !important; font-weight: 700 !important; font-size: 0.88rem !important;
  padding: 9px 20px !important; border-radius: 999px !important;
  box-shadow: 0 2px 10px rgba(34,197,94,0.3);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  box-shadow: 0 4px 16px rgba(34,197,94,0.4);
  transform: translateY(-1px);
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--fg-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.nav-link:hover { background: var(--bg-alt); color: var(--fg); }

/* === HERO === */
.hero {
  background: var(--green-bg);
  padding: var(--pad-y) var(--pad-x);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--fg);
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  padding: 8px 18px; border-radius: 999px; width: fit-content;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--fg); line-height: 1.08; margin-bottom: 20px;
  font-weight: 800; letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}
.hero-title span { color: var(--green); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--fg-muted); line-height: 1.7;
  margin-bottom: 36px; max-width: 480px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; animation: fadeInUp 0.6s ease-out 0.3s both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(34,197,94,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,0.45);
  background: var(--green-dark);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--fg-muted);
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 999px;
  border: 2px solid var(--border);
  cursor: pointer; transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--fg-muted); color: var(--fg); transform: translateY(-1px); }

.hero-proof {
  display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; animation: fadeInUp 0.6s ease-out 0.4s both;
}
.proof-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--fg-muted);
}

/* Hero Visual — Phone Mockup */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative; animation: fadeInUp 0.7s ease-out 0.2s both;
}
.phone-frame {
  width: 280px; background: #1A1A2E; border-radius: 36px;
  padding: 12px; box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.1);
  position: relative; z-index: 1;
}
.phone-notch {
  width: 80px; height: 24px; background: #1A1A2E;
  border-radius: 0 0 16px 16px; margin: 0 auto 8px;
  position: relative; z-index: 2;
}
.phone-screen {
  background: #F8FAFC; border-radius: 28px; padding: 16px; overflow: hidden;
}
.app-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.app-logo-text {
  width: 28px; height: 28px; background: var(--green); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 0.65rem; color: white;
}
.app-nav-dots { display: flex; gap: 4px; }
.app-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: #CBD5E1; }
.app-nav-dot.active { background: var(--green); }
.app-balance {
  background: white; border-radius: 14px; padding: 12px 16px; margin-bottom: 12px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.app-balance-label { font-size: 0.65rem; color: var(--fg-muted); font-weight: 500; }
.app-balance-amount { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--fg); }
.app-jars { display: flex; gap: 8px; margin-bottom: 10px; }
.app-jar {
  flex: 1; background: white; border-radius: 12px; padding: 10px 8px;
  text-align: center; border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.jar-green { border-top: 3px solid var(--green); }
.jar-yellow { border-top: 3px solid var(--yellow); }
.jar-blue { border-top: 3px solid var(--blue); }
.app-jar-fill {
  position: absolute; bottom: 0; left: 0; right: 0;
  transition: height 0.3s;
}
.jar-green .app-jar-fill { background: rgba(34,197,94,0.15); }
.jar-yellow .app-jar-fill { background: rgba(245,158,11,0.15); }
.jar-blue .app-jar-fill { background: rgba(59,130,246,0.15); }
.app-jar-icon { font-size: 1rem; margin-bottom: 4px; }
.app-jar-label { font-size: 0.6rem; color: var(--fg-muted); font-weight: 600; }
.app-jar-amt { font-size: 0.75rem; font-weight: 700; color: var(--fg); }
.app-mission {
  background: var(--green-light); border-radius: 10px; padding: 8px 10px; margin-bottom: 10px;
  border: 1px solid rgba(34,197,94,0.2);
}
.app-mission-bar {
  height: 6px; background: rgba(34,197,94,0.2); border-radius: 999px; margin-bottom: 6px; overflow: hidden;
}
.app-mission-fill { width: 65%; height: 100%; background: var(--green); border-radius: 999px; }
.app-mission-text { font-size: 0.62rem; font-weight: 600; color: var(--green-dark); }
.app-kid {
  display: flex; align-items: center; gap: 10px;
  background: white; border-radius: 12px; padding: 10px 12px;
  border: 1px solid var(--border);
}
.app-kid-avatar { font-size: 1.4rem; }
.app-kid-name { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; }
.app-kid-level { font-size: 0.62rem; color: var(--fg-muted); }
.app-kid-badge { font-size: 0.9rem; margin-left: auto; }

/* Float cards */
.float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  border: 1px solid var(--border);
  z-index: 2; animation: float 5s ease-in-out infinite;
}
.float-card-top { top: -10px; left: -40px; animation-delay: 0s; }
.float-card-bottom { bottom: 40px; right: -40px; animation-delay: 2.5s; }
.float-card-value { font-size: 0.85rem; font-weight: 800; color: var(--fg); }
.float-card-label { font-size: 0.7rem; color: var(--fg-muted); font-weight: 500; }

/* Hero decorative circles */
.hero-deco {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.deco-1 { width: 60px; height: 60px; background: var(--yellow-light); top: 20px; right: -20px; opacity: 0.6; }
.deco-2 { width: 40px; height: 40px; background: var(--blue-light); bottom: 80px; left: -10px; opacity: 0.5; }

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === THE RULE — 40/40/20 === */
.the-rule { background: var(--bg-alt); padding: var(--pad-y) var(--pad-x); }
.the-rule-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.rule-pills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.rule-pill {
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.rule-pill:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.rule-pill-green { background: var(--green-bg); border-color: rgba(34,197,94,0.2); }
.rule-pill-yellow { background: var(--yellow-bg); border-color: rgba(245,158,11,0.2); }
.rule-pill-blue { background: var(--blue-bg); border-color: rgba(59,130,246,0.2); }

.rule-pill-icon { margin-bottom: 20px; }
.rule-pill-pct {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1;
  margin-bottom: 4px;
}
.rule-pill-green .rule-pill-pct { color: var(--green-dark); }
.rule-pill-yellow .rule-pill-pct { color: var(--yellow-dark); }
.rule-pill-blue .rule-pill-pct { color: var(--blue-dark); }
.rule-pill-name {
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px;
}
.rule-pill-green .rule-pill-name { color: var(--green-dark); }
.rule-pill-yellow .rule-pill-name { color: var(--yellow-dark); }
.rule-pill-blue .rule-pill-name { color: var(--blue-dark); }
.rule-pill-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; }
.rule-pill-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 999px;
}
.rule-pill-tag-green { background: var(--green-light); color: var(--green-dark); }
.rule-pill-tag-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.rule-pill-tag-blue { background: var(--blue-light); color: var(--blue-dark); }

/* === AGE GROUPS — Kahoot style === */
.age-section { padding: var(--pad-y) var(--pad-x); background: var(--white); }
.age-section-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.age-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; margin-top: 56px; }

.kahoot-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 3px solid;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.kahoot-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.kahoot-green { border-color: var(--green); }
.kahoot-yellow { border-color: var(--yellow); }
.kahoot-blue { border-color: var(--blue); }

.kahoot-topbar { height: 8px; }
.kahoot-green .kahoot-topbar { background: var(--green); }
.kahoot-yellow .kahoot-topbar { background: var(--yellow); }
.kahoot-blue .kahoot-topbar { background: var(--blue); }

.kahoot-body { padding: 28px; }
.kahoot-age-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.kahoot-green .kahoot-age-badge { background: var(--green-light); color: var(--green-dark); }
.kahoot-yellow .kahoot-age-badge { background: var(--yellow-light); color: var(--yellow-dark); }
.kahoot-blue .kahoot-age-badge { background: var(--blue-light); color: var(--blue-dark); }

.kahoot-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.kahoot-stage {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; line-height: 1.2;
}
.kahoot-green .kahoot-stage { color: var(--green-dark); }
.kahoot-yellow .kahoot-stage { color: var(--yellow-dark); }
.kahoot-blue .kahoot-stage { color: var(--blue-dark); }
.kahoot-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 20px; }
.kahoot-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.kahoot-features li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 600; color: var(--fg); }
.kahoot-check-green, .kahoot-check-yellow, .kahoot-check-blue {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kahoot-check-green { background: var(--green); }
.kahoot-check-yellow { background: var(--yellow); }
.kahoot-check-blue { background: var(--blue); }

/* === PRICING === */
.pricing { padding: var(--pad-y) var(--pad-x); background: var(--bg-alt); }
.pricing-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-top: 56px; }

.price-card {
  background: var(--white); border-radius: var(--radius-xl); border: 2px solid var(--border);
  padding: 36px 28px; text-align: center;
  position: relative; transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-bg), var(--shadow-md);
  transform: scale(1.04);
}
.price-card-featured:hover { transform: scale(1.04) translateY(-6px); }

.price-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: white;
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
  letter-spacing: 0.06em;
}
.price-badge-star {
  position: absolute; top: -14px; right: 20px;
  background: var(--yellow); color: var(--fg);
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  padding: 5px 14px; border-radius: 999px;
}
.price-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.price-icon-green { background: var(--green-light); color: var(--green-dark); }
.price-icon-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.price-icon-blue { background: var(--blue-light); color: var(--blue-dark); }

.price-tier {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-muted); margin-bottom: 4px;
}
.price-card-featured .price-tier { color: var(--green-dark); }
.price-name { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; margin-bottom: 4px; }
.price-desc { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 20px; line-height: 1.5; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 4px; }
.price-currency { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; }
.price-value { font-family: var(--font-head); font-size: 3.5rem; font-weight: 800; line-height: 1; }
.price-period { font-size: 0.9rem; color: var(--fg-muted); }
.price-economy {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  background: var(--green-light); color: var(--green-dark);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 24px;
}
.price-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--fg); font-weight: 500; }
.price-check-green, .price-check-yellow, .price-check-blue {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0;
}
.price-check-green { background: var(--green-light); color: var(--green-dark); }
.price-check-yellow { background: var(--yellow-light); color: var(--yellow-dark); }
.price-check-blue { background: var(--blue-light); color: var(--blue-dark); }

.price-cta {
  display: block; width: 100%; padding: 14px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  border: 2px solid var(--green); color: var(--green-dark); background: white;
  cursor: pointer; transition: background 0.2s, color 0.2s, transform 0.2s;
  text-align: center;
}
.price-cta:hover { background: var(--green); color: white; transform: translateY(-2px); }
.price-cta-featured { background: var(--green); color: white; }
.price-cta-featured:hover { background: var(--green-dark); }

/* === CTA FINAL === */
.cta-section {
  padding: var(--pad-y) var(--pad-x);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-decoration { position: absolute; inset: 0; pointer-events: none; }
.cta-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); }
.cta-circle-1 { width: 500px; height: 500px; top: -200px; right: -150px; }
.cta-circle-2 { width: 300px; height: 300px; bottom: -100px; left: -80px; }
.cta-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
.cta-icon { font-size: 3.5rem; margin-bottom: 16px; }
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 16px;
  line-height: 1.15; font-weight: 800;
}
.cta-sub { font-size: 1.05rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.65; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--yellow); color: var(--fg);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  padding: 18px 40px; border-radius: 999px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.cta-note { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* === TRUST === */
.trust { padding: var(--pad-y) var(--pad-x); background: var(--white); }
.trust-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.trust-badges { display: flex; justify-content: center; gap: 14px; margin: 48px 0; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-alt); padding: 10px 18px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  color: var(--fg); box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.trust-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  text-align: left; border: 2px solid var(--border);
  box-shadow: var(--shadow-sm); transition: transform 0.2s, box-shadow 0.2s;
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.trust-card-featured { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-bg), var(--shadow-md); }
.trust-stars { color: var(--yellow); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.trust-quote { font-size: 0.92rem; color: var(--fg); line-height: 1.7; margin-bottom: 20px; }
.trust-author { display: flex; align-items: center; gap: 12px; }
.trust-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: white; flex-shrink: 0;
}
.trust-avatar-green { background: var(--green); }
.trust-avatar-yellow { background: var(--yellow); color: var(--fg); }
.trust-avatar-blue { background: var(--blue); }
.trust-name { font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; }
.trust-role { font-size: 0.78rem; color: var(--fg-muted); }

/* === FOOTER === */
.footer {
  background: var(--fg); color: rgba(255,255,255,0.55);
  padding: 48px var(--pad-x) 32px;
}
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.footer-brand-text {
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: white;
}
.footer-url { color: var(--green); font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.footer-url:hover { text-decoration: underline; }
.footer-links { list-style: none; display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-social {
  max-width: var(--max-w); margin: 28px auto 0;
  display: flex; gap: 16px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social-link { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-social-link:hover { color: white; }
.footer-copy {
  max-width: var(--max-w); margin: 20px auto 0;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem; text-align: center;
}

/* === RESPONSIVE — Mobile-first 375px === */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { text-align: center; }
  .hero-badge, .hero-title, .hero-sub, .hero-actions { margin-left: auto; margin-right: auto; }
  .hero-proof { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 240px; }
  .float-card { display: none; }
  .rule-pills { grid-template-columns: 1fr; gap: 20px; }
  .age-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .price-card-featured { transform: scale(1); }
  .pricing-grid .price-card-featured:hover { transform: translateY(-6px); }
  .footer-inner { flex-direction: column; text-align: center; gap: 20px; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .rule-pill { padding: 28px 20px; }
  .price-card { padding: 28px 20px; }
  .trust-badges { gap: 10px; }
  .trust-badge { font-size: 0.78rem; padding: 8px 14px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* === FADE-IN SCROLL ANIMATIONS === */
@keyframes fadeInOnScroll {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.rule-pill:nth-child(1) { animation: fadeInOnScroll 0.6s ease-out 0.1s both; }
.rule-pill:nth-child(2) { animation: fadeInOnScroll 0.6s ease-out 0.2s both; }
.rule-pill:nth-child(3) { animation: fadeInOnScroll 0.6s ease-out 0.3s both; }

.age-grid .kahoot-card:nth-child(1) { animation: fadeInOnScroll 0.6s ease-out 0.1s both; }
.age-grid .kahoot-card:nth-child(2) { animation: fadeInOnScroll 0.6s ease-out 0.2s both; }
.age-grid .kahoot-card:nth-child(3) { animation: fadeInOnScroll 0.6s ease-out 0.3s both; }

.pricing-grid .price-card:nth-child(1) { animation: fadeInOnScroll 0.6s ease-out 0.1s both; }
.pricing-grid .price-card:nth-child(2) { animation: fadeInOnScroll 0.6s ease-out 0.2s both; }
.pricing-grid .price-card:nth-child(3) { animation: fadeInOnScroll 0.6s ease-out 0.3s both; }

.trust-grid .trust-card:nth-child(1) { animation: fadeInOnScroll 0.6s ease-out 0.1s both; }
.trust-grid .trust-card:nth-child(2) { animation: fadeInOnScroll 0.6s ease-out 0.2s both; }
.trust-grid .trust-card:nth-child(3) { animation: fadeInOnScroll 0.6s ease-out 0.3s both; }