/* ══════════════════════════════════════════════════════════════
   EduLift — Modernized Design System
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand Palette */
  --brand-green: #1CAB6C;
  --brand-green-light: #22c97e;
  --brand-purple: #5E35B1;
  --brand-violet: #6C5CE7;
  --hero-teal: #00A896;
  --neon-lime: #BAFF47;

  /* Neutrals */
  --ink: #1E293B;
  --muted: #64748B;
  --soft: #F8FAFC;
  --paper: #FFFFFF;
  --line: #E2E8F0;
  --navy: #0F172A;

  /* Functional */
  --teal: #0097b2;
  --green-soft: rgba(28,171,108,0.1);
  --purple-soft: rgba(94,53,177,0.08);
  --gold: #F59E0B;
  --gold-soft: rgba(245,158,11,0.12);
  --teal-soft: rgba(0,168,150,0.1);

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 30px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.12);
  --shadow-glow: 0 8px 32px rgba(28,171,108,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Plus Jakarta Sans', Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 700; }

.lead { color: var(--muted); font-size: clamp(1rem, 1.8vw, 1.12rem); margin: 1rem 0 0; }

/* ── Skip Link ── */
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 50;
  background: var(--navy); color: var(--paper);
  padding: 0.6rem 0.8rem; border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

/* ── Buttons ── */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 46px; padding: 0.75rem 1.5rem;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  color: var(--navy); background: var(--neon-lime);
  box-shadow: 0 6px 24px rgba(186,255,71,0.3);
}
.button-primary:hover {
  box-shadow: 0 10px 36px rgba(186,255,71,0.45);
  background: #c8ff62;
}

.button-secondary {
  color: var(--paper); background: transparent;
  border-color: rgba(255,255,255,0.3);
}
.button-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.button-secondary.on-light {
  color: var(--brand-green); border-color: var(--brand-green);
}
.button-secondary.on-light:hover { background: var(--green-soft); }

.button-dark { color: var(--paper); background: var(--navy); }
.button-dark:hover { background: #1e293b; }

.button-light { color: var(--navy); background: var(--paper); }
.button-light:hover { box-shadow: var(--shadow-md); }

.button-block { width: 100%; }

/* ── Layout ── */
.section, .page-section { padding: 100px 0; }
.section-soft { background: var(--soft); }
.section-cream { background: linear-gradient(180deg, #f0fdf4, #f8fafc); }

.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0 0 1rem; color: var(--brand-green-light);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--neon-lime); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(186,255,71,0.2);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(186,255,71,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(186,255,71,0.05); }
}

.section-heading { width: min(720px, 100%); margin: 0 auto 3rem; text-align: center; }
.section-heading.align-left { margin-left: 0; text-align: left; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 12px rgba(15,23,42,0.06);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 40px));
  min-height: 72px; margin: 0 auto;
  display: flex; align-items: center; gap: 1rem;
}

.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand-logo { width: auto; height: 48px; object-fit: contain; }

.nav-toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); cursor: pointer;
  position: relative;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  margin: 4px auto; background: var(--ink);
  border-radius: 2px; transition: all 0.3s var(--ease);
}

.site-nav {
  margin-left: auto; display: flex; align-items: center; gap: 0.25rem;
}

.nav-link, .dropdown-toggle {
  padding: 0.6rem 0.85rem; border-radius: var(--radius);
  color: var(--ink); font-size: 0.9rem; font-weight: 600;
  background: transparent; border: 0; cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.nav-link:hover, .nav-link:focus, .dropdown-toggle:hover,
.dropdown-toggle:focus, .nav-link.active {
  color: var(--brand-green); background: var(--green-soft);
}

.dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 0.35rem; }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 280px; padding: 0.5rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(-8px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown.is-open .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}

