/* =========================================================
   HOPEANCHOR TECH — style.css
   Deep Navy Anchor + Gold Hope palette
   Font: Playfair Display (headings) + DM Sans (body)
   ========================================================= */

/* ---- CSS VARIABLES ---- */
:root {
  --navy:      #0D1F3C;
  --navy-mid:  #162D55;
  --navy-soft: #1E3A6E;
  --blue:      #2255A4;
  --teal:      #00A99D;
  --teal-light:#00CFC3;
  --gold:      #F5A623;
  --gold-light:#FFD06B;
  --white:     #FFFFFF;
  --off-white: #F7F9FC;
  --grey-100:  #EEF2F7;
  --grey-200:  #D6DDE8;
  --grey-400:  #8A99B0;
  --grey-700:  #3E5070;
  --text:      #1A2A45;
  --text-light:#536280;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm:  0 2px 8px rgba(13,31,60,.07);
  --shadow-md:  0 6px 24px rgba(13,31,60,.10);
  --shadow-lg:  0 16px 48px rgba(13,31,60,.15);
  --shadow-xl:  0 32px 80px rgba(13,31,60,.18);

  --transition: 0.28s cubic-bezier(.4,0,.2,1);
  --nav-h: 72px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

em { font-style: italic; color: var(--teal); }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- SECTION ---- */
.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,169,157,.1);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--text-light);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal), #007A72);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,169,157,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,169,157,.45);
  background: linear-gradient(135deg, var(--teal-light), var(--teal));
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--teal);
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost:hover { color: var(--navy); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,.6);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
}

.btn-full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-anchor {
  font-size: 24px;
  filter: drop-shadow(0 2px 4px rgba(0,169,157,.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--grey-100);
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  margin-left: 8px;
  transition: var(--transition);
  box-shadow: 0 3px 12px rgba(13,31,60,.25);
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--navy-soft), var(--blue));
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13,31,60,.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: calc(var(--nav-h) + 64px) 0 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

.hero-bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--teal);
  top: -100px; right: -150px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: 100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--navy);
  top: 40%; left: 40%;
  opacity: 0.06;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-light);
  background: var(--grey-100);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.title-line { display: block; }
.accent-line { color: var(--teal); }

.hero-verse {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-200);
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 400px;
  height: 400px;
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.fc-icon { font-size: 20px; }
.fc-1 { top: 20px;  left: 0;   animation-delay: 0s; }
.fc-2 { top: 50%;   right: 0;  transform: translateY(-50%); animation-delay: 1.3s; }
.fc-3 { bottom: 30px; left: 20px; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-2 {
  animation: float2 4s ease-in-out infinite;
  animation-delay: 1.3s;
}
@keyframes float2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 10px)); }
}

.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring {
  width: 160px;
  height: 160px;
  border: 2px dashed var(--grey-200);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(13,31,60,.06), var(--shadow-lg);
}

.orbit-anchor {
  font-size: 40px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.3));
}

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  background: var(--navy);
  padding: 48px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--white);
}

.mi-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

.mission-item h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.mission-item p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

/* ============================================================
   PILLARS / SERVICE CARDS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.pillar-card:hover::before { transform: scaleX(1); }

.pillar-featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-color: transparent;
  color: var(--white);
}
.pillar-featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.pillar-featured h3 { color: var(--white); }
.pillar-featured p { color: rgba(255,255,255,.75); }
.pillar-featured .pillar-list li { color: rgba(255,255,255,.85); }
.pillar-featured .pillar-list li::before { color: var(--gold); }

.pillar-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 99px;
  text-transform: uppercase;
}

.pillar-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--grey-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
}
.pillar-featured .pillar-icon-wrap {
  background: rgba(255,255,255,.12);
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.pillar-list {
  margin-bottom: 24px;
}
.pillar-list li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}
.pillar-list li::before {
  /* content: '→'; */
  position: absolute;
  left: 0;
  color: var(--teal);
  font-size: 11px;
}

.pillar-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  transition: var(--transition);
}
.pillar-featured .pillar-link { color: var(--gold-light); }
.pillar-link:hover { gap: 4px; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-tag { display: block; margin-bottom: 12px; }
.why-text .section-title { margin-bottom: 24px; }
.why-text p { color: var(--text-light); margin-bottom: 16px; font-size: 16px; }
.why-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

.impact-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-200);
}

.impact-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--grey-100);
}
.impact-item:last-of-type { border-bottom: none; }

.impact-num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.impact-desc {
  font-size: 14px;
  color: var(--text-light);
}

.impact-verse {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-display);
}
.impact-verse span { font-size: 20px; }

/* ============================================================
   COURSE CARDS (tease)
   ============================================================ */
.courses-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.course-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.course-icon { font-size: 32px; margin-bottom: 12px; }
.course-card h4 { font-size: 16px; margin-bottom: 8px; }
.course-card p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.5; }

.course-level {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.course-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.course-tag.free {
  background: rgba(0,169,157,.12);
  color: var(--teal);
}
.course-tag.paid {
  background: rgba(245,166,35,.12);
  color: #C47D00;
}

.tease-cta { text-align: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--navy); }
.testimonials .section-tag {
  background: rgba(245,166,35,.15);
  color: var(--gold);
}
.testimonials .section-title { color: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}
.testi-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}

.testi-featured {
  background: rgba(0,169,157,.15);
  border-color: rgba(0,169,157,.3);
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.6;
  color: var(--teal);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testi-card > p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testi-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--navy-soft));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testi-author strong { display: block; color: white; font-size: 14px; font-family: var(--font-body); }
.testi-author span { font-size: 12px; color: rgba(255,255,255,.5); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #007A72 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  right: -100px;
  top: -150px;
}

.cta-content {
  position: relative;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ph-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.ph-s1 {
  width: 400px; height: 400px;
  background: var(--teal);
  opacity: 0.12;
  top: -100px; right: -80px;
}
.ph-s2 {
  width: 300px; height: 300px;
  background: var(--gold);
  opacity: 0.08;
  bottom: -50px; left: -80px;
}

.page-hero .section-tag {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
}

.page-hero-title {
  font-size: clamp(32px, 5vw, 60px);
  color: var(--white);
  margin: 12px 0 20px;
  position: relative;
}
.page-hero-title em { color: var(--gold-light); }

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-verse {
  font-size: 13px !important;
  color: var(--gold) !important;
  font-family: var(--font-display);
  margin-top: 12px !important;
}

.footer-logo .logo-text { color: white; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-contact li {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text .section-tag { display: block; margin-bottom: 12px; }
.story-text .section-title { margin-bottom: 24px; }
.story-text p { color: var(--text-light); margin-bottom: 16px; }

.callout-card {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.callout-anchor { 
  font-size: 48px; 
  display: block; 
  margin-bottom: 20px; 
  color: var(--gold);
}

.callout-card blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.callout-card cite {
  font-size: 13px;
  color: var(--gold);
  font-style: normal;
}

/* MVV */
.mvv-section { background: var(--off-white); }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.mvv-featured {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  border-color: transparent;
}
.mvv-featured h3 { 
  color: var(--white); 
}
/* .mvv-featured p { 
  color: #F0FBF9;
} */

.mvv-card.mvv-featured p {
  color: #d4f0ec;
}

.mvv-featured .mvv-icon i {
  color: var(--gold, #ffd700);
}

.mvv-icon { 
  font-size: 36px; 
  display: block; 
  margin-bottom: 16px; 
}

.mvv-card h3 { 
  font-size: 22px; 
  margin-bottom: 14px; 
}

.mvv-card p { 
  font-size: 15px; 
  color: var(--text-light); 
  line-height: 1.7; 
}

.values-list { 
  padding: 0; 
}

.values-list li {
  font-size: 14px;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid var(--grey-100);
}
.values-list li:last-child { border-bottom: none; }
.values-list strong { color: var(--navy); }


/* Founder */
.founder-section { background: var(--off-white); }

.founder-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.founder-avatar-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
}

.founder-avatar-ring {
  width: 100%;
  height: 100%;
  border: 3px solid var(--teal);
  border-radius: 50% !important; 
  padding: 8px;
  box-sizing: border-box; 
}

.founder-avatar-inner {
  position: relative; 
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-radius: 50% !important; 
  overflow: hidden !important; 
}

.founder-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important; 
  aspect-ratio: 1 / 1;
  border-radius: 50% !important;
  display: block;
}

.founder-initials {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: white;
}

.founder-badge-float {
  position: absolute;
  bottom: -10px; 
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 5; 
}

.founder-text .section-tag { display: block; margin-bottom: 8px; }
.founder-text .section-title { margin-bottom: 20px; }
.founder-text p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; }

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.founder-tags span {
  background: var(--grey-100);
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
}


/* Social Model */
.model-flow {
  display: flex;
  align-items: center;
  gap: 24px;
}

.model-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.model-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.ms-highlight {
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  border-color: transparent;
  transform: scale(1.04);
}
.ms-highlight h4, .ms-highlight p { color: white !important; }
.ms-highlight .ms-num { color: var(--gold) !important; }

.ms-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 8px;
}

.ms-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.model-step h4 { font-size: 17px; margin-bottom: 10px; }
.model-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

.model-arrow {
  font-size: 28px;
  color: var(--grey-200);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES PAGE SPECIFIC
   ============================================================ */
.services-section-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 56px;
}

.ssh-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  background: var(--grey-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-section-header .section-tag { display: block; margin-bottom: 8px; }
.services-section-header .section-title { margin-bottom: 8px; font-size: 32px; }
.services-section-header .section-sub { margin: 0; text-align: left; }

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-detail-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}
.svc-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.svc-highlight {
  background: linear-gradient(160deg, #F0FBF9, #E0F7F5);
  border-color: rgba(0,169,157,.2);
}

.svc-detail-icon { font-size: 40px; display: block; margin-bottom: 16px; }
.svc-detail-card h4 { font-size: 18px; margin-bottom: 10px; }
.svc-detail-card > p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.svc-detail-card ul { padding-left: 0; }
.svc-detail-card ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.svc-detail-card ul li:last-child { border-bottom: none; }
.svc-detail-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.tech-services-section { background: var(--off-white); }

.why-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.why-svc-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.why-svc-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-svc-item > span { font-size: 36px; display: block; margin-bottom: 14px; }
.why-svc-item h4 { font-size: 15px; margin-bottom: 8px; }
.why-svc-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   TRAINING PAGE SPECIFIC
   ============================================================ */
.training-approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ta-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.ta-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ta-item > span { font-size: 32px; display: block; margin-bottom: 12px; }
.ta-item h4 { font-size: 15px; margin-bottom: 8px; }
.ta-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.training-courses-section { background: var(--off-white); }

.course-full-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  overflow: hidden;
  transition: var(--transition);
}
.course-full-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal); }

