/* ===== Self Mastery Bootcamp — Premium Design System v2 ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@600;700;800;900&display=swap');

:root {
  --navy: #0b1120;
  --navy-mid: #111a2e;
  --navy-light: #182341;
  --charcoal: #101828;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-hover: #e09200;
  --amber-glow: rgba(245, 158, 11, 0.22);
  --amber-glow-strong: rgba(245, 158, 11, 0.35);
  --ivory: #faf9f7;
  --ivory-dim: #f4f2ed;
  --cream: #fdf8f0;
  --gold-muted: #c9a96e;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dimmed: #64748b;
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-light: rgba(0, 0, 0, 0.06);
  --border-card: rgba(0, 0, 0, 0.08);
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-dark-card: 0 2px 12px rgba(0, 0, 0, 0.3);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #e2e8f0;
  background: #0a0e17;
  overflow-x: hidden;
  line-height: 1.6;
}

/* === Utility Sections === */
.section-dark {
  background: #0a0e17;
  color: #e2e8f0;
}

.section-charcoal {
  background: #0c111c;
  color: #e2e8f0;
}

.section-light {
  background: #080b12;
  color: #e2e8f0;
}

.section-ivory {
  background: #0a0e17;
  color: #e2e8f0;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ═══════════════════════════════════════════════════
   STICKY NAV — more refined, taller, better spacing
   ═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(11, 17, 32, 0.88);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow .4s ease, background .4s ease;
}

#navbar.scrolled {
  background: rgba(11, 17, 32, 0.96);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}




.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .95rem 0;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.03em;
}

.nav-logo span {
  color: var(--amber);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--amber);
  color: #000 !important;
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all .2s;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all .3s;
}

/* ═══════════════════════════════════════════════════
   HERO — dramatically elevated
   ═══════════════════════════════════════════════════ */
.hero {
  padding: 9.5rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: #0a0e17;
  /* Very dark background as per screenshot */
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes heroGlow {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(-30px, 20px) scale(1.08);
    opacity: .7;
  }
}

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

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 .gradient-text {
  color: #f59e0b;
}

.hero .sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.offer-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.offer-strip .chip {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 500;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
}

.offer-strip .chip.price {
  color: #e2e8f0;
  font-size: .88rem;
  font-weight: 500;
}

.offer-strip .chip svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3b82f6;
}

.hero-ctas {
  display: flex;
  gap: 1.15rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #f59e0b;
  color: #000;
  font-weight: 600;
  font-size: .95rem;
  padding: .9rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  letter-spacing: .01em;
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(15, 23, 41, 0.5);
  color: #fff;
  font-weight: 500;
  font-size: .95rem;
  padding: .85rem 2.25rem;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all .25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.trust-banner {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 15px rgba(245, 158, 11, 0.05);
  max-width: 720px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.trust-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--amber-bright), var(--amber));
  box-shadow: 0 0 12px var(--amber-glow);
}

/* ═══════════════════════════════════════════════════
   SECTION HEADINGS — premium typography
   ═══════════════════════════════════════════════════ */
.sec-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #fff;
}

.sec-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  color: #94a3b8;
}

.sec-subtitle.center {
  margin: 0 auto;
}

.sec-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .55rem 1.6rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sec-tag:hover {
  transform: translateY(-2px);
}

.tag-amber {
  background: rgba(245, 158, 11, 0.08);
  color: var(--amber-bright);
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: inset 0 0 10px rgba(245, 158, 11, 0.05), 0 0 10px rgba(245, 158, 11, 0.1);
}

.tag-dark {
  background: rgba(255, 255, 255, 0.03);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════════════════
   CARDS — Uniform Premium Dark
   ═══════════════════════════════════════════════════ */
.card,
.card-dark,
.stat-card {
  background: #05070c;
  border-radius: 16px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: left;
  box-shadow: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover,
.card-dark:hover,
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.2);
  background: #070a12;
}

.card h3,
.card-dark h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.card p,
.card-dark p {
  color: #94a3b8 !important;
  font-size: 0.95rem;
  line-height: 1.65;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.icon-amber,
.icon-navy {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ═══════════════════════════════════════════════════
   ROADMAP — visually distinctive day cards
   ═══════════════════════════════════════════════════ */
.roadmap-card {
  padding: 2.5rem;
  /* Match universal card sizing but slightly more breathable */
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-list li {
  position: relative;
}

.roadmap-list li::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  /* Bullet hangs to the left */
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f59e0b;
  box-shadow: 0 0 4px rgba(245, 158, 11, 0.5);
}

.day-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════
   TRAINER — authoritative, premium feel
   ═══════════════════════════════════════════════════ */
.trainer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.trainer-img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-light);
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.trainer-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 17, 32, 0.4) 100%);
  pointer-events: none;
}

