/* =============================================================
   NAVIHAAN SOLUTIONS — REDESIGNED v3
   Fonts: Barlow Condensed (Agency FB style) + Oswald (Industrial)
   Palette: Multi-color vibrant professional
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* ── Brand Palette ── */
  --navy:    #050d1a;
  --navy2:   #0a1628;
  --indigo:  #4338ca;
  --indigo2: #5b52f5;
  --violet:  #7c3aed;
  --cyan:    #06b6d4;
  --sky:     #0ea5e9;
  --amber:   #f59e0b;
  --amber2:  #fbbf24;
  --orange:  #f97316;
  --emerald: #10b981;
  --rose:    #f43f5e;
  --pink:    #ec4899;

  /* ── Neutrals ── */
  --white:   #ffffff;
  --off:     #f8fafc;
  --grey:    #f1f5f9;
  --border:  #e2e8f0;
  --text:    #0f172a;
  --muted:   #64748b;

  /* ── Gradients ── */
  --grad-hero:   linear-gradient(135deg, #050d1a 0%, #0a1040 40%, #1a0a3e 100%);
  --grad-indigo: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
  --grad-cyan:   linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --grad-amber:  linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --grad-rose:   linear-gradient(135deg, #f43f5e 0%, #ec4899 100%);
  --grad-green:  linear-gradient(135deg, #10b981 0%, #059669 100%);

  /* ── Typography ── */
  --font:    'Inter', sans-serif;
  --display: 'Oswald', sans-serif;
  --agency:  'Barlow Condensed', sans-serif;

  /* ── Spacing / Shape ── */
  --r:   10px;
  --r2:  18px;
  --r3:  50px;
  --shadow:  0 2px 20px rgba(0,0,0,.07);
  --shadow2: 0 12px 40px rgba(0,0,0,.15);
  --ease: .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; font-size: 15px; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Utilities ── */
.container { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--grey { background: var(--grey); }
.section--dark { background: var(--navy); color: var(--white); }

/* ── Agency / Display headings ── */
.heading-agency {
  font-family: var(--agency);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
}
.heading-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.1;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: 6px;
  font-family: var(--agency);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--grad-indigo);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(67,56,202,.4);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,56,202,.55); filter: brightness(1.1); }

.btn--amber {
  background: var(--grad-amber);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(245,158,11,.4);
}
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.55); filter: brightness(1.08); }

.btn--cyan {
  background: var(--grad-cyan);
  color: var(--navy);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(6,182,212,.35);
}
.btn--cyan:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

.btn--outline-dark {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn--outline-dark:hover { background: var(--indigo); color: white; }

.btn--rose {
  background: var(--grad-rose);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(244,63,94,.35);
}
.btn--rose:hover { transform: translateY(-2px); filter: brightness(1.1); }

.btn--full { width: 100%; justify-content: center; }
.btn--lg   { padding: .9rem 2.2rem; font-size: 1.05rem; }
.btn--sm   { padding: .45rem 1rem;  font-size: .82rem;  }

/* ═══════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════ */
.topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .4rem 0;
  font-size: .78rem;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .4rem; }
.topbar__left  { color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .4rem; }
.topbar__right { display: flex; align-items: center; gap: 1rem; }
.topbar a { color: rgba(255,255,255,.55); transition: color var(--ease); }
.topbar a:hover { color: var(--amber2); }
.topbar i { margin-right: .25rem; }
.topbar__soc { display: flex; gap: .7rem; }
.topbar__soc a { color: rgba(255,255,255,.45); font-size: .8rem; }
.topbar__soc a:hover { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.12); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem 1.5rem;
  gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; }
.logo__icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--grad-indigo);
  color: white;
  font-family: var(--agency);
  font-size: 1.4rem;
  font-weight: 900;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(67,56,202,.4);
}
.logo__brand { display: block; font-family: var(--agency); font-size: 1.25rem; font-weight: 900; letter-spacing: .04em; color: var(--navy); line-height: 1; }
.logo__sub   { display: block; font-size: .62rem; color: var(--muted); letter-spacing: .04em; margin-top: .15rem; }

