:root {
  --paper: #fffaf8;
  --paper-soft: #fff2f5;
  --paper-muted: #f8ecef;
  --surface: #ffffff;
  --surface-strong: #fffdfc;
  --ink: #4e212d;
  --ink-soft: #6d4a56;
  --muted: #9a7681;
  --accent: #d16b86;
  --accent-strong: #be5f78;
  --deep: #4e212d;
  --deep-soft: #6a3140;
  --gold: #efb92f;
  --gold-soft: #fff1c8;
  --line: rgba(78, 33, 45, 0.1);
  --line-strong: rgba(78, 33, 45, 0.18);
  --shadow-soft: 0 22px 55px rgba(78, 33, 45, 0.08);
  --shadow-medium: 0 28px 70px rgba(78, 33, 45, 0.12);
  --shadow-deep: 0 32px 90px rgba(45, 16, 28, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4,
.nav-links,
.price-row strong,
.section-heading h2,
.module-card button,
.faq-item button {
  font-family: "Inter", Arial, sans-serif;
}

.page-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(209, 107, 134, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(78, 33, 45, 0.04);
}

.offer-strip {
  background: var(--accent);
  color: var(--surface);
  text-align: center;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

.nav {
  width: min(1220px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0;
}

.brand img {
  width: clamp(205px, 16vw, 248px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(78, 33, 45, 0.12));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
  transition:
    opacity 180ms ease,
    color 180ms ease;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--accent-strong);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(209, 107, 134, 0.18);
  border-radius: 14px;
  background: var(--surface);
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.nav-cta,
.primary-btn {
  background: var(--accent);
  color: var(--surface);
  box-shadow: 0 18px 36px rgba(209, 107, 134, 0.26);
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(209, 107, 134, 0.34);
}

.secondary-btn {
  border: 1px solid rgba(209, 107, 134, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(78, 33, 45, 0.06);
}

.secondary-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 107, 134, 0.4);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 86px;
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(239, 185, 47, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 8%,
      rgba(209, 107, 134, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #3f1823 0%, #4e212d 42%, #612b3a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -140px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(239, 185, 47, 0.14),
    transparent 70%
  );
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: start;
}

.hero-copy {
  max-width: 780px;
  padding-top: 4px;
}

.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.eyebrow-row span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--surface);
  font-size: clamp(20px, 2vw, 40px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-trust-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-trust-row strong {
  color: var(--gold);
  font-size: 16px;
  line-height: 1.2;
}

.hero-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1px;
}

.hero-rating-stars span {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font: inherit;
  line-height: inherit;
}

.hero-rating-stars i {
  position: relative;
  display: inline-block;
  width: 1em;
  color: transparent;
  font-style: normal;
}

.hero-rating-stars i::before {
  content: attr(data-star);
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 2;
  width: 50%;
  overflow: hidden;
  color: var(--gold);
}

.hero-rating-stars i::after {
  content: attr(data-star);
  color: rgba(255, 255, 255, 0.38);
}

.hero-rating-count {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-meta-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 20px;
}

.hero-meta-list article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 84px;
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-meta-list span {
  display: block;
  margin-bottom: 7px;
  color: rgba(239, 185, 47, 0.92);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta-list strong {
  display: block;
  color: var(--surface);
  font-size: 14px;
  line-height: 1.5;
}

.hero-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.hero-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(239, 185, 47, 0.14);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero .secondary-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--surface);
  box-shadow: none;
}

.hero .secondary-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.stats-grid div {
  padding: 22px 20px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.stats-grid strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.enroll-card {
  position: sticky;
  top: 114px;
  padding: 22px;
  border: 1px solid rgba(239, 185, 47, 0.18);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.99),
    rgba(255, 244, 247, 0.99)
  );
  box-shadow: 0 34px 80px rgba(17, 7, 11, 0.34);
}

.card-spotlight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.card-spotlight span {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-spotlight strong {
  font-size: 17px;
  line-height: 1.3;
}

.course-poster {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(78, 33, 45, 0.12);
  background: #050812;
  box-shadow: none;
}

.price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.price-row strong {
  font-size: 36px;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
  text-decoration: line-through;
}

.price-row b {
  margin-left: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(239, 185, 47, 0.14);
  color: #b97700;
  font-size: 12px;
  font-weight: 800;
}

.validity {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.card-summary {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.card-summary div {
  padding: 14px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.card-summary span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.card-summary strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.card-checks {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.card-checks li {
  position: relative;
  margin: 12px 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.card-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(239, 185, 47, 0.14);
}

.hiring-strip {
  padding: 18px 0 12px;
}

.hiring-strip-inner {
  display: grid;
  gap: 18px;
}

.hiring-strip-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.logo-row img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  padding: 16px 18px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(78, 33, 45, 0.04);
  filter: grayscale(1) saturate(0) opacity(0.82);
}

.section {
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.center h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-heading p {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading h2 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(25px, 2vw, 45px);
  line-height: 1.04;
}

.inverse h2 {
  color: var(--surface);
}

.inverse p {
  color: var(--gold);
}

.details-grid,
.difference-grid,
.value-grid,
.build-grid,
.bonus-grid,
.career-grid,
.tool-grid,
.outcome-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.details-grid article,
.difference-grid article,
.learn-feature,
.build-grid article,
.bonus-grid article,
.outcome-grid article,
.testimonial-grid article {
  padding: 26px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.details-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.details-grid strong {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}

.value-section {
  background: linear-gradient(180deg, #fffaf8 0%, #fffdfc 100%);
}

.value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.value-layout .section-heading {
  margin-bottom: 0;
}

.value-quickfacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-quickfacts article {
  padding: 22px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.value-quickfacts span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-quickfacts strong {
  display: block;
  font-size: 16px;
  line-height: 1.5;
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-grid article {
  position: relative;
  padding-top: 78px;
}

.value-grid article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.value-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(209, 107, 134, 0.08);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.value-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.career-grid article {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.055)
    ),
    rgba(255, 255, 255, 0.04);
  color: var(--surface);
  box-shadow: 0 30px 70px rgba(13, 4, 9, 0.28);
}

.career-grid article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.career-grid article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 82px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 185, 47, 0.55));
}

.career-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(239, 185, 47, 0.25);
  border-radius: 999px;
  background: rgba(239, 185, 47, 0.12);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.career-grid strong {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--surface);
  font-size: 22px;
  line-height: 1.2;
}

.career-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
}

.difference-section {
  padding-top: 74px;
}

.difference-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: end;
  margin-bottom: 24px;
}

.difference-intro .section-heading {
  margin-bottom: 0;
}

.section-copy {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.7;
}

.difference-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.difference-grid article {
  position: relative;
  padding-top: 78px;
}

.difference-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.difference-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(209, 107, 134, 0.08);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.difference-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.difference-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.learn-section {
  background: linear-gradient(180deg, #fff8fa 0%, #fffdfc 100%);
}

.learn-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 360px;
  gap: 24px;
  align-items: start;
}

.learn-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.learn-feature h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}

.learn-feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.learn-topic-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.learn-topic-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.learn-topic-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.learn-rail {
  padding: 30px;
  border-radius: 26px;
  background: linear-gradient(180deg, #4e212d 0%, #622e3c 100%);
  color: var(--surface);
  box-shadow: var(--shadow-deep);
}

.learn-rail small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.learn-rail h3 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.12;
}

.track-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.track-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.track-list li + li {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.track-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(239, 185, 47, 0.12);
}

.projects-section {
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(239, 185, 47, 0.14),
      transparent 22%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(209, 107, 134, 0.18),
      transparent 24%
    ),
    linear-gradient(180deg, #4e212d 0%, #3f1823 100%);
}

.projects-section .page-shell {
  width: min(1420px, calc(100% - 40px));
}

.projects-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: none;
}