.cfc-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-200);
}

.cfc-icon {
  font-size: 48px;
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.cfc-meta h3 { font-size: 24px; margin: 8px 0 10px; }

.cfc-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cfc-details span { font-size: 13px; color: var(--text-light); font-weight: 500; }

.cfc-body { padding: 32px; }
.cfc-body > p { color: var(--text-light); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }

.cfc-curriculum h5 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.curr-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}
.curr-item span { color: var(--teal); font-weight: 700; flex-shrink: 0; }

.cfc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--grey-100);
}

.who-for {
  font-size: 13px;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.6;
}
.who-for strong { color: var(--navy); }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.faq-item h4 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.faq-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-section { padding-bottom: 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; font-size: 36px; }
.contact-info > p { color: var(--text-light); margin-bottom: 36px; font-size: 15px; }

.contact-details { margin-bottom: 36px; }

.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}
.cd-item:last-child { border-bottom: none; }

.cd-icon {
  font-size: 20px;
  width: 44px;
  height: 44px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 4px;
}

.cd-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.contact-verse-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.contact-verse-box span { font-size: 24px; }
.contact-verse-box blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-light);
  line-height: 1.5;
}
.contact-verse-box p { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 32px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.req { color: var(--teal); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,169,157,.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.field-error {
  display: block;
  font-size: 12px;
  color: #E53E3E;
  margin-top: 5px;
  min-height: 16px;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

/* Hide the native checkbox completely */
.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

/* Custom checkbox box — sits right after the hidden input */
.form-check input[type="checkbox"] + label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin: 0;
  cursor: pointer;
  line-height: 1.5;
}

/* The visual box — created via ::before on the label */
.form-check input[type="checkbox"] + label::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--grey-300, #cbd5e1);
  border-radius: 5px;
  background: var(--white);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

/* Checked state — filled teal box */
.form-check input[type="checkbox"]:checked + label::before {
  background: var(--teal);
  border-color: var(--teal);
  /* Checkmark drawn with CSS clip-path */
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  background-color: var(--teal);
}

/* Focus ring for accessibility */
.form-check input[type="checkbox"]:focus + label::before {
  box-shadow: 0 0 0 3px rgba(0,169,157,0.25);
}

/* Hover state */
.form-check:hover input[type="checkbox"] + label::before {
  border-color: var(--teal);
}

/* Dark mode checkbox */
[data-theme="dark"] .form-check input[type="checkbox"] + label {
  color: #8b949e;
}
[data-theme="dark"] .form-check input[type="checkbox"] + label::before {
  background: #0d1117;
  border-color: #30363d;
}
[data-theme="dark"] .form-check:hover input[type="checkbox"] + label::before {
  border-color: #00A99D;
}
[data-theme="dark"] .form-check input[type="checkbox"]:checked + label::before {
  background: var(--teal);
  border-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8l3.5 3.5 6.5-7' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
  background-color: var(--teal);
}

.form-success {
  background: #F0FBF9;
  border: 1px solid rgba(0,169,157,.3);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.form-success span { font-size: 32px; display: block; margin-bottom: 8px; }
.form-success strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-light); margin: 0; }

/* Quick links */
.quick-links-section { background: var(--off-white); }

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ql-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  text-decoration: none;
}
.ql-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}
.ql-card span { font-size: 32px; display: block; margin-bottom: 12px; }
.ql-card h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.ql-card p { font-size: 12px; color: var(--teal); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .courses-row { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .story-grid { grid-template-columns: 1fr; }
  .mvv-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; text-align: center; }
  .founder-avatar-wrap { margin: 0 auto; }
  .model-flow { flex-direction: column; }
  .model-arrow { transform: rotate(90deg); }
  .ms-highlight { transform: scale(1); }

  .services-detail-grid { grid-template-columns: 1fr; }
  .why-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .training-approach-grid { grid-template-columns: repeat(2, 1fr); }
  .curriculum-grid { grid-template-columns: 1fr; }
  .cfc-footer { flex-direction: column; align-items: flex-start; }
  .faq-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--grey-100);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    gap: 4px;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  .mission-grid { grid-template-columns: 1fr; }
  .courses-row { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto 40px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 24px; }

  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }

  .services-section-header { flex-direction: column; gap: 16px; }
  .cfc-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cfc-details { flex-wrap: wrap; gap: 10px; }

  .why-svc-grid { grid-template-columns: 1fr; }
  .training-approach-grid { grid-template-columns: 1fr 1fr; }
  .quick-links-grid { grid-template-columns: 1fr 1fr; }

  .founder-tags { justify-content: center; }
  .founder-text { text-align: center; }
  .founder-text .section-tag { display: block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .training-approach-grid { grid-template-columns: 1fr; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .why-ctas { flex-direction: column; }
}

/* ============================================================
   FONT AWESOME ICON ADJUSTMENTS
   ============================================================ */
.mi-icon i,
.pillar-icon i,
.mvv-icon i,
.ms-icon i,
.svc-detail-icon i,
.why-svc-item > i,
.course-icon i,
.cd-icon i,
.ql-card > i,
.fc-icon i,
.orbit-anchor i,
.callout-anchor i,
.impact-verse span i {
  display: inline-block;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pillar-list li i {
  color: var(--teal);
  font-size: 13px;
  flex-shrink: 0;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.values-list li i {
  color: var(--teal);
  width: 18px;
  flex-shrink: 0;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--grey-200);
  font-size: 15px;
  transition: var(--transition);
}
.footer-socials a:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-contact li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a i {
  color: var(--teal);
  font-size: 11px;
}

/* ============================================================
   FOUNDER / CEO AVATAR — Photo-ready
   ============================================================ */
.founder-initials-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 16px;
}

.founder-avatar-icon {
  font-size: 72px;
  color: var(--teal);
  opacity: 0.85;
}

.founder-avatar-update-hint {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--grey-400);
  line-height: 1.5;
  border: 1px dashed var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: var(--grey-100);
}
.founder-avatar-update-hint code {
  font-size: 11px;
  background: var(--grey-200);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--navy);
}

