/* ══════════════════════════════════════════════════════════════════
   Phase 1B · Homepage sections (features → final CTA)  S.MONK 2026-04
   ══════════════════════════════════════════════════════════════════
   Owns the markup below the Phase 1A proof strip and above the global
   footer. Eight sections, alternating light and dark bands:

     1. .home-features      light
     2. .home-pillars       dark
     3. .home-courses       light
     4. .home-jobs          dark
     5. .home-testimonials  light
     6. .home-blog          dark
     7. .home-photo         light
     8. .home-cta           dark

   All tokens are from the Phase 0 design system in style.css. Local
   accents (light surface, hairline border, gradient endpoints) are
   declared in :root below because they're shared across the file.
   ══════════════════════════════════════════════════════════════════ */

:root {
  --hp-light-bg:      #FAFBFD;
  --hp-light-border:  #E8EBF0;
  --hp-navy-grad:     linear-gradient(135deg, #0A1938 0%, #17315E 100%);
  --hp-navy-grad-v:   linear-gradient(180deg, #0A1938 0%, #17315E 100%);
  --hp-purple:        #7C3AED;
  --hp-red:           #DC2626;
}

/* Generic container (1200 px, gutters that match the hero). */
.home-sections-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* Standard eyebrow — teal on light, orange on dark; both are uppercase
   and tight-tracked. Distinct from the Phase-0 .eyebrow so it doesn't
   inherit legacy padding/colour. */
.hp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hp-eyebrow--teal   { color: #14A3B5; }
.hp-eyebrow--orange { color: #F26B2B; }

/* Generic section title baseline. Modules below override size. */
.hp-title {
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.hp-title--light { color: #0A1938; }
.hp-title--dark  { color: #fff; }
.hp-accent-orange { color: #F26B2B; }

/* Generic body for sub-paragraphs. */
.hp-sub {
  font-size: 16px;
  line-height: 1.55;
  margin-top: 14px;
}
.hp-sub--light { color: rgba(10,25,56,0.65); }
.hp-sub--dark  { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════════════════
   1 ·  FEATURES                                          (light)
   ══════════════════════════════════════════════════════════════════ */
.home-features {
  background: var(--hp-light-bg);
  padding: 88px 0;
}
.home-features__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-features__head .hp-title { font-size: clamp(28px, 4vw, 40px); }

.home-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-feature {
  background: #fff;
  border: 1px solid var(--hp-light-border);
  border-radius: 18px;
  padding: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.home-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(10,25,56,0.08);
  border-color: rgba(10,25,56,0.12);
}
.home-feature__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.home-feature__icon svg { width: 26px; height: 26px; }
.home-feature__icon--teal   { background: rgba(20,163,181,0.10);  color: #14A3B5; }
.home-feature__icon--green  { background: rgba(16,216,122,0.12);  color: #0FB968; }
.home-feature__icon--orange { background: rgba(242,107,43,0.12);  color: #E85D1A; }
.home-feature__icon--purple { background: rgba(124,58,237,0.12);  color: var(--hp-purple); }
.home-feature__icon--red    { background: rgba(220,38,38,0.12);   color: var(--hp-red); }

.home-feature__title {
  color: #0A1938;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.home-feature__title sup {
  font-size: 0.5em;
  color: #F26B2B;
  font-weight: 700;
}
.home-feature__body {
  color: rgba(10,25,56,0.65);
  font-size: 14px;
  line-height: 1.5;
}
.home-feature__body a { color: #F26B2B; text-decoration: none; }
.home-feature__body a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .home-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-features { padding: 56px 0; }
  .home-features__grid { grid-template-columns: 1fr; gap: 16px; }
  .home-feature { padding: 22px; }
}

/* ══════════════════════════════════════════════════════════════════
   2 ·  PILLARS                                           (dark)
   ══════════════════════════════════════════════════════════════════ */
.home-pillars {
  background: var(--hp-navy-grad);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.home-pillars__head {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 4vw, 32px);
  text-align: center;
}
.home-pillars__head .hp-title { font-size: clamp(28px, 4vw, 40px); }
.home-pillars__head .hp-sub   { max-width: 680px; margin-left: auto; margin-right: auto; }

.home-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-pillar {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.home-pillar:hover {
  transform: translateY(-2px);
  border-color: rgba(242,107,43,0.35);
  background: rgba(255,255,255,0.06);
}
.home-pillar__num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
}
.home-pillar__icon {
  width: 32px; height: 32px;
  color: #F26B2B;
  margin-bottom: 18px;
}
.home-pillar__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.home-pillar__title sup { font-size: 0.5em; color: #F26B2B; font-weight: 700; }
.home-pillar__body {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.home-pillar__body a { color: #F26B2B; text-decoration: underline; }

@media (max-width: 980px) {
  .home-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .home-pillars { padding: 80px 0; }
}
@media (max-width: 600px) {
  .home-pillars { padding: 64px 0; }
  .home-pillars__grid { grid-template-columns: 1fr; gap: 14px; }
  .home-pillar { padding: 22px; }
  .home-pillar__num { font-size: 40px; top: 16px; right: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   3 ·  COURSES                                           (light)
   ══════════════════════════════════════════════════════════════════ */
.home-courses {
  background: var(--hp-light-bg);
  padding: 88px 0;
}
.home-courses__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-courses__head .hp-title { font-size: clamp(28px, 4vw, 40px); }
.home-courses__link {
  color: #0A1938;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(10,25,56,0.15);
  padding-bottom: 2px;
  transition: color 150ms ease, border-color 150ms ease;
}
.home-courses__link:hover { color: #F26B2B; border-color: #F26B2B; }

.home-courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-course {
  background: #fff;
  border: 1px solid var(--hp-light-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.home-course:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(10,25,56,0.08);
  border-color: rgba(10,25,56,0.14);
}
.home-course__top {
  display: flex; justify-content: space-between; align-items: center;
}
.home-course__code {
  display: inline-block;
  background: rgba(242,107,43,0.10);
  color: #C54A12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.home-course__tag {
  display: inline-block;
  background: rgba(20,163,181,0.10);
  color: #0E8494;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.home-course__name {
  color: #0A1938;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.home-course__desc {
  color: rgba(10,25,56,0.65);
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: -4px 0 8px;
}
.home-course__divider {
  height: 1px;
  background: rgba(10,25,56,0.08);
  margin: 4px 0;
}
.home-course__formats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-course__format {
  display: flex; align-items: center; gap: 8px;
  color: #0A1938;
  font-size: 13px;
  font-weight: 500;
}
.home-course__format svg { color: #10D87A; flex-shrink: 0; }

.home-course__price-block {
  margin-top: auto;
  display: flex; align-items: baseline; gap: 8px;
}
.home-course__price {
  color: #0A1938;
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.home-course__price-cap {
  color: #F26B2B;
  font-size: 12px;
  font-weight: 600;
}
.home-course__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  background: #F26B2B;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: background 150ms ease, transform 150ms ease;
}
.home-course__cta:hover { background: #E85D1A; transform: translateY(-1px); }

.home-courses__foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 16px clamp(20px, 4vw, 32px) 0;
  border-top: 1px solid var(--hp-light-border);
  font-size: 13px;
  color: rgba(10,25,56,0.65);
}
.home-courses__foot a { color: #0A1938; text-decoration: none; font-weight: 600; }
.home-courses__foot a:hover { color: #F26B2B; }

@media (max-width: 980px) {
  .home-courses__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-courses { padding: 56px 0; }
  .home-courses__grid { grid-template-columns: 1fr; gap: 16px; }
  .home-course { padding: 22px; }
}

/* ══════════════════════════════════════════════════════════════════
   4 ·  JOBS                                              (dark)
   ══════════════════════════════════════════════════════════════════ */
.home-jobs {
  background: var(--hp-navy-grad);
  padding: 100px 0;
}
.home-jobs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-jobs__copy .hp-title { font-size: clamp(28px, 4vw, 40px); }
.home-jobs__copy .hp-sub   { max-width: 480px; }

.home-jobs__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.home-jobs__kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}
.home-jobs__kpi-num {
  color: #fff;
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.home-jobs__kpi-num em { font-style: normal; color: #F88649; }
.home-jobs__kpi-label {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
}

.home-jobs__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.home-jobs__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.home-jobs__btn--primary { background: #F26B2B; color: #fff; }
.home-jobs__btn--primary:hover { background: #E85D1A; transform: translateY(-1px); }
.home-jobs__btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.home-jobs__btn--ghost:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); }

.home-jobs__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
}
.home-jobs__panel-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.home-jobs__panel-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.home-jobs__panel-count {
  display: inline-block;
  background: rgba(20,163,181,0.18);
  color: #3BC0D0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.home-jobs__list { display: flex; flex-direction: column; }
.home-job {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.home-job:first-child { border-top: none; padding-top: 0; }
.home-job__title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.home-job__meta {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.home-job__meta-sep { opacity: 0.5; }
.home-job__badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.home-job__badge--feat { background: rgba(242,107,43,0.18);  color: #F88649; }
.home-job__badge--new  { background: rgba(20,163,181,0.18);  color: #3BC0D0; }
.home-job__badge--int  { background: rgba(124,58,237,0.18);  color: #B49BF2; }
.home-job__badge--hot  { background: rgba(220,38,38,0.18);   color: #F87171; }

.home-jobs__panel-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: right;
}
.home-jobs__panel-foot a {
  color: #3BC0D0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.home-jobs__panel-foot a:hover { color: #fff; }

@media (max-width: 980px) {
  .home-jobs__inner { grid-template-columns: 1fr; }
  .home-jobs { padding: 80px 0; }
}
@media (max-width: 600px) {
  .home-jobs { padding: 64px 0; }
  .home-jobs__kpis { grid-template-columns: 1fr; gap: 8px; }
  .home-jobs__kpi { padding: 14px 16px; }
  .home-jobs__panel { padding: 22px; }
  .home-jobs__btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════
   5 ·  TESTIMONIALS                                      (light)
   ══════════════════════════════════════════════════════════════════ */
.home-testimonials {
  background: var(--hp-light-bg);
  padding: 88px 0;
}
.home-testimonials__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-testimonials__head .hp-title { font-size: clamp(28px, 4vw, 40px); }

.home-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-testimonial {
  position: relative;
  background: #fff;
  border: 1px solid var(--hp-light-border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-testimonial--featured {
  grid-column: span 2;
  padding-left: 36px;
}
.home-testimonial--featured::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 28px;
  bottom: 28px;
  width: 4px;
  background: #F26B2B;
  border-radius: 2px;
}
.home-testimonial__stars {
  color: #F26B2B;
  font-size: 14px;
  letter-spacing: 1px;
}
.home-testimonial__quote {
  color: #0A1938;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
}
.home-testimonial--featured .home-testimonial__quote { font-size: 18px; }
.home-testimonial__author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(10,25,56,0.06);
}
.home-testimonial__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #F3F4F6;
  flex-shrink: 0;
}
.home-testimonial__avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.home-testimonial__name {
  color: #0A1938;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.home-testimonial__role {
  color: rgba(10,25,56,0.6);
  font-size: 13px;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .home-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .home-testimonial--featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .home-testimonials { padding: 56px 0; }
  .home-testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .home-testimonial { padding: 22px; }
  .home-testimonial--featured { grid-column: span 1; padding-left: 28px; }
  .home-testimonial--featured::before { left: 10px; }
  .home-testimonial--featured .home-testimonial__quote { font-size: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   6 ·  BLOG                                              (dark)
   ══════════════════════════════════════════════════════════════════ */
.home-blog {
  background: var(--hp-navy-grad);
  padding: 88px 0;
}
.home-blog__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  max-width: 1200px;
  margin: 0 auto 36px;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-blog__head .hp-title { font-size: clamp(28px, 4vw, 40px); }
.home-blog__link {
  color: #3BC0D0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.home-blog__link:hover { color: #fff; }

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

.home-blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}
.home-blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242,107,43,0.35);
  background: rgba(255,255,255,0.06);
}
.home-blog-card__cover {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
  transition: transform 250ms ease;
}
.home-blog-card:hover .home-blog-card__cover { transform: scale(1.03); }
.home-blog-card__cover-emoji {
  font-size: 48px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.home-blog-card__body { padding: 22px; }
.home-blog-card__cat {
  display: inline-block;
  background: rgba(20,163,181,0.18);
  color: #3BC0D0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.home-blog-card__title {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.home-blog-card__title a { color: inherit; text-decoration: none; }
.home-blog-card__title a:hover { color: #F88649; }
.home-blog-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.home-blog-card__date { color: rgba(255,255,255,0.55); }
.home-blog-card__read {
  color: #3BC0D0;
  font-weight: 600;
  text-decoration: none;
}
.home-blog-card__read:hover { color: #fff; }

@media (max-width: 980px) {
  .home-blog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .home-blog { padding: 64px 0; }
  .home-blog__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ══════════════════════════════════════════════════════════════════
   7 ·  PHOTO SPLIT                                       (light)
   ══════════════════════════════════════════════════════════════════ */
.home-photo {
  background: var(--hp-light-bg);
  padding: 88px 0;
}
.home-photo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-photo__title {
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  color: #0A1938;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.home-photo__body {
  color: rgba(10,25,56,0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 480px;
}
.home-photo__trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.home-photo__check {
  display: flex; align-items: center; gap: 10px;
  color: #0A1938;
  font-size: 14px;
  font-weight: 500;
}
.home-photo__check svg { color: #10D87A; flex-shrink: 0; }
.home-photo__cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #F26B2B;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}
.home-photo__cta:hover { background: #E85D1A; transform: translateY(-1px); }

.home-photo__media {
  position: relative;
  padding: 0 16px 16px 0;
}
.home-photo__media-frame {
  position: absolute;
  top: 16px;
  right: 0;
  bottom: 0;
  left: 16px;
  border: 2px solid #F26B2B;
  border-radius: 22px;
  pointer-events: none;
  z-index: 0;
}
.home-photo__media img,
.home-photo__media .img-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 12px 36px rgba(10,25,56,0.18);
}

@media (max-width: 980px) {
  .home-photo__inner { grid-template-columns: 1fr; }
  .home-photo__media { padding: 0 12px 12px 0; max-width: 540px; margin: 0 auto; width: 100%; }
  .home-photo__media-frame { top: 12px; left: 12px; }
}
@media (max-width: 600px) {
  .home-photo { padding: 56px 0; }
  .home-photo__cta { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════════
   8 ·  FINAL CTA                                         (dark)
   ══════════════════════════════════════════════════════════════════ */
.home-cta {
  background: var(--hp-navy-grad);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.home-cta::before {
  /* soft orange glow behind the title */
  content: "";
  position: absolute;
  top: 35%;
  left: 50%;
  width: 540px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(242,107,43,0.25) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  filter: blur(40px);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}
.home-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}
.home-cta__title {
  color: #fff;
  font-family: var(--f-display, 'Space Grotesk', system-ui, sans-serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
}
.home-cta__title .home-cta__accent {
  display: block;
  color: #F88649;
  margin-top: 6px;
}
.home-cta__sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 28px;
}
.home-cta__btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}
.home-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.home-cta__btn--primary { background: #F26B2B; color: #fff; }
.home-cta__btn--primary:hover { background: #E85D1A; transform: translateY(-1px); }
.home-cta__btn--ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.home-cta__btn--ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }

@media (max-width: 600px) {
  .home-cta { padding: 64px 0; }
  .home-cta__btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .home-feature, .home-pillar, .home-blog-card,
  .home-course, .home-jobs__btn, .home-cta__btn,
  .home-jobs__btn, .home-photo__cta {
    transition: none;
  }
  .home-blog-card__cover { transition: none; }
}