.projects-heading > span {
  max-width: 400px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.project-summary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: -4px 0 22px;
}

.project-summary-row article {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(18, 4, 10, 0.16);
}

.project-summary-row article::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.project-summary-row strong {
  display: block;
  color: var(--surface);
  font-size: 20px;
  line-height: 1.2;
}

.project-summary-row span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(252px, 1fr));
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.26) transparent;
}

.project-grid::-webkit-scrollbar {
  height: 8px;
}

.project-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.project-card {
  --project-accent: var(--accent-strong);
  --project-fact-bg: #fff8fa;
  --project-chip-bg: rgba(209, 107, 134, 0.08);
  --project-chip-border: rgba(209, 107, 134, 0.22);
  display: flex;
  position: relative;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(26, 8, 16, 0.24);
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--project-accent), transparent 82%);
  z-index: 3;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 185, 47, 0.5);
  box-shadow: 0 34px 82px rgba(20, 6, 13, 0.34);
}

.project-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #291118;
}

.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 36%,
      rgba(0, 0, 0, 0.14) 66%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 55%);
}

.project-media::after {
  content: "LIVE BUILD";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--project-accent);
  color: var(--surface);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.project-card:hover .project-media img {
  transform: scale(1.04);
}

.project-media span {
  position: absolute;
  left: 18px;
  bottom: -4px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.88);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
}