/* Nav */
.nav { display: flex; align-items: center; gap: .1rem; }
.nav__list { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav__link {
  display: block;
  padding: .5rem .72rem;
  font-family: var(--agency);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 6px;
  transition: var(--ease);
  white-space: nowrap;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--indigo2);
  border-radius: 2px;
  transition: var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--indigo); background: rgba(67,56,202,.06); }
.nav__link.active::after, .nav__link:hover::after { left: 10%; right: 10%; }

/* CTA button in nav — right aligned */
.nav__actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; margin-left: .75rem; }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; flex-shrink: 0; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--ease); }

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 7rem 0 5.5rem;
  color: white;
}
.hero__mesh {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(ellipse 70% 50% at 75% -10%, rgba(91,82,245,.5) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 5% 100%, rgba(245,158,11,.18) 0%, transparent 55%),
    radial-gradient(ellipse 30% 30% at 100% 60%, rgba(6,182,212,.15) 0%, transparent 55%);
}
.hero__grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__eyebrow {
  font-family: var(--agency);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber2);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero__eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--amber2); }
.hero__title {
  font-family: var(--agency);
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title .line1 { display: block; color: white; }
.hero__title .line2 { display: block; color: white; }
.hero__title .accent-word {
  background: linear-gradient(90deg, var(--amber2), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__title .accent-cyan {
  background: linear-gradient(90deg, var(--cyan), var(--sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero__stat-num {
  font-family: var(--agency);
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.hero__stat-lbl { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .25rem; letter-spacing: .05em; text-transform: uppercase; }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════════════════ */
.sec-head { margin-bottom: 3rem; }
.sec-head.center { text-align: center; }
.eyebrow {
  font-family: var(--agency);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow.indigo { color: var(--indigo); }
.eyebrow.indigo::before { content: ''; width: 20px; height: 2px; background: var(--indigo); }
.eyebrow.cyan   { color: var(--cyan); }
.eyebrow.amber  { color: var(--amber); }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .eyebrow::before { display: none; }

.sec-title {
  font-family: var(--agency);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--navy);
  margin-bottom: .85rem;
}
.sec-title .accent { color: var(--indigo2); }
.sec-title .accent-amber { color: var(--amber); }
.sec-title .accent-cyan  { color: var(--cyan); }
.sec-desc { font-size: .97rem; color: var(--muted); max-width: 560px; line-height: 1.8; }
.sec-head.center .sec-desc { margin: 0 auto; }

/* Dark section overrides */
.section--dark .sec-title { color: white; }
.section--dark .sec-desc  { color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════════════════════
   CARDS — Base
═══════════════════════════════════════════════════════════ */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 1.85rem;
  transition: var(--ease);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.card__icon { font-size: 2.1rem; margin-bottom: .9rem; display: inline-block; }
.card__title { font-family: var(--display); font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; margin-bottom: .4rem; color: var(--navy); }
.card__desc  { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* Pillar cards — colored left border */
.pillar-card { border-left: 4px solid var(--indigo); }
.pillar-card:nth-child(1) { border-left-color: var(--indigo2); }
.pillar-card:nth-child(2) { border-left-color: var(--cyan); }
.pillar-card:nth-child(3) { border-left-color: var(--amber); }
.pillar-card:nth-child(4) { border-left-color: var(--rose); }
.pillar-card:nth-child(5) { border-left-color: var(--emerald); }

/* ═══════════════════════════════════════════════════════════
   COURSE CARDS
═══════════════════════════════════════════════════════════ */
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.5rem; }
.course-card {
  background: white;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-7px); box-shadow: 0 20px 50px rgba(0,0,0,.12); border-color: rgba(91,82,245,.3); }
.cc-header {
  background: var(--grad-hero);
  padding: 1.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 110px;
}
.cc-header::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cc-header::after {
  content: '';
  position: absolute; bottom: -30px; left: -10px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(91,82,245,.2);
}
.cc-badge {
  display: inline-block;
  padding: .18rem .6rem;
  background: var(--amber);
  color: var(--navy);
  border-radius: 4px;
  font-family: var(--agency);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  position: relative; z-index: 1;
}
.cc-title {
  font-family: var(--agency);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.2;
  position: relative; z-index: 1;
}
.cc-body { padding: 1.35rem; flex: 1; display: flex; flex-direction: column; }
.cc-meta { display: flex; gap: .85rem; font-size: .78rem; color: var(--muted); margin-bottom: .85rem; flex-wrap: wrap; }
.cc-meta span { display: flex; align-items: center; gap: .3rem; }
.cc-desc { font-size: .87rem; color: var(--muted); line-height: 1.75; flex: 1; margin-bottom: 1.1rem; }
.cc-footer { display: flex; justify-content: space-between; align-items: center; padding-top: .85rem; border-top: 1px solid var(--border); }
.cc-price__now { font-family: var(--agency); font-size: 1.3rem; font-weight: 800; color: var(--navy); letter-spacing: .02em; }
.cc-price__was { font-size: .75rem; color: var(--muted); text-decoration: line-through; display: block; }

/* ═══════════════════════════════════════════════════════════
   STATS BAR — Multi-colored
═══════════════════════════════════════════════════════════ */
.stats-bar { padding: 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-bar__cell {
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
}
.stats-bar__cell:nth-child(1) { background: var(--grad-indigo); }
.stats-bar__cell:nth-child(2) { background: var(--grad-cyan); }
.stats-bar__cell:nth-child(3) { background: var(--grad-amber); }
.stats-bar__cell:nth-child(4) { background: var(--grad-green); }
.stats-bar__num { font-family: var(--agency); font-size: 2.8rem; font-weight: 900; color: white; line-height: 1; letter-spacing: .02em; }
.stats-bar__lbl { font-family: var(--agency); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: .4rem; }
.stats-bar__cell:nth-child(3) .stats-bar__num,
.stats-bar__cell:nth-child(3) .stats-bar__lbl,
.stats-bar__cell:nth-child(2) .stats-bar__num,
.stats-bar__cell:nth-child(2) .stats-bar__lbl { color: rgba(0,0,0,.75); }

/* ═══════════════════════════════════════════════════════════
   TEAM CARDS
═══════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2rem; }
.team-card { background: white; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; box-shadow: var(--shadow); transition: var(--ease); text-align: center; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.team-card__photo {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 2rem auto 1.1rem;
  background: var(--grad-indigo);
  display: grid; place-items: center;
  font-family: var(--agency); font-size: 1.8rem; font-weight: 900; color: white;
  overflow: hidden;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font-family: var(--display); font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.team-card__role { font-family: var(--agency); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--indigo2); margin-bottom: .2rem; }
.team-card__dept { font-size: .76rem; color: var(--muted); margin-bottom: 1rem; }
.team-card__bio  { font-size: .84rem; color: var(--muted); line-height: 1.75; padding: 0 1.5rem 2rem; }

/* ═══════════════════════════════════════════════════════════
   JOB LISTINGS
═══════════════════════════════════════════════════════════ */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item {
  background: white; border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.5rem; display: flex; align-items: flex-start; gap: 1.25rem;
  box-shadow: var(--shadow); transition: var(--ease);
  border-left: 4px solid transparent;
}
.job-item:hover { transform: translateX(4px); box-shadow: var(--shadow2); border-left-color: var(--indigo); }
.job-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: grid; place-items: center; font-size: 1.3rem;
  flex-shrink: 0; background: rgba(67,56,202,.08); color: var(--indigo);
}
.job-info { flex: 1; min-width: 0; }
.job-title { font-family: var(--display); font-size: 1.02rem; font-weight: 700; margin-bottom: .35rem; color: var(--navy); }
.job-meta { display: flex; gap: .85rem; flex-wrap: wrap; font-size: .78rem; color: var(--muted); margin-bottom: .6rem; }
.job-meta span { display: flex; align-items: center; gap: .3rem; }
.job-action { display: flex; flex-direction: column; align-items: flex-end; gap: .45rem; flex-shrink: 0; }
.job-salary { font-family: var(--agency); font-size: .95rem; font-weight: 800; letter-spacing: .03em; color: var(--emerald); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.5rem; }
.testi-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r2);
  padding: 1.75rem; box-shadow: var(--shadow); transition: var(--ease); position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.testi-card__q { font-size: 4rem; color: var(--indigo2); opacity: .12; font-family: Georgia, serif; line-height: .6; position: absolute; top: 1.25rem; right: 1.5rem; }
.testi-stars { color: var(--amber); font-size: .85rem; margin-bottom: .85rem; }
.testi-text { font-size: .9rem; color: var(--muted); line-height: 1.82; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .7rem; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--grad-indigo); color: white; font-family: var(--agency); font-weight: 900; font-size: 1rem; display: grid; place-items: center; flex-shrink: 0; }
.testi-name  { font-family: var(--display); font-weight: 700; font-size: .88rem; }
.testi-co    { font-size: .76rem; color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════════════════ */
.cta-sec {
  background: var(--grad-hero);
  padding: 5.5rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(91,82,245,.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(6,182,212,.2) 0%, transparent 60%);
}
.cta-sec__inner { position: relative; z-index: 1; }
.cta-sec__title {
  font-family: var(--agency);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-sec__desc { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 480px; margin: 0 auto 2.25rem; line-height: 1.8; }
.cta-sec__btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   CHIPS / BADGES
═══════════════════════════════════════════════════════════ */
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .75rem; }
.chip { background: var(--grey); border: 1px solid var(--border); border-radius: 4px; padding: .28rem .75rem; font-family: var(--agency); font-size: .78rem; font-weight: 700; letter-spacing: .05em; color: var(--muted); transition: var(--ease); }
.chip:hover { background: rgba(67,56,202,.08); border-color: rgba(91,82,245,.3); color: var(--indigo); }

.badge { display: inline-block; padding: .18rem .65rem; border-radius: 4px; font-family: var(--agency); font-size: .72rem; font-weight: 700; letter-spacing: .06em; }
.badge--blue   { background: rgba(67,56,202,.1); color: var(--indigo); }
.badge--green  { background: rgba(16,185,129,.1); color: #065f46; }
.badge--amber  { background: rgba(245,158,11,.12); color: #92400e; }
.badge--red    { background: rgba(244,63,94,.1); color: #9f1239; }
.badge--grey   { background: var(--grey); color: var(--muted); }

/* ═══════════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.fg { display: flex; flex-direction: column; gap: .35rem; }
.fg label { font-family: var(--agency); font-size: .8rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); }
.fg input, .fg select, .fg textarea {
  padding: .7rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--text);
  font-size: .92rem;
  transition: var(--ease);
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 4px rgba(67,56,202,.1);
}
.fg textarea { resize: vertical; min-height: 100px; }

/* ═══════════════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════════════ */
.modal { display: none; position: fixed; inset: 0; z-index: 9000; align-items: center; justify-content: center; padding: 1rem; }
.modal.open { display: flex; }
.modal__bg { position: absolute; inset: 0; background: rgba(5,13,26,.75); backdrop-filter: blur(6px); }
.modal__box {
  position: relative; background: white; border-radius: 16px;
  padding: 2.5rem; width: 100%; max-width: 520px; max-height: 90vh;
  overflow-y: auto; box-shadow: 0 32px 80px rgba(0,0,0,.35);
  animation: mIn .32s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mIn { from { opacity:0; transform: scale(.88) translateY(24px); } to { opacity:1; transform: none; } }
.modal__close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--grey); border: none; width: 30px; height: 30px;
  border-radius: 50%; font-size: 1.1rem; cursor: pointer; color: var(--muted);
  display: grid; place-items: center; transition: var(--ease);
}
.modal__close:hover { background: var(--border); color: var(--navy); }
.modal__head { margin-bottom: 1.6rem; }
.modal__head h2 { font-family: var(--agency); font-size: 1.6rem; font-weight: 900; letter-spacing: .03em; text-transform: uppercase; margin-bottom: .3rem; }
.modal__head p  { color: var(--muted); font-size: .87rem; }
.modal__form .fg { margin-bottom: .9rem; }
.modal__priv { text-align: center; font-size: .74rem; color: var(--muted); margin-top: .85rem; }
.modal__ok { text-align: center; padding: 2rem 0; }
.modal__ok .ok-ico { font-size: 3.5rem; margin-bottom: .85rem; }
.modal__ok h3 { font-family: var(--agency); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════════════
   FEATURE LIST
═══════════════════════════════════════════════════════════ */
.feat-list { display: flex; flex-direction: column; gap: .8rem; }
.feat-item { display: flex; align-items: flex-start; gap: .8rem; font-size: .9rem; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; background: rgba(16,185,129,.15); color: var(--emerald); display: grid; place-items: center; font-size: .7rem; flex-shrink: 0; margin-top: .15rem; }

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 8000;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25d366; color: white; font-size: 1.6rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  transition: var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,.6); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,.6); }
.footer__top { padding: 5rem 0 3.5rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer__col h4 {
  font-family: var(--agency);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__col ul li { margin-bottom: .55rem; }
.footer__col ul a { font-size: .85rem; color: rgba(255,255,255,.48); transition: var(--ease); text-decoration: none; }
.footer__col ul a:hover { color: var(--cyan); padding-left: 4px; }
.footer__brand p { font-size: .85rem; line-height: 1.8; color: rgba(255,255,255,.45); margin: .85rem 0 1.4rem; }
.footer__soc { display: flex; gap: .65rem; }
.footer__soc a {
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  display: grid; place-items: center; font-size: .8rem;
  transition: var(--ease);
  text-decoration: none !important;
}
.footer__soc a:hover { background: var(--indigo); color: white; }
.footer__contact li { display: flex; gap: .6rem; font-size: .84rem; margin-bottom: .8rem; align-items: flex-start; color: rgba(255,255,255,.45); }
.footer__contact li a { color: rgba(255,255,255,.45); transition: var(--ease); text-decoration: none; }
.footer__contact li a:hover { color: var(--amber2); }
.footer__contact i { color: var(--cyan); flex-shrink: 0; margin-top: .2rem; }
.footer__bot { border-top: 1px solid rgba(255,255,255,.06); padding: 1.35rem 0; }
.footer__bot-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: .78rem; color: rgba(255,255,255,.3); }
.footer__bot a { color: rgba(255,255,255,.3); margin-left: 1.2rem; transition: var(--ease); text-decoration: none; }
.footer__bot a:hover { color: var(--amber2); }

/* ═══════════════════════════════════════════════════════════
   DIVIDER GRADIENT
═══════════════════════════════════════════════════════════ */
.divider-rainbow {
  height: 4px;
  background: linear-gradient(90deg, var(--indigo2), var(--cyan), var(--amber), var(--rose), var(--emerald));
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__link { padding: .45rem .6rem; font-size: .82rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 900px) {
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .stats-bar__cell { padding: 2rem 1rem; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .header__inner { padding: .65rem 1rem; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 2px solid var(--border); box-shadow: var(--shadow2); padding: 1rem; flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: .1rem; }
  .nav__link { padding: .7rem 1rem; font-size: .95rem; border-radius: 8px; }
  .nav__actions { flex-direction: column; margin-left: 0; margin-top: .75rem; }
  .nav__actions .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: flex; }
  .hero__stats { gap: 1.75rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }
  .course-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 4.5rem 0 3.5rem; }
  .stats-bar__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 1.25rem; flex-wrap: wrap; }
}