.dropdown-menu a {
  display: block; padding: 0.75rem 0.85rem;
  border-radius: var(--radius); color: var(--ink); font-weight: 600;
  transition: all 0.15s ease;
}
.dropdown-menu a span { display: block; color: var(--muted); font-size: 0.8rem; font-weight: 500; margin-top: 2px; }
.dropdown-menu a:hover { background: var(--green-soft); color: var(--brand-green); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; margin-left: 0.5rem; }
.nav-actions .button-primary { color: var(--navy); background: var(--neon-lime); font-size: 0.88rem; padding: 0.6rem 1.2rem; }
.nav-actions .button-secondary {
  color: var(--ink); background: transparent; border-color: var(--line); font-size: 0.88rem; padding: 0.6rem 1.2rem;
}
.nav-actions .button-secondary:hover { border-color: var(--brand-green); color: var(--brand-green); background: var(--green-soft); }

/* ── Hero ── */
.hero {
  position: relative; min-height: min(720px, 86svh); overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.5;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(186,255,71,0.1), transparent 50%),
              radial-gradient(ellipse at 20% 80%, rgba(0,168,150,0.12), transparent 50%);
}

.hero-inner {
  position: relative; z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: min(720px, 86svh); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(400px, 1.15fr);
  align-items: center; gap: 3rem; padding: 80px 0 56px;
}

.hero-copy { max-width: 560px; color: var(--paper); }
.hero-title { color: var(--paper); text-shadow: 0 2px 16px rgba(0,0,0,0.15); }
.hero-title strong { color: var(--neon-lime); }

/* Modern Hero Animation */
.hero-copy .eyebrow {
  opacity: 0;
  transform: translateY(20px);
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s;
}

.hero-title .motion-line {
  display: block;
  perspective: 1000px;
}
.hero-title .motion-line > * {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.95) rotateX(-15deg);
  filter: blur(10px);
  transform-origin: top center;
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .motion-line:nth-child(1) > * { animation-delay: 0.2s; }
.hero-title .motion-line:nth-child(2) > * { animation-delay: 0.4s; }
.hero-title .motion-line:nth-child(3) > * { animation-delay: 0.6s; }

/* Continuous shimmer on "Elevate every learner" */
.hero-title .motion-line:nth-child(3) strong {
  background: linear-gradient(90deg, var(--neon-lime) 0%, #ffffff 40%, var(--neon-lime) 60%, #bef264 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmerText 3s linear 0.8s infinite;
}
@keyframes shimmerText {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.hero-copy .lead {
  opacity: 0;
  transform: translateY(30px);
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.8s;
}

.hero-actions {
  opacity: 0;
  transform: translateY(30px);
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.0s;
}

.trust-row {
  opacity: 0;
  transform: translateY(30px);
  animation: modernReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

@keyframes modernReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    filter: blur(0px);
  }
}

.hero .lead { color: rgba(255,255,255,0.9); }

.hero-actions, .inline-actions {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem;
}

.trust-row {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.75rem;
  margin-top: 2.5rem; color: rgba(255,255,255,0.8); font-size: 0.85rem;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; }
.trust-icon {
  width: 36px; height: 36px; display: grid; place-items: center;
  color: var(--neon-lime); background: rgba(255,255,255,0.1);
  border-radius: var(--radius); backdrop-filter: blur(8px);
}
.trust-icon i { width: 18px; height: 18px; }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: grid; align-items: center;
}

.hero-screenshot {
  position: relative; width: 100%; margin-left: auto;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
  animation: float 6s ease-in-out infinite;
}
.hero-screenshot img {
  width: 100%; height: auto; display: block;
}

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

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card, .product-card, .role-card, .testimonial-card,
.resource-card, .pricing-card, .faq-item, .form-card, .info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.feature-card:hover, .product-card:hover, .role-card:hover,
.testimonial-card:hover, .resource-card:hover, .pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(28,171,108,0.2);
}

.feature-card { padding: 1.5rem; text-align: center; }
.info-card { padding: 1.5rem; }
.feature-card h3 { margin: 0.75rem 0 0.4rem; }
.feature-card p, .product-card p, .role-card p, .testimonial-card p,
.resource-card p, .pricing-card p, .info-card p { color: var(--muted); font-size: 0.9rem; }

