:root {
  --ink: #071425;
  --navy: #071a33;
  --blue: #155eef;
  --blue-2: #0b8bdc;
  --cyan: #30c7dc;
  --amber: #f5a623;
  --paper: #f6f9fd;
  --white: #ffffff;
  --muted: #59677a;
  --line: #dce5f1;
  --soft-blue: #eaf2ff;
  --soft-amber: #fff5df;
  --green: #137a5a;
  --shadow: 0 24px 70px rgba(10, 35, 72, .12);
  --shadow-sm: 0 12px 35px rgba(10, 35, 72, .08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(21, 94, 239, .38); outline-offset: 3px; }
.skip-link { position: fixed; top: -80px; left: 1rem; z-index: 1000; padding: .75rem 1rem; background: var(--white); border-radius: 10px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.75rem 0; }
.section-blue { background: linear-gradient(180deg, #f1f6ff 0%, #f9fbff 100%); }
.section-ink { color: var(--white); background: var(--navy); }
.section-amber { background: var(--soft-amber); }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-ink .eyebrow { color: #67d9eb; }
h1, h2, h3, h4 { margin: 0; color: inherit; font-weight: 760; letter-spacing: -.035em; line-height: 1.13; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: -.02em; }
p { margin: 0; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; }
.section-ink .lead, .section-ink .muted { color: #bac8da; }
.muted { color: var(--muted); }
.small { font-size: .9rem; }
.accent { color: var(--blue); }
.amber { color: #d77800; }
.heading-row { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.25rem; }
.heading-row > div:first-child { max-width: 780px; }
.heading-row .lead { margin-top: .9rem; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(220,229,241,.9); backdrop-filter: blur(18px); }
.topbar { background: var(--navy); color: #d5e2f2; font-size: .82rem; }
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a:hover { color: var(--white); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; min-width: max-content; }
.brand-logo { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; overflow: hidden; background: var(--white); border: 1px solid rgba(220,229,241,.9); border-radius: 12px; box-shadow: 0 10px 25px rgba(17,43,77,.12); }
.brand-logo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand-copy span { color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; font-size: .93rem; font-weight: 650; }
.nav-links > a { position: relative; padding: .5rem 0; }
.nav-links > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .15rem; height: 2px; background: var(--blue); transition: right .2s ease; }
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; gap: .65rem; align-items: center; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); cursor: pointer; }

.btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: .55rem; padding: .75rem 1.1rem; border: 1px solid transparent; border-radius: 12px; font-weight: 760; line-height: 1.1; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: var(--blue); box-shadow: 0 12px 28px rgba(21,94,239,.25); }
.btn-primary:hover { background: #0e4fd1; }
.btn-secondary { color: var(--ink); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { box-shadow: var(--shadow-sm); }
.btn-amber { color: #402400; background: var(--amber); }
.btn-ghost { color: var(--blue); background: var(--soft-blue); }
.btn-sm { min-height: 40px; padding: .65rem .9rem; font-size: .88rem; }
.arrow { font-size: 1.12em; transition: transform .18s ease; }
a:hover .arrow { transform: translateX(3px); }

.hero { position: relative; overflow: hidden; color: white; background: var(--navy); }
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 3.5rem; padding: 4.5rem 0 5rem; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .lead { max-width: 700px; margin-top: 1.35rem; color: #c5d2e4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-note { display: flex; flex-wrap: wrap; gap: .85rem 1.2rem; margin-top: 2rem; color: #bdd0e8; font-size: .9rem; }
.hero-note span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-note span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: 14% 10%; background: rgba(28,128,255,.32); filter: blur(70px); border-radius: 50%; }
.hero-visual img { position: relative; width: 100%; min-height: 430px; object-fit: cover; object-position: 62% center; border: 1px solid rgba(255,255,255,.12); border-radius: 28px 28px 28px 8px; box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.visual-label { position: absolute; left: -1rem; bottom: 1.4rem; z-index: 2; width: min(310px, 80%); padding: 1rem 1.1rem; background: rgba(255,255,255,.93); color: var(--ink); border-radius: 16px; box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.visual-label strong { display: block; }
.visual-label span { display: block; color: var(--muted); margin-top: .2rem; font-size: .84rem; }

.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: -2.5rem; position: relative; z-index: 4; }
.path-card { min-height: 230px; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.path-card.business { border-top: 5px solid var(--blue); }
.path-card.learning { border-top: 5px solid var(--amber); }
.path-card h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
.path-card p { margin: .8rem 0 1.2rem; color: var(--muted); }
.path-links { display: flex; flex-wrap: wrap; gap: .55rem; }
.pill-link, .tag { display: inline-flex; align-items: center; min-height: 34px; padding: .4rem .72rem; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); color: #23354d; font-size: .82rem; font-weight: 700; }
.pill-link:hover { border-color: #aac4f2; background: var(--soft-blue); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.card { height: 100%; padding: 1.55rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: 0 1px 0 rgba(7,20,37,.03); transition: transform .2s ease, box-shadow .2s ease, border .2s ease; }
a.card:hover { transform: translateY(-5px); border-color: #b9cef0; box-shadow: var(--shadow-sm); }
.card-icon { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.2rem; color: var(--blue); background: var(--soft-blue); border-radius: 13px; font-size: 1rem; font-weight: 850; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); }
.card .card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1rem; color: var(--blue); font-weight: 760; font-size: .9rem; }
.card-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin: .9rem 0 0; }
.card-meta .tag { background: transparent; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
.split .lead { margin: 1rem 0 1.4rem; }
.feature-stack { display: grid; gap: .85rem; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.feature:last-child { border-bottom: 0; }
.feature-num { width: 40px; height: 40px; display: grid; place-items: center; color: var(--blue); background: var(--soft-blue); border-radius: 12px; font-weight: 850; }
.feature p { margin-top: .3rem; color: var(--muted); font-size: .94rem; }
.section-ink .feature { border-color: rgba(255,255,255,.12); }
.section-ink .feature-num { color: #99edfa; background: rgba(48,199,220,.12); }
.section-ink .feature p { color: #bac8da; }

.trust-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--line); }
.trust-item { padding: 1.35rem; background: var(--white); }
.trust-item strong { display: block; font-size: 1rem; }
.trust-item span { display: block; margin-top: .3rem; color: var(--muted); font-size: .86rem; }

.cta-band { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: 2.5rem; color: white; border-radius: 26px; background: linear-gradient(120deg, #0d4ec5, #08214a 72%); box-shadow: var(--shadow); }
.cta-band::after { content: ""; position: absolute; width: 260px; height: 260px; right: -80px; top: -110px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.cta-band p { margin-top: .55rem; color: #c9d9ed; }
.cta-band .hero-actions { margin: 0; position: relative; z-index: 2; }

.page-hero { color: white; background: linear-gradient(135deg, #071a33 0%, #0d2f62 66%, #0c5284 100%); }
.page-hero-inner { min-height: 390px; display: grid; align-content: center; padding: 4.2rem 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.4rem; color: #b7c9df; font-size: .82rem; }
.breadcrumbs a:hover { color: white; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.35rem, 5vw, 4.6rem); }
.page-hero .lead { margin-top: 1.2rem; color: #c8d7e9; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.7rem; }

.content-review { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 1.25rem; margin-top: 1.4rem; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); color: var(--muted); font-size: .88rem; }
.content-review div { display: grid; min-width: max-content; }
.content-review strong { color: var(--ink); }
.content-review span { font-size: .8rem; }
.content-review a { color: var(--blue); font-weight: 760; white-space: nowrap; }

.filter-bar { display: grid; grid-template-columns: 1fr auto; gap: .8rem; margin: 0 0 2rem; padding: .75rem; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
.filter-bar input { width: 100%; min-height: 48px; padding: .75rem 1rem; border: 0; outline: 0; background: transparent; color: var(--ink); }
.filter-count { display: flex; align-items: center; padding: 0 1rem; color: var(--muted); font-size: .88rem; }
.empty-state { display: none; padding: 2rem; border: 1px dashed #aabbd0; border-radius: var(--radius-sm); color: var(--muted); text-align: center; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 3rem; align-items: start; }
.prose h2 { margin: 2.5rem 0 .9rem; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 1.8rem 0 .7rem; }
.prose p + p { margin-top: 1rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .45rem; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem 1rem; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.7rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05rem; color: var(--green); font-weight: 900; }
.sidebar-card { position: sticky; top: 130px; padding: 1.4rem; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); }
.sidebar-card h3 { margin-bottom: .7rem; }
.sidebar-card p { color: var(--muted); font-size: .92rem; }
.sidebar-card .btn { width: 100%; margin-top: .9rem; }
.facts { display: grid; gap: .7rem; margin: 1.1rem 0; }
.fact { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .65rem; border-bottom: 1px solid var(--line); font-size: .88rem; }
.fact span { color: var(--muted); }
.fact strong { text-align: right; }

.curriculum { display: grid; grid-template-columns: repeat(2, 1fr); gap: .9rem; margin-top: 1.2rem; }
.module { padding: 1.15rem; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.module strong { display: block; color: var(--blue); }
.module span { display: block; margin-top: .35rem; color: var(--muted); font-size: .9rem; }

.faq-list { display: grid; gap: .75rem; margin-top: 1.4rem; }
details { border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
summary { position: relative; padding: 1.1rem 3rem 1.1rem 1.15rem; list-style: none; cursor: pointer; font-weight: 760; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 1.35rem; }
details[open] summary::after { content: "−"; }
details p { padding: 0 1.15rem 1.15rem; color: var(--muted); }

.location-callout { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.location-copy { padding: 2.3rem; }
.location-copy .lead { margin: .8rem 0 1.2rem; }
.location-panel { display: grid; align-content: center; gap: .8rem; padding: 2rem; color: white; background: var(--navy); }
.location-panel a { color: #87e9f6; }
.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--amber); border-radius: 0 12px 12px 0; background: var(--soft-amber); color: #54370b; }
.evidence-box { margin: 1rem 0; padding: 1.25rem; border: 1px solid #bcd2f6; border-radius: 14px; background: var(--soft-blue); }
.evidence-box strong { display: block; color: #0d4ec5; }
.evidence-box p { margin-top: .45rem; color: #293e59; }
.numbered-steps { display: grid; gap: .65rem; padding: 0 !important; list-style: none; counter-reset: steps; }
.numbered-steps li { position: relative; min-height: 46px; padding: .75rem .9rem .75rem 3.25rem; border: 1px solid var(--line); border-radius: 12px; background: var(--white); counter-increment: steps; }
.numbered-steps li::before { content: counter(steps); position: absolute; left: .75rem; top: .66rem; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--blue); background: var(--soft-blue); font-weight: 850; }
.comparison-table { width: 100%; margin: 1.2rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.comparison-table table { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--white); }
.comparison-table th, .comparison-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison-table th { color: #183b6c; background: var(--soft-blue); font-size: .88rem; }
.comparison-table tr:last-child td { border-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 2rem; align-items: start; }
.contact-list { display: grid; gap: .8rem; margin-top: 1.5rem; }
.contact-item { padding: 1.1rem; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.contact-item span { display: block; color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 750; }
.contact-item strong, .contact-item a { display: block; margin-top: .3rem; font-weight: 730; }
.form-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 720; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: .75rem .85rem; border: 1px solid #cfdbea; border-radius: 11px; background: #fbfdff; color: var(--ink); }
.field textarea { min-height: 116px; resize: vertical; }
.form-note { margin-top: .9rem; color: var(--muted); font-size: .82rem; }

.site-footer { color: #c4d1e3; background: #04101f; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 2.5rem; padding: 4rem 0 3rem; }
.site-footer .brand-copy strong { color: white; }
.site-footer .brand-copy span { color: #91a6c1; }
.footer-about { max-width: 430px; margin-top: 1rem; color: #9fb0c6; font-size: .92rem; }
.footer-col h3 { color: white; font-size: .95rem; letter-spacing: 0; margin-bottom: .95rem; }
.footer-links { display: grid; gap: .6rem; font-size: .88rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; padding: 1.2rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,.1); color: #8da1bb; font-size: .82rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.floating-actions { position: fixed; right: 1rem; bottom: 1rem; z-index: 80; display: grid; gap: .55rem; }
.float-btn { width: 50px; height: 50px; display: grid; place-items: center; color: white; border-radius: 15px; box-shadow: 0 12px 30px rgba(5,20,42,.28); font-size: .72rem; font-weight: 850; }
.float-btn.wa { background: #147a5a; }
.float-btn.call { background: var(--blue); }

@media (max-width: 1040px) {
  .nav-links { gap: 1rem; }
  .nav-actions .btn-secondary { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-copy { max-width: 820px; }
  .hero-visual { max-width: 800px; }
  .hero-visual img { min-height: 370px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-band { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 4rem 0; }
  .topbar-inner span:last-child { display: none; }
  .nav { min-height: 68px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: absolute; top: 102px; left: 1rem; right: 1rem; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: .8rem; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: .85rem .8rem; }
  .nav-links > a::after { display: none; }
  .nav-actions .btn { display: none; }
  .hero-grid { gap: 2rem; }
  .hero-visual img { min-height: 320px; }
  .path-grid, .split, .location-callout, .contact-grid { grid-template-columns: 1fr; }
  .content-review { grid-template-columns: 1fr; gap: .55rem; }
  .content-review div { min-width: 0; }
  .content-review a { white-space: normal; }
  .heading-row { align-items: start; flex-direction: column; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 1.25rem), var(--max)); }
  .topbar { display: none; }
  .nav-links { top: 75px; }
  .brand-copy span { display: none; }
  .hero-grid { padding: 3rem 0 4.5rem; }
  .hero-visual img { min-height: 250px; }
  .visual-label { left: .75rem; bottom: .75rem; }
  .path-grid { margin-top: -1.7rem; }
  .path-card { padding: 1.4rem; }
  .card-grid, .curriculum, .check-list, .form-grid, .trust-band { grid-template-columns: 1fr; }
  .page-hero-inner { min-height: 340px; padding: 3.2rem 0; }
  .filter-bar { grid-template-columns: 1fr; }
  .filter-count { padding-bottom: .5rem; }
  .location-copy, .location-panel, .form-card { padding: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-actions { right: .65rem; bottom: .65rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

@media print {
  .site-header, .floating-actions, .site-footer, .hero-actions, .page-hero-actions { display: none !important; }
  body { color: #000; }
  .section, .section-sm { padding: 1rem 0; }
  .page-hero { color: #000; background: none; }
  .page-hero-inner { min-height: auto; }
}
