/* ============================================================
   GabbyBattles — Global Stylesheet
   Brand: Navy #1B2A4A | Purple #6B3FA0 | Gold #F5A623
          Teal #0D9488 | Red #E84C3D | BG #F0F4FF
   Fonts: Fredoka One (headlines) | Nunito (body)
   ============================================================ */

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

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1B2A4A;
  --purple: #6B3FA0;
  --gold:   #F5A623;
  --teal:   #0D9488;
  --red:    #E84C3D;
  --bg:     #F0F4FF;
  --white:  #FFFFFF;
  --gray:   #6B7280;
  --light:  #E8ECFF;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(107,63,160,0.15);
  --shadow-lg: 0 16px 48px rgba(27,42,74,0.18);
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fredoka One', cursive;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn:active { transform: scale(0.97); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-red { background: var(--red); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ---- Section headings ---- */
.section-label {
  display: inline-block;
  background: var(--light);
  color: var(--purple);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 40px;
}
.section-sub.white { color: rgba(255,255,255,0.85); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card-purple {
  background: linear-gradient(135deg, var(--purple), #8B5CF6);
  color: var(--white);
}
.card-navy {
  background: var(--navy);
  color: var(--white);
}

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

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-purple { background: linear-gradient(135deg, var(--purple) 0%, #1B2A4A 100%); }
.section-navy { background: var(--navy); }
.section-white { background: var(--white); }
.section-light { background: var(--bg); }

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-purple { background: var(--purple); color: var(--white); }
.badge-teal { background: var(--teal); color: var(--white); }
.badge-red { background: var(--red); color: var(--white); }

/* ---- Stars ---- */
.stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 16px 0;
}
.site-header.scrolled {
  background: rgba(27,42,74,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 1.5rem;
  color: var(--white);
}
.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 80px 32px 32px;
  flex-direction: column;
  gap: 8px;
  transition: right 0.3s cubic-bezier(0.23,1,0.32,1);
  box-shadow: -8px 0 48px rgba(0,0,0,0.3);
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: block;
  transition: color 0.15s, padding-left 0.15s;
}
.mobile-nav a:hover { color: var(--gold); padding-left: 8px; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
}
.nav-overlay.open { display: block; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
}

/* ============================================================
   FLOATING DOWNLOAD BUTTON
   ============================================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(107,63,160,0.4);
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}
.modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.modal-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 60%, #8B2FC9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.hero-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight { color: var(--gold); }

.hero-body {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 0;
}
.hero-trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}
.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stat {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.hero-stat strong {
  display: block;
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--gold);
}
.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-mascot {
  width: min(460px, 100%);
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Floating emojis */
.emoji-float {
  position: absolute;
  font-size: 2rem;
  animation: floatEmoji 6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.emoji-float:nth-child(1) { top: 5%; left: -5%; animation-delay: 0s; }
.emoji-float:nth-child(2) { top: 20%; right: -8%; animation-delay: 1s; }
.emoji-float:nth-child(3) { bottom: 25%; left: -8%; animation-delay: 2s; }
.emoji-float:nth-child(4) { bottom: 10%; right: -5%; animation-delay: 0.5s; }
.emoji-float:nth-child(5) { top: 50%; left: -12%; animation-delay: 1.5s; }
@keyframes floatEmoji {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-12px) rotate(5deg); }
  66% { transform: translateY(8px) rotate(-5deg); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-trust-row { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-mascot { width: min(280px, 70vw); }
  .hero-body { margin: 0 auto 32px; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-card {
  text-align: center;
  padding: 32px 24px;
}
.problem-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.problem-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.problem-card p { color: var(--gray); font-size: 0.95rem; }

/* ============================================================
   FEATURES GRID
   ============================================================ */
.feature-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.2s, transform 0.2s;
}
.feature-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.feature-icon { font-size: 2.5rem; margin-bottom: 14px; display: block; }
.feature-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.step-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 24px;
  right: -16px;
  font-size: 1.5rem;
  color: var(--purple);
  font-weight: 900;
}
.step-num {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(107,63,160,0.3);
}
.step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.step-item h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-item p { font-size: 0.9rem; color: var(--gray); }

@media (max-width: 700px) {
  .steps-row { flex-direction: column; gap: 32px; }
  .step-item:not(:last-child)::after { content: '↓'; right: auto; top: auto; bottom: -24px; left: 50%; transform: translateX(-50%); }
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.download-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 14px 24px;
  color: var(--white);
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.store-btn:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.store-btn-icon { font-size: 2rem; }
.store-btn-text small { display: block; font-size: 0.7rem; font-weight: 600; opacity: 0.8; }
.store-btn-text strong { font-size: 1.1rem; }

.pricing-mini {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.pricing-mini-item {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  color: var(--white);
  min-width: 140px;
}
.pricing-mini-item .price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.6rem;
  color: var(--gold);
}
.pricing-mini-item .tier { font-size: 0.8rem; opacity: 0.8; font-weight: 700; text-transform: uppercase; }

.qr-placeholder {
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.15);
  border: 2px dashed rgba(255,255,255,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-align: center;
  margin: 24px auto 0;
  padding: 12px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--purple);
}
.testimonial-card .stars { margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}
.testimonial-author {
  font-weight: 800;
  color: var(--purple);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: 'Fredoka One', cursive;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.15s, transform 0.15s;
}
.social-link:hover { background: var(--purple); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-tagline { color: var(--gold); font-style: italic; font-size: 0.85rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--gold);
  transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.pricing-tier {
  font-family: 'Fredoka One', cursive;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-price {
  font-family: 'Fredoka One', cursive;
  font-size: 3rem;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: top; margin-top: 8px; }
.pricing-price sub { font-size: 1rem; color: var(--gray); }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 24px; }
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--teal); font-weight: 900; }

@media (max-width: 900px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card.popular { transform: none; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--light);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--purple); }
.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.2s;
  color: var(--purple);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light);
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: var(--red); font-size: 0.82rem; margin-top: 4px; display: none; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--red); }
.form-group.error .form-error { display: block; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   MISC
   ============================================================ */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--teal));
  border-radius: 2px;
  margin: 0;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(107,63,160,0.08), rgba(245,166,35,0.08));
  border: 2px solid rgba(107,63,160,0.15);
  border-radius: var(--radius);
  padding: 32px;
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.icon-circle-purple { background: rgba(107,63,160,0.12); }
.icon-circle-gold { background: rgba(245,166,35,0.15); }
.icon-circle-teal { background: rgba(13,148,136,0.12); }

/* Responsive helpers */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { padding: 100px 0 60px; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}
