:root {
  --teal:       #0891b2;
  --teal-dark:  #0e7490;
  --teal-deep:  #164e63;
  --teal-bg:    #ecfeff;
  --teal-mid:   #06b6d4;
  --teal-light: #67e8f9;
  --teal-pale:  #cffafe;
  --gold:       #b45309;
  --gold-light: #fbbf24;
  --ink:        #0f172a;
  --ink-mid:    #334155;
  --ink-soft:   #64748b;
  --ink-pale:   #94a3b8;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --border:     #e2e8f0;
  --border-teal:#a5f3fc;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 600;
  color: var(--ink); letter-spacing: .02em;
}
.nav-logo span { color: var(--teal); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-soft);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: #fff; font-size: 12px; font-weight: 600;
  padding: 8px 20px; border-radius: 6px;
  text-decoration: none; letter-spacing: .06em;
  transition: background .2s;
}
.nav-cta:hover { background: var(--teal-dark); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0c3d4f 40%, #0e172a 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 40px 60px;
}
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(6,182,212,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(8,145,178,.12) 0%, transparent 45%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(6,182,212,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,182,212,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 2px; background: var(--teal-mid);
}
.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300; color: #fff; line-height: 1;
  letter-spacing: -.01em; margin-bottom: 6px;
}
.hero-name strong {
  font-weight: 700; color: var(--teal-light);
  display: block;
}
.hero-title {
  font-size: 16px; font-weight: 400;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,.8); line-height: 1.6;
  max-width: 520px; margin-bottom: 40px;
  border-left: 3px solid var(--teal-mid);
  padding-left: 20px;
}
.hero-statement strong {
  font-weight: 600; color: var(--teal-light);
  font-style: normal;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
}
.hero-pill {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(6,182,212,.3);
  color: var(--teal-light);
  background: rgba(8,145,178,.12);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 13px 28px; border-radius: 8px;
  text-decoration: none; letter-spacing: .04em;
  transition: all .2s;
  box-shadow: 0 4px 24px rgba(8,145,178,.35);
}
.btn-primary:hover {
  background: var(--teal-mid);
  box-shadow: 0 6px 32px rgba(6,182,212,.45);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.8); font-size: 13px; font-weight: 500;
  padding: 13px 28px; border-radius: 8px;
  text-decoration: none; letter-spacing: .04em;
  transition: all .2s;
}
.btn-outline:hover {
  border-color: var(--teal-mid); color: var(--teal-light);
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 36px 28px;
}
.hc-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; margin-bottom: 20px;
  box-shadow: 0 0 0 3px rgba(6,182,212,.4);
}

.hc-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; display: block;
}
.hc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.hc-role {
  font-size: 12px; color: var(--teal-light);
  font-weight: 500; letter-spacing: .06em; margin-bottom: 24px;
}
.hc-divider {
  height: 1px; background: rgba(255,255,255,.1); margin-bottom: 22px;
}
.hc-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 22px;
}
.hc-stat {
  background: rgba(255,255,255,.06);
  border-radius: 10px; padding: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.hc-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--teal-light); line-height: 1;
}
.hc-stat-label { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; }
.hc-location {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 8px;
}
.hc-open {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #4ade80; font-weight: 600;
}
.hc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.4); }
  50% { opacity: .8; box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
section { padding: 96px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--teal);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700; color: var(--ink);
  line-height: 1.1; margin-bottom: 16px;
}
.section-title em {
  font-style: italic; font-weight: 300; color: var(--teal);
}
.section-sub {
  font-size: 15px; color: var(--ink-soft);
  max-width: 560px; line-height: 1.7; margin-bottom: 56px;
}