.icon-tile {
  width: 52px; height: 52px; display: grid; place-items: center;
  margin: 0 auto 0.5rem; color: var(--brand-green);
  background: var(--green-soft); border-radius: var(--radius);
}
.icon-tile i { width: 24px; height: 24px; }
.icon-tile.purple { color: var(--brand-purple); background: var(--purple-soft); }
.icon-tile.teal { color: var(--hero-teal); background: var(--teal-soft); }
.icon-tile.green { color: #16a34a; background: rgba(22,163,74,0.1); }
.icon-tile.gold { color: #d97706; background: var(--gold-soft); }

/* ── Split Layout ── */
.split {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 1.1fr);
  align-items: center; gap: 3.5rem;
}

/* ── AI Visual ── */
.ai-visual { position: relative; min-height: 360px; }

.student-scene {
  position: absolute; inset: 20px 8% 20px 18%;
  display: grid; place-items: end center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,171,108,0.12), transparent 65%),
              linear-gradient(145deg, rgba(0,168,150,0.16), rgba(28,171,108,0.12));
  overflow: hidden;
}
.student-scene img { width: 100%; height: 100%; position: relative; }

.ai-chip {
  position: absolute; max-width: 220px; padding: 0.85rem;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md); font-size: 0.8rem;
  animation: float 5s ease-in-out infinite;
  line-height: 1.2;
}
.ai-chip strong { display: block; font-size: 0.72rem; text-transform: uppercase; color: var(--brand-green); letter-spacing: 0.04em; }
.ai-chip.one { left: 0; top: 40px; animation-delay: 0s; }
.ai-chip.two { right: 0; bottom: 50px; animation-delay: 1s; }
.ai-chip.three { left: 70px; bottom: 24px; animation-delay: 2s; }

/* ── Check List ── */
.check-list, .plain-list {
  list-style: none; margin: 1.2rem 0 0; padding: 0;
}
.check-list li, .plain-list li {
  position: relative; padding: 0.4rem 0 0.4rem 1.6rem;
  font-size: 0.95rem; color: var(--muted);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--green-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231CAB6C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px;
}

/* ── Stats Band ── */
.stats-band {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--hero-teal), var(--brand-green));
  box-shadow: var(--shadow-glow);
}
.stat {
  padding: 1.5rem 1rem; text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
}
.stat strong {
  display: block; font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--neon-lime); font-weight: 800;
}
.stat span { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 500; }

/* ── Product Grid ── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.product-card { padding: 1.75rem; position: relative; overflow: hidden; }
.product-card h3 { margin: 0.5rem 0; }
.product-card .button { margin-top: 1.25rem; }

.tag {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  background: var(--purple-soft); color: var(--brand-purple);
}
.tag.green { background: var(--green-soft); color: var(--brand-green); }
.tag.gold { background: var(--gold-soft); color: #d97706; }

/* ── Role Grid ── */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.role-card { padding: 1.5rem; text-align: center; }
.role-card h3 { margin: 0.75rem 0 0.4rem; }

.role-image {
  width: 72px; height: 72px; margin: 0 auto 0.5rem;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft);
}
.role-image i { width: 32px; height: 32px; color: var(--brand-green); }

.person-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--hero-teal));
}

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.testimonial-card { padding: 1.5rem; }
.testimonial-card p { font-size: 0.92rem; line-height: 1.6; margin: 0.75rem 0; }

.stars {
  display: flex; gap: 2px; color: #F59E0B;
}
.stars i { width: 16px; height: 16px; fill: currentColor; }

