:root {
  --bg:          #f4f6fb;
  --bg-2:        #eaedf5;
  --bg-card:     #ffffff;
  --bg-dark:     #0a0f1e;
  --bg-dark-2:   #0f1628;
  --bg-dark-3:   #162038;

  --teal:        #3b82f6;
  --teal-deep:   #1d4ed8;
  --teal-light:  #93c5fd;
  --teal-pale:   #eff6ff;
  --teal-dim:    rgba(59,130,246,.12);
  --teal-glow:   rgba(59,130,246,.22);

  --indigo:      #f97316;
  --indigo-deep: #ea580c;
  --indigo-pale: #fff7ed;
  --indigo-dim:  rgba(249,115,22,.12);

  --rose:        #f59e0b;
  --rose-pale:   #fffbeb;
  --rose-dim:    rgba(245,158,11,.12);

  --amber:       #0ea5e9;
  --amber-pale:  #f0f9ff;

  --text:        #0a0f1e;
  --text-2:      #1e2d4d;
  --text-3:      #5a6a85;
  --text-4:      #8fa3c0;
  --text-inv:    #f0f5ff;

  --border:      rgba(0,0,0,.07);
  --border-2:    rgba(0,0,0,.13);
  --border-teal: rgba(59,130,246,.3);

  --font-h:  serif;
  --font-b:  sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:    0 2px 12px rgba(10,15,30,.06), 0 1px 3px rgba(10,15,30,.04);
  --shadow-md: 0 8px 32px rgba(10,15,30,.1),  0 2px 8px rgba(10,15,30,.06);
  --shadow-lg: 0 24px 64px rgba(10,15,30,.14),0 4px 16px rgba(10,15,30,.08);
  --ease:      cubic-bezier(.4,0,.2,1);
  --spring:    cubic-bezier(.34,1.56,.64,1);

  --bottom-bar-h: 42px;
}

.tcard-text { font-style: normal; }

.dark-section {
  --bg-card:  var(--bg-dark-2);
  --text:     var(--text-inv);
  --text-2:   #c0ceeb;
  --text-3:   #6a7d9e;
  --border:   rgba(255,255,255,.07);
  --border-2: rgba(255,255,255,.12);
  --shadow:   0 2px 12px rgba(0,0,0,.3);
  --shadow-md:0 8px 32px rgba(0,0,0,.4);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-h);
}
a  { text-decoration: none; color: inherit }
ul { list-style: none }

#cur {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  background: var(--indigo); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
  mix-blend-mode: multiply;
}
#cur-o {
  position: fixed; width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(249,115,22,.5);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: left .14s var(--ease), top .14s var(--ease), width .3s, height .3s, border-color .3s;
}
body.hov #cur   { width: 22px; height: 22px; background: var(--teal); mix-blend-mode: multiply }
body.hov #cur-o { width: 50px; height: 50px; border-color: rgba(59,130,246,.4) }

.w { max-width: 1200px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2 }

.rv { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease) }
.rv.in { opacity: 1; transform: none }
.d1 { transition-delay: .08s } .d2 { transition-delay: .16s } .d3 { transition-delay: .24s }
.d4 { transition-delay: .32s } .d5 { transition-delay: .40s }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px; border: none; cursor: pointer;
  font-family: var(--font-b); font-size: .875rem; font-weight: 600;
  letter-spacing: .01em; transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15); opacity: 0; transition: opacity .25s; border-radius: inherit;
}
.btn:hover::after { opacity: 1 }

.btn-primary {
  background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--indigo) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(234,88,12,.32);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(234,88,12,.5); transform: translateY(-2px) }

.btn-secondary {
  background: var(--bg-card); color: var(--text-2);
  border: 1.5px solid var(--border-2); box-shadow: var(--shadow);
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md) }

.btn-indigo {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff; box-shadow: 0 4px 20px rgba(29,78,216,.3);
}
.btn-indigo:hover { box-shadow: 0 8px 32px rgba(29,78,216,.45); transform: translateY(-2px) }

