/* =============================================================
   EduShine Learning — "Royal Shine" Design System
   Primary  Royal Purple   #6D28D9
   Secondary Indigo         #4F46E5
   Accent   Gold            #FBBF24
   BG       Lavender White  #FAF5FF
   Text     Dark Plum       #2E1065
   ============================================================= */

/* -------------------------------------------------------------
   1. Tokens
------------------------------------------------------------- */
:root {
  /* Brand */
  --purple: #6D28D9;
  --purple-700: #5b21b6;
  --purple-900: #4c1d95;
  --indigo: #4F46E5;
  --gold: #FBBF24;
  --gold-600: #f59e0b;
  --plum: #2E1065;
  --lavender: #FAF5FF;

  /* Neutrals */
  --white: #ffffff;
  --ink: #2E1065;
  --ink-soft: #5b4b87;
  --muted: #7c6ba8;
  --line: #ece4fb;
  --surface: #ffffff;
  --surface-2: #faf5ff;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #6D28D9 0%, #4F46E5 100%);
  --grad-brand-deep: linear-gradient(140deg, #4c1d95 0%, #6D28D9 45%, #4F46E5 100%);
  --grad-gold: linear-gradient(135deg, #FBBF24 0%, #f59e0b 100%);
  --grad-soft: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);

  /* Typography */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radius */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(46, 16, 101, 0.06);
  --sh-md: 0 14px 40px rgba(76, 29, 149, 0.10);
  --sh-lg: 0 30px 70px rgba(76, 29, 149, 0.18);
  --sh-gold: 0 14px 34px rgba(245, 158, 11, 0.35);
  --sh-purple: 0 16px 40px rgba(109, 40, 217, 0.30);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 76px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   2. Reset & base
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--lavender);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

::selection { background: var(--gold); color: var(--plum); }

:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 3px;
  border-radius: 6px;
}

