:root {
  --navy-950: #08162d;
  --navy-900: #102447;
  --navy-800: #17345f;
  --navy-700: #1e477c;
  --blue-500: #2672d9;
  --blue-100: #eaf2fc;
  --coral-500: #d85c62;
  --ink: #142139;
  --text: #4d5e76;
  --muted: #718096;
  --line: #dfe6ef;
  --surface: #f4f7fb;
  --white: #fff;
  --shadow: 0 24px 60px rgba(15, 34, 66, .12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; padding: 10px 16px; color: var(--white); background: var(--navy-950); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #f1a34b; outline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 82px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(223,230,239,.9); backdrop-filter: blur(14px); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 11px; color: var(--navy-800); text-decoration: none; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg, var(--navy-800), var(--navy-950)); border-radius: 12px; font-size: 27px; font-weight: 800; box-shadow: 0 9px 22px rgba(16,36,71,.18); }
.brand-copy { line-height: 1.05; }
.brand-copy strong { display: block; font-size: 19px; letter-spacing: .13em; }
.brand-copy small { display: block; margin-top: 5px; color: var(--coral-500); font-size: 9px; font-weight: 700; letter-spacing: .19em; }
.primary-nav { display: flex; align-items: center; gap: 20px; }
.primary-nav > a { position: relative; color: #354761; font-size: 14px; font-weight: 650; text-decoration: none; }
.primary-nav > a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--blue-500); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav > a:hover::after, .primary-nav > a:focus-visible::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: 4px; }
.nav-link-secondary { color: var(--navy-800); font-size: 14px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.nav-company-link { color: var(--blue-600); font-size: 13px; font-weight: 750; text-decoration: none; white-space: nowrap; }
.menu-toggle { display: none; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; gap: 8px; color: var(--navy-900); background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-toggle-label { font-size: 13px; font-weight: 700; }
.menu-icon { width: 20px; display: grid; gap: 4px; }
.menu-icon span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 22px; border: 1px solid transparent; border-radius: 10px; font-weight: 750; line-height: 1.25; text-align: center; text-decoration: none; transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 14px; }
.button-primary { color: var(--white); background: var(--blue-500); box-shadow: 0 10px 24px rgba(38,114,217,.22); }
.button-primary:hover { background: #1d62bd; box-shadow: 0 14px 28px rgba(38,114,217,.28); }
.button-outline { color: var(--navy-900); background: transparent; border-color: #a9b8ca; }
.button-outline:hover { border-color: var(--navy-800); background: var(--white); }
.button-light { color: var(--navy-950); background: var(--white); }
.button-dark { color: var(--white); background: var(--navy-900); }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--blue-500); font-weight: 750; text-decoration: none; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(115deg, var(--navy-950) 0%, var(--navy-900) 54%, #164b80 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 76px 76px; mask-image: linear-gradient(to right, black, transparent 80%); }
.hero-pattern { position: absolute; width: 520px; height: 520px; right: -140px; top: -170px; border: 100px solid rgba(255,255,255,.04); border-radius: 50%; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(48px, 8vw, 110px); align-items: center; padding-block: 90px; }
.eyebrow { margin: 0 0 14px; color: var(--coral-500); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 30px; height: 2px; display: inline-block; margin-right: 10px; vertical-align: middle; background: currentColor; }
.eyebrow.light { color: #a9cff9; }
.hero h1 { max-width: 820px; margin: 0; font-size: clamp(46px, 5.6vw, 76px); font-weight: 770; letter-spacing: -.045em; line-height: 1.04; }
.hero h1 span { color: #b7d9ff; }
.hero-lead { max-width: 700px; margin: 26px 0 0; color: #ced9e8; font-size: clamp(17px, 1.6vw, 20px); }
.button-group { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.hero .button-outline { color: var(--white); border-color: rgba(255,255,255,.45); }
.hero .button-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.hero-support { margin: 25px 0 0; color: #afbdd0; font-size: 14px; }
.hero-support span { color: #62b7ff; margin-right: 7px; }
.hero-panel { position: relative; padding: 38px; color: var(--ink); background: rgba(255,255,255,.97); border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-lg); box-shadow: 0 30px 80px rgba(2,11,27,.28); overflow: hidden; }
.panel-accent { position: absolute; top: 0; right: 0; left: 0; height: 5px; background: linear-gradient(90deg, var(--blue-500), var(--coral-500)); }
.panel-label { margin: 0 0 12px; color: var(--coral-500); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-panel h2 { margin: 0; color: var(--navy-900); font-size: 27px; line-height: 1.25; }
.check-list { display: grid; gap: 14px; margin: 26px 0; padding: 22px 0; border-block: 1px solid var(--line); list-style: none; }
.check-list li { position: relative; padding-left: 26px; color: var(--text); font-size: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-500); font-weight: 900; }

.value-strip { border-bottom: 1px solid var(--line); background: var(--white); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.value-grid div { min-height: 108px; display: flex; align-items: center; gap: 14px; padding: 20px; border-right: 1px solid var(--line); }
.value-grid div:first-child { border-left: 1px solid var(--line); }
.value-grid span { color: var(--coral-500); font-size: 12px; font-weight: 800; }
.value-grid strong { color: var(--navy-900); font-size: 14px; line-height: 1.4; }

.section { padding: 105px 0; }
.section-soft { background: var(--surface); }
.section-heading { max-width: 650px; }
.section-heading.centered { margin: 0 auto 48px; text-align: center; }
.section-heading.centered .eyebrow::before { display: none; }
.section h2, .pathways h2 { margin: 0; color: var(--navy-900); font-size: clamp(34px, 4vw, 50px); letter-spacing: -.035em; line-height: 1.12; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--text); font-size: 17px; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.about-copy { padding-top: 27px; border-top: 1px solid var(--line); }
.about-copy p { margin: 0 0 18px; color: var(--text); font-size: 17px; }
.about-copy .text-link { margin-top: 10px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 245px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #b8c8dc; box-shadow: 0 20px 42px rgba(18,43,79,.09); }
.card-number { display: block; margin-bottom: 34px; color: var(--coral-500); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { margin: 0 0 11px; color: var(--navy-900); font-size: 20px; line-height: 1.3; }
.service-card p { margin: 0; color: var(--text); font-size: 14px; }

.industries-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 105px); align-items: start; }
.industry-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.industry-list article { min-height: 98px; display: flex; align-items: center; gap: 18px; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.industry-list article:nth-child(odd) { border-right: 1px solid var(--line); }
.industry-list span { color: var(--coral-500); font-size: 11px; font-weight: 800; }
.industry-list h3 { margin: 0; color: var(--navy-900); font-size: 17px; }

.pathways { display: grid; grid-template-columns: 1fr 1fr; }
.pathway { min-height: 545px; display: flex; align-items: center; }
.pathway-content { width: min(100%, 520px); }
.pathway-employer { justify-content: flex-end; padding: 80px 55px 80px max(30px, calc((100vw - var(--container)) / 2)); color: var(--white); background: var(--navy-900); }
.pathway-employer .pathway-content { margin-left: auto; }
.pathway-candidate { padding: 80px max(30px, calc((100vw - var(--container)) / 2)) 80px 55px; background: #eaf2fc; }
.pathway h2 { font-size: clamp(34px, 3.4vw, 50px); }
.pathway-employer h2 { color: var(--white); }
.pathway p:not(.eyebrow) { margin: 20px 0 28px; color: inherit; opacity: .79; font-size: 17px; }
.pathway small { display: block; margin-top: 18px; opacity: .65; }

.form-section { background: var(--surface); }
.form-section-alt { background: var(--white); border-top: 1px solid var(--line); }
.form-layout { display: grid; grid-template-columns: minmax(250px, .62fr) minmax(0, 1.38fr); gap: clamp(45px, 7vw, 90px); align-items: start; }
.form-intro { position: sticky; top: 116px; }
.form-intro h2 { margin-bottom: 22px; }
.form-intro > p:not(.eyebrow) { color: var(--text); font-size: 17px; }
.process-list { display: grid; gap: 14px; margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.process-list span { display: flex; align-items: center; gap: 12px; color: var(--navy-800); font-size: 14px; font-weight: 700; }
.process-list b { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue-500); background: var(--blue-100); border-radius: 50%; font-size: 11px; }
.form-shell { min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 20px 55px rgba(18,43,79,.08); overflow: hidden; }
.lead-form, .review-panel { padding: clamp(24px, 5vw, 48px); }
.required-key { margin: 0 0 24px; color: var(--muted); font-size: 12px; text-align: right; }
.required-key span { color: var(--coral-500); font-weight: 800; }
.lead-form fieldset { min-width: 0; margin: 0; padding: 0 0 38px; border: 0; }
.lead-form fieldset + fieldset { padding-top: 38px; border-top: 1px solid var(--line); }
.lead-form legend { width: 100%; margin-bottom: 24px; color: var(--navy-900); font-size: 20px; font-weight: 780; }
.lead-form legend span { margin-right: 10px; color: var(--coral-500); font-size: 11px; letter-spacing: .1em; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 18px; }
.field { min-width: 0; }
.field-wide { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: 13px; font-weight: 750; }
.field label > span:not(.optional) { color: var(--coral-500); }
.optional { margin-left: 5px; color: var(--muted); font-size: 10px; font-weight: 600; }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: var(--white); border: 1px solid #bdc9d8; border-radius: 9px; font: inherit; font-size: 15px; transition: border-color .15s ease, box-shadow .15s ease; }
.field textarea { min-height: 115px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #94a0b1; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue-500); box-shadow: 0 0 0 3px rgba(38,114,217,.14); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #bd343d; box-shadow: 0 0 0 2px rgba(189,52,61,.08); }
.field-help { display: block; margin-top: 6px; color: var(--muted); font-size: 11px; }
.field-error { min-height: 18px; display: block; margin-top: 5px; color: #aa2630; font-size: 12px; font-weight: 650; }
.field-help + .field-error { margin-top: 1px; }
.inline-check { display: flex !important; align-items: center; gap: 8px; margin-top: 9px !important; color: var(--text) !important; font-weight: 600 !important; cursor: pointer; }
.inline-check input, .consent-field input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--blue-500); }
.conditional-fields { padding: 20px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.consent-field { display: flex; align-items: flex-start; gap: 12px; margin-top: 4px; padding: 18px; color: var(--text); background: var(--surface); border: 1px solid var(--line); border-radius: 10px; font-size: 13px; cursor: pointer; }
.consent-field input { margin-top: 2px; }
.consent-field.has-error { border-color: #bd343d; }
.consent-error { margin: 5px 0 0; }
.form-submit { width: 100%; margin-top: 20px; }
.form-status { margin: 0; }
.form-status:not(:empty) { margin-bottom: 24px; padding: 12px 15px; color: #8a2028; background: #fff0f1; border-left: 3px solid #bd343d; border-radius: 5px; font-size: 13px; font-weight: 650; }
.review-panel > h3 { margin: 0; color: var(--navy-900); font-size: clamp(28px, 4vw, 38px); line-height: 1.2; }
.review-panel > p:not(.eyebrow) { margin: 12px 0 28px; color: var(--text); }
.review-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); }
.review-item { min-width: 0; padding: 16px 12px; border-bottom: 1px solid var(--line); }
.review-item:nth-child(odd) { border-right: 1px solid var(--line); }
.review-item dt { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-item dd { margin: 3px 0 0; color: var(--navy-900); font-weight: 700; overflow-wrap: anywhere; white-space: pre-wrap; }
.database-submit { margin-top: 28px; padding: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.database-submit .button { width: 100%; }
.submission-status { font-size: 13px; }
.submission-status:not(:empty) { margin-top: 14px; padding: 11px 13px; color: #8a2028; background: #fff0f1; border-left: 3px solid #bd343d; border-radius: 5px; }
.submission-status.is-success { color: #126139; background: #ecf9f2; border-color: #187b48; }
.submission-status strong, .submission-status span { display: block; }
.submission-status strong { margin-bottom: 3px; color: inherit; font-size: 14px; }
.fallback-heading { margin: 24px 0 0 !important; color: var(--muted) !important; font-size: 12px; font-weight: 700; }
.review-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 28px; }
.review-actions .button:first-child { grid-column: 1 / -1; }
.button-whatsapp { color: var(--white); background: #187b48; }
.button-whatsapp:hover { background: #11683b; }
.button-secondary { color: var(--navy-900); background: var(--blue-100); border-color: #c8daf1; }
.review-fallback { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 25px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--text); font-size: 13px; }
.review-fallback strong { width: 100%; color: var(--navy-900); }
.review-fallback a { color: var(--blue-500); font-weight: 700; }

.opportunities { background: var(--white); }
.empty-state { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 34px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.empty-icon { width: 62px; height: 62px; display: grid; place-items: center; color: var(--blue-500); background: var(--blue-100); border-radius: 50%; font-size: 25px; }
.empty-state h3 { margin: 0 0 4px; color: var(--navy-900); font-size: 20px; }
.empty-state p { margin: 0; color: var(--text); }

.section-dark { color: var(--white); background: var(--navy-950); }
.section-dark h2 { color: var(--white); }
.section-dark .section-heading > p:last-child { color: #aab9cb; }
.why-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 8vw, 110px); }
.approach-list { border-top: 1px solid rgba(255,255,255,.16); }
.approach-list article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.approach-list span { color: #78b7fa; font-size: 12px; font-weight: 800; }
.approach-list h3 { margin: 0 0 5px; font-size: 18px; }
.approach-list p { margin: 0; color: #aab9cb; font-size: 14px; }

.credential-grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr .8fr; gap: 14px; }
.credential-grid > div, .credential-address { padding: 24px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.credential-grid small, .credential-address small { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .13em; }
.credential-grid strong { color: var(--navy-900); font-size: 16px; }
.credential-address { margin-top: 14px; }
.credential-address p { margin: 0; color: var(--ink); }

.contact-section { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); align-items: start; }
.contact-intro > p:not(.eyebrow) { color: var(--text); font-size: 17px; }
.contact-note { margin-top: 28px; padding-left: 18px; border-left: 3px solid var(--coral-500); font-size: 14px !important; }
.contact-actions { display: grid; gap: 12px; }
.contact-card { position: relative; display: grid; gap: 6px; padding: 24px 60px 24px 24px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 12px; text-decoration: none; transition: border-color .2s ease, transform .2s ease; }
a.contact-card:hover { transform: translateX(4px); border-color: #aabbd0; }
.contact-label { color: var(--coral-500); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-card strong { color: var(--navy-900); font-size: 18px; overflow-wrap: anywhere; }
.contact-arrow { position: absolute; top: 50%; right: 25px; color: var(--blue-500); font-size: 20px; transform: translateY(-50%); }
.contact-card p { margin: 0; color: var(--text); }
.contact-address { padding-right: 24px; }

.site-footer { color: #b7c4d5; background: #071326; }
.footer-main { display: grid; grid-template-columns: 1.7fr .65fr .8fr 1.25fr; gap: 50px; padding-block: 72px; }
.brand-light { color: var(--white); }
.footer-brand p { max-width: 330px; margin: 22px 0 0; font-size: 14px; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-column h2 { margin: 5px 0 9px; color: var(--white); font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a { color: #b7c4d5; font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: var(--white); }
.footer-contact a { overflow-wrap: anywhere; }
.footer-contact p { margin: 3px 0 0; font-size: 14px; }
.footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; font-size: 12px; }

@media (max-width: 1100px) {
  .primary-nav { gap: 13px; }
  .primary-nav > a { font-size: 13px; }
  .nav-link-secondary { display: none; }
  .nav-company-link { font-size: 12px; }
  .hero-grid { gap: 48px; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1.4fr .7fr .8fr; }
  .footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 76px; }
  .site-header, .header-inner { min-height: 74px; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { position: fixed; top: 74px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 22px max(24px, calc((100vw - 720px) / 2)); overflow-y: auto; background: var(--white); }
  .primary-nav.is-open { display: flex; flex-direction: column; }
  .primary-nav > a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .primary-nav > a::after { display: none; }
  .nav-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 0; }
  .nav-link-secondary { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--navy-800); border-radius: 10px; }
  .nav-company-link { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--blue-500); border-radius: 10px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 76px; }
  .hero-panel { max-width: 620px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .value-grid div:nth-child(3) { border-left: 1px solid var(--line); }
  .value-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid, .industries-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; border-top: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .pathways { grid-template-columns: 1fr; }
  .pathway { min-height: 460px; padding: 70px max(30px, calc((100vw - 720px) / 2)); }
  .pathway-employer { justify-content: flex-start; }
  .pathway-employer .pathway-content { margin: 0; }
  .form-layout { grid-template-columns: 1fr; }
  .form-intro { position: static; }
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .brand-mark { width: 42px; height: 42px; font-size: 24px; }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 8px; letter-spacing: .13em; }
  .menu-toggle-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .hero-grid { padding-block: 62px; }
  .hero h1 { font-size: clamp(40px, 12vw, 55px); }
  .hero-lead { font-size: 16px; }
  .button-group { display: grid; }
  .button-group .button { width: 100%; }
  .hero-panel { padding: 28px 24px; }
  .hero-panel h2 { font-size: 23px; }
  .value-grid { grid-template-columns: 1fr; padding-block: 7px; }
  .value-grid div { min-height: 76px; padding: 16px 10px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-grid div:first-child, .value-grid div:nth-child(3) { border-left: 0; }
  .value-grid div:last-child { border-bottom: 0; }
  .section { padding: 78px 0; }
  .section-heading.centered { margin-bottom: 36px; text-align: left; }
  .section-heading.centered .eyebrow::before { display: inline-block; }
  .section h2, .pathways h2 { font-size: 34px; }
  .service-grid, .industry-list, .credential-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 210px; padding: 25px; }
  .card-number { margin-bottom: 25px; }
  .industry-list article:nth-child(odd) { border-right: 0; }
  .pathway { min-height: 480px; padding: 65px 24px; }
  .pathway .button { width: 100%; }
  .field-grid, .review-list, .review-actions { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .review-item:nth-child(odd) { border-right: 0; }
  .review-actions .button:first-child { grid-column: auto; }
  .review-actions .button { width: 100%; }
  .lead-form, .review-panel { padding: 24px 18px; }
  .form-shell { border-radius: 16px; }
  .lead-form fieldset { padding-bottom: 30px; }
  .lead-form fieldset + fieldset { padding-top: 30px; }
  .empty-state { grid-template-columns: 1fr; padding: 27px; }
  .empty-state .button { width: 100%; }
  .credential-grid > div, .credential-address { padding: 20px; }
  .contact-card { padding: 22px 48px 22px 20px; }
  .contact-card strong { font-size: 16px; }
  .contact-address { padding-right: 20px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding-block: 55px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { display: block; padding-block: 22px; }
  .footer-bottom p + p { margin-top: 6px; }
}

@media (max-width: 380px) {
  .brand-copy small { letter-spacing: .08em; }
  .hero h1 { font-size: 38px; }
  .nav-actions { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-column, .footer-brand, .footer-contact { grid-column: auto; }
}

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