.btn-ghost {
  background: transparent; color: var(--text-3); border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--border-2); color: var(--text-2) }

.btn-lg { padding: 15px 38px; font-size: .95rem }
.btn-xl { padding: 18px 48px; font-size: 1rem; border-radius: 100px }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  overflow: visible;
  background: linear-gradient(135deg, #fdba74 0%, #ffffff 50%, #93c5fd 100%);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(249,115,22,.4);
  box-shadow: 0 2px 24px rgba(249,115,22,.2), 0 1px 4px rgba(59,130,246,.15);
  pointer-events: auto !important;
}
.nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 30%, #60a5fa 70%, #1d4ed8 100%);
  z-index: 1;
}
.nav.scrolled {
  height: 62px;
  background: linear-gradient(135deg, #fb923c 0%, #ffffff 50%, #60a5fa 100%);
  box-shadow: 0 4px 28px rgba(249,115,22,.25), 0 1px 6px rgba(59,130,246,.15);
}
.nav .w {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
  justify-content: center;
}
.nav-row {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 0;
  justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-h); font-size: 1.25rem;
  font-weight: 600; color: var(--text); letter-spacing: -.01em;
  flex-shrink: 0;
  margin-right: 32px;
  background: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 12px rgba(249,115,22,.15);
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-b); font-size: .85rem; font-weight: 800;
  box-shadow: 0 4px 12px rgba(234,88,12,.38);
}
.logo em { font-style: italic; color: var(--indigo-deep); }
.logo-img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  height: 100%;
  justify-content: center;
}
.nav-links > li {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2d4d;
  transition: color .25s;
  white-space: nowrap;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(255,255,255,0.6);
}
.nav-links > li > a:hover { color: var(--text); }
.nav-links > li > a.active { color: var(--indigo-deep); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 16px;
}
.nav-right .btn { padding: 9px 16px; font-size: .78rem; }

.nav-badge-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-live-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 7px; border-radius: 100px;
  background: var(--indigo-deep); color: #fff;
  font-size: .6rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #fff; animation: blink 1.4s infinite;
}

.dropdown > a::after {
  content: "▾"; font-size: .6rem; margin-left: 4px; opacity: .5; display: inline-block;
}
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s var(--ease); z-index: 1000; pointer-events: none;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dropdown-menu li { height: auto; position: relative; display: block; }
.dropdown-menu li a {
  display: block; height: auto; padding: 10px 16px;
  font-size: .8rem; font-weight: 400; color: var(--text-2);
  transition: all .2s ease; line-height: 1.4;
}
.dropdown-menu li a:hover { background: var(--indigo-pale); color: var(--indigo-deep); }

.submenu-dropdown {
  position: absolute; top: 0; left: 100%; min-width: 220px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 6px 0;
  opacity: 0; visibility: hidden; transform: translateX(8px);
  transition: all .25s var(--ease); z-index: 1001; pointer-events: none;
}
.dropdown-menu li:hover .submenu-dropdown {
  opacity: 1; visibility: visible; transform: translateX(0); pointer-events: auto;
}
.submenu > a::after { content: "▸"; float: right; font-size: .6rem; opacity: .5; margin-top: 2px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all .3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg) }
.nav-hamburger.open span:nth-child(2) { opacity: 0 }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg) }

.nav-mobile-drawer {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 16px 20px; border-top: 1px solid var(--border);
  background: rgba(244,246,251,.99); backdrop-filter: blur(20px);
  top: 100%; left: 0; right: 0; position: relative; z-index: 901;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: 0; width: 100%; }
.nav-mobile-links a {
  padding: 11px 8px; font-size: .9rem; font-weight: 500;
  color: var(--text-2); border-radius: 8px;
  transition: background .2s, color .2s; display: block; width: 100%; text-align: left;
}
.nav-mobile-links a:hover { background: var(--indigo-pale); color: var(--indigo-deep) }
.nav-mobile-btns { display: flex; flex-direction: column; gap: 8px }