.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all .3s ease;
}

.stat-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.stat-card .num {
  font-family: 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1.2;
}

.stat-card .label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .35rem;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════
   PRICING — premium card with depth
   ═══════════════════════════════════════════════════ */
.pricing-box {
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -35%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.pricing-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes pricingGlow {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: .6;
    transform: scale(1.1);
  }
}

.pricing-box .price-tag {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #f59e0b;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.pricing-box .price-tag small {
  font-size: 1.1rem;
  font-weight: 500;
  color: #94a3b8;
}

.pricing-box .inclusions {
  list-style: none;
  text-align: left;
  margin: 2rem auto;
  max-width: 340px;
  position: relative;
  z-index: 1;
}

.pricing-box .inclusions li {
  padding: .55rem 0;
  font-size: .92rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: .6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-box .inclusions li:last-child {
  border-bottom: none;
}

.pricing-box .inclusions li svg {
  color: var(--amber);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════════════
   FAQ — cleaner, more polished
   ═══════════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem .5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #e2e8f0;
  text-align: left;
  font-family: inherit;
  transition: color .2s ease;
}

.faq-q:hover {
  color: var(--amber-hover);
}

.faq-q .arrow {
  transition: transform .35s ease, color .2s ease;
  font-size: 1rem;
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-q[aria-expanded="true"] .arrow {
  transform: rotate(180deg);
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
}

.faq-q[aria-expanded="true"] {
  color: var(--amber-hover);
}

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

.faq-a-inner {
  padding: .25rem .5rem 1.5rem;
  font-size: .94rem;
  line-height: 1.8;
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta h2 {
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   FOOTER — refined
   ═══════════════════════════════════════════════════ */
footer {
  background: #0a0e17;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

/* ═══════════════════════════════════════════════════
   STICKY MOBILE CTA — polished, non-intrusive
   ═══════════════════════════════════════════════════ */
.mobile-bottom-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: .85rem 1.15rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

.mobile-bottom-cta .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: .95rem;
  padding: .85rem;
  border-radius: 50px;
}

/* === Mobile Nav Menu === */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(11, 17, 32, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.25rem 1.5rem 1.75rem;
  gap: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-links.open a::after {
  display: none;
}

/* ═══════════════════════════════════════════════════
   PROBLEM SECTION CARDS — Custom Reference Style
   ═══════════════════════════════════════════════════ */
#problem .card {
  padding-left: 2.5rem;
}

#problem .card p {
  position: relative;
  /* Text naturally aligns with title and icon */
}

#problem .card p::before {
  content: '';
  position: absolute;
  left: -1.15rem;
  /* Bullet hangs to the left */
  top: 0.6rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #f59e0b;
  box-shadow: 0 0 4px rgba(245, 158, 11, 0.5);
}

#problem .card.cta-card {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2.25rem 2rem;
}

#problem .card.cta-card p {
  padding-left: 0;
}

#problem .card.cta-card p::before {
  display: none;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — tighter, premium mobile feel
   ═══════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .trainer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trainer-img {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }

  .mobile-bottom-cta {
    display: block;
  }

  body {
    padding-bottom: 75px;
  }

  .stat-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
  }

  .stat-card {
    padding: 1rem .5rem;
  }

  .stat-card .num {
    font-size: 1.25rem;
  }

  .pricing-box {
    padding: 2.5rem 1.75rem;
  }

  .sec-title {
    margin-bottom: .75rem;
  }

  .card {
    padding: 1.5rem 1.25rem;
  }

  .card-dark {
    padding: 1.5rem 1.25rem;
  }

  .offer-strip {
    padding: .8rem 1.15rem;
    gap: .6rem;
  }

  .btn-primary {
    padding: .9rem 1.75rem;
    font-size: .95rem;
  }

  .btn-secondary {
    padding: .85rem 1.75rem;
    font-size: .95rem;
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 1.15rem;
  }

  .hero {
    padding: 6.5rem 0 3.5rem;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS — refined entrance
   ═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children in grids */
.grid-2 .fade-up:nth-child(2) {
  transition-delay: .08s;
}

.grid-3 .fade-up:nth-child(2) {
  transition-delay: .1s;
}

.grid-3 .fade-up:nth-child(3) {
  transition-delay: .2s;
}

.grid-4 .fade-up:nth-child(2) {
  transition-delay: .08s;
}

.grid-4 .fade-up:nth-child(3) {
  transition-delay: .16s;
}

.grid-4 .fade-up:nth-child(4) {
  transition-delay: .24s;
}

/* === Section Divider Accents === */
.section-divider {
  height: 1px;
  border: none;
  margin: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
}