/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
.about { background: var(--off-white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.about-story p {
  font-size: 15px; color: var(--ink-mid); line-height: 1.85;
  margin-bottom: 18px;
}
.about-story p strong { color: var(--ink); font-weight: 600; }
.about-story blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; font-weight: 400;
  color: var(--teal-deep); line-height: 1.6;
  border-left: 3px solid var(--teal);
  padding: 12px 0 12px 20px; margin: 28px 0;
}
.about-sidebar {}
.profile-image-placeholder{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;

  background: linear-gradient(135deg, var(--teal-bg), #e0f7fa);
  border-radius: 1rem;
  margin-bottom: 2rem;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0.15rem dashed var(--border-teal);
}

.profile-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badges { display: flex; flex-direction: column; gap: 10px; }
.about-badge {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
}
.ab-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.ab-title { font-size: 13px; font-weight: 600; color: var(--ink); }
.ab-sub { font-size: 11px; color: var(--ink-pale); margin-top: 1px; }

/* ══════════════════════════════════════
   EXPERTISE
══════════════════════════════════════ */
.expertise { background: #fff; }
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.exp-card {
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: all .25s; position: relative; overflow: hidden;
}
.exp-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.exp-card:hover { border-color: var(--border-teal); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(8,145,178,.1); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.exp-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.exp-body { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.exp-tag {
  font-size: 10px; padding: 3px 8px; border-radius: 20px;
  background: var(--teal-bg); color: var(--teal-dark);
  font-weight: 600; border: 1px solid var(--border-teal);
}

/* ══════════════════════════════════════
   LEAP FRAMEWORK
══════════════════════════════════════ */
.framework {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #0c3d4f 50%, #082535 100%);
  position: relative; overflow: hidden;
}
.framework-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(6,182,212,.1) 0%, transparent 55%);
  pointer-events: none;
}
.framework .section-label { color: var(--teal-light); }
.framework .section-label::before { background: var(--teal-light); }
.framework .section-title { color: #fff; }
.framework .section-title em { color: var(--teal-light); }
.framework .section-sub { color: rgba(255,255,255,.55); max-width: 600px; }
.framework-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}
.framework-right {
  display: flex;
  justify-content: flex-end;
  
}
.framework-logo {
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .25));
  
}
.leap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.leap-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 28px 20px;
  transition: all .25s;
}
.leap-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(6,182,212,.4);
  transform: translateY(-4px);
}
.leap-letter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: var(--teal-light);
  line-height: 1; margin-bottom: 4px;
  text-shadow: 0 0 30px rgba(6,182,212,.4);
}
.leap-word {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.leap-week {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  color: var(--teal-mid); text-transform: uppercase; margin-bottom: 12px;
}
.leap-desc {
  font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.65;
}
.leap-footer {
  margin-top: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.lf-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 20px; text-align: center;
}
.lf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; color: var(--teal-light); line-height: 1;
}
.lf-label { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ══════════════════════════════════════
   PROGRAMS
══════════════════════════════════════ */
.programs { background: var(--off-white); }
.prog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prog-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: all .25s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(8,145,178,.12); border-color: var(--border-teal); }
.prog-card.featured {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(8,145,178,.15);
}
.prog-header {
  padding: 24px 24px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.prog-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center; font-size: 22px;
}
.prog-badge {
  font-size: 10px; padding: 4px 10px; border-radius: 20px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.prog-badge.featured-badge { background: var(--teal); color: #fff; }
.prog-badge.corp-badge { background: var(--teal-bg); color: var(--teal-dark); border: 1px solid var(--border-teal); }
.prog-badge.new-badge { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.prog-body { padding: 20px 24px; }
.prog-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.prog-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; margin-bottom: 16px; }
.prog-outcomes { margin-bottom: 20px; }
.prog-outcome {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--ink-mid); margin-bottom: 6px;
}
.prog-check {
  width: 18px; height: 18px; border-radius: 4px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 10px; color: var(--teal); flex-shrink: 0; font-weight: 700;
}
.prog-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}
.prog-price { font-size: 15px; font-weight: 700; color: var(--ink); }
.prog-price span { font-size: 12px; color: var(--ink-pale); font-weight: 400; }
.prog-cta {
  font-size: 12px; font-weight: 600; color: var(--teal);
  text-decoration: none; padding: 6px 16px; border-radius: 6px;
  border: 1px solid var(--teal);
  transition: all .2s;
}
.prog-cta:hover { background: var(--teal); color: #fff; }

/* ══════════════════════════════════════
   EXPERIENCE TIMELINE
══════════════════════════════════════ */
.experience { background: #fff; }
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute;
  left: 6px; top: 8px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--teal), transparent);
}
.tl-item { position: relative; margin-bottom: 40px; }
.tl-dot {
  position: absolute; left: -32px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
}
.tl-period {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 4px;
}
.tl-role { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.tl-org { font-size: 14px; color: var(--ink-soft); margin-bottom: 10px; }
.tl-desc { font-size: 13.5px; color: var(--ink-mid); line-height: 1.75; }

.exp-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.skills-block { }
.skills-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.skill-row { margin-bottom: 14px; }
.skill-name {
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--ink-mid); font-weight: 500; margin-bottom: 5px;
}
.skill-bar {
  height: 5px; background: var(--border); border-radius: 3px; overflow: hidden;
}
.skill-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}
.cert-block { margin-top: 32px; }
.cert-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 10px; margin-bottom: 10px; background: var(--off-white);
}
.cert-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
.cert-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.cert-body { font-size: 11px; color: var(--ink-pale); margin-top: 1px; }