.project-content {
  display: grid;
  flex: 1;
  grid-template-rows: auto minmax(64px, auto) minmax(82px, auto) 1fr minmax(
      78px,
      auto
    );
  padding: 22px;
}

.project-card small {
  color: var(--project-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-card h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.project-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.project-facts {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.project-facts div {
  padding: 14px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 16px;
  background: var(--project-fact-bg);
}

.project-facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-facts strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

.project-points {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(78, 33, 45, 0.09);
}

.project-points li {
  position: relative;
  padding-left: 15px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: end;
  gap: 8px;
  min-height: 76px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(78, 33, 45, 0.09);
}

.tag-row span {
  white-space: nowrap;
  padding: 7px 11px;
  border: 1px solid var(--project-chip-border);
  border-radius: 999px;
  background: var(--project-chip-bg);
  color: var(--project-accent);
  font-size: 12px;
  font-weight: 700;
}

.project-card-payment {
  --project-accent: #315eff;
  --project-fact-bg: #f4f7ff;
  --project-chip-bg: rgba(49, 94, 255, 0.08);
  --project-chip-border: rgba(49, 94, 255, 0.22);
}

.project-card-ai {
  --project-accent: #b85e27;
  --project-fact-bg: #fff6ee;
  --project-chip-bg: rgba(184, 94, 39, 0.08);
  --project-chip-border: rgba(184, 94, 39, 0.24);
}

.project-card-messaging {
  --project-accent: #1aa54a;
  --project-fact-bg: #f1fff6;
  --project-chip-bg: rgba(26, 165, 74, 0.08);
  --project-chip-border: rgba(26, 165, 74, 0.22);
}

.project-card-ticketing {
  --project-accent: #c43d5e;
  --project-fact-bg: #fff3f6;
  --project-chip-bg: rgba(196, 61, 94, 0.08);
  --project-chip-border: rgba(196, 61, 94, 0.22);
}

.project-card-storage {
  --project-accent: #1a73e8;
  --project-fact-bg: #f2f8ff;
  --project-chip-bg: rgba(26, 115, 232, 0.08);
  --project-chip-border: rgba(26, 115, 232, 0.22);
}

.build-section {
  background: var(--surface);
}

.build-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.build-grid article {
  position: relative;
  padding-top: 78px;
}

.build-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.build-grid strong,
.bonus-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.build-grid span,
.bonus-grid span {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.curriculum-section {
  background: linear-gradient(180deg, #fff7f9 0%, #fffdfc 100%);
}

.curriculum-journey {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: -6px 0 28px;
}

.curriculum-journey article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.curriculum-journey article::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.curriculum-journey span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.curriculum-journey strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.curriculum-journey p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
}

.curriculum-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.module-list {
  display: grid;
  gap: 14px;
}

.module-card,
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.module-card.open {
  border-color: rgba(209, 107, 134, 0.26);
  box-shadow: var(--shadow-medium);
}

.module-card-bonus {
  margin-top: 12px;
  border-color: rgba(239, 185, 47, 0.28);
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
}

.module-card-bonus button span {
  background: rgba(239, 185, 47, 0.16);
  color: #9a6500;
}

.module-card button,
.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
}

.module-card button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
}

.module-card button span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(209, 107, 134, 0.1);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.module-card button::after,
.faq-item button::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(78, 33, 45, 0.14);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.module-card.open button::after,
.faq-item.open button::after {
  content: "-";
}

.module-body,
.faq-item p {
  display: none;
  padding: 0 24px 24px;
}

.module-card.open .module-body,
.faq-item.open p {
  display: block;
}

.module-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}

.module-topics {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(78, 33, 45, 0.08);
}

.module-topics li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.module-topics li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.skills-panel {
  position: sticky;
  top: 114px;
  padding: 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, #4e212d 0%, #632c3b 100%);
  color: var(--surface);
  box-shadow: var(--shadow-deep);
}

.skills-panel h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.15;
}

