:root {
  --navy: #10233f;
  --navy-deep: #0b192c;
  --blue: #1e5d8f;
  --teal: #2b7a78;
  --gold: #d4a64a;
  --ink: #17202b;
  --muted: #5d6875;
  --light: #f4f7fa;
  --white: #ffffff;
  --border: #dce4eb;
  --shadow-sm: 0 8px 24px rgba(16,35,63,.06);
  --shadow: 0 16px 45px rgba(16,35,63,.12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
h1, h2, h3 { margin-top: 0; line-height: 1.14; }

/* Accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
}
.skip-link:focus { left: 12px; }
:focus-visible { outline: 3px solid rgba(212,166,74,.55); outline-offset: 3px; }

/* Header + navigation */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220,228,235,.9);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.brand-logo { width: 215px; height: auto; object-fit: contain; }
.nav > nav { flex: 1; min-width: 0; display: flex; justify-content: center; }
nav ul { list-style: none; display: flex; align-items: center; gap: clamp(10px,1.25vw,18px); margin: 0; padding: 0; }
nav a {
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: var(--navy);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
nav a:hover, nav a:focus { color: var(--teal); }
nav a[aria-current="page"] { color: var(--teal); border-bottom-color: var(--gold); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.7rem; color: var(--navy); cursor: pointer; }
.nav-cta { padding: 11px 16px; font-size: .86rem; white-space: nowrap; flex-shrink: 0; }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(212,166,74,.25); }
.button-secondary { border-color: rgba(255,255,255,.55); color: white; background: rgba(255,255,255,.08); }
.button-dark { background: var(--navy); color: white; }
.button[disabled] { opacity: .65; cursor: wait; transform: none; }

/* Common typography + section spacing */
section { padding: 84px 0; }
section[id] { scroll-margin-top: 90px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section-heading { max-width: 800px; margin-bottom: 40px; }
.section-heading h2 { margin-bottom: 16px; color: var(--navy); font-size: clamp(2rem,4vw,3.15rem); letter-spacing: -.04em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
  color: white;
  background:
    radial-gradient(circle at 85% 18%, rgba(43,122,120,.45), transparent 28%),
    radial-gradient(circle at 65% 88%, rgba(212,166,74,.14), transparent 25%),
    linear-gradient(135deg, #0d1f39 0%, #153b60 62%, #1b6667 100%);
}
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.hero::before { width: 420px; height: 420px; right: -90px; top: -110px; }
.hero::after { width: 260px; height: 260px; right: 70px; top: 40px; opacity: .7; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; align-items: center; }
.hero h1 { max-width: 850px; margin-bottom: 22px; font-size: clamp(2.8rem,6vw,5.3rem); letter-spacing: -.055em; }
.hero p { max-width: 730px; margin: 0 0 34px; color: rgba(255,255,255,.84); font-size: clamp(1.06rem,1.8vw,1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-card { padding: 30px; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: rgba(255,255,255,.10); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.hero-card h3 { margin-bottom: 18px; font-size: 1.25rem; }
.hero-card ul { list-style: none; margin: 0; padding: 0; }
.hero-card li { position: relative; padding: 12px 0 12px 30px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.9); }
.hero-card li:first-child { border-top: 0; }
.hero-card li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.home-hero h1, .executive-hero h1 { max-width: 780px; }

/* Intro strip */
.intro-strip { padding: 24px 0; border-bottom: 1px solid var(--border); background: white; }
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.intro-item strong { display: block; margin-bottom: 4px; color: var(--navy); font-size: 1.1rem; }
.intro-item span { color: var(--muted); font-size: .94rem; }

/* Home */
.home-solutions { background: var(--light); }
.home-section-heading { max-width: 850px; }
.home-solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.home-solution-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 20px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(212,166,74,.18), transparent 34%),
    linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.home-solution-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.home-card-label { display: inline-block; margin-bottom: 16px; color: var(--gold); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.home-solution-card h3 { margin-bottom: 14px; color: white; font-size: 1.45rem; }
.home-solution-card p { margin: 0 0 24px; color: rgba(255,255,255,.80); }
.home-card-link { margin-top: auto; color: var(--gold); font-weight: 800; text-decoration: none; }
.home-card-link:hover { text-decoration: underline; }
.home-why { background: white; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.why-list { display: grid; gap: 18px; }
.why-item { display: grid; grid-template-columns: 18px 1fr; gap: 12px; align-items: start; }
.why-number { width: 7px; height: 7px; margin-top: 10px; border-radius: 50%; background: var(--teal); }
.why-item h3 { margin: 2px 0 5px; color: var(--navy); font-size: 1.1rem; }
.why-item p { margin: 0; color: var(--muted); }
.quote-panel { padding: 38px; border: 1px solid var(--border); border-radius: 24px; background: var(--light); }
.quote-panel blockquote { margin: 0; color: var(--navy); font-size: 1.45rem; line-height: 1.45; font-weight: 750; letter-spacing: -.02em; }
.quote-mark { color: var(--gold); font-size: 3.5rem; line-height: .7; }
.quote-mark-end { margin-top: 18px; text-align: right; }
.home-quote-panel { align-self: center; }
.home-cta-section { padding-top: 18px; background: white; }
.home-cta { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; padding: 42px 46px; border-radius: 24px; color: white; background: radial-gradient(circle at 90% 10%, rgba(43,122,120,.35), transparent 32%), linear-gradient(135deg,#0d1f39,#153b60); box-shadow: var(--shadow); }
.home-cta .eyebrow { margin-bottom: 12px; }
.home-cta h2 { margin-bottom: 12px; color: white; font-size: clamp(1.85rem,3.5vw,2.8rem); letter-spacing: -.035em; }
.home-cta p { max-width: 760px; margin: 0; color: rgba(255,255,255,.78); }

/* Global workforce + shared feature layout */
.global-workforce { background: white; }
.global-lead { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch; margin-bottom: 30px; }
.global-main { padding: 42px; border-radius: 26px; color: white; background: radial-gradient(circle at 90% 10%, rgba(212,166,74,.22), transparent 30%), linear-gradient(135deg,var(--navy),var(--blue)); box-shadow: var(--shadow); }
.global-main h2 { margin-bottom: 18px; font-size: clamp(2.1rem,4vw,3.25rem); letter-spacing: -.04em; }
.global-main p { color: rgba(255,255,255,.82); font-size: 1.06rem; }
.partner-spotlight { padding: 32px 34px 28px; border: 1px solid var(--border); border-radius: 26px; background: linear-gradient(145deg,#f7fbfb,#fbfcfd); box-shadow: var(--shadow-sm); }
.partner-label, .pillar-label { display: inline-block; margin-bottom: 10px; color: var(--teal); font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.partner-header { display: flex; align-items: center; margin-bottom: 12px; }
.partner-logo { width: min(100%,340px); height: auto; object-fit: contain; }
.partner-spotlight p { margin: 0 0 22px; color: var(--muted); font-size: 1.03rem; line-height: 1.65; }
.partner-spotlight p:last-of-type { margin-bottom: 0; }
.partner-note { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--muted); font-size: .98rem; line-height: 1.65; }
.partner-note strong { color: var(--navy); }
.global-service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.global-service { padding: 26px; border: 1px solid var(--border); border-radius: 16px; background: var(--light); }
.global-service strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.05rem; }
.global-service p { margin: 0; color: var(--muted); font-size: .94rem; }

/* Workforce journey */
.journey { margin-top: 28px; padding: 30px 32px; border: 1px solid var(--border); border-radius: 20px; background: #f8fafc; }
.journey h3 { margin-bottom: 24px; color: var(--navy); }
.journey-flow { display: grid; grid-template-columns: minmax(0,1fr) 34px minmax(0,1fr) 34px minmax(0,1fr) 34px minmax(0,1fr) 34px minmax(0,1fr); align-items: stretch; gap: 0; }
.journey-step { min-height: 78px; display: flex; align-items: center; justify-content: center; padding: 16px 12px; border: 1px solid var(--border); border-radius: 14px; background: white; color: var(--navy); font-size: .9rem; font-weight: 780; text-align: center; box-shadow: 0 5px 16px rgba(16,35,63,.04); }
.journey-label { color: var(--navy); }
.journey-arrow { align-self: center; color: var(--teal); font-size: 1.65rem; font-weight: 800; line-height: 1; text-align: center; }

/* Executive services */
.executive-advisory { background: white; }
.executive-side h3 { margin-bottom: 14px; color: var(--navy); font-size: 1.75rem; }
.executive-checks { list-style: none; margin: 22px 0 0; padding: 0; }
.executive-checks li { position: relative; padding: 11px 0 11px 29px; border-top: 1px solid var(--border); color: var(--navy); font-weight: 700; }
.executive-checks li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.executive-capability-heading { margin-top: 58px; margin-bottom: 30px; }
.executive-pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.executive-pillar { display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--border); border-radius: 20px; background: #f8fafc; box-shadow: var(--shadow-sm); }
.executive-pillar-featured { background: linear-gradient(155deg,#f4f8fb,#f8fbfa); border-top: 4px solid var(--gold); }
.executive-pillar h3 { margin-bottom: 14px; color: var(--navy); font-size: 1.35rem; }
.executive-pillar p { margin: 0 0 20px; color: var(--muted); }
.executive-pillar ul { list-style: none; margin: auto 0 0; padding: 0; }
.executive-pillar li { position: relative; padding: 10px 0 10px 27px; border-top: 1px solid var(--border); color: var(--navy); font-weight: 700; }
.executive-pillar li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

/* Leadership */
.leadership-page-header { padding: 58px 0 28px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg,#f8fafc 0%,#fff 100%); }
.leadership-page-header .eyebrow { margin-bottom: 12px; }
.leadership-page-header h1 { max-width: 880px; margin: 0; color: var(--navy); font-size: clamp(2.15rem,4vw,3.55rem); letter-spacing: -.045em; line-height: 1.08; }
.leadership-founder { padding: 64px 0 70px; background: white; }
.leadership-spotlight { padding: 70px 0 84px; border-top: 1px solid var(--border); background: white; }
.leadership-shell { display: grid; grid-template-columns: .82fr 1.18fr; overflow: hidden; border: 1px solid var(--border); border-radius: 26px; background: white; box-shadow: var(--shadow); }
.founder-shell { border-top: 5px solid var(--gold); box-shadow: 0 22px 56px rgba(16,35,63,.14); }
.leader-profile { padding: 42px; color: white; background: linear-gradient(160deg,rgba(16,35,63,.97),rgba(30,93,143,.94)), linear-gradient(45deg,var(--teal),var(--navy)); }
.founder-profile { background: radial-gradient(circle at 88% 10%,rgba(212,166,74,.22),transparent 27%), linear-gradient(155deg,#0d1f39 0%,#163e65 65%,#1d6869 100%); }
.nicole-profile { background: radial-gradient(circle at 88% 10%,rgba(43,122,120,.27),transparent 29%), linear-gradient(155deg,#0d1f39 0%,#17466f 66%,#1d6869 100%); }
.nicole-photo { object-position: 50% 25%; }
.leader-photo { width: 150px; height: 150px; margin: 0 0 28px; border: 4px solid rgba(255,255,255,.9); border-radius: 24px; object-fit: cover; object-position: 50% 27%; box-shadow: 0 12px 28px rgba(0,0,0,.22); background: rgba(255,255,255,.08); }
.founder-photo { width: 180px; height: 180px; object-position: center top; }
.leader-profile h3 { margin-bottom: 8px; font-size: 2rem; }
.leader-role { margin-bottom: 24px; color: var(--gold); font-size: 1rem; font-weight: 750; }
.leader-summary { margin: 0; color: rgba(255,255,255,.82); font-size: 1rem; line-height: 1.6; }
.leader-copy { padding: 40px 42px; }
.founder-copy { background: radial-gradient(circle at 100% 0%,rgba(43,122,120,.06),transparent 30%),white; }
.leader-copy h2 { max-width: 820px; margin-bottom: 22px; color: var(--navy); font-size: clamp(2.05rem,4vw,3.15rem); letter-spacing: -.04em; }
.leader-copy p { margin: 0 0 17px; color: var(--muted); font-size: 1.02rem; }
.leader-copy p:last-child { margin-bottom: 0; }
.leader-capabilities { list-style: none; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 18px; margin: 26px 0 0; padding: 0; }
.leader-capability { position: relative; padding: 11px 0 11px 28px; border-top: 1px solid rgba(255,255,255,.14); }
.leader-capability::before { content: "✓"; position: absolute; left: 0; top: 10px; color: var(--gold); font-weight: 900; }
.leader-capability strong { color: rgba(255,255,255,.92); font-size: .91rem; line-height: 1.35; }

/* Contact */
.contact { background: linear-gradient(135deg,#f4f7fa,#edf5f4); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-copy h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(2.1rem,4vw,3.25rem); letter-spacing: -.04em; }
.contact-copy p { color: var(--muted); }
.contact-details { display: grid; gap: 12px; margin-top: 28px; }
.contact-details a { color: var(--blue); font-weight: 700; text-decoration: none; word-break: break-word; }
.contact-details a:hover { text-decoration: underline; }
form { padding: 32px; border: 1px solid var(--border); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 17px; }
label { display: block; margin-bottom: 7px; color: var(--navy); font-size: .92rem; font-weight: 750; }
input, textarea, select { width: 100%; padding: 13px 14px; border: 1px solid #cfd8e1; border-radius: 11px; outline: none; color: var(--ink); background: white; font: inherit; }
input:focus, textarea:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(43,122,120,.12); }
textarea { min-height: 130px; resize: vertical; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 700; }
.form-status.success { color: #2f7a3f; }
.form-status.error { color: #b42318; }

/* Footer */
footer {
  padding: 34px 0;
  color: rgba(255,255,255,.74);
  background:
    radial-gradient(circle at 12% 40%, rgba(43,122,120,.18), transparent 28%),
    linear-gradient(135deg,#081525,#0c2037 65%,#102e45);
}
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; padding: 7px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 13px; background: rgba(255,255,255,.045); }
.footer-logo { width: 235px; height: auto; filter: drop-shadow(0 2px 7px rgba(0,0,0,.28)); }
footer a { color: rgba(255,255,255,.86); text-decoration: none; }
footer a:hover { color: white; }

/* Responsive */
@media (max-width: 1100px) {
  .menu-toggle { display: block; }
  .nav > nav { justify-content: flex-end; }
  nav ul { display: none; position: absolute; left: 20px; right: 20px; top: 70px; flex-direction: column; align-items: stretch; gap: 0; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: var(--shadow); }
  nav ul.open { display: flex; }
  nav li a { display: block; padding: 12px; border-bottom: 0; font-size: .95rem; }
  nav li a[aria-current="page"] { border-radius: 10px; color: var(--teal); background: rgba(43,122,120,.06); }
  .nav-cta { display: none; }
}

@media (max-width: 980px) {
  .hero-grid, .global-lead, .leadership-shell, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 680px; }
  .global-service-grid { grid-template-columns: repeat(2,1fr); }
  .home-solution-grid, .executive-pillar-grid { grid-template-columns: 1fr; }
  .home-solution-card { min-height: auto; }
  .home-cta { grid-template-columns: 1fr; }
  .home-cta .button { justify-self: start; }
  .journey-flow { grid-template-columns: 1fr; gap: 8px; }
  .journey-arrow { width: 28px; margin-left: 12px; transform: rotate(90deg); font-size: 1.4rem; }
  .journey-step { justify-content: flex-start; min-height: 60px; text-align: left; }
  .leader-profile { padding: 34px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  section[id] { scroll-margin-top: 80px; }
  .container { width: min(var(--max), calc(100% - 28px)); }
  .brand-logo { width: 185px; }
  .hero { padding: 72px 0 64px; }
  section { padding: 62px 0; }
  .intro-grid, .global-service-grid, .form-row { grid-template-columns: 1fr; text-align: left; }
  .home-solution-card { padding: 26px; }
  .home-cta { padding: 32px 26px; gap: 24px; }
  .global-main, .partner-spotlight, .leader-copy, .leader-profile, form { padding: 28px 24px; }
  .executive-capability-heading { margin-top: 42px; }
  .leader-capabilities { grid-template-columns: 1fr; }
  .leader-photo { width: 140px; height: 140px; }
  .founder-photo { width: 160px; height: 160px; }
  .leadership-page-header { padding: 42px 0 24px; }
  .leadership-founder { padding: 48px 0 58px; }
  .leadership-spotlight { padding: 58px 0 64px; }
  .footer-logo { width: 205px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* International nurse application pathway */
.nurse-application { padding: 0 0 84px; background: white; }
.nurse-application-panel { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 40px; padding: 38px 42px; border: 1px solid var(--border); border-radius: 24px; background: linear-gradient(135deg,#f4f8fb,#edf6f4); }
.nurse-application .eyebrow { margin-bottom: 10px; color: var(--teal); }
.nurse-application h2 { margin-bottom: 14px; color: var(--navy); font-size: clamp(1.8rem,3vw,2.55rem); letter-spacing: -.035em; }
.nurse-application p { max-width: 750px; margin: 0; color: var(--muted); font-size: 1.03rem; }
.nurse-application .nurse-application-note { margin-top: 13px; font-size: .88rem; }
.nurse-application-action { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; min-width: 230px; }
.nurse-application-action-label { color: var(--navy); font-size: .9rem; font-weight: 750; }
.nurse-application-action .button { width: 100%; }
.nurse-application-action-note { color: var(--muted); font-size: .8rem; }
.nurse-hero-link { white-space: normal; text-align: center; }
@media(max-width:980px) { .nurse-application-panel { grid-template-columns: 1fr; gap: 26px; } .nurse-application-action { min-width: 0; } .nurse-application-action .button { width: auto; } }
@media(max-width:760px) { .nurse-application { padding-bottom: 62px; } .nurse-application-panel { padding: 28px 24px; } .nurse-application-action .button { width: 100%; } }