/* When a real photo is used */
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.founder-badge-float {
  display: flex;
  align-items: center;
  gap: 6px;
}
.founder-badge-float i {
  font-size: 13px;
}

.founder-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.founder-tags span i {
  font-size: 12px;
}

/* Model flow arrow icon */
.model-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--teal);
}

/* Testi quote icon */
.testi-quote {
  font-size: 32px;
  color: var(--teal);
  margin-bottom: 12px;
  line-height: 1;
}

/* Course level icon */
.course-level i {
  margin-right: 4px;
}

/* Contact detail icons */
.cd-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--teal);
  width: 44px;
  height: 44px;
  background: rgba(0,169,157,0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SSH (services section header) icon */
.ssh-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--teal);
  width: 64px;
  height: 64px;
  background: rgba(0,169,157,0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

/* Svc detail icon */
.svc-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--teal);
  width: 52px;
  height: 52px;
  background: rgba(0,169,157,0.1);
  border-radius: 50%;
  margin-bottom: 16px;
}

/* Why svc item icon */
.why-svc-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.why-svc-item > .fa-solid,
.why-svc-item > span > i {
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 12px;
}

/* Training approach icon */
.ta-item > .fa-solid,
.ta-item > i {
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 12px;
}

/* Quick links icon */
.ql-card > .fa-solid,
.ql-card > i {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 14px;
}

/* CFC icon */
.cfc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--teal);
  width: 64px;
  height: 64px;
  background: rgba(0,169,157,0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}


/* ============================================================
   CONTACT PAGE — Social buttons & form icon tweaks
   ============================================================ */
.contact-socials {
  margin: 28px 0;
}
.contact-socials p {
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 14px;
}
.contact-socials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--grey-200);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
}
.contact-social-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
}
.contact-social-btn i {
  font-size: 15px;
}

/* Form label icons */
.form-group label i {
  color: var(--teal);
  margin-right: 4px;
  font-size: 13px;
}

/* Spinner on submit button */
#btnLoading i {
  margin-right: 6px;
}

/* Form success icon */
.form-success i.fa-circle-check {
  font-size: 40px;
  color: var(--teal);
  display: block;
  margin-bottom: 12px;
}

/* CFC details spacing */
.cfc-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cfc-details span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-light);
}
.cfc-details span i {
  color: var(--teal);
}

/* Curriculum check icons */
.curr-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.curr-item i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Who-for label icon */
.who-for i {
  color: var(--teal);
  margin-right: 4px;
}

/* FAQ question icon */
.faq-item h4 {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-item h4 i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Services svc-detail-card list */
.svc-detail-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.svc-detail-card ul li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 12px;
}

/* Contact verse box anchor icon */
.contact-verse-box span i {
  font-size: 20px;
}

/* ============================================================
   LOGO IMAGE — replaces FA anchor icon
   ============================================================ */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

/* White logo: shown on dark navbar & dark-theme */
.logo-img-white { display: block; filter: brightness(0) invert(1); }
/* Dark logo: shown by default on light navbar */
.logo-img-dark  { display: none; filter: none; }

/* Footer always uses the black logo for legibility on dark bg */
.logo-img-footer {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1); /* keep white on dark footer */
}

/* Orbit logo inside hero visual */
.orbit-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,169,157,0.4));
}

/* Impact verse logo */
.impact-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* ============================================================
   NAV RIGHT — wraps toggle + hamburger
   ============================================================ */
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ============================================================
   DARK / LIGHT THEME TOGGLE
   ============================================================ */