.quote-meta {
  display: flex; align-items: center; gap: 0.65rem;
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.quote-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--hero-teal));
  flex-shrink: 0;
}
.quote-meta strong { font-size: 0.85rem; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.pricing-card { padding: 2rem; }
.pricing-card h3 { margin-bottom: 0.5rem; }
.pricing-card .price {
  font-size: 1.5rem; font-weight: 800; color: var(--brand-green); margin: 1rem 0;
}
.pricing-card .price small { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.pricing-card.featured {
  background: linear-gradient(135deg, var(--brand-green), #15803d);
  color: var(--paper); border-color: transparent;
}
.pricing-card.featured h3, .pricing-card.featured .price,
.pricing-card.featured p, .pricing-card.featured li { color: var(--paper); }
.pricing-card.featured li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23BAFF47' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-color: rgba(186,255,71,0.15);
}

/* ── Demo / Form ── */
.form-card { padding: 2rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; margin-bottom: 1rem; }

.field label, .form-card label {
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
}
.field input, .field select, .field textarea,
.form-card input, .form-card select, .form-card textarea {
  padding: 0.7rem 0.85rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--soft);
  font-size: 0.9rem; color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus,
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--brand-green);
  box-shadow: 0 0 0 3px rgba(28,171,108,0.12);
}
.field textarea, .form-card textarea { min-height: 100px; resize: vertical; }
.form-status { font-size: 0.82rem; color: var(--brand-green); margin-top: 0.5rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item { overflow: hidden; }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 1.25rem; border: 0; background: transparent;
  font-weight: 700; font-size: 1rem; color: var(--ink);
  cursor: pointer; text-align: left;
}
.faq-question i {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s var(--ease); color: var(--muted);
}
.faq-item.is-open .faq-question i { transform: rotate(180deg); color: var(--brand-green); }
.faq-item.is-open .faq-question { color: var(--brand-green); }

.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 1.25rem;
  color: var(--muted); font-size: 0.92rem; line-height: 1.65;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-item.is-open .faq-answer { max-height: 300px; padding: 0 1.25rem 1.1rem; }

/* ── Resource Grid ── */
.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.resource-card { overflow: hidden; }
.resource-thumb {
  height: 160px; background: linear-gradient(135deg, var(--green-soft), var(--purple-soft));
}
.resource-card .content { padding: 1.25rem; }
.resource-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }

/* ── CTA Band ── */
.cta-band {
  background: var(--navy); color: var(--paper);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,168,150,0.2), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(28,171,108,0.15), transparent 60%);
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
}
.cta-inner h2 { color: var(--paper); }
.cta-inner p { color: rgba(255,255,255,0.7); margin: 0.5rem 0 0; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.3fr; gap: 2rem;
}
.footer h4 { color: var(--paper); font-size: 0.88rem; margin-bottom: 1rem; }
.footer a {
  display: block; padding: 0.25rem 0; font-size: 0.85rem;
  color: rgba(255,255,255,0.6); transition: color 0.2s ease;
}
.footer a:hover { color: var(--neon-lime); }

.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-row a {
  width: 36px; height: 36px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6); transition: all 0.2s ease;
}
.social-row a:hover { background: var(--brand-green); color: var(--paper); }
.social-row a i { width: 18px; height: 18px; }

.newsletter {
  display: flex; gap: 0.5rem; margin-top: 0.75rem;
}
.newsletter input {
  flex: 1; padding: 0.6rem 0.75rem; border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); background: rgba(255,255,255,0.06);
  color: var(--paper); font-size: 0.85rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter input:focus { outline: none; border-color: var(--brand-green); }
