/* ═══════════════════════════════════════════════════
   KIDS QUEST — Warm Pastel Design
   Soft · Playful · Premium
═══════════════════════════════════════════════════ */

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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:        #FDF8F0;
  --white:        #FFFCF8;
  --pink:         #FF8FAB;
  --pink-soft:    #FFE4ED;
  --pink-mid:     #FFCCD9;
  --mint:         #7ECBA1;
  --mint-soft:    #E2F5EC;
  --mint-mid:     #B8E8CF;
  --lavender:     #9B8EC4;
  --lavender-soft:#EDE8F8;
  --lavender-mid: #CEC5E8;
  --peach:        #FFB085;
  --peach-soft:   #FFEEE0;
  --yellow:       #FFD166;
  --yellow-soft:  #FFF6DC;
  --blue:         #74B9E8;
  --blue-soft:    #E2F2FF;
  --text:         #2A2A3C;
  --text-muted:   #7A7A95;
  --radius:       24px;
  --radius-sm:    16px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* hide particles canvas */
#particles { display: none; }

/* ── Container ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,143,171,0.12);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}

.nav-logo svg circle { fill: url(#logoGradPastel); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--pink-soft);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--text);
  color: var(--cream) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(42,42,60,0.2) !important;
  background: var(--text) !important;
}

/* hide theme toggle */
.theme-toggle { display: none; }

/* Lang switcher */
.lang-switcher { position: relative; }

.lang-btn {
  background: var(--pink-soft);
  border: none;
  border-radius: 50px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s;
}

.lang-btn:hover { background: var(--pink-mid); }

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,143,171,0.15);
  overflow: hidden;
  min-width: 160px;
}

.lang-dropdown.open { display: block; }

.lang-dropdown a {
  display: block;
  padding: 11px 18px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  transition: background 0.15s;
}

.lang-dropdown a:hover { background: var(--pink-soft); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

/* big soft blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%);
  bottom: -100px; right: -150px;
  pointer-events: none;
}

/* hide old glows */
.hero-glow { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(255,143,171,0.15);
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-app-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-pill:hover { transform: translateY(-2px); }

.hero-pill-quest {
  background: var(--lavender-soft);
  color: var(--lavender);
  border: 1.5px solid var(--lavender-mid);
}

.hero-pill-quest:hover { box-shadow: 0 6px 20px rgba(155,142,196,0.25); }

.hero-pill-earntime {
  background: var(--peach-soft);
  color: var(--peach);
  border: 1.5px solid #ffd0b0;
}

.hero-pill-earntime:hover { box-shadow: 0 6px 20px rgba(255,176,133,0.25); }

.hero-pill-plus {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-muted);
}

.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}

.pill-dot-quest { background: var(--lavender); }
.pill-dot-earntime { background: var(--peach); }

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

/* ── Phones ── */
.hero-phones {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
}

.phone { transition: transform 0.3s; }
.phone-left { transform: translateY(20px) rotate(-5deg); }
.phone-right { transform: translateY(20px) rotate(5deg); }
.phone-center { transform: translateY(-10px); z-index: 3; }

.phone-frame {
  width: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 8px var(--white);
  background: var(--white);
}

.phone-frame img { width: 100%; display: block; }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(42,42,60,0.18);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(42,42,60,0.22);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--text);
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(42,42,60,0.12);
  transition: transform 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(42,42,60,0.25);
}

.btn-quest {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lavender);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(155,142,196,0.35);
}

.btn-quest:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(155,142,196,0.45);
}

.btn-earntime {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--peach);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(255,176,133,0.35);
}

.btn-earntime:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255,176,133,0.45);
}

/* ══════════════════════════════
   WAVE DIVIDER
══════════════════════════════ */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}

.wave-divider svg { display: block; width: 100%; }

/* ══════════════════════════════
   APP SECTIONS
══════════════════════════════ */
.app-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.app-quest {
  background: var(--lavender-soft);
}

.app-earntime {
  background: var(--peach-soft);
}

/* hide old glows */
.section-glow { display: none; }

