/* ==========================================================================
   IntelHireHub Global Design System
   Grounded in the supplied reference layout.
   Brand palette is limited to the established navy + teal; soft tints are
   derived from those colors plus neutral UI surfaces.
   ========================================================================== */

:root {
  --brand-navy: #0b2a5b;
  --brand-navy-900: #061c40;
  --brand-navy-800: #092650;
  --brand-teal: #0aa6a6;
  --brand-teal-700: #078d8d;
  --brand-teal-100: #e6f8f7;
  --brand-teal-050: #f3fbfb;

  --text: #0a254f;
  --text-soft: #5c6f89;
  --line: #dfe7ef;
  --line-soft: #edf2f7;
  --surface: #ffffff;
  --surface-soft: #fbfdff;
  --page: #ffffff;

  --info-blue: #3377e8;
  --soft-blue: #eaf3ff;
  --soft-peach: #fff0e8;
  --soft-lavender: #f1eafe;
  --soft-mint: #e8f8f4;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-nav: 600;
  --font-weight-btn: 700;

  /* Type scale — content never below 13px; dashboard mock may use micro */
  --text-display: clamp(36px, 3.4vw, 52px);
  --text-h2: clamp(28px, 2.5vw, 36px);
  --text-h3: 17px;
  --text-body: 15px;
  --text-body-sm: 14px;
  --text-caption: 13px;
  --text-label: 12px;
  --leading-display: 1.1;
  --leading-title: 1.2;
  --leading-body: 1.65;

  --shadow-xs: 0 2px 8px rgba(5, 32, 67, .04);
  --shadow-sm: 0 8px 24px rgba(5, 32, 67, .06);
  --shadow-md: 0 18px 45px rgba(5, 32, 67, .10);
  --shadow-lg: 0 28px 70px rgba(5, 32, 67, .14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --container: 1320px;
  --header-h: 74px;
  --ease: cubic-bezier(.2,.8,.2,1);
  --focus-ring: 0 0 0 3px rgba(10, 166, 166, .28);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

body.nav-open { overflow: hidden; }

.is-hidden,
[hidden] { display: none !important; }

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

button, input, textarea, select { font: inherit; }

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

p { line-height: 1.72; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section-pad { padding: 78px 0; }
.section-pad-sm { padding: 52px 0; }

.skip-link {
  position: absolute;
  z-index: 9999;
  left: 16px;
  top: -80px;
  background: var(--brand-navy);
  color: white;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  height: var(--header-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223,231,239,.75);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow-xs);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 215px 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.brand img {
  width: 188px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 22px;
  font-size: 14px;
  font-weight: var(--font-weight-nav);
  min-width: 0;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  background: transparent;
  border: 0;
  padding: 10px 4px;
  font: inherit;
  font-weight: var(--font-weight-nav);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease;
  border-radius: 8px;
}
.nav-link:hover,
.nav-trigger:hover,
.nav-item.open > .nav-trigger,
.nav-item:hover > .nav-trigger { color: var(--brand-teal); }

.chev {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .7;
  transition: transform .2s ease;
}
.nav-item.open > .nav-trigger .chev,
.nav-item:hover > .nav-trigger .chev { transform: rotate(180deg); }

.nav-item {
  position: relative;
}
.submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 120;
}
.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-item:hover > .submenu,
.nav-item.open > .submenu,
.nav-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}
.submenu a:hover,
.submenu a:focus-visible {
  background: var(--brand-teal-050);
  color: var(--brand-navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mobile-nav-actions { display: none; }

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--brand-navy);
  transition: transform .25s ease, opacity .25s ease;
  border-radius: 2px;
  transform-origin: center;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: var(--font-weight-btn);
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible,
.nav-link:focus-visible,
.nav-trigger:focus-visible,
.nav-toggle:focus-visible,
.segmented button:focus-visible,
.faq-item summary:focus-visible,
a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn-sm { min-height: 42px; padding: 0 20px; }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-teal), #0bc1b8);
  box-shadow: 0 9px 24px rgba(10,166,166,.22);
}
.btn-primary:hover { box-shadow: 0 12px 30px rgba(10,166,166,.30); }