.newsletter .button { padding: 0.6rem 1rem; font-size: 0.82rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 40;
  width: 56px; height: 56px; display: grid; place-items: center;
  border-radius: 50%; background: #25D366; color: var(--paper);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: all 0.3s var(--ease);
  animation: slideUp 0.6s var(--ease) both 1s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

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

/* ── Reveal Animation ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   Responsive
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-grid, .product-grid, .pricing-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .role-grid, .testimonial-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .split { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  /* Solid background — backdrop-filter creates a containing block for fixed children */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: white;
    position: sticky;
  }

  /* Show hamburger — always above the drop-down panel */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
  }

  /* Drop-down panel — sits directly below the header, fits to content */
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: white;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    overflow: visible;
    padding: 0.5rem 0 1.5rem;
    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    visibility: hidden;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  /* Hamburger → X — ensure button always renders on top */
  .nav-open .nav-toggle { position: relative; z-index: 101; }
  .nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Full-width centred links */
  .nav-link, .dropdown-toggle {
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    width: 100%;
    text-align: center;
    border-radius: 0;
    justify-content: center;
  }

  /* CTA button */
  .nav-actions {
    width: 100%;
    padding: 0.75rem 1.5rem 0;
    margin: 0;
    flex-direction: column;
  }
  .nav-actions .button { width: 100%; text-align: center; }

  /* Products dropdown — centred, no divider line */
  .dropdown { width: 100%; }
  .dropdown-toggle { justify-content: center; }
  .dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--green-soft);
    opacity: 1;
    transform: none;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
    text-align: center;
  }
  .dropdown.is-open .dropdown-menu { max-height: 500px; padding: 0.5rem 0; }
  .dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-align: center;
    border-radius: 0;
  }
  .dropdown-menu a span { display: block; }

  /* Rest of layout */

  .section, .page-section { padding: 64px 0; }
  .feature-grid, .product-grid, .pricing-grid, .role-grid, .info-grid,
  .testimonial-grid, .resource-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .field-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }

  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
}
.single-pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
}

.pricing-left {
  background: linear-gradient(135deg, var(--brand-green), #15803d);
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.currency-toggle {
  display: flex;
  background: rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 0.25rem;
  margin-bottom: 2rem;
}

.currency-toggle button {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.currency-toggle button.active {
  background: white;
  color: var(--brand-green);
  box-shadow: var(--shadow-sm);
}

.price-display {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.price-display .currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.price-display strong {
  font-size: 3.5rem;
  line-height: 1;
  font-weight: 800;
}

.price-display .period {
  align-self: flex-end;
  font-weight: 500;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.price-subtitle {
  font-size: 0.85rem;
  opacity: 0.9;
  margin: 0;
}

.pricing-right {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  background: white;
}

.pricing-right .check-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.pricing-right .check-list li {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 768px) {
  .single-pricing-card {
    grid-template-columns: 1fr;
  }
}

/* ── Page Hero (Ambassador & 1 Child Project) ── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.page-hero .eyebrow {
  color: var(--neon-lime);
}

.page-hero h1 {
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* ── Preview Grid (Right Side of Page Hero) ── */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  perspective: 1000px;
}

.preview-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.4s var(--ease);
}

.preview-tile:hover {
  transform: rotateY(0) rotateX(0);
  background: rgba(255, 255, 255, 0.1);
}

.preview-tile.large {
  grid-column: 1 / -1;
}

.preview-tile h3 {
  color: var(--neon-lime);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.preview-tile p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Policy Content ── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-bottom: 1.5rem;
}

.policy-content p, .policy-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 1rem;
}

@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .preview-tile { transform: none; }
}

/* ── Contact Section ── */
.contact-section { background: var(--paper); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.contact-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.contact-img-wrap { width: 100%; height: 100%; }
.contact-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.contact-img-fallback { display: flex; align-items: center; justify-content: center; width: 100%; height: 400px; }
.contact-info h2 { margin-bottom: 2rem; }
.contact-details { display: grid; gap: 1.75rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: center; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-soft); display: grid; place-items: center; flex-shrink: 0;
}
.contact-icon i { width: 20px; height: 20px; color: var(--brand-green); }
.contact-label { font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 0.25rem; }
.contact-item a { display: inline-flex; color: var(--ink); font-weight: 500; font-size: 1rem; transition: color 0.2s; }
.contact-item a:hover { color: var(--brand-green); }
.contact-socials { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; align-items: center; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-soft); display: flex; align-items: center; justify-content: center;
  color: var(--brand-green); transition: all 0.2s ease;
}
.social-btn:hover { background: var(--brand-green); color: white; transform: translateY(-2px); }
.social-btn.youtube { background: #fee2e2; color: #dc2626; }
.social-btn.youtube:hover { background: #dc2626; color: white; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-visual { min-height: 260px; }
}