/* LIGHT MODE — dark button so it's visible on the white navbar */
.theme-toggle {
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ============================================================
   LIGHT THEME (default)
   ============================================================ */
:root,
[data-theme="light"] {
  --body-bg: #f7f8fa;
  --surface: #ffffff;
  --text-main: #1a2233;
  --text-light: #556080;
  --border-color: #e2e8f0;
}

/* ============================================================
   DARK THEME
   ============================================================ */
[data-theme="dark"] {
  --body-bg: #0d1117;
  --surface: #161b22;
  --text-main: #e6edf3;
  --text-light: #8b949e;
  --border-color: #30363d;
}

[data-theme="dark"] body {
  background-color: var(--body-bg);
  color: var(--text-main);
}

/* ── 3. Dark navbar ── */
[data-theme="dark"] .navbar {
  background: rgba(13, 17, 23, 0.97);
  border-bottom-color: #30363d;
}

/* Dark navbar: logo text & links go white */
[data-theme="dark"] .logo-text          { color: #e6edf3; }
[data-theme="dark"] .nav-link           { color: #8b949e; }
[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active    { color: #ffffff; background: rgba(255,255,255,0.07); }

/* Light theme: hide inverted logo, show normal dark logo */
[data-theme="light"] .logo-img-white { display: none; }
[data-theme="light"] .logo-img-dark  { display: block; filter: none; }

/* Dark theme: hide dark logo, show inverted white logo */
[data-theme="dark"] .logo-img-white { display: block; filter: brightness(0) invert(1); }
[data-theme="dark"] .logo-img-dark  { display: none; }

/* All other logo instances (orbit, impact, footer, callout, ty, error) — invert to white on dark */
[data-theme="dark"] .orbit-logo,
[data-theme="dark"] .impact-logo,
[data-theme="dark"] .logo-img-footer,
[data-theme="dark"] .callout-logo,
[data-theme="dark"] .contact-verse-logo,
[data-theme="dark"] .ty-brand-logo,
[data-theme="dark"] .error-brand-logo { filter: brightness(0) invert(1); }

/* DARK MODE — white/bright toggle button so it pops on dark navbar */
[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
}
[data-theme="dark"] .theme-toggle:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ── Dark theme: sections ── */
[data-theme="dark"] .section,
[data-theme="dark"] .why-us,
[data-theme="dark"] .training-tease,
[data-theme="dark"] .testimonials,
[data-theme="dark"] .global-reach-section {
  background-color: var(--body-bg);
}
[data-theme="dark"] .mission-strip,
[data-theme="dark"] .mvv-section,
[data-theme="dark"] .tech-services-section,
[data-theme="dark"] .why-services,
[data-theme="dark"] .faq-section,
[data-theme="dark"] .training-courses-section {
  background-color: var(--surface);
}

/* ── Dark theme: cards & boxes ── */
[data-theme="dark"] .pillar-card,
[data-theme="dark"] .course-card,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .mvv-card,
[data-theme="dark"] .svc-detail-card,
[data-theme="dark"] .course-full-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .impact-box,
[data-theme="dark"] .callout-card,
[data-theme="dark"] .gr-globe-card,
[data-theme="dark"] .why-svc-item {
  background: var(--surface);
  border-color: var(--border-color);
  color: var(--text-main);
}

/* ── Dark theme: headings inside cards ── */
[data-theme="dark"] .pillar-card h3,
[data-theme="dark"] .pillar-card h4,
[data-theme="dark"] .course-card h4,
[data-theme="dark"] .mvv-card h3,
[data-theme="dark"] .svc-detail-card h4,
[data-theme="dark"] .why-svc-item h4,
[data-theme="dark"] .testi-card strong,
[data-theme="dark"] .faq-item h4,
[data-theme="dark"] .course-full-card h3 {
  color: #e6edf3;
}

/* ── Dark theme: body text inside cards ── */
[data-theme="dark"] .pillar-card p,
[data-theme="dark"] .course-card p,
[data-theme="dark"] .testi-card p,
[data-theme="dark"] .mvv-card p,
[data-theme="dark"] .svc-detail-card p,
[data-theme="dark"] .faq-item p,
[data-theme="dark"] .impact-desc,
[data-theme="dark"] .section-sub,
[data-theme="dark"] .hero-sub,
[data-theme="dark"] .why-text p,
[data-theme="dark"] .gr-text p,
[data-theme="dark"] .cfc-body p,
[data-theme="dark"] .who-for {
  color: var(--text-light);
}

/* ── Dark theme: section titles & page titles ── */
[data-theme="dark"] .section-title,
[data-theme="dark"] .hero-title,
[data-theme="dark"] .page-hero-title {
  color: var(--text-main);
}

/* ── 2. Dark theme: pillar icons, list icons, card icons → white/teal ── */
[data-theme="dark"] .pillar-icon i,
[data-theme="dark"] .mi-icon i,
[data-theme="dark"] .mvv-icon i,
[data-theme="dark"] .ms-icon i,
[data-theme="dark"] .svc-detail-icon i,
[data-theme="dark"] .why-svc-item > i,
[data-theme="dark"] .course-icon i,
[data-theme="dark"] .cfc-icon i,
[data-theme="dark"] .ta-item > i {
  color: #00CFC3;
}

[data-theme="dark"] .pillar-list li i,
[data-theme="dark"] .values-list li i,
[data-theme="dark"] .svc-detail-card ul li i,
[data-theme="dark"] .curr-item i,
[data-theme="dark"] .cfc-details span i,
[data-theme="dark"] .footer-col ul li a i,
[data-theme="dark"] .footer-contact li i,
[data-theme="dark"] .svc-card-meta i,
[data-theme="dark"] .section-footer-note i,
[data-theme="dark"] .gr-point i {
  color: #00CFC3;
}

/* ── Dark theme: mission strip text ── */
[data-theme="dark"] .mission-item h4,
[data-theme="dark"] .mission-item p    { color: var(--text-main); }
[data-theme="dark"] .mission-strip     { background: var(--surface); }

/* ── Dark theme: section tags ── */
[data-theme="dark"] .section-tag { color: var(--teal); }

/* ── Dark theme: impact box numbers ── */
[data-theme="dark"] .impact-num { color: var(--teal); }

/* ── Dark theme: pillar link arrows ── */
[data-theme="dark"] .pillar-link       { color: var(--teal); }
[data-theme="dark"] .pillar-link:hover { color: #00CFC3; }

/* ── Dark theme: course tags ── */
[data-theme="dark"] .course-level      { color: var(--text-light); }
[data-theme="dark"] .course-level i    { color: #00CFC3; }

/* ── Dark theme: testimonial authors ── */
[data-theme="dark"] .testi-author span { color: var(--text-light); }
[data-theme="dark"] .testi-quote i     { color: #00CFC3; }

/* ── Dark theme: why-us section text ── */
[data-theme="dark"] .why-text h2       { color: var(--text-main); }
[data-theme="dark"] .impact-verse em   { color: var(--text-light); }

/* ── Dark theme: FAQ ── */
[data-theme="dark"] .faq-item h4       { color: var(--text-main); }
[data-theme="dark"] .faq-item h4 i     { color: #00CFC3; }

/* ── Dark theme: forms & inputs ── */
[data-theme="dark"] .contact-form-wrap,
[data-theme="dark"] .contact-info      { color: var(--text-main); }
[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--surface);
  color: var(--text-main);
  border-color: var(--border-color);
}
[data-theme="dark"] label              { color: var(--text-main); }
[data-theme="dark"] .form-group label i { color: #00CFC3; }
[data-theme="dark"] .cd-item strong    { color: var(--text-main); }
[data-theme="dark"] .cd-item p         { color: var(--text-light); }
[data-theme="dark"] .cd-icon i         { color: #00CFC3; }

/* ── Dark theme: footer ── */
[data-theme="dark"] .footer            { background: #0a0f16; }
[data-theme="dark"] .footer-bottom     { border-color: #1e2530; }
[data-theme="dark"] .footer p,
[data-theme="dark"] .footer-col ul li a,
[data-theme="dark"] .footer-contact li { color: rgba(255,255,255,0.55); }
[data-theme="dark"] .footer-col h5     { color: #e6edf3; }
[data-theme="dark"] .footer-socials a  { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

/* ============================================================
   GLOBAL REACH SECTION
   ============================================================ */
.global-reach-section {
  background: linear-gradient(135deg, #0D1F3C 0%, #1E3A6E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.global-reach-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: #00A99D;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  top: -100px; right: -100px;
  pointer-events: none;
}
.global-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .global-reach-grid { grid-template-columns: 1fr; gap: 40px; }
}
.gr-text .section-tag { color: var(--teal); }
.gr-text .section-title { color: #fff; }
.gr-text p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.gr-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.gr-point {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.gr-point i {
  width: 36px;
  height: 36px;
  background: rgba(0,169,157,0.15);
  border: 1px solid rgba(0,169,157,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #00CFC3;
  flex-shrink: 0;
}
.gr-globe-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}
.gr-globe-icon {
  font-size: 80px;
  color: var(--teal);
  margin-bottom: 28px;
  line-height: 1;
}
.gr-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gr-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 10px 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 500;
}
.gr-badge i { color: var(--teal); font-size: 14px; }
.gr-badge-teal {
  background: rgba(0,169,157,0.15);
  border-color: rgba(0,169,157,0.3);
  color: #fff;
}
.gr-badge-gold {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.3);
  color: rgba(255,255,255,0.9);
}
.gr-badge-gold i { color: #F5A623; }

/* Dark-theme override for global reach (it's already navy so stays as-is) */
[data-theme="dark"] .global-reach-section { background: linear-gradient(135deg, #0a1628 0%, #12243d 100%); }

/* ============================================================
   SERVICE CARD META ROW (delivery mode badges under each card)
   ============================================================ */
.svc-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
  padding-top: 14px;
  border-top: 1px solid var(--grey-200);
  font-size: 13px;
  color: var(--text-light);
}
.svc-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-card-meta i {
  color: var(--teal);
  font-size: 12px;
}

/* ============================================================
   SECTION FOOTER NOTE (info bar at bottom of pillar sections)
   ============================================================ */
.section-footer-note {
  margin-top: 36px;
  padding: 16px 22px;
  background: rgba(0,169,157,0.07);
  border: 1px solid rgba(0,169,157,0.2);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.section-footer-note i {
  color: var(--teal);
  flex-shrink: 0;
}
.section-footer-note a {
  color: var(--teal);
  font-weight: 600;
  margin-left: 4px;
}
.section-footer-note a:hover { color: var(--teal-light); text-decoration: underline; }

/* ============================================================
   CALLOUT CARD LOGO (replaces FA anchor in story callout)
   ============================================================ */
.callout-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  display: block;
}

/* ============================================================
   CONTACT PAGE — verse box logo & privacy note
   ============================================================ */
.contact-verse-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.form-privacy-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  justify-content: center;
}
.form-privacy-note i {
  color: var(--teal);
  flex-shrink: 0;
}

/* ============================================================
   DARK MODE — COMPREHENSIVE COLOUR FIXES
   ============================================================ */

/* ── Hero stats (5+, 3, Global) ── */
[data-theme="dark"] .stat-num        { color: #e6edf3; }
[data-theme="dark"] .stat-label      { color: #8b949e; }
[data-theme="dark"] .stat-divider    { background: rgba(255,255,255,0.15); }
[data-theme="dark"] .hero-badge      { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
[data-theme="dark"] .badge-dot       { background: #00CFC3; }

/* ── Hero buttons (outline) ── */
[data-theme="dark"] .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: #e6edf3;
}
[data-theme="dark"] .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* ── Float cards in hero visual ── */
[data-theme="dark"] .float-card {
  background: var(--surface);
  border-color: var(--border-color);
  color: #e6edf3;
}
[data-theme="dark"] .fc-icon i  { color: #00CFC3; }
[data-theme="dark"] .fc-text    { color: #e6edf3; }

/* ── Hero verse & title lines ── */
[data-theme="dark"] .hero-verse      { color: #F5A623; }
[data-theme="dark"] .title-line      { color: #e6edf3; }
[data-theme="dark"] .accent-line     { color: #00CFC3; }

/* ── Hero stats divider ── */
[data-theme="dark"] .hero-stats      { border-color: rgba(255,255,255,0.1); }

/* ── Services overview "Our Services" button ── */
[data-theme="dark"] .btn-ghost {
  border-color: rgba(255,255,255,0.3);
  color: #e6edf3;
}
[data-theme="dark"] .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* ── TRAINING PAGE — approach cards (Practical-First etc) ── */
[data-theme="dark"] .ta-item {
  background: var(--surface);
  border-color: var(--border-color);
}
[data-theme="dark"] .ta-item h4      { color: #e6edf3; }
[data-theme="dark"] .ta-item p       { color: #8b949e; }
[data-theme="dark"] .ta-item > i     { color: #00CFC3; }

/* ── TRAINING PAGE — course full cards (All Programmes) ── */
[data-theme="dark"] .course-full-card {
  background: var(--surface);
  border-color: var(--border-color);
}
[data-theme="dark"] .cfc-header      { background: rgba(255,255,255,0.03); border-color: var(--border-color); }
[data-theme="dark"] .cfc-meta h3     { color: #e6edf3; }
[data-theme="dark"] .cfc-body        { background: var(--surface); }
[data-theme="dark"] .cfc-body p      { color: #8b949e; }
[data-theme="dark"] .cfc-curriculum  { background: rgba(255,255,255,0.03); border-color: var(--border-color); }
[data-theme="dark"] .cfc-curriculum h5 { color: #e6edf3; }
[data-theme="dark"] .curr-item       { color: #8b949e; }
[data-theme="dark"] .cfc-footer      { border-color: var(--border-color); }
[data-theme="dark"] .who-for         { color: #8b949e; }
[data-theme="dark"] .course-tag.free  { background: rgba(0,169,157,0.2); color: #00CFC3; border-color: rgba(0,169,157,0.3); }
[data-theme="dark"] .course-tag.paid  { background: rgba(245,166,35,0.15); color: #F5A623; border-color: rgba(245,166,35,0.25); }
[data-theme="dark"] .cfc-details span { color: #8b949e; }

/* ── Training approach grid ── */
[data-theme="dark"] .training-approach-grid { background: var(--body-bg); }

/* ── CONTACT & ENROL FORM — dark styled inputs ── */
[data-theme="dark"] .contact-form-wrap {
  background: var(--surface);
  border-color: var(--border-color);
}
[data-theme="dark"] .contact-form-wrap h3  { color: #e6edf3; }
[data-theme="dark"] .form-sub              { color: #8b949e; }

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: #0d1117;
  color: #e6edf3;
  border-color: #30363d;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder { color: #556070; }
[data-theme="dark"] input:focus,
[data-theme="dark"] select:focus,
[data-theme="dark"] textarea:focus {
  border-color: #00A99D;
  background: #0a0f16;
  outline: none;
}
[data-theme="dark"] select option        { background: #161b22; color: #e6edf3; }

[data-theme="dark"] .form-group label    { color: #c9d1d9; }
[data-theme="dark"] .form-group label i  { color: #00CFC3; }
[data-theme="dark"] .form-check label    { color: #8b949e; }
[data-theme="dark"] .req                 { color: #ff6b6b; }
[data-theme="dark"] .form-privacy-note   { color: #556070; }

/* Contact info side */
[data-theme="dark"] .contact-section     { background: var(--body-bg); }
[data-theme="dark"] .contact-info h2     { color: #e6edf3; }
[data-theme="dark"] .contact-info > p    { color: #8b949e; }
[data-theme="dark"] .contact-social-btn {
  background: var(--surface);
  border-color: var(--border-color);
  color: #c9d1d9;
}
[data-theme="dark"] .contact-social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
[data-theme="dark"] .contact-verse-box {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.1);
}
[data-theme="dark"] .contact-verse-box blockquote { color: #F5A623; }
[data-theme="dark"] .contact-verse-box p           { color: #8b949e; }

/* ── Quick links cards ── */
[data-theme="dark"] .ql-card {
  background: var(--surface);
  border-color: var(--border-color);
  color: #c9d1d9;
}
[data-theme="dark"] .ql-card h4         { color: #e6edf3; }
[data-theme="dark"] .ql-card p          { color: #8b949e; }
[data-theme="dark"] .ql-card i          { color: #00CFC3; }
[data-theme="dark"] .ql-card:hover      { border-color: var(--teal); }

/* ── Page hero (inner pages) ── */
[data-theme="dark"] .page-hero          { background: linear-gradient(160deg, #0a0f16 0%, #0d1826 100%); }
[data-theme="dark"] .page-hero p        { color: rgba(255,255,255,0.65); }

/* ── Section footer note ── */
[data-theme="dark"] .section-footer-note {
  background: rgba(0,169,157,0.08);
  border-color: rgba(0,169,157,0.2);
  color: #8b949e;
}
[data-theme="dark"] .section-footer-note a { color: #00CFC3; }

/* ── Why services items ── */
[data-theme="dark"] .why-svc-item h4    { color: #e6edf3; }
[data-theme="dark"] .why-svc-item p     { color: #8b949e; }
[data-theme="dark"] .why-svc-item i     { color: #00CFC3; }

/* ── SVC card meta ── */
[data-theme="dark"] .svc-card-meta      { border-color: var(--border-color); color: #8b949e; }

/* ── Callout card ── */
[data-theme="dark"] .callout-card blockquote { color: #e6edf3; }
[data-theme="dark"] .callout-card cite        { color: #8b949e; }

/* ── Impact box ── */
[data-theme="dark"] .impact-box         { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .impact-verse em    { color: #8b949e; }

/* ── Mission strip icons ── */
[data-theme="dark"] .mi-icon i          { color: #00CFC3; }

/* ── Model flow (about page) ── */
[data-theme="dark"] .model-step         { background: var(--surface); border-color: var(--border-color); }
[data-theme="dark"] .model-step h4      { color: #e6edf3; }
[data-theme="dark"] .model-step p       { color: #8b949e; }
[data-theme="dark"] .ms-num             { color: var(--teal); }
[data-theme="dark"] .ms-highlight       { background: rgba(0,169,157,0.12); border-color: rgba(0,169,157,0.3); }
[data-theme="dark"] .model-arrow i      { color: #00CFC3; }

/* ── Story section text ── */
[data-theme="dark"] .story-text p       { color: #8b949e; }
[data-theme="dark"] .story-text h2      { color: #e6edf3; }

/* ── Founder section ── */
[data-theme="dark"] .founder-text p     { color: #8b949e; }
[data-theme="dark"] .founder-tags span  { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: #c9d1d9; }
[data-theme="dark"] .founder-tags span i { color: #00CFC3; }
[data-theme="dark"] .founder-badge-float { background: var(--gold); color: var(--navy); }



/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.3s, bottom 0.3s;
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.6);
  color: #ffffff;
}
.whatsapp-float.wa-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0); }
}

/* Tooltip on hover (desktop only) */
.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 70px;
  white-space: nowrap;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 99px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float .wa-tooltip { display: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 25px; bottom: 18px; right: 18px; }
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13,31,60,0.30);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--teal);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .back-to-top { width: 44px; height: 44px; font-size: 16px; bottom: 20px; right: 20px; }
}

[data-theme="dark"] .back-to-top {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #e6edf3;
}
[data-theme="dark"] .back-to-top:hover {
  background: var(--teal);
  border-color: var(--teal);
}

/* ============================================================
   STATS COUNTER SECTION (homepage)
   ============================================================ */
.stats-counter-section {
  background: linear-gradient(135deg, #0D1F3C 0%, #1E3A6E 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-counter-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: #00A99D;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.1;
  top: -100px; left: -100px;
  pointer-events: none;
}
.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .stats-counter-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
.stats-counter-item { color: #fff; }
.stats-counter-icon {
  font-size: 28px;
  color: #00CFC3;
  margin-bottom: 12px;
}
.stats-counter-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  color: #fff;
}
.stats-counter-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ============================================================
   FIELD HIGHLIGHT (when pre-selected from Services page)
   ============================================================ */
.field-highlight {
  animation: field-pulse 2.2s ease;
  border-radius: var(--radius-md);
}
@keyframes field-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,169,157,0.4); background: rgba(0,169,157,0.08); }
  70%  { box-shadow: 0 0 0 12px rgba(0,169,157,0); background: rgba(0,169,157,0.08); }
  100% { box-shadow: 0 0 0 0 rgba(0,169,157,0); background: transparent; }
}
.field-highlight select {
  border-color: var(--teal) !important;
}

/* ============================================================
   PRE-SELECTED NOTICE BADGE (shown above the form when interest passed)
   ============================================================ */
.preselect-notice {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(0,169,157,0.08);
  border: 1px solid rgba(0,169,157,0.25);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--text-light);
}
.preselect-notice.show { display: flex; }
.preselect-notice i { color: var(--teal); font-size: 16px; flex-shrink: 0; }
[data-theme="dark"] .preselect-notice {
  background: rgba(0,169,157,0.1);
  border-color: rgba(0,169,157,0.25);
  color: #8b949e;
}

[data-theme="dark"] .stats-counter-section {
  background: linear-gradient(135deg, #0a1628 0%, #12243d 100%);
}

/* ============================================================
   PATCH v2 — All fixes applied
   ============================================================ */

/* ── 1. Select dropdown: always show chevron arrow ── */
.form-group select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7488' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 42px !important;
}
[data-theme="dark"] .form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300CFC3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  background-size: 16px !important;
  padding-right: 42px !important;
}

/* ── 2. Stats counter — ensure bright white text on light mode too ── */
.stats-counter-section .stats-counter-num,
.stats-counter-section .stat-num {
  color: #ffffff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.stats-counter-section .stats-counter-label {
  color: rgba(255,255,255,0.85) !important;
}
.stats-counter-section .stats-counter-icon {
  color: #00CFC3 !important;
}




/* ── 5. Our Values — darken value words in dark mode, remove underlines ── */
.values-list li {
  text-decoration: none !important;
  list-style: none !important;
}
.values-list li strong {
  text-decoration: none !important;
}
/* Light mode: make value words clearly navy */
.values-list strong {
  color: var(--navy) !important;
  font-weight: 700 !important;
}
/* Dark mode: brighten the value title words to near-white */
[data-theme="dark"] .values-list li {
  color: #c9d1d9 !important;
}
[data-theme="dark"] .values-list strong {
  color: #e6edf3 !important;
  font-weight: 700 !important;
}

/* ── 6. Our Vision text in light mode — improve readability ── */
.mvv-featured p {
  color: #d4f0ec !important;
}
/* Also ensure Our Vision card paragraph is bright enough */
.mvv-card.mvv-featured p {
  color: #d4f0ec !important;
}

/* ── 7. Cycle icon (fa-rotate) in Revenue Reinvested — visible in light mode ── */
.model-step.ms-highlight .ms-icon i {
  color: #ffffff !important;
}
.ms-highlight .ms-icon {
  color: #ffffff !important;
}

/* ── 8. Remove underlines on impact-item / Why Us section ── */
.impact-item {
  text-decoration: none !important;
}
.impact-num {
  text-decoration: none !important;
}
.impact-desc {
  text-decoration: none !important;
}

/* ── 9. Logo name: Hope Anchor Tech (three words) — fixed in HTML ── */


/* ============================================================
   CERTIFICATE PREVIEW SECTION — training.html
   ============================================================ */
.cert-preview-section {
  background: var(--off-white);
}

.cert-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left column — text */
.cert-preview-text .section-tag { display: block; margin-bottom: 12px; }
.cert-preview-text .section-title { margin-bottom: 20px; }
.cert-preview-text p { color: var(--text-light); margin-bottom: 14px; font-size: 15px; line-height: 1.75; }

.cert-feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cert-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.cert-feature-list li i {
  color: var(--teal);
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* Right column — visual frame */
.cert-preview-visual {
  position: relative;
}
.cert-preview-frame {
  position: relative;
  padding: 24px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(13,31,60,0.28), 0 0 0 1px rgba(245,166,35,0.2);
}
.cert-preview-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 2;
}
.cert-preview-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ── The certificate card itself ── */
.cert-card {
  background: linear-gradient(180deg, #f7f8fb 0%, #eef1f8 100%);
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-body);
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Gold corner accents */
.cert-card::before,
.cert-card::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--gold);
  z-index: 1;
}
.cert-card::before { top: 36px; left: 36px; border-right: none; border-bottom: none; }
.cert-card::after  { top: 36px; right: 36px; border-left: none; border-bottom: none; }

/* Navy top band */
.cert-card-topband {
  background: var(--navy);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent) 1;
}
.cert-card-diamonds {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ccd {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.7;
}
.ccd.ccd-lg {
  width: 10px; height: 10px;
  opacity: 1;
}

.cert-card-body {
  padding: 20px 28px 16px;
  text-align: center;
}

/* CERTIFICATE OF COMPLETION header row */
.cert-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}
.cert-card-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: var(--navy);
  text-transform: uppercase;
}
.cert-card-accent { color: var(--teal); }
.cert-card-icon {
  font-size: 18px;
  color: var(--navy);
}

.cert-card-org {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin-bottom: 6px;
}
.cert-card-certify {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 600;
  margin-bottom: 4px;
}
.cert-card-name {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 5px;
}
.cert-card-completed {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey-400);
  font-weight: 600;
  margin-bottom: 6px;
}
.cert-card-course-panel {
  background: var(--navy);
  padding: 6px 16px;
  margin: 0 -4px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  border-top: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
}
.cert-card-diamond { color: var(--gold); font-size: 8px; }
.cert-card-meta { font-size: 9px; color: #4a5468; margin-bottom: 2px; }
.cert-card-meta strong { color: var(--navy); }
.cert-card-hours {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

/* Signatures */
.cert-card-sigs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 4px;
}
.cert-card-sig { text-align: center; flex: 1; }
.cert-card-signame {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--navy);
  display: block;
  border-bottom: 1px solid #c8cdd8;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.cert-card-siglabel { font-size: 7px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); }
.cert-card-sigsub { font-size: 7px; color: var(--grey-400); }

.cert-card-seal {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: radial-gradient(circle, rgba(245,166,35,0.06), transparent);
}
.cert-card-seal::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(245,166,35,0.5);
  border-radius: 50%;
}
.cert-card-seal i { font-size: 14px; color: var(--navy); margin-bottom: 1px; }
.cert-card-seal-text { font-size: 5.5px; font-weight: 800; letter-spacing: 0.5px; text-align: center; text-transform: uppercase; color: var(--navy); line-height: 1.4; }

/* Navy footer band */
.cert-card-footer {
  background: var(--navy);
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--teal), var(--gold), transparent) 1;
}
.cert-card-footer em {
  font-family: var(--font-display);
  font-size: 8px;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.5px;
}
.cert-card-footer span {
  font-size: 7px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Dark mode adjustments */
[data-theme="dark"] .cert-preview-section { background: var(--bg); }
[data-theme="dark"] .cert-preview-text p { color: var(--text-light); }
[data-theme="dark"] .cert-feature-list li { color: var(--text-light); }
[data-theme="dark"] .cert-card { background: linear-gradient(180deg, #1a2744 0%, #131d35 100%); }
[data-theme="dark"] .cert-card-title { color: #e6edf3; }
[data-theme="dark"] .cert-card-org { color: #8b949e; }
[data-theme="dark"] .cert-card-meta { color: #8b949e; }
[data-theme="dark"] .cert-card-signame { color: #e6edf3; }
[data-theme="dark"] .cert-card-siglabel { color: #e6edf3; }
[data-theme="dark"] .cert-card-seal i { color: var(--gold); }
[data-theme="dark"] .cert-card-seal-text { color: var(--gold); }

/* Responsive */
@media (max-width: 900px) {
  .cert-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cert-preview-visual { order: -1; }
}
@media (max-width: 480px) {
  .cert-card-sigs { gap: 10px; }
  .cert-card-name { font-size: 16px; }
}

/* ============================================================
   CERTIFICATE ACTUAL IMAGE — training.html
   ============================================================ */
.cert-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13,31,60,0.28), 0 4px 16px rgba(13,31,60,0.12);
}
.cert-actual-img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  transition: transform 0.4s ease;
}
.cert-img-wrap:hover .cert-actual-img {
  transform: scale(1.02);
}
.cert-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.92) 0%, transparent 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 28px 20px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.3px;
}
.cert-img-caption i { color: var(--teal); font-size: 15px; }


/* ── Countdown banner ── */
.countdown-banner {
  background: linear-gradient(90deg, #0D1F3C 0%, #1a3060 50%, #0D1F3C 100%);
  padding: 13px 0;
  position: sticky;
  top: 72px;
  z-index: 90;
  border-bottom: 2px solid rgba(245,166,35,0.4);
}
.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.countdown-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown-label .cd-course { color: #00CFC3; font-weight: 700; }
.countdown-timer { display: flex; align-items: center; gap: 5px; }
.countdown-unit {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 6px;
  padding: 5px 11px;
  text-align: center;
  min-width: 50px;
}
.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: #F5A623;
  line-height: 1;
}
.countdown-unit-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.countdown-sep { color: rgba(255,255,255,0.25); font-size: 20px; font-weight: 300; }
.countdown-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 18px;
  background: #F5A623;
  color: #0D1F3C;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.countdown-cta:hover { background: #ffd06b; transform: translateY(-1px); }
@media (max-width: 640px) {
  .countdown-label { font-size: 11px; }
  .countdown-num { font-size: 16px; }
  .countdown-unit { min-width: 40px; padding: 4px 8px; }
  .countdown-cta { padding: 6px 14px; font-size: 12px; }
}


/* ── Payment methods box ── */
.payment-methods-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 28px;
}
.payment-methods-box h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment-methods-box h3 i { color: var(--teal); }
.pm-intro { font-size: 14px; color: var(--text-light); margin-bottom: 18px; }
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.pm-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--off-white);
}
.pm-icon { font-size: 26px; width: 36px; text-align: center; flex-shrink: 0; }
.pm-info { display: flex; flex-direction: column; gap: 2px; }
.pm-info strong { font-size: 14px; color: var(--navy); font-weight: 700; }
.pm-info span { font-size: 12px; color: var(--text-light); }
.pm-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(0,169,157,0.12);
  color: var(--teal);
  padding: 2px 8px;
  border-radius: 10px;
  width: fit-content;
  margin-top: 2px;
}
.pm-note {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: rgba(0,169,157,0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal);
}
.pm-note i { color: var(--teal); margin-top: 1px; flex-shrink: 0; }
@media (max-width: 540px) { .pm-grid { grid-template-columns: 1fr; } }
[data-theme="dark"] .payment-methods-box { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .payment-methods-box h3 { color: #e6edf3; }
[data-theme="dark"] .pm-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .pm-info strong { color: #e6edf3; }


/* ── Newsletter section ── */
.newsletter-section { padding: 0 0 24px; }
.newsletter-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.nl-icon { font-size: 42px; color: var(--teal-light); flex-shrink: 0; }
.nl-text h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 6px; }
.nl-text p  { font-size: 14px; color: rgba(255,255,255,0.68); line-height: 1.6; }
.nl-form { flex-shrink: 0; }
.nl-inputs { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-inputs input {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  min-width: 0;
  flex: 1;
}
.nl-inputs input::placeholder { color: rgba(255,255,255,0.45); }
.nl-inputs input:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,0.15); }
@media (max-width: 900px) {
  .newsletter-box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .nl-icon { margin: 0 auto; }
  .nl-inputs { justify-content: center; }
  .nl-inputs input { width: 100%; }
}


/* ── Breadcrumbs ── */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid var(--grey-100);
  padding: 10px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--grey-400);
}
.breadcrumb-inner a { color: var(--teal); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .bc-sep { color: var(--grey-400); font-size: 11px; }
.breadcrumb-inner .bc-current { color: var(--navy); font-weight: 600; }
[data-theme="dark"] .breadcrumb { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .breadcrumb-inner .bc-current { color: #e6edf3; }

/* ================================================================
   ALL NEW FEATURES CSS — v3 complete patch
   ================================================================ */

/* ── Page hero (FAQ, Blog, inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft, #1E3A6E) 100%);
  padding: 120px 0 56px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero .section-tag { display: inline-block; margin-bottom: 16px; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.15;
}
.page-hero-title em { color: var(--teal-light, #00CFC3); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; }
.ph-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.ph-s1 { width: 400px; height: 400px; top: -160px; right: -100px; }
.ph-s2 { width: 300px; height: 300px; bottom: -120px; left: -80px; }

/* ── Testimonials — updated styles ── */
.testi-stars { color: #F5A623; font-size: 13px; margin-bottom: 10px; letter-spacing: 2px; }
.testi-collect-note {
  display: flex; align-items: center; gap: 7px;
  margin-top: 14px;
  padding: 8px 12px;
  background: rgba(0,169,157,0.07);
  border-radius: 6px;
  font-size: 12px;
  color: var(--teal);
  border: 1px dashed rgba(0,169,157,0.3);
}
.testi-avatar-pending { background: rgba(107,116,136,0.3) !important; }
.testi-share-cta {
  margin-top: 40px;
  text-align: center;
}
.testi-share-cta p { color: var(--text-light); font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.testi-share-cta p i { color: var(--teal); }
.testi-share-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.testi-share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 24px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.testi-share-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.wa-share { background: #25D366; color: white; }
.fb-share { background: #1877F2; color: white; }

/* ── Newsletter on homepage ── */
.newsletter-section { padding: 0 0 32px; }
.newsletter-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  border-radius: var(--radius-xl, 40px);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.nl-icon { font-size: 44px; color: var(--teal-light, #00CFC3); flex-shrink: 0; }
.nl-text h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 6px; }
.nl-text p  { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }
.nl-inputs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.nl-inputs input {
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md, 16px);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  min-width: 0; flex: 1;
}
.nl-inputs input::placeholder { color: rgba(255,255,255,0.42); }
.nl-inputs input:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,0.15); }
@media (max-width: 900px) {
  .newsletter-box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .nl-icon { margin: 0 auto; }
  .nl-inputs { justify-content: center; }
  .nl-inputs input { width: 100%; min-width: 100%; }
}

/* Newsletter on blog page */
.nl-blog-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  border-radius: var(--radius-xl, 40px);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.nl-blog-icon { font-size: 40px; color: var(--teal-light, #00CFC3); flex-shrink: 0; }
.nl-blog-text { flex: 1; min-width: 200px; }
.nl-blog-text h3 { font-family: var(--font-display); font-size: 20px; color: #fff; margin-bottom: 6px; }
.nl-blog-text p { font-size: 14px; color: rgba(255,255,255,0.65); }
.nl-blog-form { width: 100%; }

/* ── FAQ page ── */
.faq-page-container { max-width: 840px; }
.faq-group { margin-bottom: 44px; }
.faq-group-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 2px solid var(--grey-200, #D6DDE8);
}
.faq-group-header h2 { font-size: 21px; font-weight: 700; color: var(--navy); font-family: var(--font-display); }
.faq-group-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.faq-list-stack { display: flex; flex-direction: column; gap: 8px; }
.faq-acc-item {
  border: 1px solid var(--grey-200, #D6DDE8);
  border-radius: var(--radius-md, 16px);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s;
}
.faq-acc-item:hover { box-shadow: var(--shadow-sm); }
.faq-acc-q {
  width: 100%; background: none; border: none;
  padding: 17px 20px; font-family: var(--font-body);
  font-size: 15px; font-weight: 600; color: var(--navy);
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background 0.2s;
}
.faq-acc-q:hover { background: var(--off-white, #F7F9FC); }
.faq-acc-q[aria-expanded="true"] { background: var(--off-white, #F7F9FC); color: var(--teal); }
.faq-chev { transition: transform 0.3s; font-size: 13px; color: var(--teal); flex-shrink: 0; }
.faq-acc-q[aria-expanded="true"] .faq-chev { transform: rotate(180deg); }
.faq-acc-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-acc-a.faq-open { max-height: 800px; }
.faq-acc-body { padding: 4px 20px 20px; }
.faq-acc-body p { color: var(--text-light, #536280); line-height: 1.72; margin-bottom: 10px; font-size: 15px; }
.faq-wa-link {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 10px; padding: 8px 18px;
  background: #25D366; color: white;
  border-radius: 20px; font-size: 13px; font-weight: 700;
  text-decoration: none;
}
.faq-wa-link:hover { background: #1daa54; }
.faq-cert-img { margin-top: 14px; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }
.faq-cert-img img { width: 100%; display: block; }
.faq-still-q {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  border-radius: var(--radius-xl, 40px);
  padding: 44px 36px;
  text-align: center;
  margin-top: 48px;
}
.faq-still-icon { font-size: 38px; color: var(--teal-light, #00CFC3); margin-bottom: 14px; }
.faq-still-q h3 { font-family: var(--font-display); font-size: 26px; color: white; margin-bottom: 10px; }
.faq-still-q p { color: rgba(255,255,255,0.72); font-size: 15px; margin-bottom: 22px; }
.faq-still-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

[data-theme="dark"] .faq-group-header { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .faq-group-header h2 { color: #e6edf3; }
[data-theme="dark"] .faq-acc-item { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .faq-acc-q { color: #e6edf3; }
[data-theme="dark"] .faq-acc-q:hover,
[data-theme="dark"] .faq-acc-q[aria-expanded="true"] { background: rgba(255,255,255,0.06); }

/* ── Blog ── */
.blog-grid { display: flex; flex-direction: column; gap: 24px; max-width: 800px; margin: 0 auto 48px; }
.blog-card {
  background: var(--white); border: 1px solid var(--grey-200, #D6DDE8);
  border-radius: var(--radius-lg, 24px); padding: 28px 32px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-featured { border-left: 4px solid var(--teal); }
.blog-card-tag {
  display: inline-block; background: var(--teal); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
}
.blog-card-title { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.blog-card-title a { color: var(--navy); text-decoration: none; }
.blog-card-title a:hover { color: var(--teal); }
.blog-card-excerpt { color: var(--text-light); line-height: 1.7; margin-bottom: 14px; font-size: 15px; }
.blog-card-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--grey-400, #8A99B0); margin-bottom: 14px; }
.blog-card-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 700; font-size: 14px; text-decoration: none; }
.blog-card-link:hover { gap: 10px; }

/* Blog article pages */
.blog-article-wrap { min-height: 60vh; }
.blog-article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
  padding: 120px 0 48px; color: white;
}
.blog-article-tag {
  display: inline-block; background: var(--teal); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 3px 12px; border-radius: 20px; margin-bottom: 14px;
}
.blog-article-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4.5vw, 46px);
  font-weight: 900; color: white; line-height: 1.2; margin-bottom: 18px;
}
.blog-article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.62); }
.blog-article-meta span { display: flex; align-items: center; gap: 5px; }
.blog-article-body { max-width: 740px; padding-top: 44px; padding-bottom: 60px; }
.blog-lead { font-size: 18px; line-height: 1.78; color: var(--text-light); margin-bottom: 32px; }
.blog-article-body h2 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--navy); margin: 36px 0 12px;
  display: flex; align-items: baseline; gap: 10px;
}
.blog-num {
  font-size: 12px; font-weight: 900; color: var(--teal);
  letter-spacing: 1px; background: rgba(0,169,157,0.1);
  padding: 2px 7px; border-radius: 4px; flex-shrink: 0;
}
.blog-article-body p { font-size: 15.5px; line-height: 1.8; color: var(--text-light); margin-bottom: 16px; }
.blog-callout {
  display: flex; gap: 18px; align-items: flex-start;
  background: rgba(0,169,157,0.06);
  border: 1px solid rgba(0,169,157,0.22);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md); padding: 22px; margin: 28px 0;
}
.blog-callout-icon { font-size: 26px; color: var(--teal); flex-shrink: 0; }
.blog-callout h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.blog-callout p { font-size: 14px; color: var(--text-light); margin: 0; }
.blog-author-box {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 22px; margin: 36px 0 28px;
}
.blog-author-box img { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.blog-author-box strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.blog-author-box span { display: block; font-size: 13px; color: var(--teal); margin-bottom: 7px; }
.blog-author-box p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; margin: 0; }
.blog-share { display: flex; align-items: center; gap: 10px; margin: 20px 0 36px; flex-wrap: wrap; }
.blog-share span { font-size: 14px; font-weight: 700; color: var(--navy); }
.blog-share-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: opacity 0.2s;
}
.blog-share-btn:hover { opacity: 0.85; }
.blog-share-btn.wa { background: #25D366; color: white; }
.blog-share-btn.fb { background: #1877F2; color: white; }
.blog-share-btn.li { background: #0A66C2; color: white; }
.blog-more-articles { border-top: 1px solid var(--grey-200); padding-top: 28px; }
.blog-more-articles h3 { font-family: var(--font-display); font-size: 19px; color: var(--navy); margin-bottom: 14px; }
.blog-more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.blog-more-card {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--radius-md); padding: 18px; text-decoration: none;
  transition: box-shadow 0.2s;
}
.blog-more-card:hover { box-shadow: var(--shadow-sm); }
.blog-more-tag { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 7px; display: block; }
.blog-more-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }
@media (max-width: 520px) { .blog-more-grid { grid-template-columns: 1fr; } }

[data-theme="dark"] .blog-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .blog-card-title a { color: #e6edf3; }
[data-theme="dark"] .blog-article-body h2 { color: #e6edf3; }
[data-theme="dark"] .blog-callout { background: rgba(0,169,157,0.08); border-color: rgba(0,169,157,0.25); }
[data-theme="dark"] .blog-callout h4 { color: #e6edf3; }
[data-theme="dark"] .blog-author-box { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .blog-author-box strong { color: #e6edf3; }
[data-theme="dark"] .blog-more-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .blog-more-card h4 { color: #e6edf3; }
[data-theme="dark"] .blog-more-articles { border-color: rgba(255,255,255,0.1); }
[data-theme="dark"] .blog-more-tag { color: var(--teal-light, #00CFC3); }
[data-theme="dark"] .blog-share span { color: #e6edf3; }

/* ── Thank-you page ── */
.thankyou-section {
  min-height: 82vh; display: flex;
  align-items: center; justify-content: center;
  padding: 100px 24px 60px;
  background: var(--off-white);
}
.thankyou-card {
  background: var(--white); border-radius: var(--radius-xl, 40px);
  padding: 52px 44px; max-width: 580px; width: 100%;
  text-align: center; box-shadow: var(--shadow-xl);
}
.ty-icon { font-size: 58px; color: var(--teal); margin-bottom: 16px; }
.thankyou-card h1 { font-family: var(--font-display); font-size: 34px; color: var(--navy); margin-bottom: 10px; }
.ty-sub { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.ty-divider { height: 1px; background: var(--grey-200); margin: 0 0 24px; }
.ty-next-label { font-size: 14px; font-weight: 700; color: var(--navy); text-align: left; margin-bottom: 12px; letter-spacing: 0.2px; }
.ty-next-steps { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ty-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 14px 16px; text-align: left; text-decoration: none;
  border: 1px solid var(--grey-200);
  transition: background 0.2s, box-shadow 0.2s;
}
.ty-step:hover { background: var(--grey-100, #EEF2F7); box-shadow: var(--shadow-sm); }
.ty-step-icon {
  width: 40px; height: 40px; background: var(--navy); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.ty-step-icon.ty-wa { background: #25D366; }
.ty-step-icon.ty-share { background: var(--teal); }
.ty-step-body { flex: 1; }
.ty-step-body strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.ty-step-body span { font-size: 13px; color: var(--text-light); }
.ty-step-arrow { color: var(--grey-400); font-size: 13px; flex-shrink: 0; }
.ty-verse { font-family: var(--font-display); font-style: italic; color: var(--gold, #F5A623); font-size: 13px; margin-bottom: 20px; }
.ty-home { margin: 0 auto; }
[data-theme="dark"] .thankyou-section { background: var(--off-white); }
[data-theme="dark"] .thankyou-card { background: rgba(255,255,255,0.05); }
[data-theme="dark"] .thankyou-card h1 { color: #e6edf3; }
[data-theme="dark"] .ty-next-label { color: #e6edf3; }
[data-theme="dark"] .ty-step { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08); }
[data-theme="dark"] .ty-step:hover { background: rgba(255,255,255,0.09); }
[data-theme="dark"] .ty-step-body strong { color: #e6edf3; }

/* ── Breadcrumbs ── */
.breadcrumb {
  background: var(--off-white); border-bottom: 1px solid var(--grey-100, #EEF2F7);
  padding: 9px 0;
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--grey-400);
}
.breadcrumb-inner a { color: var(--teal); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.bc-sep { color: var(--grey-400); font-size: 10px; }
.bc-current { color: var(--navy); font-weight: 600; }
[data-theme="dark"] .breadcrumb { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.06); }
[data-theme="dark"] .bc-current { color: #e6edf3; }


/* ================================================================
   FAQ SINGLE PAGE + BUTTON LAYOUT UPDATES
   ================================================================ */

/* Single unified FAQ list */
.faq-single-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 840px;
}

/* Category pill labels — replace group headers */
.faq-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 20px 0 8px;
  width: fit-content;
}
.faq-category-pill:first-of-type { margin-top: 0; }
.faq-category-pill i { color: var(--teal-light, #00CFC3); font-size: 13px; }

[data-theme="dark"] .faq-category-pill {
  background: rgba(255,255,255,0.1);
  color: #e6edf3;
}

/* Back-to-top — bottom right (WhatsApp removed) */
.back-to-top {
  bottom: 28px !important;
  right: 28px !important;
  left: auto !important;
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
  }
}

/* Remove any lingering WhatsApp float styles from earlier patches */
.whatsapp-float { display: none !important; }

