:root {
  --ink: #10172a;
  --muted: #647084;
  --line: #e7eaf0;
  --soft: #f6f7fb;
  --white: #ffffff;
  --red: #dd1021;
  --red-dark: #ad0715;
  --blue: #172c83;
  --green: #0c8f6f;
  --shadow: 0 24px 80px rgba(16, 23, 42, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(231, 234, 240, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: #485469;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(221, 16, 33, 0.25);
}

.button.primary:hover,
.header-cta:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.light {
  color: var(--red);
  background: var(--white);
}

.section {
  padding: 96px 0;
}

.section-band {
  position: relative;
  overflow: hidden;
}

.section-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(221, 16, 33, 0.08), rgba(23, 44, 131, 0.05) 42%, rgba(12, 143, 111, 0.08)),
    radial-gradient(circle at 92% 16%, rgba(221, 16, 33, 0.16), transparent 28%);
  pointer-events: none;
}

.hero {
  min-height: calc(100vh - 74px);
  padding: 72px 0 44px;
  background: #fbfcff;
}

.home-hero {
  min-height: calc(100vh - 74px);
}

.page-hero {
  padding: 86px 0 72px;
  background: #fbfcff;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
}

.course-detail-hero {
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(221, 16, 33, 0.08), rgba(23, 44, 131, 0.05)),
    #fbfcff;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: center;
}

.course-detail-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.course-content-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.course-facts {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.course-facts h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 28px;
}

.course-facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.course-facts span,
.course-facts strong {
  display: block;
}

.course-facts span {
  margin-bottom: 5px;
  color: #a5f2d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.course-body {
  display: grid;
  gap: 28px;
}

.course-body h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2d374c;
  font-weight: 800;
}

.career-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.career-grid.compact article {
  min-height: 150px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-subtitle,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.hero-quote {
  display: grid;
  max-width: 560px;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 234, 240, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(16, 23, 42, 0.08);
}

.hero-quote p {
  margin-bottom: 0;
  color: #354056;
  font-size: 16px;
}

.hero-quote div {
  display: grid;
}

.hero-quote span {
  color: var(--muted);
  font-size: 14px;
}

.hero-panel {
  position: relative;
  min-height: 590px;
}

.course-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(221, 16, 33, 0.1), rgba(23, 44, 131, 0.08));
}

.course-card-top {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.course-card-top img {
  width: 100%;
  aspect-ratio: 267 / 373;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 34px rgba(16, 23, 42, 0.18);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--red);
  background: #fff0f2;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.course-card h2 {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 84px;
  line-height: 0.9;
}

.course-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-grid div {
  padding: 16px;
  background: #f7f8fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-grid strong {
  display: block;
  font-size: 17px;
}

.floating-note {
  position: absolute;
  right: -10px;
  bottom: 48px;
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(260px, 68%);
  padding: 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 23, 42, 0.22);
}

.home-panel .floating-note {
  position: static;
  width: 100%;
  margin-top: 14px;
}

.home-panel {
  min-height: auto;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 23, 42, 0.12);
}

.hero-photo-card img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  object-fit: cover;
}

.hero-photo-card div {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 3px;
  padding: 14px;
  color: var(--white);
  background: rgba(16, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.hero-photo-card strong,
.hero-photo-card span {
  display: block;
}

.hero-photo-card span {
  color: #dbe4ff;
  font-size: 13px;
}

.course-photo-card img {
  aspect-ratio: 16 / 7.8;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.dashboard-head img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.dashboard-head span,
.dashboard-head strong {
  display: block;
}

.dashboard-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-head strong {
  font-size: 22px;
}

.dashboard-list {
  display: grid;
  gap: 12px;
}

.dashboard-list a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: #263248;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.dashboard-list a:hover {
  border-color: rgba(221, 16, 33, 0.4);
  background: #fff7f8;
}

.dashboard-list span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.dashboard-footer {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: var(--radius);
}

.dashboard-footer strong,
.dashboard-footer span {
  overflow-wrap: anywhere;
}

.dashboard-footer span {
  color: #dbe4ff;
}

.floating-note span {
  color: #a5f2d9;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-stats {
  padding: 22px 0;
  background: var(--ink);
  color: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-row div {
  padding: 18px 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

.stat-row span {
  color: #cfd6e5;
  font-size: 14px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.feature-grid,
.career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-grid.wide {
  grid-template-columns: repeat(3, 1fr);
}

.program-grid.single {
  max-width: 380px;
}

.program-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(16, 23, 42, 0.06);
}

.program-card > img,
.program-visual {
  width: calc(100% + 48px);
  height: 150px;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}

.program-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.82), transparent 18%),
    linear-gradient(135deg, rgba(221, 16, 33, 0.86), rgba(23, 44, 131, 0.88));
}

.program-visual::before,
.program-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.program-visual::before {
  width: 96px;
  height: 96px;
  right: 22px;
  top: 20px;
}

.program-visual::after {
  width: 130px;
  height: 130px;
  left: -42px;
  bottom: -58px;
}

.program-visual.multimedia {
  background:
    linear-gradient(135deg, rgba(16, 23, 42, 0.2), rgba(16, 23, 42, 0.08)),
    url("assets/campus-students.jpg") center / cover;
}

.program-visual.early-childhood {
  background:
    linear-gradient(135deg, rgba(221, 16, 33, 0.72), rgba(23, 44, 131, 0.5)),
    url("assets/admissions-counsellor.jpg") center / cover;
}

.program-visual.hr,
.program-visual.business,
.program-visual.logistics {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.46), transparent 15%),
    linear-gradient(135deg, rgba(12, 143, 111, 0.88), rgba(23, 44, 131, 0.92));
}

