/* ==========================================================================
   Elniqor — static stylesheet (hand-written from Tailwind + globals.css)
   ========================================================================== */

/* ---- Design tokens ---- */
:root {
  --background: #f9f7f4;
  --foreground: #1c1c1e;
  --card: #ffffff;
  --muted: #f4f3f0;
  --muted-foreground: #6b7280;
  --border: #e5e7eb;

  /* Brand palette (exact hex) */
  --sapphire: #1B4F72;
  --amber: #E8A838;
  --mint: #2ECC9A;
  --ivory: #F9F7F4;
  --anthracite: #1C1C1E;
  --stone: #6B7280;
  --violet: #6B21A8;
  --pink: #EC4899;

  --radius: 0.75rem;

  --font-sans: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  --font-heading: 'Sora', 'Segoe UI', 'system-ui', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: 80rem; /* max-w-7xl */
  margin-inline: auto;
  padding-inline: 1rem;
}
.container-4xl { max-width: 56rem; }
.container-3xl { max-width: 48rem; }

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}

main { display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---- Utility backgrounds / effects from globals.css ---- */
.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.bg-hero-gradient {
  background: linear-gradient(135deg, #0f1f2e 0%, #1B4F72 30%, #6B21A8 65%, #EC4899 100%);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1B4F72, #6B21A8);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.brand:hover .brand-icon { transform: scale(1.05); }
.brand-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sapphire);
}

.nav-desktop { display: none; }
.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--anthracite);
  transition: color 0.2s ease;
}
.nav-desktop a:hover { color: var(--sapphire); }

.cta-desktop { display: none; }