/* -------------------------------------------------------------
   3. Layout helpers
------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--alt { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.16);
  padding: 7px 16px;
  border-radius: var(--r-pill);
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.section-head { max-width: 680px; }
.section-head--center { margin-inline: auto; text-align: center; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-top: 18px;
}
.section-title .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

/* -------------------------------------------------------------
   4. Buttons
------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-3px); }

.btn--gold {
  background: var(--grad-gold);
  color: var(--plum);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover { box-shadow: 0 20px 44px rgba(245, 158, 11, 0.45); }

.btn--primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--sh-purple);
}
.btn--primary:hover { box-shadow: 0 22px 50px rgba(109, 40, 217, 0.42); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: rgba(109, 40, 217, 0.30);
}
.btn--outline:hover { border-color: var(--purple); background: rgba(109,40,217,0.06); }

.btn--white { background: #fff; color: var(--purple); box-shadow: var(--sh-md); }
.btn--lg { padding: 18px 36px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* -------------------------------------------------------------
   5. Header / Nav
------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), var(--sh-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--grad-brand);
  border-radius: 13px;
  box-shadow: var(--sh-purple);
  flex: none;
}
.brand__mark svg { width: 24px; height: 24px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: var(--plum);
  letter-spacing: -0.02em;
  line-height: 1;
}
.brand__name b { color: var(--purple); }
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}
/* header on dark hero (transparent state) */
.site-header:not(.scrolled) .brand__name { color: #fff; }
.site-header:not(.scrolled) .brand__name b { color: var(--gold); }
.site-header:not(.scrolled) .brand__tag { color: rgba(255,255,255,0.7); }
.site-header:not(.scrolled) .nav__links a { color: rgba(255,255,255,0.92); }
.site-header:not(.scrolled) .nav__links a:hover { color: #fff; }
.site-header:not(.scrolled) .nav__links a.active { color: #fff; }
.site-header:not(.scrolled) .nav__links a.active::after { background: var(--gold); }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color .2s;
}
.nav__links a:hover { color: var(--purple); }
.nav__links a.active { color: var(--purple); }
.nav__links a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 3px; border-radius: 3px;
  background: var(--grad-gold);
}

.nav__cta { display: flex; align-items: center; gap: 12px; }

/* Book-Demo button that only appears inside the mobile dropdown menu */
.nav__menu-cta { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px; height: 46px;
  border: none; background: transparent;
  align-items: center; justify-content: center;
  border-radius: 12px;
}
.nav-toggle span {
  width: 24px; height: 2.5px; border-radius: 3px;
  background: var(--plum);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* -------------------------------------------------------------
   6. Hero
------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--grad-brand-deep);
  color: #fff;
  padding-top: calc(var(--nav-h) + clamp(40px, 7vw, 80px));
  padding-bottom: clamp(72px, 10vw, 130px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 16s ease-in-out infinite;
}
.blob--1 { width: 460px; height: 460px; background: #7c3aed; top: -140px; right: -80px; }
.blob--2 { width: 380px; height: 380px; background: var(--gold); bottom: -160px; left: -100px; opacity: 0.32; animation-delay: -5s; }
.blob--3 { width: 320px; height: 320px; background: #6366f1; top: 40%; left: 55%; opacity: 0.4; animation-delay: -9s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(28px, -34px) scale(1.08); }
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  line-height: 1.06;
}
.hero h1 .shine {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600; font-size: 0.88rem;
  padding: 8px 16px; border-radius: var(--r-pill);
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,0.25); }
.hero__lead {
  margin-top: 22px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  max-width: 540px;
}
.hero__subjects {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 26px 0 32px;
}
.subject-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px; border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.95);
}
.subject-tag svg { width: 15px; height: 15px; color: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual card */
.hero__card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-lg);
  position: relative;
}
.hero__card-top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.hero__avatar {
  width: 52px; height: 52px; border-radius: 14px; flex: none;
  background: var(--grad-gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: var(--plum); font-size: 1.2rem;
}
.hero__card-top h4 { color: #fff; font-size: 1.05rem; }
.hero__card-top p { color: rgba(255,255,255,0.7); font-size: 0.86rem; }
.hero__stars { color: var(--gold); letter-spacing: 2px; margin-left: auto; font-size: 0.95rem; }
.hero__quote { color: rgba(255,255,255,0.92); font-size: 1.02rem; font-style: italic; }
.hero__progress { margin-top: 22px; }
.hero__progress-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.85); margin-bottom: 8px; font-weight: 600; }
.hero__bar { height: 10px; border-radius: 99px; background: rgba(255,255,255,0.15); overflow: hidden; }
.hero__bar i {
  display: block; height: 100%; width: var(--w, 80%);
  background: var(--grad-gold); border-radius: 99px;
  transform-origin: left; animation: grow 1.4s var(--ease) .4s both;
}
@keyframes grow { from { transform: scaleX(0); } }
.hero__badge {
  position: absolute; right: -14px; bottom: -18px;
  background: #fff; color: var(--plum);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero__badge .icn { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; }
.hero__badge b { display: block; font-family: var(--font-display); font-size: 1.15rem; }
.hero__badge span { font-size: 0.78rem; color: var(--muted); }

/* hero wave */
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: -1; }
.hero__wave svg { width: 100%; height: auto; }

/* -------------------------------------------------------------
   7. Marquee / trust strip
------------------------------------------------------------- */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: 34px 38px;
  overflow: hidden;
}
.trust__label {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 26px;
}
.trust__label::before, .trust__label::after {
  content: "";
  height: 1px; width: clamp(32px, 8vw, 72px);
  background: linear-gradient(90deg, transparent, #d9c6fb);
}
.trust__label::after { background: linear-gradient(90deg, #d9c6fb, transparent); }

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex; align-items: center;
  gap: clamp(20px, 3.5vw, 44px);
  padding-right: clamp(20px, 3.5vw, 44px);
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
/* The marquee is a core brand element — keep it scrolling even when the OS
   requests reduced motion (the global animation kill-switch above would
   otherwise freeze it and the duplicated groups would show as extra rows). */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: marquee-scroll 36s linear infinite !important; }
}

.flag-chip {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.98rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 22px 10px 14px;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
}
.flag-chip:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: #e0d2fb; }
.flag-svg {
  width: 27px; height: 19px; flex: none;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(46, 16, 101, 0.10);
}
.flag-svg--sm { width: 18px; height: 13px; border-radius: 2.5px; vertical-align: -2px; display: inline-block; }

/* gold button shine sweep (premium micro-interaction) */
.btn--gold { position: relative; overflow: hidden; }
.btn--gold::before {
  content: "";
  position: absolute; top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.btn--gold:hover::before { left: 130%; }

/* -------------------------------------------------------------
   8. Cards & grids
------------------------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: #e0d2fb; }

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(109,40,217,0.12), rgba(79,70,229,0.12));
  color: var(--purple);
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* Course cards (curriculum snapshot) */
.course-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.course-card__head {
  padding: 22px 24px;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; gap: 14px;
}
.course-card--gold .course-card__head { background: var(--grad-gold); color: var(--plum); }
.course-card__head .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex: none; }
.course-card--gold .course-card__head .ic { background: rgba(46,16,101,0.12); }
.course-card__head h3 { color: inherit; font-size: 1.18rem; }
.course-card__body { padding: 22px 24px; flex: 1; }
.course-list li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft); font-weight: 500;
}
.course-list li:last-child { border-bottom: 0; }
.course-list li::before {
  content: ""; flex: none; margin-top: 7px;
  width: 8px; height: 8px; border-radius: 3px;
  background: var(--grad-gold);
}

