
/* ═══════════════════════════════════════
   H2 — HERO
   ═══════════════════════════════════════ */
.hp-hero {
  background: #fff;
  padding: 72px 24px 64px;
  overflow: hidden;
}
.hp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}
.hp-hero h1 {
  font-size: 40px;
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.22;
  margin-bottom: 22px;
}
.hp-hero h1 em {
  font-style: normal;
  color: #1565c0;
}
.hp-hero-sub {
  font-size: 15.5px;
  font-weight: 600;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid #1565c0;
}
.hp-hero-copy {
  font-size: 14px;
  color: #262626;
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 560px;
}
.hp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
}
.hp-cta-primary {
  background: #1565c0;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
  font-family: 'Poppins', sans-serif;
}
.hp-cta-primary:hover { background: #0d47a1; color: #fff; }
.hp-cta-secondary {
  background: transparent;
  color: #1565c0;
  border: 2px solid #1565c0;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-block;
  transition: all .2s;
  font-family: 'Poppins', sans-serif;
}
.hp-cta-secondary:hover { background: #1565c0; color: #fff; }
.hp-cta-tertiary {
  color: #262626;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  white-space: nowrap;
}
.hp-cta-tertiary:hover { color: #1565c0; }
.hp-trust-micro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 11.5px;
  color: #9ca3af;
  font-weight: 500;
}
.hp-trust-dot { color: #d1d5db; }
.hp-hero-img {
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 92%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0%, black 6%, black 94%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 4%, black 92%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}
.hp-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ═══════════════════════════════════════
   H3 — TRUST BAR
   ═══════════════════════════════════════ */
.hp-trust-bar {
  background: url('../images/blue_curve2.png') center center / 100% 100% no-repeat;
  padding: 56px 24px 72px;
}
.hp-trust-bar-heading {
  max-width: 1100px;
  margin: 0 auto 32px;
  text-align: center;
}
.hp-trust-bar-heading h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}
.hp-trust-bar-heading p {
  font-size: 17px;
  color: rgba(255,255,255,.70);
  margin: 0;
}
.hp-trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  overflow: hidden;
}
.hp-trust-tile {
  padding: 52px 24px;
  text-align: center;
  border-right: 1px solid #f0f2f5;
}
.hp-trust-tile:last-child { border-right: none; }
.hp-trust-num {
  font-size: 42px;
  font-weight: 900;
  color: #1565c0;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.hp-trust-label {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.55;
  max-width: 140px;
  margin: 0 auto;
  font-weight: 500;
}
.hp-trust-tile-silver .hp-trust-num {
  font-size: 24px;
  letter-spacing: 4px;
  color: #1565c0;
  text-transform: uppercase;
}
.hp-trust-silver-note {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 6px;
  font-style: italic;
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .hp-hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .hp-hero h1 { font-size: 34px; }
}
@media (max-width: 768px) {
  .hp-hero { padding: 48px 20px; }
  .hp-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hp-hero h1 { font-size: 28px; }
  /* Replace stretched curve image with flat gradient on mobile */
  .hp-trust-bar {
    background: linear-gradient(160deg, #0d2b6e 0%, #1565c0 60%, #1976d2 100%);
    padding: 40px 16px;
  }
  .hp-trust-bar-inner { grid-template-columns: repeat(2, 1fr); border-radius: 16px; }
  .hp-trust-tile { border-right: none; border-bottom: 1px solid #f0f2f5; padding: 28px 16px; }
  .hp-trust-tile:last-child { border-bottom: none; }
  .hp-trust-num { font-size: 32px; }
}
@media (max-width: 480px) {
  .hp-hero h1 { font-size: 24px; }
  .hp-hero-ctas { flex-direction: column; align-items: flex-start; }
  .hp-cta-primary,
  .hp-cta-secondary { width: 100%; text-align: center; }
  .hp-trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .hp-trust-num { font-size: 28px; }
}

/* ═══════════════════════════════════════
   H4 — COURSE CARDS
   ═══════════════════════════════════════ */
.hp-courses-section { background: #f8faff; padding: 80px 24px; }
.hp-courses-inner   { max-width: 1180px; margin: 0 auto; }
.hp-courses-section h2 { font-size: 30px; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.hp-courses-intro { font-size: 14.5px; color: #374151; line-height: 1.8; margin-bottom: 44px; max-width: 660px; }

/* ── Courses Swiper ── */
.hp-courses-swiper { margin-bottom: 28px; padding-bottom: 48px; }
.hp-courses-swiper .swiper-slide { height: auto; }

/* ── Photo-background card ── */
.hp-course-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-top: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.hp-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.36);
}
/* Gradient overlay */
.hp-course-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.35) 30%,
    rgba(0,0,0,.92) 100%
  );
  z-index: 0;
}
/* Badge — top-left absolute */
.hp-course-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: #1565c0; color: #fff;
  border-radius: 20px; padding: 5px 14px;
}
.hp-courses-swiper .swiper-slide:nth-child(2) .hp-course-badge { background: #0d47a1; }
.hp-courses-swiper .swiper-slide:nth-child(3) .hp-course-badge { background: #3730a3; }
.hp-courses-swiper .swiper-slide:nth-child(4) .hp-course-badge { background: #0d9488; }

/* Content sits at the bottom above overlay */
.hp-course-content {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 22px 24px 24px;
}
.hp-course-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 10px; line-height: 1.3; }
.hp-course-hook { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 14px; }
.hp-course-stats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.hp-course-stat {
  font-size: 12.5px; background: rgba(255,255,255,.15); color: #fff;
  border-radius: 6px; padding: 5px 12px; font-weight: 500;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
}
.hp-course-bestfor-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.55); margin-bottom: 5px;
}
.hp-course-bestfor { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.65; margin-bottom: 16px; }
.hp-course-footer { border-top: 1px solid rgba(255,255,255,.18); padding-top: 14px; }
.hp-course-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: #fff; text-decoration: none;
  transition: opacity .2s;
}
.hp-course-cta:hover { opacity: .8; }
.hp-course-urgency { font-size: 12px; color: #FFFFFF; margin-top: 6px; font-style: italic; }

/* ── Navigation buttons ── */
.hp-courses-nav { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-bottom: 18px; }
.hp-courses-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.hp-courses-btn:hover { background: #1565c0; border-color: #1565c0; }
.hp-courses-btn:hover svg { stroke: #fff; }
.hp-courses-btn svg { stroke: #1565c0; display: block; transition: stroke .2s; }
.hp-courses-btn.swiper-button-disabled { opacity: .35; cursor: default; pointer-events: none; }

/* Pagination dots */
.hp-courses-swiper .swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.hp-courses-swiper .swiper-pagination-bullet-active { background: #1565c0; }

/* Quiz CTA */
.hp-courses-quiz-cta {
  background: #fff; border-radius: 14px; padding: 28px 32px;
  border: 2px dashed #dbeafe; text-align: center;
}
.hp-courses-quiz-cta p { font-size: 14.5px; color: #374151; line-height: 1.7; margin-bottom: 18px; font-weight: 500; }
.hp-courses-quiz-btn {
  display: inline-block; background: #1565c0; color: #fff;
  padding: 13px 28px; border-radius: 8px; font-size: 13.5px; font-weight: 700;
  text-decoration: none; transition: background .2s;
}
.hp-courses-quiz-btn:hover { background: #0d47a1; color: #fff; }

/* ═══════════════════════════════════════
   H5 — WHO THIS IS FOR
   ═══════════════════════════════════════ */
.hp-who-section { background: #fff; padding: 80px 24px; }
.hp-who-inner   { max-width: 1180px; margin: 0 auto; }
.hp-who-section h2 {
  font-size: 28px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 44px; max-width: 680px; line-height: 1.4;
}
/* Who Swiper */
.hp-who-swiper { margin-bottom: 40px; padding-bottom: 48px; }
.hp-who-swiper .swiper-slide { height: auto; }
.hp-who-nav { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-bottom: 18px; }
.hp-who-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s;
  flex-shrink: 0;
}
.hp-who-btn:hover { background: #1565c0; border-color: #1565c0; }
.hp-who-btn:hover svg { stroke: #fff; }
.hp-who-btn svg { stroke: #1565c0; display: block; transition: stroke .2s; }
.hp-who-btn.swiper-button-disabled { opacity: .35; cursor: default; pointer-events: none; }
.hp-who-swiper .swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.hp-who-swiper .swiper-pagination-bullet-active { background: #1565c0; }
.hp-who-card { background: #f8faff; border-radius: 14px; padding: 24px 22px 26px; border-top: 3px solid #1565c0; height: 100%; box-sizing: border-box; }
.hp-who-card-ca     { border-top-color: #7c3aed; }
.hp-who-card-parent { border-top-color: #0d9488; }
.hp-who-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.2px; color: #1565c0; margin-bottom: 12px;
}
.hp-who-card-ca .hp-who-label     { color: #7c3aed; }
.hp-who-card-parent .hp-who-label  { color: #0d9488; }
.hp-who-card p { font-size: 13.5px; color: #374151; line-height: 1.8; margin: 0; }
.hp-who-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hp-who-cta-primary {
  background: #1565c0; color: #fff; padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: background .2s;
}
.hp-who-cta-primary:hover { background: #0d47a1; }
.hp-who-cta-secondary {
  color: #1565c0; font-size: 13.5px; font-weight: 600; text-decoration: none;
  border: 2px solid #dbeafe; padding: 12px 24px; border-radius: 8px;
  transition: border-color .2s;
}
.hp-who-cta-secondary:hover { border-color: #1565c0; }

/* H4 + H5 responsive */
@media (max-width: 600px) {
  .hp-course-card {
    height: 500px;
    min-height: unset;
  }
  .hp-course-content {
    padding: 14px 14px 16px;
  }
  .hp-course-name  { font-size: 16px; margin-bottom: 7px; }
  .hp-course-hook  { font-size: 12px; margin-bottom: 8px; line-height: 1.6; }
  .hp-course-stats { margin-bottom: 8px; gap: 4px; }
  .hp-course-stat  { font-size: 11px; padding: 3px 9px; }
  .hp-course-bestfor-label { display: none; }
  .hp-course-bestfor { font-size: 11.5px; margin-bottom: 10px; }
  .hp-course-urgency { display: none; }
  .hp-course-cta   { font-size: 13px; }
}
@media (max-width: 480px) {
  .hp-courses-section h2 { font-size: 24px; }
  .hp-who-section h2     { font-size: 22px; }
  .hp-who-ctas           { flex-direction: column; }
  .hp-who-cta-primary,
  .hp-who-cta-secondary  { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════
   H6 — THE NPA DIFFERENCE
   ═══════════════════════════════════════ */
.hp-diff-section { background: #f8faff; padding: 80px 24px; }
.hp-diff-inner   { max-width: 1180px; margin: 0 auto; }
.hp-diff-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 14px; line-height: 1.3;
}
.hp-diff-sub {
  font-size: 15px; color: #374151; line-height: 1.8;
  margin-bottom: 48px; max-width: 700px;
}
.hp-diff-accordion { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.hp-diff-item {
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid #1565c0;
  box-shadow: 0 2px 12px rgba(21,101,192,.06);
  overflow: hidden;
}
.hp-diff-item-wide { border-left-color: #0d47a1; background: #eef4ff; }
.hp-diff-head {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  text-align: left; font-family: inherit;
}
.hp-diff-head:hover .hp-diff-title { color: #1565c0; }
.hp-diff-title { font-size: 15px; font-weight: 700; color: #1a1a2e; transition: color .2s; line-height: 1.4; }
.hp-diff-chevron {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%; background: #f0f5ff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s;
}
.hp-diff-chevron svg { display: block; }
.hp-diff-item.is-open .hp-diff-chevron { background: #1565c0; transform: rotate(180deg); }
.hp-diff-item.is-open .hp-diff-chevron svg { stroke: #fff; }
.hp-diff-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 24px;
}
.hp-diff-item.is-open .hp-diff-body { max-height: 500px; padding: 0 24px 20px; }
.hp-diff-body p { font-size: 13.5px; color: #374151; line-height: 1.8; margin: 0; }
.hp-diff-cta { margin-top: 36px; text-align: center; }
.hp-diff-cta a {
  color: #1565c0; font-size: 14.5px; font-weight: 700;
  text-decoration: none; transition: color .2s;
}
.hp-diff-cta a:hover { color: #0d47a1; }

/* H6 responsive */
@media (max-width: 480px) {
  .hp-diff-section h2 { font-size: 24px; }
  .hp-diff-title { font-size: 14px; }
  .hp-diff-head { padding: 16px 18px; }
  .hp-diff-item.is-open .hp-diff-body { padding: 0 18px 16px; }
}

/* ═══════════════════════════════════════
   H7 — CHIEF MENTOR
   ═══════════════════════════════════════ */
.hp-mentor-section { background: #fff; padding: 80px 24px; }
.hp-mentor-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}
.hp-mentor-photo {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(145deg, #eef4ff, #f0f9ff);
  aspect-ratio: 3 / 4;
  display: flex; align-items: center; justify-content: center;
}
.hp-mentor-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-mentor-label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #9ca3af; margin-bottom: 14px;
}
.hp-mentor-body h2 {
  font-size: 22px; font-weight: 800; color: #1a1a2e;
  line-height: 1.4; margin-bottom: 22px;
}
.hp-mentor-body p { font-size: 14px; color: #374151; line-height: 1.85; margin-bottom: 18px; }
.hp-mentor-creds { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.hp-mentor-cred {
  background: #f8faff; border: 1px solid #dbeafe;
  border-radius: 30px; padding: 8px 16px;
  font-size: 12px; font-weight: 500; color: #374151; line-height: 1.45;
}
.hp-mentor-cred strong { display: block; font-weight: 700; color: #1565c0; }
.hp-mentor-more { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.hp-mentor-more.is-open { max-height: 800px; }
.hp-mentor-readmore {
  background: none; border: none; padding: 6px 0; margin: 6px 0 0;
  color: #1565c0; font-size: 13.5px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.hp-mentor-readmore:hover { color: #0d47a1; }
.hp-mentor-readmore svg { transition: transform .3s; }
.hp-mentor-readmore.is-open svg { transform: rotate(180deg); }
.hp-mentor-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }
.hp-mentor-cta-primary {
  background: #1565c0; color: #fff; padding: 14px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: background .2s;
}
.hp-mentor-cta-primary:hover { background: #0d47a1; }
.hp-mentor-cta-secondary {
  color: #1565c0; font-size: 13.5px; font-weight: 600;
  text-decoration: none; transition: color .2s;
}
.hp-mentor-cta-secondary:hover { color: #0d47a1; }

/* H7 responsive */
@media (max-width: 1024px) {
  .hp-mentor-inner { grid-template-columns: 280px 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .hp-mentor-inner { grid-template-columns: 1fr; gap: 36px; }
  .hp-mentor-photo { aspect-ratio: 5 / 5; max-height: 380px; }
  .hp-mentor-photo img { object-position: top center; }
  .hp-mentor-body h2 { font-size: 19px; }
}
@media (max-width: 480px) {
  .hp-mentor-section { padding: 56px 20px; }
  .hp-mentor-ctas { flex-direction: column; }
  .hp-mentor-cta-primary { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════
   H8 — STUDENT JOURNEY
   ═══════════════════════════════════════ */
.hp-journey-section { background: #f8faff; padding: 80px 24px; }
.hp-journey-inner   { max-width: 1180px; margin: 0 auto; }
.hp-journey-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 14px; line-height: 1.3;
}
.hp-journey-sub {
  font-size: 15px; color: #374151; line-height: 1.8;
  margin-bottom: 56px; max-width: 720px;
}
/* Timeline wrapper — holds the horizontal connector line */
.hp-journey-timeline { position: relative; }
.hp-journey-timeline::before {
  content: '';
  position: absolute;
  top: 27px; /* centre of the 56px circles */
  left: 6.25%; /* centre of first column (100% / 16) */
  right: 6.25%;
  height: 2px;
  background: linear-gradient(90deg, #1565c0 0%, #93c5fd 65%, #dbeafe 100%);
  z-index: 0;
}
.hp-journey-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  position: relative;
  z-index: 1;
}
.hp-journey-stage { text-align: center; padding: 0 6px; }
.hp-journey-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1565c0;
  color: #fff;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  border: 3px solid #f8faff; /* halo cuts through the connector line */
  position: relative; z-index: 1;
  flex-shrink: 0;
}
/* Final stage — teal signals arrival */
.hp-journey-stage:last-child .hp-journey-num { background: #0d9488; }
.hp-journey-stage-title {
  font-size: 11.5px; font-weight: 700; color: #1a1a2e;
  margin-bottom: 6px; line-height: 1.4;
}
.hp-journey-stage-desc { font-size: 11px; color: #262626; line-height: 1.65; margin: 0; }

/* H8 — tablet: 4 × 2 grid, connector hidden */
@media (max-width: 1024px) {
  .hp-journey-timeline::before { display: none; }
  .hp-journey-grid { grid-template-columns: repeat(4, 1fr); gap: 36px 12px; }
}
/* H8 — mobile: vertical stacked timeline */
@media (max-width: 640px) {
  .hp-journey-section { padding: 56px 20px; }
  .hp-journey-sub { margin-bottom: 36px; }
  .hp-journey-timeline::before { display: none; }
  .hp-journey-grid {
    display: flex; flex-direction: column;
    position: relative;
  }
  /* Vertical connector line */
  .hp-journey-grid::before {
    content: '';
    position: absolute;
    top: 28px; left: 27px;
    bottom: 28px; width: 2px;
    background: linear-gradient(180deg, #1565c0, #93c5fd);
    z-index: 0;
  }
  .hp-journey-stage {
    display: flex; align-items: flex-start; gap: 20px;
    text-align: left; padding: 0 0 28px;
  }
  .hp-journey-stage:last-child { padding-bottom: 0; }
  .hp-journey-num { margin: 0; }
  .hp-journey-stage-content { padding-top: 6px; }
  .hp-journey-stage-title { font-size: 13px; }
  .hp-journey-stage-desc  { font-size: 12.5px; }
}
@media (max-width: 480px) {
  .hp-journey-section h2 { font-size: 24px; }
}

/* ═══════════════════════════════════════
   H9 — CAMPUS & LEARNING
   ═══════════════════════════════════════ */
.hp-campus-section { background: #fff; padding: 80px 24px; }
.hp-campus-inner   { max-width: 1180px; margin: 0 auto; }

/* Badge */
.hp-campus-badge {
  display: inline-flex;
  align-items: center;
  background: #eff6ff;
  color: #1565c0;
  border: 1px solid #bfdbfe;
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Top split: text left, photo collage right */
.hp-campus-top {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
.hp-campus-text h2 {
  font-family: 'Instrument Sans', 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0;
}
.hp-campus-text p {
  font-family: 'Instrument Sans', 'Poppins', sans-serif;
  font-size: 16px; color: #262626;
  line-height: 1.8; margin-bottom: 16px;
}
.hp-campus-text p:last-child { margin-bottom: 0; }

/* Photo collage */
.hp-campus-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hp-campus-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 622 / 244;
}
/* First (campus) photo spans full width — clip-path via SVG, no overflow/radius needed */
.hp-campus-photo:first-child {
  grid-column: 1 / -1;
  border-radius: 0;
  overflow: visible;
  background: none;
  aspect-ratio: 622 / 244;
}
.hp-campus-photo:first-child > svg,
.hp-campus-photo--online > svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* Learn Online & Learn Anywhere — SVG clip-path, no overflow/radius needed */
.hp-campus-photo--online,
.hp-campus-photo--anywhere {
  border-radius: 0;
  overflow: visible;
  background: none;
  aspect-ratio: 324 / 260;
}
.hp-campus-photo--anywhere > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hp-campus-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Pill label over images */
.hp-campus-photo-label {
  position: absolute;
  bottom: 10px; left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.70);
  color: #0057D9;
  border-radius: 100px;
  padding: 3px 10px 3px 3px;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Instrument Sans', 'Poppins', sans-serif;
  pointer-events: none;
  white-space: nowrap;
}
/* White circle on the left containing the icon */
.hp-campus-label-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Facility tile grid */
.hp-campus-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}
.hp-campus-tile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}
.hp-campus-tile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  min-width: 40px;
  background: #0057D9;
  border-radius: 8px;
  flex-shrink: 0;
}
.hp-campus-tile-icon img {
  width: 22px; height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hp-campus-tile-body { display: flex; flex-direction: column; }
.hp-campus-tile-title {
  font-size: 13px; font-weight: 700; color: #111827;
  margin-bottom: 4px; line-height: 1.35;
}
.hp-campus-tile-desc { font-size: 12px; color: #262626; line-height: 1.6; margin: 0; }

/* H9 responsive */
@media (max-width: 1024px) {
  .hp-campus-top { grid-template-columns: 1fr 340px; gap: 40px; }
  .hp-campus-text h2 { font-size: 36px; }
}
@media (max-width: 768px) {
  .hp-campus-top { grid-template-columns: 1fr; gap: 32px; }
  .hp-campus-tiles { grid-template-columns: 1fr 1fr; }
  .hp-campus-text h2 { font-size: 28px; line-height: 1.15; }
}
@media (max-width: 480px) {
  .hp-campus-section { padding: 56px 20px; }
  .hp-campus-text h2 { font-size: 22px; }
  .hp-campus-tiles { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hp-campus-top { margin-bottom: 40px; }
}

/* ═══════════════════════════════════════
   H10 — STUDENT SUCCESS STORIES
   ═══════════════════════════════════════ */
.hp-stories-section { background: #f8faff; padding: 80px 24px; }
.hp-stories-inner   { max-width: 1180px; margin: 0 auto; }
.hp-stories-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 48px; line-height: 1.3;
}
.hp-stories-swiper { margin-bottom: 40px; padding-bottom: 44px; }
.hp-stories-swiper .swiper-slide { height: auto; }
.hp-story-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 26px;
  border-left: 4px solid #1565c0;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  height: 100%; box-sizing: border-box;
}
/* Colour-coded by persona */
.hp-stories-swiper .swiper-slide:nth-child(1) .hp-story-card { border-left-color: #7c3aed; }
.hp-stories-swiper .swiper-slide:nth-child(3) .hp-story-card { border-left-color: #0d9488; }
.hp-story-persona {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: #1565c0; margin-bottom: 12px;
}
.hp-stories-swiper .swiper-slide:nth-child(1) .hp-story-persona { color: #7c3aed; }
.hp-stories-swiper .swiper-slide:nth-child(3) .hp-story-persona { color: #0d9488; }
/* Pagination dots */
.hp-stories-swiper .swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.hp-stories-swiper .swiper-pagination-bullet-active { background: #1565c0; }
.hp-story-headline {
  font-size: 15.5px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 18px; line-height: 1.45;
}
.hp-story-body p {
  font-size: 13px; color: #374151; line-height: 1.82;
  margin-bottom: 14px;
}
.hp-story-body p:last-child { margin-bottom: 0; }
.hp-story-more { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.hp-story-more.is-open { max-height: 500px; }
.hp-story-readmore {
  background: none; border: none; padding: 4px 0; margin: 2px 0 0;
  color: #1565c0; font-size: 12.5px; font-weight: 700;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 5px;
  transition: color .2s;
}
.hp-story-readmore:hover { color: #0d47a1; }
.hp-story-readmore svg { transition: transform .3s; }
.hp-story-readmore.is-open svg { transform: rotate(180deg); }
/* CTAs */
.hp-stories-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hp-stories-cta-primary {
  color: #1565c0; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: color .2s;
}
.hp-stories-cta-primary:hover { color: #0d47a1; }
.hp-stories-cta-secondary {
  background: #1565c0; color: #fff;
  padding: 13px 26px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: background .2s;
}
.hp-stories-cta-secondary:hover { background: #0d47a1; }

/* H10 responsive */
@media (max-width: 1024px) {
  .hp-story-card { padding: 26px 22px; }
}
@media (max-width: 480px) {
  .hp-stories-section { padding: 56px 20px; }
  .hp-stories-section h2 { font-size: 24px; margin-bottom: 32px; }
  .hp-stories-ctas { flex-direction: column; }
  .hp-stories-cta-secondary { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════
   H11 — CAREER DEVELOPMENT CENTER
   ═══════════════════════════════════════ */
.hp-cdc-section { background: #fff; padding: 80px 24px; }
.hp-cdc-inner   { max-width: 1180px; margin: 0 auto; }
.hp-cdc-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 20px; line-height: 1.3;
}
.hp-cdc-body { max-width: 780px; margin-bottom: 48px; }
.hp-cdc-body p { font-size: 14.5px; color: #374151; line-height: 1.85; margin-bottom: 16px; }
.hp-cdc-body p:last-child { margin-bottom: 0; }
.hp-cdc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.hp-cdc-card {
  background: #f8faff; border-radius: 14px;
  padding: 24px 22px; border-top: 3px solid #1565c0;
}
.hp-cdc-card-head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 0 !important; cursor: pointer;
}
.hp-cdc-card-icon {
  width: 36px; height: 36px;
  background: #0057D9;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-cdc-card-icon img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.hp-cdc-card-icon svg { flex-shrink: 0; }
.hp-cdc-card-title { font-size: 14px; font-weight: 700; color: #1a1a2e; margin-bottom: 0; line-height: 1.4; }
.hp-cdc-card-desc  { font-size: 13px; color: #374151; line-height: 1.75; margin: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease, margin-top .25s ease; margin-top: 0; }
.hp-cdc-card.is-open .hp-cdc-card-desc { max-height: 200px; margin-top: 10px; }
.hp-cdc-card-chevron {
  width: 26px; height: 26px; min-width: 26px; margin-left: auto;
  border-radius: 50%; background: #f0f5ff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s; flex-shrink: 0;
}
.hp-cdc-card.is-open .hp-cdc-card-chevron { background: #0057D9; transform: rotate(180deg); }
.hp-cdc-card.is-open .hp-cdc-card-chevron svg { stroke: #fff; }
.hp-cdc-cta {
  color: #1565c0; font-size: 14.5px; font-weight: 700;
  text-decoration: none; transition: color .2s;
}
.hp-cdc-cta:hover { color: #0d47a1; }

/* H11 responsive */
@media (max-width: 768px) {
  .hp-cdc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .hp-cdc-section { padding: 56px 20px; }
  .hp-cdc-section h2 { font-size: 24px; }
  .hp-cdc-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   H12 — CAREER QUIZ
   ═══════════════════════════════════════ */
.hp-quiz-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a2f5e 100%);
  padding: 88px 24px;
  text-align: center;
}
.hp-quiz-inner { max-width: 720px; margin: 0 auto; }
.hp-quiz-section h2 {
  font-size: 30px; font-weight: 800; color: #fff;
  margin-bottom: 28px; line-height: 1.4;
}
.hp-quiz-body p {
  font-size: 15px; color: rgba(255,255,255,.72);
  line-height: 1.82; margin-bottom: 16px;
}
.hp-quiz-body p:last-child { margin-bottom: 40px; }
.hp-quiz-cta {
  display: inline-block;
  background: #fff; color: #1565c0;
  padding: 17px 40px; border-radius: 8px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.hp-quiz-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  color: #0d47a1;
}
.hp-quiz-trust {
  display: block; font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 20px; line-height: 1.7;
}

/* H12 responsive */
@media (max-width: 768px) {
  .hp-quiz-section h2 { font-size: 24px; }
  .hp-quiz-body p { font-size: 14px; }
}
@media (max-width: 480px) {
  .hp-quiz-section { padding: 64px 20px; }
  .hp-quiz-section h2 { font-size: 22px; }
  .hp-quiz-cta { display: block; width: 100%; box-sizing: border-box; }
}

/* ═══════════════════════════════════════
   H13 — UPCOMING BATCHES
   ═══════════════════════════════════════ */
.hp-batches-section { background: #f8faff; padding: 80px 24px; }
.hp-batches-inner   { max-width: 1180px; margin: 0 auto; }
.hp-batches-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 14px; line-height: 1.3;
}
.hp-batches-intro {
  font-size: 14px; color: #262626; margin-bottom: 44px; line-height: 1.7;
}
/* Batches Swiper */
.hp-batches-nav { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-bottom: 18px; }
.hp-batches-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s; flex-shrink: 0;
}
.hp-batches-btn:hover { background: #1565c0; border-color: #1565c0; }
.hp-batches-btn:hover svg { stroke: #fff; }
.hp-batches-btn svg { stroke: #1565c0; display: block; transition: stroke .2s; }
.hp-batches-btn.swiper-button-disabled { opacity: .35; cursor: default; pointer-events: none; }
.hp-batches-swiper { margin-bottom: 32px; padding-bottom: 44px; }
.hp-batches-swiper .swiper-slide { height: auto; }
.hp-batches-swiper .swiper-pagination-bullet { background: #cbd5e1; opacity: 1; }
.hp-batches-swiper .swiper-pagination-bullet-active { background: #1565c0; }
/* Batch card */
.hp-batch-card {
  background: #fff; border-radius: 16px;
  padding: 26px 24px;
  border-top: 4px solid #1565c0;
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
  display: flex; flex-direction: column;
  height: 100%; box-sizing: border-box;
}
.hp-batch-card-cma { border-top-color: #0d47a1; }
/* Course + type header */
.hp-batch-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.hp-batch-course {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 12px; border-radius: 20px;
  background: #dbeafe; color: #1565c0;
}
.hp-batch-card-cma .hp-batch-course { color: #0d47a1; }
.hp-batch-pill {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 4px 10px; border-radius: 20px;
}
.hp-batch-pill-online  { background: #f0fdf4; color: #15803d; }
.hp-batch-pill-offline { background: #ede9fe; color: #6d28d9; }
.hp-batch-pill-weekend { background: #fef3c7; color: #92400e; }
/* Batch title */
.hp-batch-title { font-size: 14.5px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; line-height: 1.4; }
/* Meta rows */
.hp-batch-meta { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.hp-batch-row { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; }
.hp-batch-row-label {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: #9ca3af; min-width: 72px; padding-top: 2px;
}
.hp-batch-row-val { color: #374151; font-weight: 500; }
/* Seats urgency */
.hp-batch-seats {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: #dc2626; background: #fff5f5; border-radius: 6px;
  padding: 6px 12px; margin-bottom: 18px; align-self: flex-start;
}
/* Card CTA */
.hp-batch-cta {
  display: block; text-align: center;
  background: #1565c0; color: #fff;
  padding: 13px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; width: 100%; box-sizing: border-box;
  font-family: 'Poppins', sans-serif; transition: background .2s;
  margin-top: auto;
}
.hp-batch-cta:hover { background: #0d47a1; color: #fff; }
.hp-batch-cta-enquire {
  background: transparent; color: #1565c0;
  border: 2px solid #1565c0;
}
.hp-batch-cta-enquire:hover { background: #1565c0; color: #fff; }
/* Below-grid CTA box */
.hp-batches-footer {
  background: #fff; border-radius: 14px;
  padding: 28px 32px; border: 1px solid #e8eef6;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.hp-batches-footer p {
  font-size: 14.5px; color: #374151; line-height: 1.7;
  font-weight: 500; margin: 0; flex: 1;
}
.hp-batches-footer-cta {
  white-space: nowrap; background: transparent; color: #1565c0;
  border: 2px solid #1565c0; padding: 13px 24px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; cursor: pointer;
  font-family: 'Poppins', sans-serif; transition: all .2s;
  flex-shrink: 0;
}
.hp-batches-footer-cta:hover { background: #1565c0; color: #fff; }

/* H13 responsive */
@media (max-width: 768px) {
  .hp-batches-footer { flex-direction: column; text-align: center; }
  .hp-batches-footer-cta { width: 100%; }
}
@media (max-width: 480px) {
  .hp-batches-section { padding: 56px 20px; }
  .hp-batches-section h2 { font-size: 24px; }
}

/* ═══════════════════════════════════════
   H14 — YOUTUBE RESOURCE HUB
   ═══════════════════════════════════════ */
.hp-yt-section { background: #fff; padding: 80px 24px; display: none; } /* hidden until real video IDs are added */
.hp-yt-inner   { max-width: 1180px; margin: 0 auto; }
.hp-yt-section h2 {
  font-size: 30px; font-weight: 800; color: #1a1a2e;
  margin-bottom: 14px; line-height: 1.3;
}
.hp-yt-body {
  font-size: 15px; color: #374151; line-height: 1.82;
  margin-bottom: 48px; max-width: 720px;
}
.hp-yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.hp-yt-card { display: flex; flex-direction: column; }
/* 16:9 embed wrapper */
.hp-yt-embed {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a, #1a2f5e);
  margin-bottom: 14px;
}
.hp-yt-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}
.hp-yt-video-title {
  font-size: 13.5px; font-weight: 700; color: #1a1a2e;
  line-height: 1.5;
}
/* CTAs */
.hp-yt-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hp-yt-cta-primary {
  color: #1565c0; font-size: 14.5px; font-weight: 700;
  text-decoration: none; transition: color .2s;
}
.hp-yt-cta-primary:hover { color: #0d47a1; }
.hp-yt-cta-secondary {
  background: #ff0000; color: #fff;
  padding: 11px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 7px;
}
.hp-yt-cta-secondary:hover { background: #cc0000; color: #fff; }

/* H14 responsive */
@media (max-width: 768px) {
  .hp-yt-grid { grid-template-columns: 1fr; max-width: 520px; gap: 28px; }
}
@media (max-width: 480px) {
  .hp-yt-section { padding: 56px 20px; }
  .hp-yt-section h2 { font-size: 24px; }
  .hp-yt-ctas { flex-direction: column; }
}

/* ═══════════════════════════════════════
   H15 — FINAL CTA
   ═══════════════════════════════════════ */
.hp-final-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a2f5e 100%);
  padding: 96px 24px;
  text-align: center;
}
.hp-final-inner { max-width: 820px; margin: 0 auto; }
.hp-final-section h2 {
  font-size: 30px; font-weight: 800; color: #fff;
  margin-bottom: 28px; line-height: 1.45;
}
.hp-final-body p {
  font-size: 15px; color: rgba(255,255,255,.72);
  line-height: 1.85; margin-bottom: 16px;
}
.hp-final-body p:last-child { margin-bottom: 44px; }
/* 4-button row */
.hp-final-ctas {
  display: flex; flex-wrap: wrap;
  gap: 12px; justify-content: center;
  margin-bottom: 36px;
}
.hp-final-cta-1 {
  background: #fff; color: #1565c0;
  padding: 15px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 800;
  border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: transform .2s, box-shadow .2s;
}
.hp-final-cta-1:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.hp-final-cta-2 {
  background: transparent; color: #fff;
  padding: 13px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: border-color .2s, background .2s;
}
.hp-final-cta-2:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hp-final-cta-3 {
  background: transparent; color: rgba(255,255,255,.8);
  padding: 13px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.3);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.hp-final-cta-3:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.hp-final-cta-4 {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 13px 26px; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.hp-final-cta-4:hover { background: #1fb855; color: #fff; }
/* Trust strip */
.hp-final-trust {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 6px 10px;
  font-size: 11.5px; color: rgba(255,255,255,.38);
  font-weight: 500;
}
.hp-final-trust-dot { color: rgba(255,255,255,.2); }

/* H15 responsive */
@media (max-width: 768px) {
  .hp-final-section h2 { font-size: 24px; }
  .hp-final-body p { font-size: 14px; }
}
@media (max-width: 480px) {
  .hp-final-section { padding: 64px 20px; }
  .hp-final-section h2 { font-size: 22px; }
  .hp-final-ctas { flex-direction: column; }
  .hp-final-cta-1,
  .hp-final-cta-2,
  .hp-final-cta-3,
  .hp-final-cta-4 { width: 100%; text-align: center; }
}