.skills-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.skills-metrics {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.skills-metrics article {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.skills-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.skills-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-cloud span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.bonus-section,
.tools-section,
.certificate-section {
  background: var(--surface);
}

.career-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #3e1722 0%, #4e212d 48%, #2a0f18 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto;
}

.career-section .section-heading p {
  color: var(--gold);
}

.career-section .section-heading h2 {
  color: var(--surface);
}

.bonus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.career-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tool-grid img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  padding: 22px;
  border: 1px solid rgba(78, 33, 45, 0.08);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.outcomes-section {
  padding-top: 30px;
}

.outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.outcome-grid article {
  position: relative;
  padding-top: 78px;
}

.outcome-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 0;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.outcome-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.outcome-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.55;
}

.certificate-grid,
.mentor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 54px;
  align-items: center;
}

.certificate-grid p,
.mentor-grid p {
  margin: 0 0 26px;
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
}

.certificate-grid img,
.mentor-grid > img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-medium);
}

.mentor-section {
  background: linear-gradient(180deg, #fff8fa 0%, #fffdfc 100%);
}

.mentor-grid {
  grid-template-columns: 360px minmax(0, 1fr);
}

.mentor-grid > img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mentor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mentor-points span {
  padding: 9px 14px;
  border: 1px solid rgba(209, 107, 134, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #2a0f18 0%, #4e212d 46%, #6a3140 100%);
  background-size:
    44px 44px,
    44px 44px,
    auto;
  color: var(--surface);
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(239, 185, 47, 0.72),
    transparent
  );
}

.testimonials-section .section-heading p {
  color: var(--gold);
}

.testimonials-section .section-heading h2 {
  max-width: 780px;
  color: var(--surface);
}

.testimonials-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.testimonials-top .section-heading {
  align-self: end;
  margin-bottom: 0;
}

.testimonial-score-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.06)
    ),
    rgba(255, 255, 255, 0.08);
  color: var(--surface);
  box-shadow:
    0 32px 86px rgba(14, 4, 9, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.testimonial-score-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 92px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.testimonial-score-card > span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-score-card > strong {
  display: block;
  max-width: 330px;
  font-size: 21px;
  line-height: 1.35;
}

.testimonial-score-metrics {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-score-metrics article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-score-card b {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.testimonial-score-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
  min-height: 560px;
  padding: 36px 30px 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 185, 47, 0.16), transparent 24%),
    radial-gradient(circle at 62% 82%, rgba(209, 107, 134, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 82px rgba(14, 4, 9, 0.26);
}

.testimonial-video-copy h3 {
  margin: 14px 0 10px;
  color: var(--surface);
  font-size: 38px;
  line-height: 1.16;
  font-weight: 900;
}

.testimonial-video-copy p {
  max-width: 670px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
}

.testimonial-video-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin: 24px 0;
}

.testimonial-video-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.testimonial-video-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 12px;
  margin: 0 0 24px;
}