.sub-nav {
  position: fixed; left: 0; right: 0; top: 72px; z-index: 899;
  background: linear-gradient(90deg, #fb923c 0%, #fed7aa 25%, #ffffff 50%, #bfdbfe 75%, #60a5fa 100%);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid rgba(59,130,246,.3);
  box-shadow: 0 4px 16px rgba(249,115,22,.15), 0 2px 8px rgba(59,130,246,.1);
  transition: top .4s var(--ease);
}
.nav.scrolled ~ .sub-nav, .sub-nav.nav-scrolled {
  top: 62px;
  background: linear-gradient(90deg, #bfdbfe 0%, #ffffff 50%, #fed7aa 100%);
}
.sub-nav-row {
  display: flex; align-items: center; justify-content: center;
  overflow-x: auto; scrollbar-width: none;
  max-width: 1200px; margin: 0 auto; padding: 0 28px; gap: 8px;
}
.sub-nav-row::-webkit-scrollbar { display: none; }
.sub-nav-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 25px; font-size: .76rem; font-weight: 500; color: var(--text-3);
  white-space: nowrap; border-bottom: 2px solid transparent;
  transition: color .25s, border-color .25s, background .25s; cursor: pointer; flex: 0 0 auto;
}
.sub-nav-item:hover {
  color: var(--indigo-deep);
  background: linear-gradient(180deg, rgba(249,115,22,.1) 0%, rgba(59,130,246,.04) 100%);
}
.sub-nav-item.active {
  color: var(--indigo-deep); border-bottom-color: var(--indigo-deep); font-weight: 600;
  background: linear-gradient(180deg, rgba(249,115,22,.06) 0%, rgba(249,115,22,.01) 100%);
}

.hero {
  min-height: 100vh; padding: 152px 0 80px;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #e8f0fe 0%, #f4f6fb 40%, #fff7ed 100%);
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  animation: blobFloat 12s ease-in-out infinite;
}
.blob-1 { width: 500px; height: 500px; top: -150px; right: -100px; background: rgba(59,130,246,.13); animation-delay: 0s }
.blob-2 { width: 400px; height: 400px; bottom: -100px; left: -80px; background: rgba(249,115,22,.1); animation-delay: -5s }
.blob-3 { width: 300px; height: 300px; top: 40%; right: 30%; background: rgba(245,158,11,.08); animation-delay: -9s }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1) }
  33%      { transform: translate(20px,-30px) scale(1.04) }
  66%      { transform: translate(-15px,20px) scale(.97) }
}
.hero-inner { display: grid; grid-template-columns: 1fr 460px; gap: 72px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px; border-radius: 100px;
  background: #fff; border: 1.5px solid rgba(249,115,22,.3); box-shadow: var(--shadow);
  font-size: 1rem; font-weight: 600; color: var(--indigo-deep); margin-bottom: 24px;
}
.badge-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--indigo-dim); display: flex; align-items: center; justify-content: center; font-size: .7rem;
}
.badge-live {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 100px;
  background: var(--indigo-deep); color: #fff; font-size: .65rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; margin-left: 4px;
}
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: .3 } }

.hero-h {
  font-family: var(--font-h); font-size: clamp(3.2rem,5.5vw,5.4rem);
  font-weight: 300; line-height: 1.05; letter-spacing: -.025em; color: var(--text); margin-bottom: 22px;
}
.hero-h strong { font-weight: 700; display: block }
.hero-h em {
  font-style: italic; font-weight: 300;
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--indigo) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub { font-size: 1.05rem; font-weight: 400; color: var(--text-3); line-height: 1.8; max-width: 500px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.proof-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap }
.proof-chip {
  display: flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow);
  font-size: .78rem; font-weight: 500; color: var(--text-2);
}
.proof-chip .ic { font-size: .9rem }