/* -------------------------------------------------------------
   9. Stats
------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.stat__num .suffix { -webkit-text-fill-color: var(--gold-600); }
.stat__label { margin-top: 8px; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }

/* stats on dark */
.stats--on-dark .stat { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.stats--on-dark .stat__num { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.stats--on-dark .stat__num .suffix { -webkit-text-fill-color: var(--gold); }
.stats--on-dark .stat__label { color: rgba(255,255,255,0.8); }

/* -------------------------------------------------------------
   10. Testimonials
------------------------------------------------------------- */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.testimonial__quote-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem; line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  height: 28px;
}
.testimonial__stars { color: var(--gold); letter-spacing: 2px; margin: 14px 0 12px; }
.testimonial p { color: var(--ink); font-size: 1.05rem; font-style: italic; flex: 1; }
.testimonial__author {
  display: flex; align-items: center; gap: 13px;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  background: var(--grad-brand); flex: none;
}
.testimonial__author b { display: block; font-family: var(--font-display); color: var(--plum); }
.testimonial__author span { font-size: 0.86rem; color: var(--muted); }

/* -------------------------------------------------------------
   11. Split / feature rows
------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split__media {
  border-radius: var(--r-xl);
  padding: 40px;
  background: var(--grad-brand-deep);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.split__media::before {
  content: ""; position: absolute; width: 240px; height: 240px;
  background: var(--gold); filter: blur(70px); opacity: 0.35;
  top: -60px; right: -40px; border-radius: 50%;
}
.vm-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  padding: 22px; margin-bottom: 16px;
  position: relative;
}
.vm-card:last-child { margin-bottom: 0; }
.vm-card h4 { color: var(--gold); font-size: 0.84rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.vm-card p { color: rgba(255,255,255,0.92); }

.check-list li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 11px 0;
  font-weight: 500; color: var(--ink-soft);
}
.check-list li svg { flex: none; width: 24px; height: 24px; color: var(--purple); margin-top: 1px; }

/* -------------------------------------------------------------
   12. FAQ accordion
------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] { border-color: #d9c6fb; box-shadow: var(--sh-sm); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--plum); cursor: pointer; list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(109,40,217,0.10); color: var(--purple);
  display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
  font-size: 1.3rem; line-height: 1;
}
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--purple); color: #fff; }
.faq__a { padding: 0 24px 22px; color: var(--ink-soft); }

/* -------------------------------------------------------------
   13. CTA band
------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--grad-brand-deep);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--sh-lg);
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1;
}
.cta-band::before { width: 300px; height: 300px; background: var(--gold); opacity: 0.3; top: -120px; left: -60px; }
.cta-band::after { width: 300px; height: 300px; background: #7c3aed; opacity: 0.5; bottom: -140px; right: -60px; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,0.88); margin-top: 14px; font-size: 1.1rem; max-width: 560px; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; margin-top: 30px; }
.cta-contacts { display: flex; flex-wrap: wrap; gap: 14px 28px; justify-content: center; margin-top: 26px; }
.cta-contacts a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: #fff; }
.cta-contacts svg { width: 19px; height: 19px; color: var(--gold); }

/* -------------------------------------------------------------
   14. Forms
------------------------------------------------------------- */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--sh-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.9rem; color: var(--plum); margin-bottom: 7px;
}
.field label .req { color: #e11d48; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #a99cc4; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(109,40,217,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--error input, .field--error select, .field--error textarea { border-color: #e11d48; }
.field__msg { display: none; color: #e11d48; font-size: 0.82rem; margin-top: 6px; font-weight: 500; }
.field--error .field__msg { display: block; }

.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 8px; text-align: center; }
.form-success {
  display: none;
  background: linear-gradient(135deg, rgba(52,211,153,0.12), rgba(16,185,129,0.12));
  border: 1px solid rgba(16,185,129,0.3);
  color: #047857;
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-weight: 600;
  align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.form-success.show { display: flex; }
.form-success svg { flex: none; width: 22px; height: 22px; }

/* contact info cards */
.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.contact-method:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.contact-method .ci { width: 50px; height: 50px; flex: none; border-radius: 14px; display: grid; place-items: center; color: #fff; }
.ci--wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.ci--mail { background: var(--grad-brand); }
.ci--advisor { background: var(--grad-gold); color: var(--plum) !important; }
.contact-method h4 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-method p { color: var(--ink-soft); font-size: 0.95rem; }
.contact-method a { color: var(--purple); font-weight: 600; }

/* -------------------------------------------------------------
   15. Page hero (interior pages)
------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--grad-brand-deep);
  color: #fff;
  padding-top: calc(var(--nav-h) + clamp(40px, 6vw, 68px));
  padding-bottom: clamp(56px, 7vw, 88px);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.page-hero .blob { opacity: 0.4; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); }
.page-hero h1 .shine { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 18px auto 0; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 18px;
  font-weight: 600;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: var(--gold); }

/* -------------------------------------------------------------
   16. Blog
------------------------------------------------------------- */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-card__img {
  aspect-ratio: 16 / 9;
  position: relative;
  display: grid; place-items: center;
  color: #fff;
}
.blog-card__img svg { width: 64px; height: 64px; opacity: 0.92; }
.bg-1 { background: linear-gradient(135deg, #6D28D9, #4F46E5); }
.bg-2 { background: linear-gradient(135deg, #4F46E5, #7c3aed); }
.bg-3 { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.bg-4 { background: linear-gradient(135deg, #f59e0b, #FBBF24); }
.bg-5 { background: linear-gradient(135deg, #4c1d95, #6D28D9); }
.bg-6 { background: linear-gradient(135deg, #6366f1, #4F46E5); }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92); color: var(--purple);
  font-family: var(--font-display); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.blog-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { font-size: 0.82rem; color: var(--muted); font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.blog-card p { color: var(--ink-soft); font-size: 0.96rem; flex: 1; }
.blog-card__link { margin-top: 16px; font-family: var(--font-display); font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 7px; }
.blog-card:hover .blog-card__link { gap: 11px; }
.blog-card__link svg { width: 17px; height: 17px; transition: transform .25s; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.pill {
  font-family: var(--font-display); font-weight: 600; font-size: 0.92rem;
  padding: 9px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--surface); color: var(--ink-soft);
  transition: all .2s;
}
.pill:hover, .pill.active { background: var(--grad-brand); color: #fff; border-color: transparent; }

/* -------------------------------------------------------------
   17. Prose (privacy)
------------------------------------------------------------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 26px 0 10px; color: var(--purple); }
.prose p, .prose li { color: var(--ink-soft); margin-bottom: 12px; }
.prose ul { padding-left: 4px; }
.prose ul li { display: flex; gap: 11px; }
.prose ul li::before { content: ""; flex: none; margin-top: 10px; width: 7px; height: 7px; border-radius: 2px; background: var(--gold); }
.prose a { color: var(--purple); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose .updated { color: var(--muted); font-style: italic; }

/* -------------------------------------------------------------
   18. Footer
------------------------------------------------------------- */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,0.78);
  padding-top: clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; width: 380px; height: 380px;
  background: var(--purple); filter: blur(110px); opacity: 0.4;
  top: -160px; right: 5%; border-radius: 50%;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  position: relative;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--gold); }
.footer-brand .brand__tag { color: rgba(255,255,255,0.55); }
.footer-about { margin-top: 18px; max-width: 320px; font-size: 0.96rem; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center; color: #fff;
  transition: background .25s, transform .25s;
}
.footer-social a:hover { background: var(--gold); color: var(--plum); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { color: rgba(255,255,255,0.72); transition: color .2s, padding .2s; font-size: 0.96rem; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: 0.95rem; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 3px; }
.footer-bottom {
  margin-top: clamp(40px, 6vw, 64px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.88rem; color: rgba(255,255,255,0.6);
  position: relative;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold); }

/* -------------------------------------------------------------
   19. Floating WhatsApp
------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(18,140,126,0.5);
  z-index: 90;
  transition: transform .25s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px rgba(18,140,126,0.5), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 12px 30px rgba(18,140,126,0.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px rgba(18,140,126,0.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* -------------------------------------------------------------
   20. Reveal animation
------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------
   20b. Process / How it works
------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 34px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 14px, transparent 14px 26px);
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__num {
  width: 68px; height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  color: #fff; background: var(--grad-brand);
  box-shadow: var(--sh-purple);
  border: 4px solid var(--lavender);
}
.step:nth-child(2) .step__num { background: var(--grad-gold); color: var(--plum); box-shadow: var(--sh-gold); }
.step:nth-child(4) .step__num { background: var(--grad-gold); color: var(--plum); box-shadow: var(--sh-gold); }
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* -------------------------------------------------------------
   20c. Faculty / team
------------------------------------------------------------- */
.tutor {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tutor:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tutor__avatar {
  width: 92px; height: 92px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: #fff;
  background: var(--grad-brand);
  position: relative;
}
.tutor:nth-child(2) .tutor__avatar { background: var(--grad-brand-deep); }
.tutor:nth-child(3) .tutor__avatar { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.tutor:nth-child(4) .tutor__avatar { background: linear-gradient(135deg, #4F46E5, #6366f1); }
.tutor__avatar::after {
  content: "";
  position: absolute; right: 4px; bottom: 4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); border: 3px solid #fff;
  z-index: 1;
}
.tutor__avatar--photo { width: 108px; height: 108px; box-shadow: 0 0 0 4px rgba(109,40,217,0.18), var(--sh-sm); }
.tutor__avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 50%;
}
.tutor h3 { font-size: 1.15rem; }
.tutor__role { color: var(--purple); font-weight: 700; font-family: var(--font-display); font-size: 0.92rem; margin: 3px 0 12px; }
.tutor p { color: var(--ink-soft); font-size: 0.92rem; }
.tutor__tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 16px; }
.tutor__tags span {
  font-size: 0.76rem; font-weight: 600;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: rgba(109,40,217,0.08); color: var(--purple);
  border: 1px solid rgba(109,40,217,0.14);
}

/* -------------------------------------------------------------
   20d. Pricing / plans
------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.plan--featured {
  background: var(--grad-brand-deep);
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: scale(1.03);
}
.plan--featured:hover { transform: scale(1.03) translateY(-6px); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: var(--plum);
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 18px; border-radius: var(--r-pill);
  box-shadow: var(--sh-gold); white-space: nowrap;
}
.plan__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--plum); }
.plan__desc { color: var(--ink-soft); font-size: 0.92rem; margin-top: 6px; min-height: 42px; }
.plan__price { margin: 18px 0 4px; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: var(--plum); line-height: 1; }
.plan__price small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
.plan__note { font-size: 0.84rem; color: var(--muted); }
.plan ul { margin: 22px 0; flex: 1; }
.plan ul li { display: flex; align-items: flex-start; gap: 11px; padding: 8px 0; color: var(--ink-soft); font-size: 0.95rem; }
.plan ul li svg { flex: none; width: 20px; height: 20px; color: var(--purple); margin-top: 2px; }
/* featured (dark) variant */
.plan--featured .plan__name,
.plan--featured .plan__price { color: #fff; }
.plan--featured .plan__desc { color: rgba(255,255,255,0.82); }
.plan--featured .plan__price small,
.plan--featured .plan__note { color: rgba(255,255,255,0.7); }
.plan--featured ul li { color: rgba(255,255,255,0.92); }
.plan--featured ul li svg { color: var(--gold); }
.pricing-reassure {
  display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center;
  margin-top: 40px;
}
.pricing-reassure span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-soft); }
.pricing-reassure svg { width: 20px; height: 20px; color: #10b981; }

/* -------------------------------------------------------------
   21. Responsive
------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .process::before { display: none; }
  .pricing { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: 14px var(--gutter) 24px;
    box-shadow: var(--sh-md);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0; visibility: hidden;
    transition: opacity .25s, transform .25s, visibility .25s;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { color: var(--ink-soft) !important; padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__links a.active::after { display: none; }
  .nav__links a.active { color: var(--purple) !important; }
  /* Free up room for the hamburger: hide the header CTA on mobile... */
  .nav__cta .btn--gold { display: none; }
  /* ...and surface "Book Free Demo" as a button inside the opened menu */
  .nav__links .nav__menu-cta {
    display: block;
    margin-top: 14px;
    text-align: center;
    color: var(--plum) !important;
    background: var(--grad-gold);
    border: none !important;
    border-radius: var(--r-pill) !important;
    box-shadow: var(--sh-gold);
    padding: 15px !important;
    font-family: var(--font-display);
    font-weight: 700;
  }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__badge { position: static; margin-top: 18px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero__actions, .cta-band .hero__actions { width: 100%; }
}