.testimonial-video-proof article {
  padding: 16px;
  border: 1px solid rgba(239, 185, 47, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
}

.testimonial-video-proof strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.testimonial-video-proof span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.testimonial-video-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(239, 185, 47, 0.34);
  border-radius: 999px;
  background: rgba(239, 185, 47, 0.12);
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.testimonial-video-frame {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: #050812;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.34);
}

.testimonial-video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-grid article {
  position: relative;
  display: flex;
  min-height: 330px;
  overflow: hidden;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: linear-gradient(180deg, #fffdfc 0%, #fff7fa 100%);
  box-shadow: 0 34px 84px rgba(16, 5, 10, 0.25);
  isolation: isolate;
}

.testimonial-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 1;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

.testimonial-grid article::after {
  content: '"';
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(209, 107, 134, 0.13);
  font-size: 76px;
  line-height: 1;
  font-weight: 900;
}

.testimonial-chip {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: max-content;
  margin-bottom: 16px;
  padding: 8px 11px;
  border: 1px solid rgba(209, 107, 134, 0.2);
  border-radius: 999px;
  background: rgba(239, 185, 47, 0.12);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.testimonial-grid p {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #6b4652;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
}

.testimonial-feature {
  background: linear-gradient(135deg, #ffffff 0%, #fff7fa 55%, #fff1c8 150%);
  border-color: rgba(239, 185, 47, 0.18);
}

.testimonial-feature p {
  max-width: 780px;
  font-size: 21px;
  line-height: 1.7;
}

.testimonial-rating {
  position: relative;
  z-index: 2;
  width: 112px;
  height: auto;
  margin-bottom: 18px;
}

.testimonial-person {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(78, 33, 45, 0.09);
}

.testimonial-person img {
  width: 46px;
  height: 46px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  object-fit: cover;
  background: var(--gold-soft);
  box-shadow: 0 12px 24px rgba(78, 33, 45, 0.12);
}

.testimonial-person strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.testimonial-person span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-section {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(239, 185, 47, 0.14),
      transparent 22%
    ),
    linear-gradient(180deg, #4e212d 0%, #3f1823 100%);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.faq-item button {
  color: var(--surface);
  font-size: 16px;
  font-weight: 700;
}

.faq-item button::after {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--surface);
}

.faq-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.footer {
  background:
    radial-gradient(circle at 8% 8%, rgba(239, 185, 47, 0.12), transparent 24%),
    linear-gradient(180deg, #4e212d 0%, #38111b 100%);
  color: var(--surface);
}

.footer-contact {
  padding: 78px 0 34px;
}

.footer-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(239, 185, 47, 0.16),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-deep);
}

.footer-cta-panel p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-cta-panel h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.65fr));
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand-block img {
  width: 280px;
  height: auto;
  margin: 0 0 18px;
}

.footer-brand-block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.footer-link-group h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-link-group a,
.footer-link-group button {
  display: block;
  width: fit-content;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-bottom > div span:first-child {
  color: rgba(255, 255, 255, 0.94);
}

.footer-bottom > span {
  text-align: right;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mobile-footer-cta {
  display: none;
}

.footer-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.6);
}

.footer-modal.open {
  display: flex;
}

.footer-modal-panel {
  position: relative;
  width: min(680px, 100%);
  max-height: min(680px, 90vh);
  overflow: auto;
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-medium);
}

.footer-modal-panel h2 {
  margin: 0 0 12px;
}

.footer-modal-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.footer-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f2edf0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --theme-bg: #070b13;
  --theme-panel: #101827;
  --theme-panel-soft: #151f32;
  --theme-card: rgba(255, 255, 255, 0.07);
  --theme-border: rgba(255, 255, 255, 0.13);
  --theme-text: #f7fafc;
  --theme-muted: rgba(226, 232, 240, 0.76);
  --theme-dim: rgba(148, 163, 184, 0.86);
  --theme-gold: #f2c94c;
}

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

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 11, 19, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .offer-strip {
  background: linear-gradient(90deg, #5a2030 0%, #d16b86 48%, #b97700 100%);
  color: #fffaf8;
}

html[data-theme="dark"] .brand {
  background: transparent;
}

html[data-theme="dark"] .brand img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.34));
}

html[data-theme="dark"] .nav-links {
  color: var(--theme-text);
}

html[data-theme="dark"] .nav-links a:hover {
  color: var(--theme-gold);
}

html[data-theme="dark"] .nav-links.open {
  border-color: var(--theme-border);
  background: rgba(7, 11, 19, 0.98);
}

html[data-theme="dark"] .nav-toggle {
  border-color: var(--theme-border);
  background: var(--theme-panel);
}

html[data-theme="dark"] .nav-toggle span {
  background: var(--theme-text);
}

html[data-theme="dark"] .primary-btn,
html[data-theme="dark"] .nav-cta {
  background: linear-gradient(135deg, #d16b86 0%, #efb92f 120%);
  color: #fffaf8;
  box-shadow: 0 22px 46px rgba(209, 107, 134, 0.24);
}

html[data-theme="dark"] .secondary-btn {
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--theme-text);
  box-shadow: none;
}