.program-card span {
  width: fit-content;
  margin-bottom: 26px;
  padding: 7px 10px;
  color: var(--red);
  background: #fff0f2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-card p {
  color: var(--muted);
}

.program-card a {
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.featured-program {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-color: transparent;
}

.featured-program > img {
  opacity: 0.94;
}

.featured-program p,
.featured-program a {
  color: #dbe4ff;
}

.featured-program span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.feature-card,
.career-grid article,
.step,
.curriculum-panel,
.finance-card,
.testimonial-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.feature-card {
  min-height: 245px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(16, 23, 42, 0.06);
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--red);
  background: #fff0f2;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.feature-card p,
.step p,
.career-grid p,
.finance-card p,
.testimonial-card span,
.faq-list p {
  color: var(--muted);
}

.split-section,
.muted,
.faq-section {
  background: var(--soft);
}

.split-grid,
.curriculum-grid,
.proof-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.step {
  padding: 22px;
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 900;
}

.tab-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  background: #f2f4f8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active {
  color: var(--white);
  background: var(--red);
}

.curriculum-panel {
  min-height: 430px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  margin-bottom: 24px;
  font-size: 30px;
}

.tab-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tab-panel li {
  position: relative;
  padding: 16px 16px 16px 48px;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #2d374c;
  font-weight: 700;
}

.tab-panel li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.career-grid {
  grid-template-columns: repeat(3, 1fr);
}

.career-grid article {
  min-height: 190px;
  padding: 24px;
}

.career-grid article span {
  display: block;
  width: 48px;
  height: 6px;
  margin-bottom: 34px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  border-radius: 999px;
}

.proof-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.image-story-section {
  background: var(--white);
}

.image-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-proof-grid div {
  padding: 16px;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-proof-grid strong,
.mini-proof-grid span {
  display: block;
}

.mini-proof-grid strong {
  margin-bottom: 5px;
  color: var(--blue);
}

.mini-proof-grid span {
  color: var(--muted);
  font-size: 13px;
}

.lead-section {
  background:
    linear-gradient(120deg, rgba(221, 16, 33, 0.08), rgba(23, 44, 131, 0.05)),
    #fbfcff;
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 100px;
}

.lead-image {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 23, 42, 0.1);
}

.lead-image img {
  width: 100%;
  aspect-ratio: 16 / 9.4;
  object-fit: cover;
}

.lead-copy p {
  color: var(--muted);
  font-size: 18px;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-strip a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #2d374c;
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.content-panel {
  padding: 30px;
  color: #39445a;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 23, 42, 0.08);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.inline-photo {
  overflow: hidden;
  margin-top: 28px;
  border-radius: var(--radius);
  box-shadow: 0 18px 55px rgba(16, 23, 42, 0.12);
}

.inline-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: #128c7e;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.3);
  font-size: 14px;
  font-weight: 900;
}

.finance-card,
.testimonial-card {
  min-height: 320px;
  padding: 34px;
  box-shadow: 0 18px 55px rgba(16, 23, 42, 0.08);
}

.finance-card .button {
  margin-top: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  border-color: transparent;
}

.testimonial-card p {
  margin-bottom: 24px;
  font-size: 25px;
  line-height: 1.3;
}

.testimonial-card span {
  color: #cfd6e5;
}

.faq-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(221, 16, 33, 0.96), rgba(173, 7, 21, 0.96)),
    var(--red);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta .eyebrow {
  color: #ffd6da;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0;
  color: #cfd6e5;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-grid img {
  width: 70px;
  margin-bottom: 10px;
}

.footer-grid strong,
.footer-grid a,
.footer-grid span {
  display: block;
}

.footer-grid strong {
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .course-detail-grid,
  .course-content-grid,
  .split-grid,
  .curriculum-grid,
  .proof-grid,
  .faq-grid,
  .lead-grid,
  .image-story-grid {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .course-facts {
    position: static;
  }

  .hero-panel {
    min-height: auto;
  }

  .floating-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-grid,
  .career-grid.compact,
  .program-grid,
  .mini-proof-grid,
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding: 62px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-subtitle,
  .section-heading p {
    font-size: 16px;
  }

  .course-card-top,
  .metric-grid,
  .feature-grid,
  .feature-grid.two-col,
  .career-grid,
  .career-grid.compact,
  .program-grid,
  .steps,
  .trust-row,
  .mini-proof-grid,
  .stat-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-card div {
    position: static;
    background: var(--ink);
    border-radius: 0;
  }

  .program-card > img,
  .program-visual {
    height: 132px;
  }

  .course-card h2 {
    font-size: 66px;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
