:root {
  color-scheme: light;
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-2: #f7f4ef;
  --ink: #1f1a17;
  --muted: #6b625c;
  --line: #eadfd7;
  --red: #c62828;
  --red-dark: #9f1f1f;
  --amber: #e0781b;
  --teal: #117a7a;
  --blue: #1f5d8f;
  --shadow: 0 18px 50px rgba(54, 35, 24, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 247, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 223, 215, .8);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 196px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
}
.mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--red), var(--amber));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.brand strong { display: block; line-height: 1.1; }
.brand > span:not(.mark) { color: var(--muted); font-size: 13px; }
.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navlinks a {
  padding: 10px 13px;
  border-radius: 10px;
  color: #3d332e;
  font-weight: 650;
  font-size: 14px;
}
.navlinks a:hover { background: var(--surface-2); }
.nav-cta {
  background: var(--red);
  color: #fff !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.container {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  padding: 56px 0 70px;
}
.sub-hero {
  min-height: auto;
  padding: 48px 0 22px;
  align-items: start;
}
.sub-hero .section-head {
  margin-bottom: 0;
}
.contact-hero {
  padding-bottom: 14px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 52px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3ed;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 18px 0;
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 720px;
}
.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-weight: 800;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.btn.primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.btn.dark {
  background: #241d19;
  border-color: #241d19;
  color: #fff;
}
.btn:hover { transform: translateY(-1px); }
.hero-photo {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #ece4dc;
  box-shadow: var(--shadow);
  min-height: 520px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.proof {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.proof strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}
.proof span { color: var(--muted); font-size: 13px; }

section { padding: 84px 0; }
.contact-options {
  padding-top: 24px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-kicker {
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 850;
  margin-bottom: 10px;
}
h2 {
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
  margin-bottom: 16px;
}
h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.muted { color: var(--muted); }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.card.featured {
  background: linear-gradient(135deg, #fff, #fff4ec);
  border-color: #edc8b4;
}
.path-card {
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pill {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.band {
  background: #241d19;
  color: #fff;
}
.band .muted { color: #d5c9c1; }
.band .card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}
.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.band .list li {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.16);
}
.note-card {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff3ec;
}
.note-card h3 { margin-top: 0; }
.center-note {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}
.step {
  position: relative;
  padding: 20px 20px 20px 66px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 20px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 36px;
  align-items: start;
}
.cta-panel {
  background: linear-gradient(135deg, #c62828, #e0781b);
  color: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.cta-panel .muted { color: #fff2ec; }
form {
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 6px;
  color: #443832;
  font-weight: 750;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 132px; resize: vertical; }
.channel-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.form-result {
  display: none;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: #fff;
}
.form-result.is-visible { display: block; }
footer {
  padding: 48px 0;
  background: #17120f;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
}
footer a, footer .muted { color: #cdbfb6; }
footer a:hover { color: #fff; }
.small { font-size: 13px; }

.hip-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(224, 120, 27, .32), transparent 28%),
    linear-gradient(135deg, #1a1a2e 0%, #16213e 48%, #0f3460 100%);
  padding: 70px 0;
}
.hip-pattern {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hip-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 48px;
  align-items: center;
}
.hip-badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .18);
  color: #dcfce7;
  font-weight: 800;
  margin-bottom: 18px;
}
.hip-copy h1 {
  max-width: 760px;
  font-size: clamp(39px, 6vw, 72px);
  color: #fff;
}
.hip-copy h1 span {
  color: #facc15;
}
.hip-lead {
  max-width: 740px;
  color: rgba(255,255,255,.82);
  font-size: clamp(19px, 2.2vw, 24px);
}
.hip-highlight {
  color: #fde68a;
  font-size: 18px;
  font-weight: 750;
}
.hip-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hip-primary {
  background: linear-gradient(135deg, var(--red), var(--amber)) !important;
  border-color: transparent !important;
}
.hip-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.hip-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}
.hip-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  background: rgba(255,255,255,.08);
}
.hip-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hip-status {
  padding: 22px 0;
  background: linear-gradient(135deg, var(--red), var(--amber));
  color: #fff;
}
.hip-status-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.hip-status p { margin: 4px 0 0; color: rgba(255,255,255,.85); }
.hip-instructor {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}
.hip-instructor img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top center;
}
.hip-features .card {
  text-align: center;
  background: linear-gradient(180deg, #fff, #fff8f2);
}
.soft-band {
  background: var(--surface-2);
}
.curriculum-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.curriculum-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}
.curriculum-item span {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #fff0ec;
  color: var(--red);
  font-weight: 900;
}
.curriculum-item h3 { margin-bottom: 4px; }
.curriculum-item p { margin-bottom: 0; }
.stars {
  color: #f59e0b;
  font-size: 24px;
  letter-spacing: 0;
}
.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hip-price {
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  color: #fff;
}
.hip-price .section-kicker { color: #facc15; }
.price-card {
  max-width: 560px;
  margin: 0 auto 22px;
  padding: 30px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(198,40,40,.34), rgba(224,120,27,.28));
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.price-card > strong {
  display: block;
  margin: 8px 0 6px;
  color: #facc15;
  font-size: 44px;
  line-height: 1.05;
}
.price-card > strong span {
  color: rgba(255,255,255,.68);
  font-size: 18px;
}
.price-card .pill {
  background: var(--red);
  color: #fff;
}
.price-card .list {
  margin: 22px 0;
}
.price-card .list li {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
  color: #fff;
}
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}
.faq-list p {
  margin: 12px 0 0;
}
.hip-trust {
  background: #ecfdf3;
}
.hip-trust .muted {
  color: #35634c;
}
.hip-final {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--amber));
}
.hip-final p {
  color: rgba(255,255,255,.86);
}
.sticky-enroll {
  display: none;
}

@media (max-width: 900px) {
  .nav { align-items: flex-start; flex-direction: column; gap: 0; padding-top: 12px; padding-bottom: 12px; }
  .nav-head { width: 100%; min-width: 0; }
  .brand { min-width: 0; }
  .menu-toggle { display: inline-flex; flex: 0 0 auto; }
  .navlinks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-top: 0;
    visibility: hidden;
    transition: max-height .24s ease, opacity .18s ease, padding-top .18s ease, visibility .18s ease;
  }
  .navlinks[data-open="true"] {
    max-height: 320px;
    opacity: 1;
    padding-top: 12px;
    visibility: visible;
  }
  .navlinks a { border: 1px solid var(--line); background: var(--surface); }
  .navlinks a.nav-cta {
    background: var(--red);
    border-color: var(--red);
    color: #fff !important;
  }
  .navlinks a.nav-cta:hover,
  .navlinks a.nav-cta:focus-visible {
    background: var(--red-dark) !important;
    border-color: var(--red-dark);
  }
  .hero { min-height: auto; padding-top: 30px; }
  .sub-hero { padding: 26px 0 12px; }
  .contact-hero { padding: 22px 0 8px; }
  .contact-hero h1 { margin-bottom: 10px; }
  .contact-hero .lead { margin-bottom: 0; }
  .contact-options { padding-top: 12px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-photo {
    order: 1;
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
  .hero-photo img { min-height: 320px; }
  .hero-copy { order: 2; }
  .proof-strip,
  .grid-3,
  .grid-4,
  .grid-2,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hip-hero { min-height: auto; padding: 44px 0 50px; }
  .hip-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hip-visual { order: -1; }
  .hip-status-inner { align-items: stretch; flex-direction: column; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .navlinks { grid-template-columns: 1fr; }
  .brand > span:not(.mark) { display: none; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  section { padding: 58px 0; }
  .sub-hero { padding: 24px 0 10px; }
  .contact-hero { padding: 20px 0 6px; }
  .contact-options { padding-top: 8px; }
  .hero { padding-top: 18px; }
  .hero-grid { gap: 20px; }
  .hero-photo {
    min-height: 260px;
    border-radius: 18px;
  }
  .hero-photo img { min-height: 260px; }
  .hero-actions .btn, .actions .btn { width: 100%; }
  .channel-buttons { grid-template-columns: 1fr; }
  .proof { padding: 14px; }
  .hip-copy h1 { font-size: 40px; }
  .hip-actions .btn,
  .center-actions .btn,
  .hip-status .btn,
  .price-card .btn { width: 100%; }
  .hip-proof { gap: 10px; }
  .hip-proof span { width: 100%; }
  .curriculum-item { grid-template-columns: 42px 1fr; padding: 14px; }
  .price-card { padding: 22px; }
  .price-card > strong { font-size: 36px; }
  .sticky-enroll {
    position: sticky;
    bottom: 0;
    z-index: 30;
    display: block;
    padding: 10px 14px;
    background: rgba(255, 250, 247, .94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .sticky-enroll a {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--red), var(--amber));
    color: #fff;
    font-weight: 900;
    text-align: center;
  }
}