html[data-theme="dark"] .hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 10% 16%, rgba(239, 185, 47, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(209, 107, 134, 0.18), transparent 26%),
    linear-gradient(135deg, #050812 0%, #101827 48%, #371521 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto,
    auto,
    auto;
}

html[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(239, 185, 47, 0.13), transparent 70%);
}

html[data-theme="dark"] .hero-trust-row > span,
html[data-theme="dark"] .hero-meta-list article {
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.075);
}

html[data-theme="dark"] .enroll-card {
  border-color: rgba(239, 185, 47, 0.24);
  background:
    linear-gradient(180deg, rgba(16, 24, 39, 0.96), rgba(42, 15, 24, 0.96)),
    var(--theme-panel);
  color: var(--theme-text);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

html[data-theme="dark"] .course-poster,
html[data-theme="dark"] .certificate-grid img,
html[data-theme="dark"] .mentor-grid > img {
  border-color: var(--theme-border);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .course-poster {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

html[data-theme="dark"] .price-row span,
html[data-theme="dark"] .validity,
html[data-theme="dark"] .card-checks li {
  color: var(--theme-muted);
}

html[data-theme="dark"] .price-row b {
  background: rgba(239, 185, 47, 0.16);
  color: var(--theme-gold);
}

html[data-theme="dark"] .card-summary div {
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .learn-section,
html[data-theme="dark"] .curriculum-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, #070b13 0%, #0d1424 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto;
}

html[data-theme="dark"] .section-heading h2,
html[data-theme="dark"] .learn-feature h3,
html[data-theme="dark"] .curriculum-journey strong,
html[data-theme="dark"] .module-card button,
html[data-theme="dark"] .project-card h3,
html[data-theme="dark"] .project-facts strong,
html[data-theme="dark"] .testimonial-person strong {
  color: var(--theme-text);
}

html[data-theme="dark"] .section-heading p,
html[data-theme="dark"] .curriculum-journey span,
html[data-theme="dark"] .module-card button span,
html[data-theme="dark"] .card-summary span {
  color: var(--theme-gold);
}

html[data-theme="dark"] .learn-feature,
html[data-theme="dark"] .curriculum-journey article,
html[data-theme="dark"] .module-card,
html[data-theme="dark"] .testimonial-grid article {
  border-color: var(--theme-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    var(--theme-card);
  color: var(--theme-text);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .learn-topic-list li,
html[data-theme="dark"] .curriculum-journey p,
html[data-theme="dark"] .module-body p,
html[data-theme="dark"] .module-topics li,
html[data-theme="dark"] .project-card p,
html[data-theme="dark"] .project-points li,
html[data-theme="dark"] .testimonial-grid p,
html[data-theme="dark"] .certificate-grid p,
html[data-theme="dark"] .mentor-grid p {
  color: var(--theme-muted);
}

html[data-theme="dark"] .learn-rail,
html[data-theme="dark"] .skills-panel,
html[data-theme="dark"] .testimonial-score-card {
  border: 1px solid var(--theme-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, #101827 0%, #3b1723 100%);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .module-card.open {
  border-color: rgba(239, 185, 47, 0.28);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.36);
}

html[data-theme="dark"] .module-card-bonus {
  border-color: rgba(239, 185, 47, 0.32);
  background:
    linear-gradient(180deg, rgba(239, 185, 47, 0.11), rgba(255, 255, 255, 0.045)),
    var(--theme-card);
}

html[data-theme="dark"] .module-card button span {
  background: rgba(239, 185, 47, 0.11);
}

html[data-theme="dark"] .module-card button::after {
  border-color: var(--theme-border);
  color: var(--theme-text);
}

html[data-theme="dark"] .module-topics,
html[data-theme="dark"] .project-points,
html[data-theme="dark"] .tag-row,
html[data-theme="dark"] .testimonial-person {
  border-color: rgba(255, 255, 255, 0.1);
}

html[data-theme="dark"] .projects-section,
html[data-theme="dark"] .career-section,
html[data-theme="dark"] .testimonials-section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .footer {
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #050812 0%, #101827 48%, #3b1723 100%);
  background-size:
    46px 46px,
    46px 46px,
    auto;
}

html[data-theme="dark"] .project-summary-row article,
html[data-theme="dark"] .career-grid article,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .footer-cta-panel {
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .project-card {
  --project-fact-bg: rgba(255, 255, 255, 0.055);
  --project-chip-bg: rgba(255, 255, 255, 0.07);
  --project-chip-border: rgba(255, 255, 255, 0.14);
  border-color: var(--theme-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #0d1424;
  color: var(--theme-text);
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .project-facts div {
  border-color: var(--theme-border);
  background: var(--project-fact-bg);
}

html[data-theme="dark"] .project-facts span,
html[data-theme="dark"] .testimonial-person span {
  color: var(--theme-dim);
}

html[data-theme="dark"] .tag-row span,
html[data-theme="dark"] .testimonial-chip,
html[data-theme="dark"] .mentor-points span {
  border-color: rgba(239, 185, 47, 0.18);
  background: rgba(239, 185, 47, 0.09);
  color: var(--theme-gold);
}

html[data-theme="dark"] .tool-grid img {
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .testimonial-feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)),
    #0f1727;
}

html[data-theme="dark"] .footer-modal-panel {
  border: 1px solid var(--theme-border);
  background: var(--theme-panel);
  color: var(--theme-text);
}

html[data-theme="dark"] .footer-modal-panel p {
  color: var(--theme-muted);
}

html[data-theme="dark"] .footer-modal-close {
  background: rgba(255, 255, 255, 0.09);
  color: var(--theme-text);
}

@media (max-width: 1180px) {
  .hero {
    padding: 64px 0 74px;
  }

  .hero-grid,
  .curriculum-layout,
  .certificate-grid,
  .mentor-grid,
  .learn-layout,
  .difference-intro,
  .value-layout {
    grid-template-columns: 1fr;
  }

  .enroll-card,
  .skills-panel {
    position: static;
  }

  .details-grid,
  .difference-grid,
  .value-grid,
  .build-grid,
  .bonus-grid,
  .career-grid,
  .tool-grid,
  .outcome-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-summary-row,
  .curriculum-journey,
  .value-quickfacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .projects-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-feature {
    grid-column: auto;
  }

  .testimonials-top {
    grid-template-columns: 1fr;
  }

  .testimonial-video-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .testimonial-video-frame {
    width: min(100%, 340px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .nav,
  .projects-section .page-shell {
    width: min(100% - 24px, 1420px);
  }

  .nav {
    min-height: 74px;
  }

  .brand img {
    width: 198px;
    max-height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(209, 107, 134, 0.16);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .nav-links .nav-cta {
    margin-top: 8px;
    color: var(--surface);
  }

  .hero {
    padding: 50px 0 58px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-trust-row > span {
    width: calc(50% - 6px);
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .details-grid,
  .difference-grid,
  .value-grid,
  .value-quickfacts,
  .learn-overview,
  .build-grid,
  .project-summary-row,
  .curriculum-journey,
  .bonus-grid,
  .career-grid,
  .tool-grid,
  .outcome-grid,
  .testimonial-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .hero-meta-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-top {
    grid-template-columns: 1fr;
  }

  .project-card h3 {
    min-height: 0;
    font-size: 24px;
  }

  .project-card p {
    min-height: 0;
  }

  .module-card button {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .module-card button::after,
  .faq-item button::after {
    justify-self: start;
  }

  .footer-cta-panel,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom > span {
    text-align: left;
  }

  .footer-contact {
    padding-bottom: 100px;
  }

  .mobile-footer-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(78, 33, 45, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 -18px 36px rgba(0, 0, 0, 0.26);
  }

  .mobile-footer-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-footer-cta span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-footer-cta .primary-btn {
    min-height: 42px;
    padding: 0 14px;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-meta-list {
    grid-template-columns: 1fr;
  }

  .hero-trust-row > span {
    width: 100%;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-score-metrics {
    grid-template-columns: 1fr;
  }

  .testimonial-score-card,
  .testimonial-video-card,
  .testimonial-grid article {
    padding: 24px;
  }

  .testimonial-video-copy h3 {
    font-size: 25px;
  }

  .testimonial-video-proof {
    grid-template-columns: 1fr;
  }

  .testimonial-feature p {
    font-size: 18px;
  }

  .project-media span {
    font-size: 54px;
  }
}