.btn-amber {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--amber);
  color: var(--anthracite);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.btn-amber:hover { background: #d4952e; transform: scale(1.05); }

.hamburger {
  display: inline-flex;
  align-items: center; justify-content: center;
  min-height: 2.75rem; min-width: 2.75rem;
  border-radius: 0.75rem;
  border: none; background: transparent;
  color: var(--anthracite);
  transition: background 0.2s ease;
}
.hamburger:hover { background: rgba(0,0,0,0.05); }
.hamburger svg { width: 1.5rem; height: 1.5rem; }
.hamburger .icon-close { display: none; }
.hamburger.open .icon-menu { display: none; }
.hamburger.open .icon-close { display: inline; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}
.mobile-menu nav a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: var(--anthracite);
  font-weight: 500;
  transition: all 0.2s ease;
}
.mobile-menu nav a:hover {
  background: rgba(27, 79, 114, 0.05);
  color: var(--sapphire);
}
.mobile-menu nav a.mobile-cta {
  justify-content: center;
  margin-top: 0.5rem;
  background: var(--amber);
  color: var(--anthracite);
  font-weight: 600;
  font-size: 0.875rem;
}
.mobile-menu nav a.mobile-cta:hover { background: #d4952e; }

@media (min-width: 768px) {
  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
  .cta-desktop { display: block; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
}
.orbs {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}
.orb-a { top: 25%; left: -8rem; width: 24rem; height: 24rem; background: rgba(107,33,168,0.30); }
.orb-b { bottom: 25%; right: -8rem; width: 24rem; height: 24rem; background: rgba(236,72,153,0.20); }
.orb-c { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: rgba(27,79,114,0.20); }

.hero-content {
  position: relative; z-index: 10;
  padding-block: 3rem;
  opacity: 0;
  animation: fadeIn 0.4s ease forwards;
}
@media (min-width: 768px) { .hero-content { padding-block: 5rem; } }

.badge-row { display: flex; justify-content: center; margin-bottom: 2rem; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dot {
  width: 0.5rem; height: 0.5rem;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}
.dot-mint { background: var(--mint); }
.dot-amber { background: var(--amber); }

.hero-headline {
  text-align: center;
  margin-bottom: 1.5rem;
}
.hero-headline h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.grad-hero-headline {
  display: block;
  background-image: linear-gradient(90deg, #E8A838, #EC4899, #2ECC9A);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.btn-amber-lg {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: var(--amber);
  color: var(--anthracite);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 32px rgba(232,168,56,0.45), 0 0 60px rgba(232,168,56,0.2);
  transition: all 0.2s ease;
}
.btn-amber-lg:hover { background: #f5b83f; transform: scale(1.05); }
.btn-glass {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.btn-glass:hover { background: rgba(255,255,255,0.15); }
.btn-amber-lg svg, .btn-glass svg { width: 1.25rem; height: 1.25rem; }
.btn-glass svg { width: 1rem; height: 1rem; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
}
.stat-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.stat-icon { display: flex; justify-content: center; margin-bottom: 0.5rem; }
.stat-icon svg { width: 1.25rem; height: 1.25rem; color: var(--mint); }
.stat-value {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.875rem; font-weight: 600; color: var(--mint); }
.stat-sub { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 0.125rem; }

.hero-disclaimer {
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  margin-top: 1rem;
  max-width: 32rem;
  margin-inline: auto;
}

.scroll-indicator {
  position: relative; z-index: 10;
  display: flex; justify-content: center;
  padding-bottom: 2rem;
}
.scroll-mouse {
  width: 1.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 0.5rem;
  animation: bounce 2s infinite;
}
.scroll-mouse span {
  width: 0.25rem; height: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.5);
}

@media (min-width: 768px) {
  .hero-headline h1 { font-size: 3.75rem; }
  .hero-sub { font-size: 1.125rem; }
  .hero-ctas { flex-direction: row; margin-bottom: 5rem; }
  .btn-amber-lg, .btn-glass { width: auto; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-value { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .hero-headline h1 { font-size: 4.5rem; }
}

/* ==========================================================================
   Generic section
   ========================================================================== */
.section { padding-block: 4rem; }
@media (min-width: 768px) { .section { padding-block: 6rem; } }
.bg-white { background: #fff; }
.bg-ivory { background: var(--ivory); }

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .section-head { margin-bottom: 4rem; } }

.eyebrow {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.eyebrow-sapphire { background: rgba(27,79,114,0.08); color: var(--sapphire); }
.eyebrow-amber { background: rgba(232,168,56,0.10); color: var(--amber); }
.eyebrow-mint { background: rgba(46,204,154,0.10); color: var(--mint); }

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--anthracite);
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }

.grad-text { -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.grad-sapphire-violet { background-image: linear-gradient(135deg, #1B4F72, #6B21A8); }
.grad-amber-pink { background-image: linear-gradient(135deg, #E8A838, #EC4899); }
.grad-mint-sapphire { background-image: linear-gradient(135deg, #2ECC9A, #1B4F72); }
.grad-sapphire-pink { background-image: linear-gradient(135deg, #1B4F72, #EC4899); }

/* ---- Reveal animation (replaces framer-motion / IntersectionObserver) ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.is-visible, .reveal-right.is-visible { transform: translate(0,0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==========================================================================
   HOW IT WORKS / cards grids
   ========================================================================== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.grid-3-tight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3-tight { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.card-pad { padding: 2rem; }

.step-number {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.icon-tile {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.card:hover .icon-tile { transform: scale(1.1); }
.icon-tile svg { width: 1.5rem; height: 1.5rem; color: #fff; }

.g1 { background: linear-gradient(135deg, #1B4F72, #6B21A8); }
.g2 { background: linear-gradient(135deg, #6B21A8, #EC4899); }
.g3 { background: linear-gradient(135deg, #E8A838, #2ECC9A); }
.g4 { background: linear-gradient(135deg, #2ECC9A, #1B4F72); }
.g5 { background: linear-gradient(135deg, #E8A838, #EC4899); }
.g6 { background: linear-gradient(135deg, #EC4899, #E8A838); }
.g7 { background: linear-gradient(135deg, #1B4F72, #2ECC9A); }
.g8 { background: linear-gradient(135deg, #6B21A8, #1B4F72); }
.g9 { background: linear-gradient(135deg, #1B4F72, #EC4899); }
.g10 { background: linear-gradient(135deg, #2ECC9A, #E8A838); }
.g11 { background: linear-gradient(135deg, #E8A838, #6B21A8); }
.g12 { background: linear-gradient(135deg, #EC4899, #2ECC9A); }
.g13 { background: linear-gradient(135deg, #2ECC9A, #6B21A8); }

.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--anthracite);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.625;
  flex: 1;
}

/* ==========================================================================
   FEATURED COURSES / catalogue cards
   ========================================================================== */
.course-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }

.course-head {
  position: relative;
  height: 9rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-end;
}
.course-head.small { height: 7rem; padding: 1.25rem; }
.course-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
}
.tag-amber { background: var(--amber); color: var(--anthracite); }
.tag-mint { background: var(--mint); color: #fff; }
.tag-sapphire { background: var(--sapphire); color: #fff; }

.course-head-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.course-head.small .course-head-icon { width: 2.5rem; height: 2.5rem; }
.course-head-icon svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.course-head.small .course-head-icon svg { width: 1.25rem; height: 1.25rem; }

.course-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-body.small { padding: 1.25rem; }
.course-cat {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.course-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--anthracite);
  font-size: 1rem;
  line-height: 1.375;
  margin-bottom: 0.75rem;
}
.course-name.small { font-size: 0.875rem; margin-bottom: 1rem; flex: 1; }

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.meta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--stone);
}
.meta svg { width: 0.875rem; height: 0.875rem; }
.level-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}
.level-badge svg { width: 0.75rem; height: 0.75rem; }
.lvl-deb { color: var(--mint); background: rgba(46,204,154,0.10); }
.lvl-int { color: var(--amber); background: rgba(232,168,56,0.10); }
.lvl-adv { color: var(--pink); background: rgba(236,72,153,0.10); }
.lvl-all { color: var(--sapphire); background: rgba(27,79,114,0.10); }

.course-foot {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-body.small .course-foot { margin-top: 0; }
.price {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--sapphire);
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sapphire);
  transition: color 0.2s ease, gap 0.2s ease;
}
.link-more:hover { color: var(--violet); gap: 0.5rem; }
.link-more svg { width: 1rem; height: 1rem; }

.link-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: rgba(27,79,114,0.08);
  color: var(--sapphire);
  transition: all 0.2s ease;
}
.link-more-btn:hover { background: var(--sapphire); color: #fff; gap: 0.5rem; }
.link-more-btn svg { width: 0.875rem; height: 0.875rem; }

.center-row { display: flex; justify-content: center; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--sapphire);
  color: var(--sapphire);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}
.btn-outline:hover { background: var(--sapphire); color: #fff; }
.btn-outline svg { width: 1.25rem; height: 1.25rem; }

.disclaimer-small {
  font-size: 0.75rem;
  color: var(--stone);
  text-align: center;
  margin: 2rem auto 0;
  max-width: 48rem;
  line-height: 1.625;
  font-style: italic;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.stars { display: inline-flex; align-items: center; gap: 0.125rem; }
.stars svg { width: 1rem; height: 1rem; }
.star-on { fill: var(--amber); color: var(--amber); }
.star-off { fill: #e5e7eb; color: #e5e7eb; }
.testi-rating { font-size: 0.75rem; color: var(--stone); }
.testi-quote {
  font-size: 0.875rem;
  color: var(--anthracite);
  line-height: 1.625;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}
.avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.avatar span { font-size: 0.75rem; font-weight: 700; color: #fff; }
.testi-name { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--anthracite); }
.testi-city { font-size: 0.75rem; color: var(--stone); }
.testi-note { font-size: 10px; color: var(--stone); margin-top: 0.75rem; font-style: italic; line-height: 1.25; }

/* ==========================================================================
   PEDAGOGY / CTA blocks
   ========================================================================== */
.ped-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ped-orb-a { position: absolute; top: 0; left: 25%; width: 24rem; height: 24rem; border-radius: 9999px; background: rgba(27,79,114,0.05); filter: blur(64px); }
.ped-orb-b { position: absolute; bottom: 0; right: 25%; width: 24rem; height: 24rem; border-radius: 9999px; background: rgba(232,168,56,0.05); filter: blur(64px); }

.card-plain {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-plain:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border-color: rgba(27,79,114,0.2); }
.card-ivory {
  background: var(--ivory);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-ivory:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.card-plain .icon-tile, .card-ivory .icon-tile { margin-bottom: 1rem; }
.card-plain:hover .icon-tile, .card-ivory:hover .icon-tile { transform: scale(1.1); }
.card-plain .card-title, .card-ivory .card-title { font-size: 1rem; margin-bottom: 0.5rem; }
.card-plain .card-desc, .card-ivory .card-desc { flex: none; }

.cta-panel {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #2ECC9A, #1B4F72);
  border-radius: 1.5rem;
  padding: 2rem;
}
@media (min-width: 768px) { .cta-panel { margin-top: 4rem; padding: 3rem; } }
.cta-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-panel h3 { font-size: 2.25rem; } }
.cta-panel p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--sapphire);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}
.btn-white:hover { background: rgba(255,255,255,0.95); transform: scale(1.05); }
.btn-white svg { width: 1.25rem; height: 1.25rem; }

/* ==========================================================================
   FINAL CTA (full-width gradient)
   ========================================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 4rem;
  background: linear-gradient(135deg, #E8A838 0%, #EC4899 50%, #6B21A8 100%);
}
@media (min-width: 768px) { .final-cta { padding-block: 6rem; } }
.final-cta .orb-w1 { position: absolute; top: 25%; left: -8rem; width: 24rem; height: 24rem; border-radius: 9999px; background: rgba(255,255,255,0.2); filter: blur(64px); }
.final-cta .orb-w2 { position: absolute; bottom: 25%; right: -8rem; width: 24rem; height: 24rem; border-radius: 9999px; background: rgba(255,255,255,0.1); filter: blur(64px); }
.final-inner { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin-inline: auto; }
.pill-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.pill-solid svg { width: 1rem; height: 1rem; }
.final-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .final-cta h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .final-cta h2 { font-size: 3.75rem; } }
.final-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  margin: 0 auto 2rem;
  max-width: 42rem;
  line-height: 1.625;
}
@media (min-width: 768px) { .final-cta p { font-size: 1.125rem; } }
.final-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.btn-white-lg {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  background: #fff;
  color: var(--sapphire);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  transition: all 0.2s ease;
}
.btn-white-lg:hover { background: rgba(255,255,255,0.95); transform: scale(1.05); }
.btn-white-lg svg { width: 1.25rem; height: 1.25rem; }
.btn-border-white {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.btn-border-white:hover { background: rgba(255,255,255,0.1); }
@media (min-width: 768px) {
  .final-ctas { flex-direction: row; }
  .btn-white-lg, .btn-border-white { width: auto; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--anthracite); color: #fff; }
.footer-inner { padding-block: 3rem; }
@media (min-width: 768px) { .footer-inner { padding-block: 4rem; } }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: #fff; }
.footer-about { font-size: 0.875rem; color: #9ca3af; line-height: 1.625; margin-bottom: 1.5rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; color: #9ca3af; }
.footer-contact a, .footer-contact span { display: flex; align-items: center; gap: 0.5rem; color: #9ca3af; transition: color 0.2s ease; }
.footer-contact span { align-items: flex-start; }
.footer-contact a:hover { color: var(--amber); }
.footer-contact svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.footer-h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list a { font-size: 0.875rem; color: #9ca3af; transition: color 0.2s ease; }
.footer-list.formations a:hover { color: var(--amber); }
.footer-list.legal a:hover { color: var(--mint); }

.footer-compliance p { font-size: 0.75rem; color: #6b7280; line-height: 1.625; margin-bottom: 0.75rem; }
.footer-siret { display: flex; flex-direction: column; gap: 0.25rem; margin-top: 1rem; }
.footer-siret span { font-size: 0.75rem; color: #4b5563; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: #6b7280; text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ==========================================================================
   COOKIE BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  z-index: 50;
  animation: slideUp 0.3s ease-out;
}
.cookie-banner[hidden] { display: none; }
@media (min-width: 768px) {
  .cookie-banner { left: 1.5rem; right: auto; max-width: 28rem; }
}
.cookie-inner {
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid #f3f4f6;
  padding: 1.25rem;
}
.cookie-head { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.cookie-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(27,79,114,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cookie-icon svg { width: 1.25rem; height: 1.25rem; color: var(--sapphire); }
.cookie-body { flex: 1; }
.cookie-title { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 600; color: var(--anthracite); margin-bottom: 0.25rem; }
.cookie-text { font-size: 0.75rem; color: var(--stone); line-height: 1.625; }
.cookie-text a { text-decoration: underline; }
.cookie-text a:hover { color: var(--sapphire); }
.cookie-close {
  color: #9ca3af;
  border: none; background: transparent;
  padding: 0.25rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.cookie-close:hover { color: #4b5563; background: #f3f4f6; }
.cookie-close svg { width: 1rem; height: 1rem; }
.cookie-actions { display: flex; align-items: center; gap: 0.5rem; }
.cookie-accept {
  flex: 1;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: var(--sapphire);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  transition: background 0.2s ease;
}
.cookie-accept:hover { background: #164060; }
.cookie-decline {
  flex: 1;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--stone);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
}
.cookie-decline:hover { background: #f9fafb; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.hero-compact {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
.hero-compact .inner { position: relative; z-index: 10; text-align: center; padding-top: 2rem; }
.hero-compact h1 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
@media (min-width: 768px) { .hero-compact h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-compact h1 { font-size: 3.75rem; } }
.hero-compact .sub {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.625;
}
@media (min-width: 768px) { .hero-compact .sub { font-size: 1.125rem; } }
.hero-compact .pill { margin-bottom: 1.5rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(5, 1fr); gap: 4rem; }
  .contact-form-col { grid-column: span 3; }
  .contact-info-col { grid-column: span 2; }
}

.form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}
@media (min-width: 768px) { .form-card { padding: 2.5rem; } }
.form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--anthracite);
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) { .form-card h2 { font-size: 1.5rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .field-row { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; gap: 0.375rem; }
.field label { font-size: 0.875rem; font-weight: 600; color: var(--anthracite); }
.field label .req { color: var(--pink); }
.field label .opt { font-size: 0.75rem; color: var(--stone); font-weight: 400; }
.field input, .field select, .field textarea {
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 2px solid #e5e7eb;
  color: var(--anthracite);
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--ivory);
  transition: border-color 0.2s ease;
}
.field textarea { min-height: auto; resize: none; line-height: 1.625; }
.field select { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: #9ca3af; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sapphire); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--pink); }
.field-error { font-size: 0.75rem; color: var(--pink); display: none; }
.field.show-error .field-error { display: block; }

.consent { display: flex; align-items: flex-start; gap: 0.75rem; }
.consent input { margin-top: 0.25rem; width: 1rem; height: 1rem; accent-color: var(--sapphire); cursor: pointer; flex-shrink: 0; }
.consent label { font-size: 0.75rem; color: var(--stone); line-height: 1.625; cursor: pointer; }
.consent label a { color: var(--sapphire); text-decoration: underline; }
.consent label a:hover { color: var(--violet); }
.consent .req { color: var(--pink); }

.btn-submit {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  background: var(--sapphire);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
  margin-top: 0.25rem;
}
.btn-submit:hover { background: #164060; transform: scale(1.01); }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 3rem;
  text-align: center;
}
.success-icon {
  width: 4rem; height: 4rem;
  border-radius: 9999px;
  background: rgba(46,204,154,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.success-icon svg { width: 2rem; height: 2rem; color: var(--mint); }
.form-success h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--anthracite); margin-bottom: 0.75rem; }
.form-success p { color: var(--stone); font-size: 0.875rem; line-height: 1.625; max-width: 24rem; }
.btn-reset {
  margin-top: 1.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--sapphire);
  background: transparent;
  color: var(--sapphire);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.btn-reset:hover { background: var(--sapphire); color: #fff; }

.contact-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
.info-panel {
  border-radius: 1.5rem;
  padding: 1.75rem;
  color: #fff;
  background: linear-gradient(135deg, #1B4F72, #6B21A8);
}
.info-panel h3 { font-family: var(--font-heading); font-size: 1.125rem; font-weight: 900; margin-bottom: 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.info-item-icon {
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.info-item:hover .info-item-icon { background: rgba(255,255,255,0.25); }
.info-item-icon svg { width: 1rem; height: 1rem; color: #fff; }
.info-item .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-bottom: 0.125rem; }
.info-item .val { font-size: 0.875rem; font-weight: 600; color: #fff; transition: color 0.2s ease; }
a.info-item:hover .val { color: var(--amber); }

.info-note {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.info-note h4 { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--anthracite); margin-bottom: 0.5rem; }
.info-note p { font-size: 0.75rem; color: var(--stone); line-height: 1.625; }
.info-note a { color: var(--sapphire); text-decoration: underline; }

/* ==========================================================================
   FORMATIONS filters
   ========================================================================== */
.filter-bar {
  padding-block: 1.25rem;
  background: var(--ivory);
  position: sticky;
  top: 4rem;
  z-index: 30;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .filter-bar { padding-block: 1.5rem; top: 5rem; } }
.filter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}
.filter-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0;
  min-height: 2.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid rgba(27,79,114,0.2);
  color: var(--sapphire);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.filter-chip:hover { background: var(--sapphire); color: #fff; border-color: var(--sapphire); }

.grid-catalogue {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-catalogue { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-catalogue { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal-hero {
  background: linear-gradient(135deg, #0f1f2e 0%, #1B4F72 30%, #6B21A8 65%, #EC4899 100%);
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.legal-hero .inner { text-align: center; padding-top: 2rem; }
.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) { .legal-hero h1 { font-size: 2.25rem; } }
.legal-hero p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

.legal-body { padding-block: 3rem; background: var(--ivory); }
@media (min-width: 768px) { .legal-body { padding-block: 4rem; } }
.legal-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border: 1px solid #f3f4f6;
}
@media (min-width: 768px) { .legal-card { padding: 3rem; } }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sapphire);
  margin-bottom: 0.75rem;
}
.legal-section > div { color: var(--anthracite); font-size: 0.875rem; line-height: 1.625; }
.legal-section p { margin-bottom: 0.75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.legal-section a { color: var(--sapphire); text-decoration: underline; }
.legal-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  font-size: 0.75rem;
  color: var(--stone);
}
.legal-foot a { color: var(--sapphire); }
.legal-callout {
  background: rgba(232,168,56,0.10);
  border-left: 4px solid var(--amber);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 2rem;
}
.legal-callout p { font-size: 0.875rem; font-weight: 600; color: var(--anthracite); line-height: 1.625; }

/* ==========================================================================
   404
   ========================================================================== */
.notfound {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.notfound .inner { position: relative; z-index: 10; text-align: center; max-width: 32rem; }
.notfound-icon {
  width: 5rem; height: 5rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1B4F72, #6B21A8);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  margin: 0 auto 2rem;
}
.notfound-icon svg { width: 2.5rem; height: 2.5rem; color: #fff; }
.notfound h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .notfound h1 { font-size: 8rem; } }
.notfound p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 2rem; line-height: 1.625; }
@media (min-width: 768px) { .notfound p { font-size: 1.125rem; } }
.notfound .btn-amber-lg { width: auto; }

/* ==========================================================================
   Keyframes
   ========================================================================== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(25%); }
}
