/* ══════════════════════════════════════════════════
   EduCraft — Premium Educational CSS
   ══════════════════════════════════════════════════ */

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

:root {
  --ink:       #080808;
  --ink-2:     #0f0f0f;
  --ink-3:     #161616;
  --ink-4:     #202020;
  --ink-5:     #2c2c2c;
  --gold:      #F5C518;
  --gold-2:    #FFD700;
  --gold-3:    #E6B800;
  --gold-dim:  rgba(245,197,24,0.08);
  --gold-glow: rgba(245,197,24,0.22);
  --gold-glow2:rgba(245,197,24,0.45);
  --white:     #ffffff;
  --off-white: #f0ede8;
  --grey:      #888888;
  --grey-2:    #4a4a4a;
  --grey-3:    #333333;
  --error:     #ff4f4f;
  --success:   #00d68f;
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --font-disp: 'Playfair Display', Georgia, serif;
  --font-body: 'Cabinet Grotesk', 'DM Sans', sans-serif;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --t:         0.28s;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utility ────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}
.section-head h2 span { color: var(--gold); }
.section-head p { color: var(--grey); max-width: 480px; margin: 0 auto; font-size: 1.02rem; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-2) 0%, var(--gold-3) 100%);
  color: var(--ink);
  box-shadow: 0 4px 24px var(--gold-glow);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px var(--gold-glow2);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn__arrow { transition: transform var(--t); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0;
  transition: background var(--t), box-shadow var(--t);
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--gold); }

.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a { font-size: 0.9rem; font-weight: 500; color: var(--grey); transition: color var(--t); }
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold) !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background var(--t), border-color var(--t) !important;
}
.nav__cta:hover { background: var(--gold) !important; color: var(--ink) !important; }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 199;
}
.mobile-menu.open { display: flex; }
.mm-link { padding: 12px 0; color: var(--grey); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); transition: color var(--t); }
.mm-link:last-child { border-bottom: none; }
.mm-link:hover { color: var(--white); }
.mm-cta { color: var(--gold) !important; font-weight: 700; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 60px;
  overflow: hidden;
}

.hero__bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.12) 0%, transparent 60%);
  top: -100px; left: -200px;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 60%);
  bottom: 0; right: -100px;
  animation: orbDrift 16s ease-in-out infinite alternate-reverse;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero__particles { position: absolute; inset: 0; opacity: 0.5; }

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,0.2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease) both;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-disp);
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeUp 0.7s 0.1s var(--ease) both;
  letter-spacing: -0.02em;
}
.hero__highlight {
  color: var(--gold);
  position: relative;
}
.hero__highlight::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s var(--ease) both;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 44px;
  animation: fadeUp 0.7s 0.3s var(--ease) both;
  flex-wrap: wrap;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s var(--ease) both;
}
.badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 14px;
  border-radius: 100px;
}
.badge span { font-size: 0.9rem; }

/* Hero visual */
.hero__visual {
  position: relative;
  flex: 0 0 320px;
  height: 420px;
  display: none;
  z-index: 2;
}
@media (min-width: 960px) { .hero__visual { display: block; } }