/* ══════════════════════════════════════
   JAKARTA — WHY ME
══════════════════════════════════════ */
.jakarta {
  background: linear-gradient(135deg, #ecfeff 0%, #f0f9ff 50%, #fff 100%);
  border-top: 1px solid var(--border-teal);
  border-bottom: 1px solid var(--border-teal);
}
.jakarta-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.jakarta-left {}
.jakarta-why {
  display: flex; flex-direction: column; gap: 16px; margin-top: 24px;
}
.jw-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 18px;
}
.jw-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--teal-bg); display: flex;
  align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.jw-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.jw-body { font-size: 12.5px; color: var(--ink-soft); line-height: 1.6; }
.jakarta-right {}
.market-card {
  background: linear-gradient(135deg, var(--teal-deep), #0c3d4f);
  border-radius: 16px; padding: 28px;
  color: #fff; margin-bottom: 20px;
}
.mc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 16px;
  color: var(--teal-light);
}
.mc-stat {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
}
.mc-stat:last-child { border-bottom: none; }
.mc-label { color: rgba(255,255,255,.5); }
.mc-val { font-weight: 700; color: var(--teal-light); }
.offer-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 22px;
}
.oc-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.oc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--ink-mid); margin-bottom: 9px;
}
.oc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials { background: var(--off-white); }
.testi-carousel {
  margin-top: 8px;
}
.testi-viewport {
  overflow: hidden;
  width: 100%;
}
.testi-track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testi-slide {
  flex: 0 0 auto;
  display: flex;
  min-width: 0;
}
.testi-slide .testi-card {
  width: 100%;
  min-height: 100%;
}
.testi-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.testi-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  min-width: 48px;
  height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testi-btn-icon {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  margin-top: -2px;
}
.testi-btn:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal-deep);
  background: var(--teal-bg);
}
.testi-btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.testi-btn:active:not(:disabled) {
  transform: scale(0.98);
}
.testi-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 14px; padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testi-stars { color: var(--gold-light); font-size: 14px; margin-bottom: 14px; flex-shrink: 0; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-style: italic; font-weight: 400;
  color: var(--ink-mid); line-height: 1.65; margin-bottom: 18px;
}
.testi-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
  flex-shrink: 0;
}
.testi-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-role { font-size: 11px; color: var(--ink-pale); }
.testi-note {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--ink-pale); font-style: italic;
}

/* ══════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════ */
.contact {
  background: linear-gradient(135deg, var(--teal-deep) 0%, #082535 100%);
  text-align: center; padding: 96px 40px;
  position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(6,182,212,.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.contact-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal-light);
  margin-bottom: 16px;
}
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 60px); font-weight: 700;
  color: #fff; line-height: 1.1; margin-bottom: 20px;
}
.contact-title em { font-style: italic; color: var(--teal-light); font-weight: 300; }
.contact-sub {
  font-size: 15px; color: rgba(255,255,255,.55);
  margin-bottom: 40px; line-height: 1.7;
}
.contact-cards {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 40px;
}
.cc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 18px;
}
.cc-icon { font-size: 22px; margin-bottom: 8px; }
.cc-label { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.cc-val { font-size: 12px; color: #fff; font-weight: 600; word-break: break-all; }
.contact-btns { display: flex; gap: 14px; justify-content: center; }
.cbtn-primary {
  background: var(--teal); color: #fff;
  font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none; letter-spacing: .04em;
  box-shadow: 0 4px 24px rgba(8,145,178,.4);
  transition: all .2s;
}
.cbtn-primary:hover { background: var(--teal-mid); transform: translateY(-1px); }
.cbtn-outline {
  border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  font-size: 14px; font-weight: 500;
  padding: 14px 32px; border-radius: 8px;
  text-decoration: none; transition: all .2s;
}
.cbtn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: #0a0f14; padding: 28px 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600; color: rgba(255,255,255,.4);
}
.footer-brand span { color: var(--teal-light); }
.footer-note { font-size: 11px; color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  animation: fadeUp .7s ease forwards;
}
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .25s; }
.fade-up.d3 { animation-delay: .4s; }
.fade-up.d4 { animation-delay: .55s; }
.fade-up.d5 { animation-delay: .7s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { display: none; }
  .about-grid, .jakarta-grid, .exp-two-col { grid-template-columns: 1fr; gap: 40px; }
  .exp-grid, .prog-grid, .leap-grid { grid-template-columns: 1fr; }
  .leap-grid { grid-template-columns: 1fr 1fr; }
  .framework-head { grid-template-columns: 1fr; margin-bottom: 22px; }
  .framework-right { justify-content: flex-start; }
  .framework-logo { width: min(100%, 300px); }
  .leap-footer, .contact-cards { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 60px 20px; }
}