/* ============================================================
   EDFILY.COM — Main Stylesheet
   Fonts: ITC Bauhaus Std (hero h1 + final-cta h2 only)
          Plus Jakarta Sans (everything else, via Google Fonts)
   ============================================================ */

/* ITC Bauhaus — used ONLY for .hero h1 and .final-cta h2 */
@font-face {
  font-family: 'ITC Bauhaus Std';
  src: local('ITC Bauhaus Std'), local('Bauhaus Std'), local('BauhausStd'),
       local('Bauhaus 93'), local('Bauhaus93');
  font-weight: 300 900;
  font-style: normal;
}

/* ── CSS VARIABLES ── */
:root {
  --blue:         #004AAD;
  --blue-dark:    #003580;
  --blue-light:   #E6F0FF;
  --cta-gradient: linear-gradient(135deg, #7DD4FF 0%, #4A9EE8 100%);
  --cta-color:    #5BBEF8;
  --cta-hover:    #3DA8EE;
  --cta-shadow:   rgba(91, 190, 248, 0.40);
  --white:        #FFFFFF;
  --off-white:    #F5F7FA;
  --text:         #0A0A0A;
  --text-muted:   #4A4A4A;
  --text-light:   #7A8399;
  --border:       #D8E4F4;
  --shadow-sm:    0 2px 12px rgba(0, 74, 173, 0.08);
  --shadow-md:    0 8px 32px rgba(0, 74, 173, 0.12);
  --shadow-lg:    0 20px 60px rgba(0, 74, 173, 0.16);
  --radius:       14px;
  --radius-sm:    8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ── BASE ── */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
}

/* ── UTILITY ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-tag.accent {
  background: rgba(91, 190, 248, 0.12);
  color: var(--cta-color);
}
.section-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.section-heading span { color: var(--blue); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-gradient);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px var(--cta-shadow);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cta-shadow);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(0, 53, 128, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #002d7a 0%, var(--blue) 50%, #005ed6 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91, 190, 248, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 200, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ITC Bauhaus applied ONLY here */
.hero h1 {
  font-family: 'ITC Bauhaus Std', 'Bauhaus 93', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--cta-color); }
.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.hero-meta-item svg { flex-shrink: 0; }

/* Hero card */
.hero-right { position: relative; z-index: 2; }
.hero-card-wrap { position: relative; }
.hero-main-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #7DD4FF, #3DA8EE);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.hero-card-title { font-weight: 700; font-size: 15px; }
.hero-card-sub { font-size: 12px; opacity: 0.65; margin-top: 2px; }
.progress-item { margin-bottom: 20px; }
.progress-label { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.progress-bar { height: 6px; background: rgba(255, 255, 255, 0.12); border-radius: 100px; overflow: hidden; }
.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #7DD4FF, #4A9EE8);
  animation: fillBar 1.5s ease-out forwards;
}
@keyframes fillBar { from { width: 0; } }
.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-1 { top: -20px; right: -20px; }
.hero-float-2 { bottom: -20px; left: -20px; animation-delay: 1.5s; }
.float-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}
.trust-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 180px;
  justify-content: center;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.trust-label { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

/* ── PROGRAMS ── */
.programs { padding: 88px 0; background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #5BBEF8);
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.program-card.featured {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border: none;
}
.program-card.featured::before { background: linear-gradient(90deg, #7DD4FF, #4A9EE8); }
.prog-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.program-card.featured .prog-icon { background: rgba(255, 255, 255, 0.15); }
.prog-title { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.program-card.featured .prog-title { color: #fff; }
.prog-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.program-card.featured .prog-desc { color: rgba(255, 255, 255, 0.75); }
.prog-outcomes { list-style: none; margin-bottom: 28px; }
.prog-outcomes li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-card.featured .prog-outcomes li { color: rgba(255, 255, 255, 0.8); }
.prog-outcomes li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cta-color);
  border-radius: 50%;
  flex-shrink: 0;
}
.prog-badge {
  display: inline-block;
  background: #E6F0FF;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.program-card.featured .prog-badge { background: rgba(91, 190, 248, 0.2); color: #7DD4FF; }

/* ── HOW IT WORKS ── */
.hiw { padding: 88px 0; background: var(--white); }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  margin-top: 56px;
}
.hiw-connector {
  position: absolute;
  top: 52px;
  left: calc(16.66% + 20px);
  width: calc(66.66% - 40px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  z-index: 0;
}
.hiw-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hiw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hiw-step {
  width: 60px; height: 60px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0, 74, 173, 0.35);
}
.hiw-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.hiw-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── SKILLS ── */
.skills { padding: 88px 0; background: var(--blue-light); }
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.skill-group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 74, 173, 0.1);
}
.skill-group-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.skill-group-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.skill-group-title { font-size: 16px; font-weight: 700; color: var(--text); }
.skill-list { list-style: none; }
.skill-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.skill-list li:last-child { border-bottom: none; }
.skill-list li::before { content: '→'; color: var(--blue); font-size: 13px; font-weight: 700; }

/* ── OUTCOMES ── */
.outcomes { padding: 88px 0; background: var(--white); }
.outcomes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 56px; }
.check-list { list-style: none; }
.check-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 22px; height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.role-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.role-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.role-card-icon { font-size: 24px; margin-bottom: 10px; }
.role-card-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.role-card-domain { font-size: 12px; color: var(--text-light); }
.outcomes-right {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 20px;
  padding: 40px 36px;
  color: #fff;
}
.outcomes-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.outcomes-stat { text-align: center; }
.outcomes-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--cta-color);
  line-height: 1;
  margin-bottom: 8px;
}
.outcomes-stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.7); }