.app-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-section-inner.reverse { direction: rtl; }
.app-section-inner.reverse > * { direction: ltr; }

.app-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.quest-label {
  background: var(--lavender-mid);
  color: var(--lavender);
}

.earntime-label {
  background: var(--peach);
  color: white;
}

.section-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.gradient-text-quest {
  background: linear-gradient(135deg, var(--lavender), #7B6BB5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-earntime {
  background: linear-gradient(135deg, var(--peach), #e8854a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

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

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }

.quest-icon { background: var(--lavender-mid); }
.earntime-icon { background: #ffd0b0; }

.feature-item strong {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Screenshot stack */
.screenshot-stack {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot-card {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.screenshot-card img { width: 100%; display: block; }

.sc-back {
  width: 180px;
  transform: rotate(-8deg) translate(-80px, 20px);
  opacity: 0.7;
}

.sc-mid {
  width: 200px;
  transform: rotate(-2deg) translate(20px, -10px);
  opacity: 0.85;
}

.sc-front {
  width: 220px;
  transform: rotate(4deg) translate(100px, 10px);
  z-index: 3;
}

/* ══════════════════════════════
   TOGETHER SECTION
══════════════════════════════ */
.together-section {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.together-badge, .safety-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-soft);
  border: 1.5px solid var(--yellow);
  padding: 7px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #c8860a;
  margin-bottom: 20px;
}

.section-title-center {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc-center {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.together-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

.together-card {
  padding: 36px;
  border-radius: var(--radius);
  position: relative;
}

.together-card-quest {
  background: var(--lavender-soft);
  border: 1.5px solid var(--lavender-mid);
}

.together-card-earntime {
  background: var(--peach-soft);
  border: 1.5px solid #ffd0b0;
}

.together-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  margin: 14px 0 10px;
}

.together-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}

.together-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.flow-step {
  background: var(--white);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.flow-arrow {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 700;
}

.together-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}

.together-btn:hover { transform: translateY(-2px); }

.btn-quest-sm {
  background: var(--lavender);
  color: white;
  box-shadow: 0 4px 16px rgba(155,142,196,0.3);
}

.btn-earntime-sm {
  background: var(--peach);
  color: white;
  box-shadow: 0 4px 16px rgba(255,176,133,0.3);
}

.together-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 80px;
}

.divider-line {
  width: 1px;
  flex: 1;
  background: rgba(42,42,60,0.1);
  min-height: 60px;
}

.divider-or {
  background: var(--white);
  border: 1.5px solid rgba(42,42,60,0.12);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.together-both {
  background: linear-gradient(135deg, var(--lavender-soft), var(--peach-soft));
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  border: 1.5px solid rgba(155,142,196,0.2);
}

.together-both-badge {
  display: inline-block;
  background: white;
  padding: 6px 18px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--lavender);
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}

.together-both h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 12px;
}

.together-both p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.together-both-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.both-app {
  padding: 11px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.quest-app-pill { background: var(--lavender); color: white; }
.earntime-app-pill { background: var(--peach); color: white; }

.both-plus, .both-equals {
  font-size: 22px;
  font-weight: 900;
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
}

.both-result {
  background: var(--yellow-soft);
  border: 1.5px solid var(--yellow);
  padding: 11px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #c8860a;
}

/* ══════════════════════════════
   FEATURES GRID
══════════════════════════════ */
.features-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.feat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid rgba(42,42,60,0.05);
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feat-card:nth-child(1) { border-top: 3px solid var(--lavender); }
.feat-card:nth-child(2) { border-top: 3px solid var(--mint); }
.feat-card:nth-child(3) { border-top: 3px solid var(--peach); }
.feat-card:nth-child(4) { border-top: 3px solid var(--blue); }
.feat-card:nth-child(5) { border-top: 3px solid var(--yellow); }
.feat-card:nth-child(6) { border-top: 3px solid var(--pink); }

.feat-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 10px;
}
.feat-icon img { width: 100%; height: 100%; object-fit: contain; }

.feat-card:nth-child(1) .feat-icon { background: var(--lavender-soft); }
.feat-card:nth-child(2) .feat-icon { background: var(--mint-soft); }
.feat-card:nth-child(3) .feat-icon { background: var(--peach-soft); }
.feat-card:nth-child(4) .feat-icon { background: var(--blue-soft); }
.feat-card:nth-child(5) .feat-icon { background: var(--yellow-soft); }
.feat-card:nth-child(6) .feat-icon { background: var(--pink-soft); }

.feat-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
}

.feat-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════
   SAFETY SECTION
══════════════════════════════ */
.safety-section {
  padding: 100px 0;
  background: var(--mint-soft);
}

.safety-badge { background: var(--mint-soft); border-color: var(--mint); color: #2a7a56; }

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

.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.25s;
}

.safety-card:hover { transform: translateY(-3px); }

.safety-card-highlight {
  background: linear-gradient(135deg, var(--mint-soft), var(--blue-soft));
  border: 1.5px solid var(--mint-mid);
}

.safety-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.safety-icon img { width: 48px; height: 48px; object-fit: contain; }
.safety-icon svg { width: 44px; height: 44px; }

.safety-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 8px;
}

.safety-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════
   STATS SECTION
══════════════════════════════ */
.stats-section {
  padding: 72px 0;
  background: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 36px 20px 32px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.stat-item:nth-child(1) { background: var(--lavender-soft); }
.stat-item:nth-child(2) { background: var(--mint-soft); }
.stat-item:nth-child(3) { background: var(--peach-soft); }
.stat-item:nth-child(4) { background: var(--yellow-soft); }

/* Decorative circle in corner */
.stat-item::after {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.25;
}
.stat-item:nth-child(1)::after { background: var(--lavender); }
.stat-item:nth-child(2)::after { background: var(--mint); }
.stat-item:nth-child(3)::after { background: var(--peach); }
.stat-item:nth-child(4)::after { background: var(--yellow); }

/* Remove old dividers */
.stat-item + .stat-item::before { display: none; }

.stat-number {
  font-family: 'Nunito', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-text-fill-color: unset;
  background: none;
}

.stat-item:nth-child(1) .stat-number { color: #9B8EC4; }
.stat-item:nth-child(2) .stat-number { color: #4aab7c; }
.stat-item:nth-child(3) .stat-number { color: #FF8C42; }
.stat-item:nth-child(4) .stat-number { color: #D97706; }

.stat-number.gradient-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-muted);
}

/* ══════════════════════════════
   VIDEO SECTION
══════════════════════════════ */
.video-section {
  padding: 64px 0;
  background: var(--white);
  text-align: center;
}

.video-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

.video-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.video-item {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.video-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ad-video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 800px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════
   DOWNLOAD SECTION
══════════════════════════════ */
.download-section {
  padding: 100px 0;
  background: var(--pink-soft);
  text-align: center;
}

.download-section .section-title-center {
  margin-bottom: 12px;
}

.download-cards {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 56px;
}

.download-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 360px;
  width: 100%;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.download-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.download-card-quest { border-top: 4px solid var(--lavender); }
.download-card-earntime { border-top: 4px solid var(--peach); }

.download-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.download-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.download-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ══════════════════════════════
   FAQ SECTION
══════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--cream);
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(42,42,60,0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--cream); }

.faq-chevron {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; }

.footer-langs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-langs a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
}

.footer-langs a:hover { color: white; }

/* ══════════════════════════════
   BURGER MENU (mobile nav)
══════════════════════════════ */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: rgba(253,248,240,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,143,171,0.15);
  padding: 16px 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 14px;
  transition: background 0.2s;
}

.mobile-nav a:hover { background: var(--pink-soft); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .app-section-inner,
  .app-section-inner.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .app-section-inner.reverse .app-screenshots { order: -1; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  .together-grid { grid-template-columns: 1fr; }
  .together-divider { flex-direction: row; padding: 0; }
  .divider-line { min-height: unset; width: 60px; height: 1px; flex: unset; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-phones { gap: 10px; }
  .phone-frame { width: 120px; }


  .section-title { font-size: 32px; }
  .section-desc { font-size: 16px; }

  .together-both { padding: 32px 24px; }
  .together-both-flow { gap: 8px; }

  .app-section { padding: 64px 0; }
  .together-section { padding: 64px 0; }
  .features-section { padding: 64px 0; }
  .safety-section { padding: 64px 0; }
  .cta-section { padding: 64px 0; }
  .video-section { padding: 64px 0; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 16px; }
  .nav-logo span { display: none; }
  .lang-btn { padding: 7px 10px; font-size: 12px; }

  .hero { padding: 90px 16px 48px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; }
  .hero-app-pills { flex-direction: column; align-items: center; gap: 8px; }
  .hero-pill-plus { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-phones .phone-left,
  .hero-phones .phone-right { display: none; }
  .phone-frame { width: 180px; }

  .container { padding: 0 16px; }

  .app-section { padding: 48px 0; }
  .app-section-inner { gap: 32px; }
  .section-title { font-size: 28px; }
  .feature-list { gap: 14px; }
  .btn-quest, .btn-earntime { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-card { padding: 24px 20px; }

  .safety-grid { grid-template-columns: 1fr; gap: 12px; }
  .safety-card { padding: 24px 20px; }

  .together-section { padding: 48px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title-center { font-size: 26px; }
  .together-card { padding: 24px 20px; }
  .together-both { padding: 28px 20px; }
  .together-both h3 { font-size: 20px; }
  .together-both-flow { flex-direction: column; align-items: center; }
  .both-equals { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 36px; }

  .video-section { padding: 48px 0; }
  .video-grid { gap: 20px; }
  .video-title { font-size: 22px; }
  .video-subtitle { font-size: 14px; }

  .cta-section { padding: 48px 16px; }
  .cta-apps { flex-direction: column; align-items: center; }
  .cta-divider { display: none; }
  .cta-app-card { max-width: 100%; }
  .btn-store { width: 100%; justify-content: center; }

  .screenshot-stack { height: 340px; }
  .sc-back  { width: 110px; left: 4%; top: 70px; transform: rotate(-8deg); }
  .sc-mid   { width: 130px; left: 50%; top: 20px; transform: translateX(-50%) rotate(-2deg); }
  .sc-front { width: 150px; right: 4%; top: 50px; transform: rotate(4deg); }
}

/* ══════════════════════════════
   DOWNLOAD / CTA SECTION
══════════════════════════════ */
.cta-section {
  padding: 100px 0;
  background: var(--pink-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow { display: none; }

.cta-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 56px;
}

.cta-apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-divider {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Nunito', sans-serif;
  color: var(--text-muted);
  flex-shrink: 0;
}

.cta-app-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  max-width: 300px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.cta-app-card:first-of-type { border-top: 4px solid var(--lavender); }
.cta-app-card:last-of-type { border-top: 4px solid var(--peach); }

.cta-app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cta-app-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.cta-app-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.quest-badge {
  background: var(--lavender-soft);
  color: var(--lavender);
}

.earntime-badge {
  background: var(--peach-soft);
  color: var(--peach);
}

.cta-app-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.cta-app-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-store:hover { transform: translateY(-2px); }

.btn-store svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.btn-store span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.btn-store span small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.btn-store span {
  font-size: 16px;
  font-weight: 800;
}

.btn-store-quest {
  background: var(--lavender);
  box-shadow: 0 6px 20px rgba(155,142,196,0.35);
}

.btn-store-quest:hover { box-shadow: 0 10px 28px rgba(155,142,196,0.45); }

.btn-store-earntime {
  background: var(--peach);
  box-shadow: 0 6px 20px rgba(255,176,133,0.35);
}

.btn-store-earntime:hover { box-shadow: 0 10px 28px rgba(255,176,133,0.45); }

@media (max-width: 700px) {
  .cta-apps { flex-direction: column; align-items: center; }
  .cta-divider { transform: rotate(90deg); }
}

/* ══════════════════════════════
   LEGAL / SUPPORT PAGES
══════════════════════════════ */

/* Hero for legal/support pages */
.legal-hero, .support-hero {
  padding: 140px 28px 60px;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.legal-hero::before, .support-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lavender-soft) 0%, transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
}

.legal-hero::after, .support-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}

.legal-hero h1, .support-hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -1px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.legal-hero p, .support-hero p {
  font-size: 17px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.legal-hero .hero-badge, .support-hero .hero-badge {
  position: relative;
  z-index: 1;
}

.legal-hero .hero-glow, .support-hero .hero-glow { display: none; }

/* Tabs */
.legal-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 28px 28px 0;
  background: var(--cream);
}

.legal-tab {
  padding: 11px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  background: var(--white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.legal-tab:hover { color: var(--text); }

.quest-tab.active {
  background: var(--lavender);
  color: white;
  border-color: var(--lavender);
}

.earntime-tab.active {
  background: var(--peach);
  color: white;
  border-color: var(--peach);
}

/* Legal body / tab panels */
.legal-body, .faq-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.legal-tab-panel { display: none; }
.legal-tab-panel.active { display: block; }

/* Legal cards */
.legal-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin-bottom: 16px;
  border: 1.5px solid rgba(42,42,60,0.06);
  transition: box-shadow 0.2s;
}

.legal-card:hover { box-shadow: var(--shadow); }

.legal-card h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--text);
  margin-bottom: 14px;
  margin-top: 0;
}

.legal-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin: 18px 0 8px;
}

.legal-card p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.legal-card ul {
  padding-left: 20px;
  margin: 10px 0;
}

.legal-card ul li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-card a {
  color: var(--lavender);
  text-decoration: none;
  font-weight: 600;
}

.legal-card a:hover { text-decoration: underline; }

/* Green highlight box */
.legal-green-box {
  background: var(--mint-soft);
  border: 1.5px solid var(--mint-mid);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
}

.legal-green-box h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #2a7a56;
  margin: 0 0 8px;
}

.legal-green-box p {
  font-size: 15px;
  color: #3a8a66;
  line-height: 1.7;
  margin: 0;
}

/* Highlight box */
.legal-highlight {
  background: var(--blue-soft);
  border: 1.5px solid rgba(116,185,232,0.3);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 12px 0;
}

.legal-highlight p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Commit list (privacy page) */
.legal-commit {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-commit li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  padding-left: 0;
}

/* ── Support page ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 40px auto 0;
  padding: 0 28px;
}

.contact-card-new {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid rgba(42,42,60,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card-new:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card-new:nth-child(1) { border-top: 3px solid var(--lavender); }
.contact-card-new:nth-child(2) { border-top: 3px solid var(--mint); }
.contact-card-new:nth-child(3) { border-top: 3px solid var(--peach); }

.cc-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cc-icon svg { width: 44px; height: 44px; }

.contact-card-new h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-card-new p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.contact-card-new a {
  color: var(--lavender);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.contact-card-new a:hover { text-decoration: underline; }

/* FAQ support page styles */
.faq-body {
  padding-top: 32px;
}

.faq-group-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 28px 0 10px;
}

.faq-item-new {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(42,42,60,0.06);
  margin-bottom: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item-new:hover { box-shadow: var(--shadow); }

.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  user-select: none;
  transition: background 0.15s;
}

.faq-q:hover { background: var(--cream); }

.faq-q .faq-chevron {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item-new.open .faq-q .faq-chevron { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item-new.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 24px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}

/* Support CTA */
.support-cta {
  background: linear-gradient(135deg, var(--lavender-soft), var(--pink-soft));
  text-align: center;
  padding: 64px 28px;
  margin: 0 0 0;
}

.support-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--text);
  margin-bottom: 10px;
}

.support-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Footer override for simple footer on these pages */
.footer {
  background: var(--text);
  padding: 32px 28px;
}

.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.footer .footer-links {
  display: flex;
  gap: 24px;
}

.footer .footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 28px 24px; }
  .legal-hero, .support-hero { padding: 120px 20px 48px; }
  .legal-body, .faq-body { padding: 28px 20px 60px; }
  .footer .footer-inner { flex-direction: column; align-items: flex-start; }
}