.hero__circle {
  position: absolute;
  width: 280px; height: 280px;
  border: 1.5px solid rgba(245,197,24,0.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 20s linear infinite;
}
.hero__ring {
  position: absolute;
  width: 200px; height: 200px;
  border: 1.5px dashed rgba(245,197,24,0.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotateSlow 14s linear infinite reverse;
}

.hero__card {
  position: absolute;
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.hc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hc-dot--g { background: var(--success); box-shadow: 0 0 8px var(--success); }
.hc-dot--y { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow2); }
.hc-dot--b { background: #4f9eff; box-shadow: 0 0 8px rgba(79,158,255,0.5); }
.hc-info { display: flex; flex-direction: column; }
.hc-info small { font-size: 0.72rem; color: var(--grey); }
.hc-info strong { font-size: 0.88rem; color: var(--white); }
.hc-1 { top: 30px; left: 20px; animation: float 4s ease-in-out infinite; }
.hc-2 { top: 160px; right: -10px; animation: float 5s 1s ease-in-out infinite; }
.hc-3 { bottom: 70px; left: 30px; animation: float 4.5s 2s ease-in-out infinite; }

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services { background: var(--ink-2); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.svc-card {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { border-color: rgba(245,197,24,0.2); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card--featured { border-color: rgba(245,197,24,0.2); background: linear-gradient(135deg, var(--ink-3) 0%, rgba(245,197,24,0.04) 100%); }

.svc-card__hot {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.svc-card__icon { font-size: 2.4rem; margin-bottom: 16px; }

.svc-card h3 {
  font-family: var(--font-disp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-card p { font-size: 0.9rem; color: var(--grey); margin-bottom: 18px; line-height: 1.7; }

.svc-card__range {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,197,24,0.15);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.svc-card__link {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--gold);
  transition: gap var(--t);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.svc-card__link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   WHY US
   ══════════════════════════════════════════════════════ */
.why-us { background: var(--ink); }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.why-card:hover { border-color: rgba(245,197,24,0.15); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.why-card__num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-disp);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,197,24,0.06);
  line-height: 1;
}
.why-card__icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h4 {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: 0.88rem; color: var(--grey); line-height: 1.72; }

/* ══════════════════════════════════════════════════════
   STATISTICS
   ══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--ink-2);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-section__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 32px 60px;
  flex: 1;
  min-width: 160px;
}
.stat-item__num {
  display: inline;
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
}
.stat-item__plus {
  display: inline;
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--gold);
}
.stat-item__label { font-size: 0.85rem; color: var(--grey); margin-top: 6px; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,0.07); }

@media (max-width: 600px) { .stat-divider { display: none; } }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials { background: var(--ink); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.testi-card {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--t), transform var(--t);
}
.testi-card:hover { border-color: rgba(245,197,24,0.15); transform: translateY(-3px); }
.testi-card--featured { border-color: rgba(245,197,24,0.2); background: linear-gradient(135deg, var(--ink-3), rgba(245,197,24,0.04)); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 0.95rem; color: var(--grey); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; flex-direction: column; gap: 2px; }
.testi-author strong { font-size: 0.9rem; color: var(--white); font-weight: 700; }
.testi-author span { font-size: 0.8rem; color: var(--grey); }

/* ══════════════════════════════════════════════════════
   CONTACT / FORM
   ══════════════════════════════════════════════════════ */
.contact-section { background: var(--ink-2); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrapper { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 {
  font-family: var(--font-disp);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info h2 span { color: var(--gold); }
.contact-info > p { font-size: 0.97rem; color: var(--grey); margin-bottom: 28px; line-height: 1.75; }

.contact-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.cf-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--grey); }
.cf-item span { color: var(--gold); font-weight: 700; font-size: 1rem; }

.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 7px 14px;
  border-radius: 8px;
  transition: border-color var(--t), color var(--t);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* FORM STYLES */
.contact-form-wrap {
  background: var(--ink-3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 40px;
}
@media (max-width: 540px) { .contact-form-wrap { padding: 28px 20px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.79rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.req { color: var(--gold); }

.form-group input,
.form-group select {
  width: 100%;
  background: var(--ink-4);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--white);
  outline: none;
  appearance: none;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.form-group input::placeholder { color: rgba(136,136,136,0.6); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--ink-5);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}
.form-group input.is-err,
.form-group select.is-err { border-color: var(--error); box-shadow: 0 0 0 3px rgba(255,79,79,0.1); }
.form-group input.is-ok { border-color: var(--success); }

.form-err {
  display: block;
  font-size: 0.76rem;
  color: var(--error);
  margin-top: 5px;
  min-height: 14px;
}

.select-wrap { position: relative; }
.select-wrap select { cursor: pointer; padding-right: 38px; }
.select-icon {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--grey);
  pointer-events: none;
  font-size: 0.95rem;
}

.btn--submit { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; margin-top: 6px; }

.spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(8,8,8,0.3);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spinAnim 0.6s linear infinite;
  vertical-align: middle;
}

.form-note { font-size: 0.78rem; color: var(--grey-2); text-align: center; margin-top: 14px; }

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeUp 0.5s var(--ease);
}
.fs-icon {
  width: 68px; height: 68px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 20px;
  animation: successPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}
.form-success h3 {
  font-family: var(--font-disp);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 12px;
}
.form-success p { color: var(--grey); font-size: 0.97rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 70px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo {
  font-family: var(--font-disp);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 14px;
}
.footer__logo span { color: var(--gold); }
.footer__brand p { font-size: 0.87rem; color: var(--grey); line-height: 1.75; max-width: 280px; }

.footer__col h5 {
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 0.87rem; color: var(--grey); transition: color var(--t); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__bottom p { font-size: 0.8rem; color: var(--grey-2); }

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: 0 4px 16px var(--gold-glow);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px var(--gold-glow2); }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}
@keyframes rotateSlow { to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(245,197,24,0); }
}
@keyframes spinAnim { to { transform: rotate(360deg); } }
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero { flex-direction: column; min-height: auto; padding: 100px 24px 60px; }
  .section { padding: 72px 0; }
}
@media (max-width: 600px) {
  .hero__headline { font-size: 2.8rem; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .stats-section__inner { gap: 0; }
  .stat-item { padding: 24px 20px; }
}