.btn-secondary,
.btn-ghost {
  background: #fff;
  border-color: #bfcddd;
  color: var(--brand-navy);
}
.btn-secondary:hover,
.btn-ghost:hover { border-color: var(--brand-teal); color: var(--brand-teal); }

.btn-light { background: white; color: var(--brand-navy); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: white; background: transparent; }
.full { width: 100%; }

.hero {
  padding: 0 0 28px;
  margin: 0;
  background: #fff;
  overflow: hidden;
}
.hero.section-pad {
  padding: 0 0 28px;
  margin: 0;
}
.hero-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(10,166,166,.22), transparent 32%),
    linear-gradient(145deg, var(--brand-navy) 0%, var(--brand-navy-800) 55%, #073a75 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 36px 32px;
  overflow: hidden;
  color: #fff;
}
.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: .92fr 1.28fr;
  gap: 48px;
  align-items: center;
}

.hero-copy { padding-left: 4px; min-width: 0; }
.hero-card .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 7px 14px 7px 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(94, 224, 216, .45);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .01em;
}
.hero-kicker-logo {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255,255,255,.35);
  flex: 0 0 auto;
  display: block;
}
.hero h1 {
  margin: 0;
  max-width: 560px;
  font-size: var(--text-display);
  line-height: var(--leading-display);
  letter-spacing: -1.4px;
  color: #fff;
  font-weight: 800;
}
.hero h1 span { display: block; color: #5ee0d8; }
.hero-copy > p:not(.hero-kicker) {
  max-width: 520px;
  margin: 18px 0 22px;
  font-size: 16px;
  line-height: var(--leading-body);
  color: rgba(255,255,255,.84);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.hero-card .btn {
  min-height: 46px;
  font-size: 14px;
}
.hero-card .btn-secondary,
.hero-card .btn-ghost {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.hero-card .btn-secondary:hover,
.hero-card .btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: #fff;
  color: #fff;
}

.trust-block { margin-top: 34px; }
.hero-card .eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.hero-pill-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10,166,166,.35);
  color: #7aeee7;
}
.hero-pill-icon svg {
  width: 13px;
  height: 13px;
  display: block;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hero-product { position: relative; min-width: 0; padding: 15px 0 44px; overflow: visible; }
.product-glow {
  position: absolute;
  inset: -40px -40px 0 -20px;
  max-width: 100%;
  background:
    radial-gradient(circle at 80% 35%, rgba(10,166,166,.18), transparent 30%),
    radial-gradient(circle at 47% 51%, rgba(51,119,232,.10), transparent 40%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}
.dashboard-window,
.student-float { position: relative; z-index: 1; }

.dashboard-window {
  position: relative;
  min-height: 454px;
  display: grid;
  grid-template-columns: 58px 1fr;
  border-radius: 20px;
  background: #f6f9fc;
  border: 1px solid rgba(214,224,234,.9);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .18s ease-out;
}
.dash-sidebar {
  background: linear-gradient(180deg, var(--brand-navy-900), var(--brand-navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
}
.dash-mark {
  width: 31px; height: 31px; border-radius: 8px;
  color: var(--brand-teal);
  border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 900;
}
.side-dot {
  width: 28px; height: 28px;
  border: 0;
  border-radius: 7px;
  background: rgba(255,255,255,.08);
  position: relative;
}
.side-dot::before {
  content: "";
  position: absolute; inset: 8px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 3px;
}
.side-dot.active { background: var(--brand-teal); }
.dash-main { padding: 26px 24px 22px; min-width: 0; }
.dash-topline { display: flex; justify-content: space-between; align-items: start; gap: 20px; }
.dash-topline h3 { margin: 0; font-size: 15px; }
.dash-topline p { margin: 5px 0 0; font-size: 9px; color: #8290a2; }
.profile-mini { display: flex; align-items: center; gap: 8px; font-size: 8px; color: #7b899a; }
.profile-mini span {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #f1c5ad, #f7e4da);
  border: 2px solid white; box-shadow: 0 0 0 1px #dbe3eb;
}

.metric-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.metric-card {
  min-width: 0;
  padding: 16px 15px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-xs);
}
.metric-card span { display:block; color: #7d8998; font-size: 9px; margin-bottom: 9px; }
.metric-card strong { display:block; font-size: 22px; color: var(--brand-navy); letter-spacing: -.4px; }
.metric-card small { display:block; margin-top: 8px; color: #16a86f; font-size: 8px; }

.dashboard-panels {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.35fr .9fr .95fr;
  gap: 12px;
}
.panel {
  min-width: 0;
  background: white;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 14px;
  box-shadow: var(--shadow-xs);
}
.panel b { font-size: 10px; }
.panel-head { display: flex; justify-content: space-between; align-items: center; }
.panel-head a { font-size: 8px; color: var(--brand-teal); }

.bar-chart {
  height: 156px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 6px;
  padding: 20px 6px 0;
  border-bottom: 1px solid #e7edf3;
  background: repeating-linear-gradient(to top, transparent 0 31px, #eff3f7 32px);
}
.bar-col {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 7px;
}
.bar-col i {
  width: 62%;
  height: var(--h);
  min-height: 12px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #28b8b1, var(--brand-teal));
  transform-origin: bottom;
  animation: grow-bar 1.3s var(--ease) both;
}
.bar-col small { font-size: 7px; color: #65768b; }

.donut-wrap { margin-top: 20px; display:flex; align-items:center; gap: 14px; }
.donut {
  width: 93px; aspect-ratio: 1; border-radius: 50%;
  background: conic-gradient(var(--brand-teal) 0 31%, #4ed2c8 31% 44%, #e4b467 44% 68%, #e6edf5 68%);
  display: grid; place-items: center;
  position: relative; flex: 0 0 auto;
}
.donut::after { content:""; width:61px; aspect-ratio:1; background:#fff; border-radius:50%; position:absolute; }
.donut span { position:relative; z-index:1; text-align:center; font-weight:800; font-size:10px; }
.donut small { font-weight:500; font-size:7px; color:#7f8ea0; }
.donut-wrap ul { list-style:none; padding:0; margin:0; flex:1; }
.donut-wrap li { font-size:7px; color:#6e7c8c; padding:3px 0; display:flex; align-items:center; gap:5px; }
.donut-wrap li b { margin-left:auto; font-size:7px; }
.dot { width:6px; height:6px; border-radius:50%; background:#dce5ef; }
.dot.avg { background:#e4b467; } .dot.good { background:#4ed2c8; } .dot.strong { background:var(--brand-teal); }

.recent-item { display:flex; align-items:center; gap:8px; padding:10px 0; border-bottom:1px solid #edf1f5; }
.recent-item:last-child { border-bottom:0; }
.round-icon { width:25px; height:25px; border-radius:50%; display:grid; place-items:center; background:var(--soft-mint); color:var(--brand-teal); font-size:9px; font-weight:800; }
.recent-item p { margin:0; line-height:1.2; min-width:0; }
.recent-item p b { display:block; font-size:8px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.recent-item small { display:block; color:#92a0af; font-size:7px; margin-top:3px; }

.student-float {
  position: absolute;
  right: max(-8px, calc((100% - 100vw) / 2));
  bottom: -6px;
  width: min(360px, calc(100% - 12px));
  max-width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr 132px;
  align-items: center;
  gap: 11px;
  padding: 18px 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(218,228,237,.9);
  border-radius: 17px;
  box-shadow: var(--shadow-md);
}
.student-avatar {
  width: 48px; height:48px; border-radius:50%;
  display:grid; place-items:center;
  color:white; font-weight:800; font-size:12px;
  background: linear-gradient(135deg, var(--brand-navy), var(--brand-teal));
  box-shadow: 0 0 0 4px #eff9f8;
}
.student-copy b, .student-copy small { display:block; }
.student-copy b { font-size:10px; }
.student-copy small { font-size:8px; color:#8593a3; margin-top:2px; }
.sparkline {
  display:block; margin-top:8px; height:18px;
  background:
    linear-gradient(160deg, transparent 0 15%, #65a9ee 16% 18%, transparent 19% 32%, #65a9ee 33% 35%, transparent 36% 48%, #65a9ee 49% 51%, transparent 52% 66%, #65a9ee 67% 69%, transparent 70%);
}
.career-score { border-left:1px solid #e3e9ef; padding-left:14px; }
.career-score small, .career-score span { display:block; }
.career-score small { font-size:7px; color:#8492a3; }
.career-score strong { display:block; font-size:22px; color:var(--brand-navy); margin:2px 0; }
.career-score strong em { font-size:10px; font-style:normal; font-weight:600; }
.career-score span { color:#1aa576; font-size:7px; }

.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  margin: 0 auto;
  max-width: 720px;
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: var(--leading-title);
  letter-spacing: -.8px;
  color: var(--brand-navy);
}
.section-title h2 span { color: var(--brand-teal); }

.stakeholder-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feature-card,
.flow-card,
.price-card,
.quote-card {
  background:white; border:1px solid var(--line); border-radius:var(--radius-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
.feature-card {
  padding:28px 24px;
  min-height: 228px;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-xs);
}
.feature-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:#c4e8e5; }
.feature-card h3 {
  margin:18px 0 10px;
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.2px;
  color: var(--brand-navy);
}
.feature-card p {
  color: var(--text-soft);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  margin: 0 0 20px;
  flex: 1;
}
.feature-card a {
  color: var(--brand-teal);
  font-size: var(--text-body-sm);
  font-weight: 700;
  margin-top: auto;
}

.stakeholders { background: linear-gradient(180deg,#fff,#fbfdff); }

.icon-badge {
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  font-size:18px; font-weight:800;
}
.icon-badge.mint { background:var(--soft-mint); color:var(--brand-teal); }
.icon-badge.peach { background:var(--soft-peach); color:#ea7a40; }
.icon-badge.lavender { background:var(--soft-lavender); color:#8953df; }
.icon-badge.blue { background:var(--soft-blue); color:var(--info-blue); }

.stats-strip { padding: 0 0 40px; }
.stats-inner {
  min-height: 138px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  align-items:center;
  border-radius:20px;
  overflow:hidden;
  color:white;
  background:
    radial-gradient(circle at 78% 120%, rgba(10,166,166,.35), transparent 30%),
    linear-gradient(135deg,var(--brand-navy),#073a75);
  box-shadow:var(--shadow-md);
}
.stat { text-align:center; padding:22px 16px; position:relative; }
.stat:not(:last-child)::after {
  content:""; position:absolute; width:1px; height:47px; right:0; top:50%; transform:translateY(-50%);
  background:rgba(255,255,255,.28);
}
.stat strong {
  display: block;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}
.stat span {
  display: block;
  margin-top: 8px;
  font-size: var(--text-caption);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255,255,255,.88);
}

.workflow { padding-top: 34px; }
.workflow-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:22px; }
.flow-card {
  min-height:230px;
  padding:24px 22px;
  position:relative;
  box-shadow:var(--shadow-xs);
}
.flow-card:not(:last-child)::after {
  content:"››";
  position:absolute; right:-21px; top:50%;
  transform:translateY(-50%);
  color:var(--brand-teal);
  font-weight:900; letter-spacing:-3px;
}
.flow-no {
  position:absolute; right:14px; top:14px;
  width:30px; height:30px; border-radius:50%;
  display:grid; place-items:center;
  background:var(--brand-navy);
  color:white;
  font-size: var(--text-label);
  font-weight:800;
}
.flow-card h3 {
  margin: 22px 0 8px;
  font-size: var(--text-h3);
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-navy);
}
.flow-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
}

.platform-modules {
  background: linear-gradient(180deg,#fff,#fcfeff);
}
.module-grid {
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:24px 20px;
  padding: 6px 6px 0;
}
.module { text-align:center; padding: 10px 10px 6px; }
.module .icon-badge { margin-inline:auto; }
.module h3 {
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-navy);
}
.module p {
  margin: 0 auto;
  max-width: 200px;
  color: var(--text-soft);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
}
.module a {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand-teal);
  font-size: var(--text-caption);
  font-weight: 700;
}

.segmented {
  margin:20px auto 0;
  width:max-content;
  display:flex;
  border-radius:999px;
  background:#eef3f6;
  padding:4px;
}
.segmented button {
  border:0; background:transparent; border-radius:999px;
  padding:10px 16px; color:#708096; font-size: var(--text-caption); font-weight:700;
  cursor:pointer;
  line-height: 1.2;
}
.segmented button.active { background:var(--brand-teal); color:white; }

.pricing { padding-top: 54px; }
.pricing-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:19px; align-items:stretch; }
.price-card {
  padding:29px 22px 22px;
  min-height: 380px;
  position:relative;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow-xs);
}
.price-card.popular { border-color:var(--brand-teal); box-shadow:0 10px 34px rgba(10,166,166,.12); }
.popular-label {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:var(--brand-teal); color:white; border-radius:999px;
  padding:6px 17px; font-size: var(--text-label); font-weight:800; white-space:nowrap;
}
.price-card h3 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--brand-navy);
}
.price {
  text-align: center;
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -1px;
  line-height: 1.1;
}
.price.custom { margin-top:8px; }
.price-card > small {
  display: block;
  text-align: center;
  color: #7f8c9b;
  font-size: var(--text-caption);
  line-height: 1.4;
  margin-top: 6px;
}
.price-card ul { list-style:none; padding:0; margin:24px 0 16px; }
.price-card li {
  padding: 7px 0;
  font-size: var(--text-body-sm);
  line-height: 1.45;
  color: #50627a;
}
.price-card li::before { content:"•"; color:var(--brand-teal); margin-right:7px; }
.plan-note {
  margin: auto 0 17px;
  text-align: center;
  color: #738298;
  font-size: var(--text-caption);
  line-height: 1.4;
}
.brand-text { color:var(--brand-teal); font-weight:800; }
.enterprise-copy {
  text-align: center;
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
  color: var(--text-soft);
  margin: 28px 0;
}
.enterprise-btn { margin-top:auto; }
.pricing-footnote {
  margin: 24px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--text-soft);
  font-size: var(--text-caption);
  line-height: 1.6;
}

.faq { background: linear-gradient(180deg, #fff, #fbfdff); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 28px 18px 0;
  font-size: var(--text-body);
  font-weight: 700;
  line-height: 1.4;
  color: var(--brand-navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-teal);
  font-size: 20px;
  font-weight: 600;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: var(--text-body-sm);
  line-height: var(--leading-body);
}

.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1100px; margin:0 auto; }
.quote-card {
  padding: 26px 26px 22px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}
.quote-card p {
  margin: 0 0 22px;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: #52647a;
  flex: 1;
}
.quote-mark {
  color: var(--brand-teal);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 4px;
}
.person { display:flex; align-items:center; gap:12px; margin-top: auto; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #edf3f8;
  color: var(--brand-navy);
  font-size: var(--text-label);
  font-weight: 800;
  flex: 0 0 auto;
}
.person b, .person small { display:block; }
.person b {
  font-size: var(--text-body-sm);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.3;
}
.person small {
  font-size: var(--text-caption);
  color: #8a98a7;
  margin-top: 3px;
  line-height: 1.35;
}
.carousel-dots { display:none; }

.page-main { padding: 48px 0 72px; }
.page-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
}
.page-card h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -.8px;
  color: var(--brand-navy);
}
.page-card .lead {
  margin: 0 0 28px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; gap: 6px; }
.form-row label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: var(--focus-ring);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #91a0b3; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.form-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--text-soft);
}
.verify-result {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--brand-teal-050);
  border: 1px solid #c9ebe8;
  color: var(--brand-navy);
  font-size: 14px;
  display: none;
}
.verify-result.show { display: block; }

.cta-panel {
  min-height:142px;
  border-radius:22px;
  color:white;
  padding:30px 52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  background:
    radial-gradient(circle at 85% 150%, rgba(10,166,166,.42), transparent 35%),
    linear-gradient(135deg,var(--brand-navy),#07417d);
  box-shadow:var(--shadow-md);
  overflow:hidden;
  position:relative;
}
.cta-panel::after {
  content:"";
  position:absolute;
  right:-40px; bottom:-90px;
  width:290px; height:170px;
  border:1px solid rgba(10,166,166,.28);
  border-radius:50%;
  transform:rotate(-13deg);
}
.cta-panel h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 800;
  line-height: var(--leading-title);
  letter-spacing: -.4px;
  max-width: 520px;
}
.cta-panel p {
  margin: 0;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: rgba(255,255,255,.8);
  max-width: 480px;
}
.cta-actions { display:flex; gap:12px; z-index:1; }

.site-footer {
  padding: 8px 0 40px;
  background: #fff;
}
.footer-card {
  background:
    radial-gradient(circle at 88% 120%, rgba(10,166,166,.28), transparent 34%),
    linear-gradient(145deg, var(--brand-navy) 0%, var(--brand-navy-800) 60%, #073a75 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,.08);
  padding: 40px 36px 22px;
  color: #fff;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(4, 1fr);
  gap: 36px 28px;
  padding: 4px 4px 8px;
}
.footer-brand img {
  width: 200px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 4px;
}
.footer-brand p {
  max-width: 300px;
  margin: 14px 0 12px;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.65;
}
.footer-email {
  display: inline-block;
  margin-bottom: 18px;
  color: #5ee0d8;
  font-size: 14px;
  font-weight: 600;
}
.footer-email:hover { color: #fff; }
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-card .socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  transition: background .2s ease, transform .2s ease, border-color .2s ease, color .2s ease;
}
.footer-card .socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-card .socials a:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand-navy);
  transform: translateY(-2px);
}
.footer-card .socials a.social-facebook:hover { color: #1877f2; }
.footer-card .socials a.social-instagram:hover { color: #e4405f; }
.footer-card .socials a.social-twitter:hover { color: #111; }
.footer-card .socials a.social-linkedin:hover { color: #0a66c2; }
.footer-grid h4 {
  margin: 6px 0 16px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
}
.footer-grid > div:not(.footer-brand) a {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.4;
  padding: 7px 0;
  transition: color .2s ease;
}
.footer-grid > div:not(.footer-brand) a:hover { color: #5ee0d8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  padding: 20px 4px 6px;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 22px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer-legal a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
}
.footer-legal a:hover { color: #5ee0d8; }

.reveal {
  opacity:0;
  transform:translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.08s; }
.reveal-delay-2 { transition-delay:.16s; }
.reveal-delay-3 { transition-delay:.24s; }
.reveal-delay-4 { transition-delay:.32s; }

.floating-card { animation: float-card 4.8s ease-in-out infinite; }

.ripple {
  position:absolute;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  transform:scale(0);
  animation:ripple .55s linear;
  pointer-events:none;
}

@keyframes float-card { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes grow-bar { from{transform:scaleY(.05); opacity:.3} to{transform:scaleY(1); opacity:1} }
@keyframes ripple { to{transform:scale(4); opacity:0} }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

@media (max-width: 1120px) {
  .primary-nav { gap: 6px 12px; font-size: 12px; }
  .nav-shell { grid-template-columns: 170px 1fr auto; gap: 12px; }
  .brand img { width: 160px; height: 48px; }
  .submenu { min-width: 200px; }
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-copy { text-align:center; }
  .hero h1, .hero-copy > p:not(.hero-kicker) { margin-left:auto; margin-right:auto; }
  .hero-actions, .hero-pills { justify-content:center; }
  .trust-block { margin-top:38px; }
  .hero-product { max-width:800px; width:100%; margin-inline:auto; }
  .stakeholder-grid { grid-template-columns:repeat(2,1fr); }
  .module-grid { grid-template-columns:repeat(3,1fr); row-gap:28px; }
  .pricing-grid { grid-template-columns:repeat(3,1fr); }
  .price-card:nth-child(4), .price-card:nth-child(5) { margin-top:4px; }
}

@media (max-width: 980px) {
  .primary-nav .nav-link[href="#solutions-colleges"],
  .primary-nav .nav-link[href="#solutions-partners"] {
    display: none;
  }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .site-header { height: var(--header-h); }
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }
  .brand img { width: 150px; height: 44px; }
  .nav-toggle { display: inline-flex; order: 3; }
  .nav-actions .btn-ghost { display: none; }
  .nav-actions .btn-sm {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    background: #ffffff;
    padding: 8px 20px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), visibility .3s;
    font-size: 16px;
    z-index: 200;
    box-shadow: none;
    /* Keep closed drawer out of document scroll metrics where possible */
    will-change: transform;
  }
  body:not(.nav-open) .primary-nav {
    position: fixed;
    clip-path: inset(0 0 0 100%);
  }
  .nav-open .primary-nav {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
    clip-path: none;
  }
  .nav-open .nav-actions { visibility: hidden; }
  .nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2){ opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

  .primary-nav .nav-link,
  .primary-nav .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
    white-space: normal;
    text-align: left;
  }
  .primary-nav .nav-link[href="#solutions-colleges"],
  .primary-nav .nav-link[href="#solutions-partners"] {
    display: none;
  }
  .nav-item { width: 100%; }
  .submenu {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin: 0 0 8px;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .submenu::before { display: none; }
  .nav-item:not(.open):hover > .submenu,
  .nav-item:not(.open):focus-within > .submenu {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-item.open > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .submenu a {
    padding: 12px 8px;
    white-space: normal;
    border-bottom: 1px solid var(--line-soft);
    border-radius: 0;
  }
  .mobile-nav-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    padding-top: 8px;
  }
  .mobile-nav-actions .btn { width: 100%; }

  .dashboard-window { min-height:410px; }
  .metric-row { grid-template-columns:repeat(2,1fr); }
  .dashboard-panels { grid-template-columns:1.5fr 1fr; }
  .recent-panel { display:none; }
  .student-float { right: 8px; left: 8px; width: auto; }
  .workflow-grid { grid-template-columns:repeat(2,1fr); }
  .flow-card:not(:last-child)::after { display:none; }
  .stats-inner { grid-template-columns:repeat(3,1fr); padding:12px 0; }
  .stat:nth-child(3)::after { display:none; }
  .stat:nth-child(4), .stat:nth-child(5) { border-top:1px solid rgba(255,255,255,.15); }
  .pricing-grid { grid-template-columns:repeat(2,1fr); }
  .testimonial-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:2fr 1fr 1fr; }
  .footer-grid > div:nth-child(4), .footer-grid > div:nth-child(5) { margin-top:4px; }
  .page-card { padding: 28px 20px; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 28px,var(--container)); }
  .section-pad { padding:56px 0; }
  .section-pad-sm { padding:38px 0; }
  .nav-actions .btn { min-height:38px; padding:0 12px; font-size:11px; }
  .brand img { width: 136px; height: 40px; }
  .hero { padding: 0 0 20px; }
  .hero.section-pad { padding: 0 0 20px; }
  .hero-card { padding: 24px 16px 20px; border-radius: 22px; }
  .footer-card { padding: 28px 18px 16px; border-radius: 24px; }
  .footer-brand img { width: 180px; height: 58px; }
  .footer-grid > div:not(.footer-brand) a { font-size: 14px; padding: 8px 0; }
  .footer-grid h4 { font-size: 15px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 13px; }
  .hero-grid { min-height:auto; }
  .hero-card .hero-kicker { font-size: 12px; max-width: 100%; }
  .hero h1 { font-size: clamp(32px, 8.5vw, 40px); letter-spacing: -1.2px; }
  .hero-copy > p:not(.hero-kicker) { margin-top: 16px; font-size: 15px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-pills { justify-content: center; gap: 8px; }
  .hero-pills li { font-size: 12px; }
  .hero-product { padding-bottom:92px; overflow: hidden; }
  .dashboard-window { min-height:360px; grid-template-columns:44px 1fr; border-radius:15px; }
  .dash-sidebar { gap:12px; padding-top:12px; }
  .side-dot { width:24px; height:24px; }
  .dash-main { padding:16px 12px; }
  .dash-topline h3 { font-size:11px; }
  .profile-mini { display:none; }
  .metric-card { padding:10px; }
  .metric-card strong { font-size:17px; }
  .dashboard-panels { grid-template-columns:1fr; }
  .donut-panel { display:none; }
  .bar-chart { height:110px; }
  .student-float {
    width:auto;
    left: 8px;
    right: 8px;
    grid-template-columns:42px minmax(0,1fr) 96px;
    padding:13px;
  }
  .career-score strong { font-size:18px; }

  .section-title { margin-bottom: 28px; }
  .section-title h2 { font-size: clamp(24px, 6.5vw, 28px); }
  .stakeholder-grid, .workflow-grid, .pricing-grid { grid-template-columns: 1fr; }
  .feature-card { min-height:auto; padding: 24px 20px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 14px; }
  .flow-card h3 { font-size: 16px; }
  .module h3 { font-size: 15px; }
  .module p { font-size: 13px; max-width: none; }
  .quote-card p { font-size: 14px; }
  .person b { font-size: 13px; }
  .person small { font-size: 12px; }
  .price-card h3 { font-size: 15px; }
  .price-card li { font-size: 13px; }
  .cta-panel { padding:28px 24px; flex-direction:column; align-items:flex-start; }
  .cta-panel h2 { font-size: 24px; }
  .cta-panel p { font-size: 14px; }
  .stats-inner { grid-template-columns:1fr 1fr; }
  .stat { border-top:1px solid rgba(255,255,255,.13); }
  .stat::after { display:none !important; }
  .stat:first-child, .stat:nth-child(2){ border-top:0; }
  .stat:last-child { grid-column:1/-1; }
  .stat strong { font-size:28px; }
  .module-grid { grid-template-columns:repeat(2,1fr); gap:22px 8px; }
  .cta-actions { width:100%; flex-direction:column; }
  .cta-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:26px; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:12px; }
}

/* ===== Inner marketing pages ===== */
.nav-link.is-current,
.nav-trigger.is-current { color: var(--brand-teal); }
.submenu a[aria-current="page"] {
  background: var(--brand-teal-050);
  color: var(--brand-navy);
  font-weight: 700;
}

.page-hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(circle at 82% 18%, rgba(10,166,166,.10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdff 100%);
  overflow: hidden;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--brand-teal-050);
  color: var(--brand-teal-700);
  font-size: 12px;
  font-weight: 700;
}
.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: var(--brand-navy);
}
.page-hero h1 span { color: var(--brand-teal); }
.page-hero .lead {
  margin: 18px 0 26px;
  max-width: 540px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.7;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-visual {
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.page-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.content-section { padding: 64px 0; }
.content-section.alt { background: linear-gradient(180deg, #fff, #fbfdff); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-grid.reverse > :first-child { order: 2; }
.split-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -.6px;
  color: var(--brand-navy);
}
.split-copy p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}
.split-copy ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.split-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}
.split-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand-teal-100);
  box-shadow: inset 0 0 0 4px var(--brand-teal);
}
.split-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.split-visual img { width: 100%; display: block; }

.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
a.feature-tile { color: inherit; }
.feature-tile {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s ease;
}
a.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c4e8e5;
}
.feature-tile h3 {
  margin: 16px 0 8px;
  font-size: 17px;
  color: var(--brand-navy);
}
.feature-tile p {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}
.feature-tile .thumb {
  width: 100%;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--brand-teal-050);
}
.feature-tile .thumb img { width: 100%; height: 100%; object-fit: cover; }

.step-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-xs);
  position: relative;
}
.step-card .num {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand-navy); color: #fff;
  font-size: 12px; font-weight: 800;
  margin-bottom: 14px;
}
.step-card h3 { margin: 0 0 8px; font-size: 15px; }
.step-card p { margin: 0; color: var(--text-soft); font-size: 13px; line-height: 1.6; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}
.gallery-grid .shot {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.gallery-grid .shot img { width: 100%; display: block; }
.gallery-grid .shot.tall { grid-row: span 2; }

.page-cta { padding: 24px 0 72px; }

@media (max-width: 980px) {
  .page-hero-grid,
  .split-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .split-grid.reverse > :first-child { order: 0; }
  .feature-tiles { grid-template-columns: 1fr 1fr; }
  .step-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid .shot.tall { grid-row: auto; }
}
@media (max-width: 620px) {
  .page-hero { padding: 36px 0 28px; }
  .feature-tiles,
  .step-row { grid-template-columns: 1fr; }
  .page-hero .lead { font-size: 15px; }
}