.hero-card {
  background: #fff; border-radius: var(--radius-xl); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.hero-card-top {
  height: 4px;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal), var(--indigo));
  background-size: 200%; animation: gradShift 4s ease infinite;
}
@keyframes gradShift { 0% { background-position: 0% } 100% { background-position: 200% } }
.hc-body { padding: 32px 30px }
.hc-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 10px;
}
.hc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); animation: blink 2s infinite }
.hc-title { font-family: var(--font-h); font-size: 1.5rem; font-weight: 600; line-height: 1.25; color: var(--text); margin-bottom: 4px; }
.hc-sub { font-size: .83rem; color: var(--text-3); margin-bottom: 24px; line-height: 1.55 }

.course-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px }
.cpill {
  padding: 7px 13px; border-radius: 100px; cursor: pointer;
  font-size: .76rem; font-weight: 500; background: var(--bg-2);
  border: 1.5px solid transparent; color: var(--text-3); transition: all .25s var(--ease);
}
.cpill:hover { background: var(--indigo-pale); color: var(--indigo-deep); border-color: rgba(249,115,22,.3) }
.cpill.on { background: var(--indigo-dim); color: var(--indigo-deep); border-color: rgba(249,115,22,.35); font-weight: 600 }
.fg { margin-bottom: 12px }
.fl {
  display: block; font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 5px;
}
.fi, .fsel {
  width: 100%; padding: 11px 14px; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 8px; font-family: var(--font-b); font-size: .88rem; color: var(--text);
  outline: none; transition: all .25s; appearance: none;
}
.fi::placeholder { color: var(--text-4) }
.fi:focus, .fsel:focus {
  border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-dim);
}
.fsel option { background: #fff }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px }
.urgency {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: .76rem; color: var(--indigo-deep); font-weight: 500; margin-top: 11px;
}
.urgency-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo-deep); animation: blink 1.5s infinite }

.phone-group { display: flex; gap: 8px; align-items: stretch; }
.phone-select-wrap { position: relative; flex: 0 0 20%; min-width: 0; }
.phone-select-wrap::after {
  content: ''; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid var(--text-4); pointer-events: none; transition: border-top-color .25s;
}
.phone-select-wrap:focus-within::after { border-top-color: var(--teal); }
.fsel {
  width: 100%; height: 100%; padding: 11px 20px 11px 10px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-b);
  font-size: .83rem; color: var(--text-2); outline: none; appearance: none;
  -webkit-appearance: none; cursor: pointer; transition: all .25s;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.fsel:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px var(--teal-dim); }
.fsel:hover { border-color: var(--border-2); }
.phone-input-wrap { flex: 0 0 80%; min-width: 0; }
.phone-input-wrap .fi { height: 100%; }