/* ── COLLEGES ── */
.colleges {
  padding: 60px 0;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.colleges-inner { text-align: center; }
.colleges-inner .section-sub { margin: 12px auto 40px; }
.colleges-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.colleges-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 4px;
}
.colleges-badge .dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

/* ── LEAD FORM ── */
.lead-form-section { padding: 88px 0; background: var(--white); }
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--off-white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.form-left { padding: 56px 48px; }
.form-right {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  padding: 56px 48px;
  height: 100%;
  display: flex;
  align-items: center;
}
.form-right-inner { color: #fff; }
.form-right .section-heading { color: #fff; }
.form-points { margin-top: 28px; }
.form-point { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.form-point-icon {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-point-title { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 4px; }
.form-point-desc { font-size: 13px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; }
form label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
form input,
form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 20px;
  -webkit-appearance: none;
}
form input:focus,
form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 74, 173, 0.1);
}
form input::placeholder { color: var(--text-light); }
.form-submit { width: 100%; padding: 15px; font-size: 16px; }
.form-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
}

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #001f5c 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta-content { position: relative; z-index: 1; }

/* ITC Bauhaus applied ONLY here */
.final-cta h2 {
  font-family: 'ITC Bauhaus Std', 'Bauhaus 93', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.final-cta h2 .accent { color: var(--cta-color); }
.final-cta p { color: rgba(255, 255, 255, 0.72); font-size: 17px; max-width: 520px; margin: 0 auto 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #040e23;
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  font-size: 13px;
}
footer a { color: rgba(255, 255, 255, 0.6); }
footer a:hover { color: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo img { height: 36px; width: auto; display: block; mix-blend-mode: screen; }
.footer-links { display: flex; gap: 24px; }

/* ── WHATSAPP STICKY ── */
.wa-sticky {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: waPop 0.4s 2s both;
}
@keyframes waPop { from { transform: scale(0); } to { transform: scale(1); } }
.wa-sticky:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.wa-sticky:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-grid         { grid-template-columns: 1fr; }
  .hero-right        { display: none; }
  .programs-grid     { grid-template-columns: 1fr; }
  .hiw-grid          { grid-template-columns: 1fr; }
  .hiw-connector     { display: none; }
  .skills-grid       { grid-template-columns: 1fr; }
  .outcomes-grid     { grid-template-columns: 1fr; }
  .form-wrap         { grid-template-columns: 1fr; }
  .form-right        { display: none; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
}
@media (max-width: 600px) {
  .trust-item         { border-right: none; border-bottom: 1px solid var(--border); min-width: 100%; }
  .trust-item:last-child { border-bottom: none; }
  .role-cards         { grid-template-columns: 1fr; }
  .outcomes-stat-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner       { flex-direction: column; text-align: center; }
}
