:root {
  --bg: #f4f7f8;
  --surface: #ffffff;
  --surface-soft: #eef6f5;
  --ink: #14212b;
  --muted: #5d6d78;
  --line: #d9e4e6;
  --brand: #0f766e;
  --brand-dark: #115e59;
  --accent: #d9468f;
  --accent-soft: #fde7f1;
  --gold: #f59e0b;
  --shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  text-decoration: none;
}

.program-icon {
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: block;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  gap: 18px;
  color: #33434d;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.primary-button,
.secondary-button,
.program-card a,
.site-footer a {
  text-decoration: none;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  padding: 11px 16px;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  background: var(--brand);
  color: #ffffff;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--brand-dark);
}

.secondary-button {
  background: #ffffff;
  color: var(--brand-dark);
  border: 1px solid #9cccca;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 76px clamp(18px, 6vw, 84px) 56px;
  background:
    linear-gradient(90deg, rgba(20, 33, 43, 0.88), rgba(20, 33, 43, 0.58)),
    url("online-healthcare-hero.jpg?v=1");
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  max-width: 820px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  margin-top: 20px;
  color: #e7eef0;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
  padding: 9px 12px;
}

.section,
.final-cta {
  padding: 72px clamp(18px, 6vw, 84px);
}

.compact-section {
  padding-bottom: 28px;
}

.section-heading {
  display: grid;
  gap: 4px;
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading .eyebrow,
.final-cta .eyebrow {
  color: var(--accent);
}

.notice,
.tuition-panel,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.notice {
  max-width: 960px;
  padding: 22px;
  border-left: 7px solid var(--accent);
}

.notice p,
.program-card p,
.steps p,
.tuition-panel p,
.proof-grid p,
.faq-list p,
.final-cta p,
.form-note {
  color: var(--muted);
  line-height: 1.55;
}

.program-grid,
.steps,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-card,
.steps article,
.proof-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.program-card {
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.program-icon {
  width: 46px;
  height: 46px;
  background: var(--accent-soft);
  color: #a41661;
}

.program-card ul,
.tuition-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: #32434e;
}

.program-card a {
  color: var(--brand-dark);
  font-weight: 900;
}

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

.steps article {
  display: grid;
  gap: 10px;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.tuition-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px;
}

.proof-section {
  background: #ffffff;
}

.proof-grid article {
  background: #f8fbfb;
}

.partners-section {
  background: #ffffff;
}

.partners-section .section-heading {
  max-width: 900px;
}

.partners-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  padding: 28px;
}

.partner-card {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--brand-dark);
  font-weight: 900;
  padding: 22px;
  text-align: center;
  text-decoration: none;
}

.partner-card:hover,
.partner-card:focus {
  border-color: var(--brand);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.14);
}

.partner-card img {
  display: block;
  max-width: min(320px, 100%);
  max-height: 150px;
  object-fit: contain;
}

.partner-card:first-child img {
  max-height: 170px;
}

.twc-notice {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin-top: 22px;
  border-radius: 8px;
  background: #0f536f;
  color: #ffffff;
  padding: clamp(24px, 4vw, 42px);
}

.twc-notice h3,
.twc-notice p {
  margin: 0;
}

.twc-notice h3 {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  max-width: 980px;
  text-align: center;
}

.twc-notice p {
  color: #ffffff;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  line-height: 1.65;
  max-width: 1180px;
  width: 100%;
}

.twc-notice h3 + p {
  max-width: 980px;
  text-align: center;
}

.twc-notice a {
  color: #ffffff;
  font-weight: 900;
  overflow-wrap: anywhere;
}

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

.international-panel {
  display: grid;
  gap: 22px;
  max-width: 1080px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 26px;
}

.international-panel > div:first-child {
  max-width: 780px;
}

.international-panel p,
.international-list p {
  color: var(--muted);
  line-height: 1.55;
}

.international-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.international-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
  padding: 18px;
}

.international-list ul {
  display: grid;
  gap: 9px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: #32434e;
}

.visa-note {
  border-left: 7px solid var(--gold) !important;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 940px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin-top: 10px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: 32px;
  align-items: start;
  margin: 20px clamp(18px, 6vw, 84px) 72px;
  padding: 32px;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.lead-form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 6px;
  color: #32434e;
  font-size: 13px;
  font-weight: 800;
}

input,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  padding: 12px;
}

.form-note {
  font-size: 13px;
}

.lead-form button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px clamp(18px, 6vw, 84px);
  background: #14212b;
  color: #dbe7ea;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .program-grid,
  .steps,
  .proof-grid,
  .international-list,
  .partners-panel,
  .tuition-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .final-cta {
    margin-inline: 18px;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .site-nav {
    gap: 12px;
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 72vh;
    padding-top: 54px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions a,
  .final-cta .primary-button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