.mq-wrap {
  padding: 44px 0; overflow: hidden;
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mq-label {
  text-align: center; font-size: .72rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-4); margin-bottom: 18px;
}
.mq-fade {
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.mq-row { display: flex; gap: 10px; width: max-content; animation: mq 28s linear infinite }
.mq-row:hover { animation-play-state: paused }
@keyframes mq { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.co-pill {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 20px;
  background: #fff;          /* ← changed from #87CEEB */
  border-radius: 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
}
.alumni-pill {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 12px;
  background: #87CEEB;       /* ← blue stays here */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  flex-shrink: 0;
  gap: 6px; min-width: 150px; text-align: center;
}
.co-logo {
  height: 32px; width: auto; max-width: 120px; object-fit: contain; display: block;
}
.co-logo[alt="digi-cloud"] { max-height: 38px; transform: scale(1.4); }
.digi-fix { max-height: 38px; transform: scale(1.2); }

.alumni-mq-wrap {
  background: linear-gradient(160deg, #eff6ff 0%, #fff 40%, #fff7ed 100%);
  padding: 60px 0;
}
.mq-header { text-align: center; margin-bottom: 40px; padding: 0 28px; }
.mq-header .sec-tag { display: inline-flex; }
.mq-header .sec-sub { max-width: 420px; }
.alumni-img { height: 120px; width: 120px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; }

.alumni-name { font-size: 13px; font-weight: 600; color: #222; }
.alumni-company { font-size: 11px; font-weight: 400; color: #888; }

section { padding: 100px 0; position: relative; z-index: 2 }
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 100px;
  background: var(--indigo-dim); font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--indigo-deep); margin-bottom: 14px;
}
.sec-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--indigo) }
.sec-h {
  font-family: var(--font-h); font-size: clamp(2rem,4vw,3.2rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -.02em; color: var(--text);
}
.sec-h strong { font-weight: 700 }
.sec-h em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-deep), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sec-sub { font-size: .95rem; color: var(--text-3); line-height: 1.8; margin-top: 12px; max-width: 560px }

.stats-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 40%, #fff7ed 100%);
  position: relative; overflow: hidden; z-index: 2;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(59,130,246,.18), transparent),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(249,115,22,.08), transparent);
  pointer-events: none;
}
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1px;
  background: rgba(0,0,0,.06); border-radius: 20px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.9); box-shadow: 0 8px 32px rgba(59,130,246,.12);
}
.stat-cell { background: #fff; padding: 36px 24px; text-align: center; transition: background .3s; }
.stat-cell:hover { background: #fafafa; }
.stat-n {
  font-family: var(--font-h); font-size: 3rem; font-weight: 600; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, var(--indigo-deep), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-l { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }

.courses-section { background: #fff }
.courses-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 52px }
.courses-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.cc {
  background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  overflow: hidden; transition: all .35s var(--ease); position: relative; cursor: pointer; box-shadow: var(--shadow);
}
.cc:hover { border-color: var(--indigo); transform: translateY(-5px); box-shadow: var(--shadow-lg) }
.cc-bar { height: 3px; background: linear-gradient(90deg, var(--teal-deep), var(--teal)) }
.cc-bar.i { background: linear-gradient(90deg, var(--indigo-deep), var(--indigo)) }
.cc-bar.r { background: linear-gradient(90deg, #d97706, var(--rose)) }
.cc-bar.a { background: linear-gradient(90deg, #0284c7, var(--amber)) }
.cc-visual {
  background: linear-gradient(160deg, #eff6ff, #dbeafe);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; position: relative; overflow: hidden; min-height: 180px;
}
.cc-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(59,130,246,.1), transparent 70%);
}
.cc-body { padding: 26px 24px }
.cc-cat {
  display: inline-block; padding: 3px 10px; border-radius: 100px;
  font-size: .90rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px;
}
.cat-t { background: var(--teal-dim); color: var(--teal-deep) }
.cat-i { background: var(--indigo-dim); color: var(--indigo-deep) }
.cat-r { background: var(--rose-dim); color: #92400e }
.cat-a { background: rgba(14,165,233,.1); color: #0369a1 }
.cc-title { font-family: var(--font-h); font-size: 1.45rem; font-weight: 600; line-height: 1.3; color: var(--text); margin-bottom: 8px; }
.cc-desc { font-size: .82rem; color: var(--text-3); line-height: 1.65; margin-bottom: 14px }
.cc-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px }
.cc-meta-item { font-size: .75rem; color: var(--text-4); display: flex; align-items: center; gap: 4px }
.cc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--border); }
.cc-price { font-family: var(--font-h); font-size: 1.2rem; font-weight: 600; color: var(--teal-deep) }
.cc-price small { display: block; font-size: .68rem; color: var(--text-4); font-family: var(--font-b); font-weight: 400 }
.cc-cta {
  font-size: .78rem; font-weight: 700; color: var(--teal-deep);
  display: flex; align-items: center; gap: 4px; transition: gap .25s var(--ease), color .25s;
}
.cc:hover .cc-cta { gap: 8px; color: var(--indigo-deep) }
.cc-flagship { grid-column: 1 / 3; display: grid; grid-template-columns: 220px 1fr; }

.why-section { background: var(--bg) }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.why-card {
  background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 28px 24px;
  box-shadow: var(--shadow); transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transition: transform .35s var(--ease);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--indigo) }
.why-card:hover::before { transform: scaleX(1) }
.wc-t::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)) }
.wc-i::before { background: linear-gradient(90deg, var(--indigo-deep), var(--indigo)) }
.wc-r::before { background: linear-gradient(90deg, #d97706, var(--rose)) }
.wc-a::before { background: linear-gradient(90deg, #0284c7, var(--amber)) }
.wc-g::before { background: linear-gradient(90deg, #059669, #34d399) }
.wc-b::before { background: linear-gradient(90deg, var(--teal-deep), var(--teal)) }
.why-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 18px; }
.wi-t { background: var(--teal-dim) } .wi-i { background: var(--indigo-dim) }
.wi-r { background: var(--rose-dim) } .wi-a { background: rgba(14,165,233,.1) }
.wi-g { background: rgba(5,150,105,.1) } .wi-b { background: var(--teal-dim) }
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 8px }
.why-card p  { font-size: .83rem; color: var(--text-3); line-height: 1.7 }

.curr-section { background: #fff }
.curr-layout { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; margin-top: 52px; }
.curr-nav { display: flex; flex-direction: column; gap: 4px }
.ctab {
  display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--radius);
  cursor: pointer; transition: all .25s; border: 1.5px solid transparent;
}
.ctab:hover { background: var(--bg-2) }
.ctab.on { background: var(--indigo-pale); border-color: rgba(249,115,22,.3) }
.ctab-n {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; background: var(--bg-2); color: var(--text-4); transition: all .25s;
}
.ctab.on .ctab-n { background: var(--indigo-deep); color: #fff }
.ctab-txt h4 { font-size: .88rem; font-weight: 600; color: var(--text); margin-bottom: 2px }
.ctab.on .ctab-txt h4 { color: var(--indigo-deep) }
.ctab-txt p { font-size: .73rem; color: var(--text-4) }
.curr-panel {
  background: var(--bg); border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 32px;
  transition: opacity .35s, transform .35s;
}
.cp-h { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; color: var(--text); margin-bottom: 6px }
.cp-sub { font-size: .84rem; color: var(--text-3); margin-bottom: 24px; line-height: 1.6 }
.cp-list { display: flex; flex-direction: column; gap: 9px }
.cp-item {
  display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 8px;
  background: #fff; border: 1px solid var(--border); font-size: .84rem; color: var(--text-2); transition: all .25s;
}
.cp-item:hover { border-color: var(--indigo); background: var(--indigo-pale); color: var(--indigo-deep) }
.cp-chk { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: .58rem; }

.testi-section { background: var(--bg) }
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px }
.tcard {
  background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--border); padding: 28px 24px;
  box-shadow: var(--shadow); transition: all .35s var(--ease); position: relative; overflow: hidden;
}
.tcard::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--indigo));
  transform: scaleX(0); transition: transform .35s var(--ease);
}
.tcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo) }
.tcard:hover::after { transform: scaleX(1) }
.tcard-q    { font-size: 3rem; line-height: .8; color: #bfdbfe; font-family: Georgia,serif; margin-bottom: 12px }
.tcard-stars{ font-size: 1.2rem; color: var(--rose); letter-spacing: 3px; margin-bottom: 12px }
.tcard-text { font-family: var(--font-h); font-style: normal; font-size: 1.1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.tcard-div  { height: 1px; background: var(--border); margin-bottom: 16px }
.tcard-author { display: flex; align-items: center; gap: 12px }
.tcard-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.tcard-name { font-size: .87rem; font-weight: 700; color: var(--text); margin-bottom: 1px }
.tcard-role { font-size: .72rem; color: var(--text-4) }
.tcard-co   { font-size: .72rem; font-weight: 600 }

.mentor-section { background: #fff }
.mgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 52px }
.mcard {
  background: var(--bg); border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow); transition: all .35s var(--ease);
}
.mcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--indigo); background: #fff }
.mcard-av {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; color: #fff;
  border: 3px solid #fff; box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.mcard-name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 3px }
.mcard-co   { font-size: .75rem; font-weight: 600; margin-bottom: 5px }
.mcard-exp  { font-size: .72rem; color: var(--text-4) }

.cta-section {
  padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; z-index: 2;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 20% 50%, rgba(59,130,246,.07), transparent),
    radial-gradient(ellipse 45% 60% at 80% 50%, rgba(249,115,22,.08), transparent);
  pointer-events: none;
}
.cta-box {
  text-align: center; padding: 80px 60px; position: relative; z-index: 1;
  border-radius: var(--radius-xl); background: #fff;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-lg);
}
.cta-box::before, .cta-box::after {
  content: ''; position: absolute; width: 24px; height: 24px;
  border-color: rgba(249,115,22,.4); border-style: solid;
}
.cta-box::before { top: 16px; left: 16px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0 }
.cta-box::after  { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0 }
.cta-h {
  font-family: var(--font-h); font-size: clamp(2.4rem,4.5vw,4rem);
  font-weight: 300; line-height: 1.08; letter-spacing: -.02em; color: var(--text); margin-bottom: 16px;
}
.cta-h em {
  font-style: italic;
  background: linear-gradient(135deg, var(--teal-deep), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-h strong { font-weight: 700; }
.cta-p { font-size: 1rem; color: var(--text-3); line-height: 1.8; max-width: 520px; margin: 0 auto 40px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-section .cta-stripe {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 3px;
  background: linear-gradient(90deg, var(--teal-deep), var(--indigo)); border-radius: 0 0 4px 4px;
}

footer {
  background: linear-gradient(135deg, #fdba74 0%, #ffffff 45%, #93c5fd 100%);
  border-top: 2px solid rgba(249,115,22,.4);
  padding: 64px 0 16px;
  position: relative;
  z-index: 2;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #ea580c 0%, #fb923c 30%, #60a5fa 70%, #1d4ed8 100%);
}

.foot-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 220px;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

.foot-brand p { font-size: .83rem; color: var(--text-3); margin-top: 12px; line-height: 1.75; }

.foot-soc { display: flex; gap: 8px; margin-top: 16px; }
.fsoc {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, #fed7aa, #bfdbfe);
  border: 1.5px solid rgba(249,115,22,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--indigo-deep); cursor: pointer; transition: all .25s var(--ease);
}
.fsoc:hover {
  background: var(--indigo-pale); border-color: rgba(249,115,22,.35); color: var(--indigo-deep);
  transform: translateY(-2px); box-shadow: 0 4px 12px rgba(249,115,22,.15);
}

.foot-col h5,
.foot-map-col h5 {
  font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 16px; position: relative; padding-bottom: 10px;
}
.foot-col h5::after,
.foot-map-col h5::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, #ea580c, #3b82f6); border-radius: 2px;
}

.foot-col ul { display: flex; flex-direction: column; gap: 10px; }
.foot-col ul a {
  font-size: 1rem; color: var(--text-3);
  transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 0;
}
.foot-col ul a:hover { color: var(--indigo-deep); padding-left: 4px; }

.foot-map-col { display: flex; flex-direction: column; }
.foot-map-col .map-embed {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(249,115,22,.2);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.foot-map-col .map-embed iframe {
  width: 100%; height: 100%; display: block; border: 0;
}

.foot-btm {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 0; border-top: 2px solid rgba(249,115,22,.3);
  font-size: .78rem; color: var(--text-2); font-weight: 500; flex-wrap: wrap; gap: 12px;
}
.foot-links { display: flex; gap: 20px; }
.foot-links a { color: var(--text-2); font-weight: 500; transition: color .2s; }
.foot-links a:hover { color: var(--indigo-deep); }

.bottom-bar {
  position: fixed; bottom: 0; left: 0; width: 100%;
  height: var(--bottom-bar-h); z-index: 10000;
  background: linear-gradient(90deg, var(--indigo-deep) 0%, var(--indigo) 40%, var(--teal-deep) 100%);
  display: flex; justify-content: center; align-items: center; text-align: center;
  padding: 0 20px; font-size: .88rem; font-weight: 600; color: rgba(255,255,255,0.88);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.bottom-bar span { font-weight: 800; color: #fff; margin-left: 6px; }
.bottom-bar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; height: 100%; text-decoration: none; color: inherit;
}
.bottom-bar a:active { opacity: 0.8; }

.whatsapp-float {
  position: fixed; bottom: calc(var(--bottom-bar-h) + 16px); right: 20px;
  background-color: #25D366; color: white; width: 60px; height: 60px;
  border-radius: 50%; text-align: center; font-size: 28px; line-height: 60px;
  text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 10500;
  animation: bounce 2.5s infinite; display: flex; align-items: center; justify-content: center;
}
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }

.toast-box {
  position: fixed; bottom: 30px; right: 30px; padding: 14px 24px;
  border-radius: 10px; font-size: 0.95rem; font-weight: 500; z-index: 9999;
  opacity: 0; animation: fadeInOut 4s ease forwards;
}
.toast-success { background: #28a745; color: #fff; }
.toast-error   { background: #dc3545; color: #fff; }
@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(20px); }
  15%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

.popup-overlay { z-index: 10000; }

@media (max-width: 1100px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .foot-brand { grid-column: 1 / -1; }
  .foot-map-col {
    grid-column: 1 / -1;
  }
  .foot-map-col .map-embed { height: 200px; }
}

@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 56px }
  .hero-card           { max-width: 480px }
  .courses-grid        { grid-template-columns: 1fr 1fr }
  .curr-layout         { grid-template-columns: 1fr }
  .mgrid               { grid-template-columns: 1fr 1fr }
  .stats-row           { grid-template-columns: 1fr 1fr }
  .nav-links           { gap: 2px }
  .nav-links > li > a  { padding: 0 7px; font-size: .75rem }
  .cc-flagship         { grid-column: 1 / 3; grid-template-columns: 180px 1fr; }
}

@media (max-width: 768px) {
  :root { --bottom-bar-h: 38px; }

  .nav-links      { display: none }
  .nav-right      { display: none }
  .nav-hamburger  { display: flex }
  .nav-row        { flex-wrap: nowrap; align-items: center }
  .sub-nav        { display: none !important }

  #cur, #cur-o { display: none }

  .hero { padding-top: 80px; padding-bottom: 60px }

  .why-grid     { grid-template-columns: 1fr }
  .courses-grid { grid-template-columns: 1fr }
  .tgrid        { grid-template-columns: 1fr }
  .cta-box      { padding: 48px 24px }

  footer { padding: 48px 0 12px; }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .foot-brand  { grid-column: auto; }
  .foot-map-col {
    grid-column: auto;
  }
  .foot-map-col .map-embed { height: 200px; }
  .foot-btm  { flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }

  .bottom-bar { font-size: .8rem; padding: 0 16px; }

  .whatsapp-float {
    bottom: calc(var(--bottom-bar-h) + 10px) !important;
    right: 15px !important; width: 50px !important; height: 50px !important;
    font-size: 24px !important; line-height: 50px !important;
  }
}

@media (max-width: 600px) {
  .courses-grid  { grid-template-columns: 1fr; }
  .cc-flagship   { grid-column: auto; display: block; }
  .cc-visual     { min-height: 120px; font-size: 2.5rem; }
  .courses-head  { flex-direction: column; align-items: flex-start; }
  .courses-section { padding: 40px 0; }
}