:root {
  --navy-950: #020f2f;
  --navy-900: #041b4e;
  --navy-800: #062b72;
  --navy-700: #073ea7;
  --blue-600: #0666df;
  --blue-500: #0797f6;
  --cyan-400: #25c4f4;
  --ink: #10192d;
  --muted: #58657a;
  --line: #dbe4f1;
  --paper: #ffffff;
  --paper-blue: #f4f8fd;
  --success: #08795c;
  --warning: #a65d00;
  --danger: #a63245;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(4, 27, 78, .13);
  --max: 1380px;
  --header: 112px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 128px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--navy-700); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--blue-600); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #ffbf47; outline-offset: 3px; }
.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  padding: 12px 18px; color: #00133e; background: #ffdf78; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 920px); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 126px) 0; }
.section-sm { padding: clamp(50px, 6vw, 86px) 0; }
.section-blue { background: var(--paper-blue); }
.section-dark {
  position: relative; overflow: hidden; color: white;
  background:
    radial-gradient(circle at 84% 4%, rgba(7,151,246,.22), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.section-dark::before, .network-bg::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .34;
  background-image:
    linear-gradient(rgba(37,196,244,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,196,244,.12) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}
.section-dark > *, .network-bg > * { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
  color: var(--blue-600); font-size: .79rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.section-dark .eyebrow { color: var(--cyan-400); }
h1, h2, h3, h4 { margin: 0 0 .7em; color: var(--navy-900); line-height: 1.08; letter-spacing: -.025em; }
h1 { font-size: clamp(2.75rem, 5vw, 5.6rem); }
h2 { font-size: clamp(2.05rem, 3.5vw, 3.75rem); }
h3 { font-size: clamp(1.28rem, 2vw, 1.72rem); }
h4 { font-size: 1.05rem; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
p { margin: 0 0 1.15em; }
.lead { color: #33425a; font-size: clamp(1.08rem, 1.5vw, 1.3rem); }
.section-dark .lead { color: #d7e8ff; }
.accent { color: var(--blue-500); }
.text-cyan { color: var(--cyan-400); }
.text-muted { color: var(--muted); }
.kicker { color: var(--blue-600); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .eyebrow::before { display: none; }
.section-head { max-width: 820px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; min-height: var(--header); color: white;
  background: linear-gradient(105deg, #075cc7 0%, #063b9c 38%, #03184c 100%);
  box-shadow: 0 8px 30px rgba(1, 13, 43, .18);
}
.nav-wrap { min-height: var(--header); display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; flex: 0 0 170px; align-items: center; color: white; text-decoration: none; }
.brand img { width: 152px; height: 92px; object-fit: contain; }
.desktop-nav { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: clamp(12px, 1.45vw, 27px); }
.nav-link, .nav-toggle {
  display: inline-flex; align-items: center; gap: 7px; padding: 11px 2px;
  color: white; background: none; border: 0; text-decoration: none; font-size: .94rem; font-weight: 680; white-space: nowrap;
}
.nav-link:hover, .nav-toggle:hover { color: #bfe9ff; }
.nav-link[aria-current="page"] { border-bottom: 2px solid white; }
.nav-item { position: relative; }
.nav-toggle::after { content: ""; width: 7px; height: 7px; border-right: 1.5px solid; border-bottom: 1.5px solid; transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute; top: calc(100% + 9px); left: -20px; z-index: 50; width: 310px;
  padding: 12px; background: white; border: 1px solid #dce7f6; border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown, .nav-item[data-open="true"] .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a { display: block; padding: 12px 14px; border-radius: 9px; color: var(--navy-900); text-decoration: none; font-size: .92rem; font-weight: 650; }
.dropdown a:hover { color: var(--blue-600); background: var(--paper-blue); }
.nav-cta { margin-left: 4px; padding: 14px 23px; color: white; background: linear-gradient(135deg, var(--blue-600), #06b0f3); border: 1px solid rgba(255,255,255,.18); border-radius: 11px; text-decoration: none; font-weight: 780; white-space: nowrap; }
.nav-cta:hover { color: white; filter: brightness(1.08); }
.menu-btn { display: none; width: 48px; height: 48px; margin-left: auto; padding: 10px; color: white; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.26); border-radius: 10px; }
.menu-btn span { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn {
  display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border: 1px solid transparent; border-radius: 11px; text-decoration: none; font-weight: 780; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--blue-600), #08aff2); box-shadow: 0 12px 28px rgba(6,102,223,.25); }
.btn-primary:hover { color: white; box-shadow: 0 15px 32px rgba(6,102,223,.34); }
.btn-secondary { color: var(--navy-900); background: white; border-color: #bdcce0; }
.btn-secondary:hover { color: var(--navy-700); background: var(--paper-blue); }
.btn-outline { color: white; background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.75); }
.btn-outline:hover { color: white; background: rgba(255,255,255,.1); }
.btn-sm { min-height: 44px; padding: 10px 18px; font-size: .92rem; }

/* Hero */
.hero { position: relative; min-height: 710px; overflow: hidden; color: white; background: linear-gradient(110deg, #021130 0%, #03245f 55%, #064eb6 100%); }
.hero::before {
  content: ""; position: absolute; width: 760px; height: 760px; right: -80px; top: -200px;
  border: 1px solid rgba(37,196,244,.22); border-radius: 50%; box-shadow: 0 0 0 74px rgba(37,196,244,.04), 0 0 0 148px rgba(37,196,244,.04), 0 0 0 222px rgba(37,196,244,.03);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .28;
  background-image: radial-gradient(circle, #53d7ff 1.25px, transparent 1.7px); background-size: 45px 45px;
  mask-image: linear-gradient(100deg, transparent 35%, black 85%);
}
.hero-grid { position: relative; z-index: 2; min-height: 710px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(38px, 7vw, 104px); padding: 78px 0 118px; }
.hero h1 { color: white; max-width: 860px; }
.hero .lead { max-width: 720px; color: #d6e8ff; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 12px 23px; margin-top: 26px; color: #dcecff; font-size: .9rem; font-weight: 650; }
.hero-proof span::before { content: "✓"; margin-right: 8px; color: var(--cyan-400); font-weight: 900; }
.page-hero { position: relative; overflow: hidden; padding: clamp(78px, 9vw, 142px) 0; color: white; background: linear-gradient(105deg, #020f2f 0%, #06398c 67%, #0866d8 100%); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(37,196,244,.22), transparent 30%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: white; max-width: 950px; }
.page-hero .lead { max-width: 830px; color: #d9eaff; }
.crumbs { margin-bottom: 22px; color: #c6e1ff; font-size: .88rem; }
.crumbs a { color: white; }

.certificate-visual {
  position: relative; width: min(100%, 590px); margin-left: auto; padding: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.28); border-radius: 22px; box-shadow: 0 28px 80px rgba(0,0,0,.34); backdrop-filter: blur(12px); transform: rotate(1.2deg);
}
.certificate-paper { position: relative; overflow: hidden; min-height: 430px; padding: 34px; color: var(--ink); background: #fff; border: 7px double #0a4bb7; border-radius: 8px; }
.certificate-paper::after { content: "BCB"; position: absolute; right: -25px; bottom: -55px; color: rgba(7,62,167,.05); font-family: Georgia, serif; font-size: 11rem; font-weight: 700; }
.certificate-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid #b8c8df; }
.mini-logo { color: var(--navy-800); font-family: Georgia, serif; font-size: 2rem; font-weight: 700; letter-spacing: .05em; }
.status-pill { display: inline-flex; gap: 7px; align-items: center; padding: 7px 12px; color: #066548; background: #e7fbf4; border-radius: 99px; font-size: .78rem; font-weight: 800; }
.status-pill::before { content: ""; width: 8px; height: 8px; background: #0b9a6d; border-radius: 50%; }
.certificate-paper h3 { margin: 28px 0 4px; color: var(--navy-900); text-transform: uppercase; letter-spacing: .08em; }
.cert-company { margin: 23px 0; color: #083e9b; font-family: Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
.cert-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin: 24px 0; font-size: .8rem; }
.cert-meta strong { display: block; color: var(--navy-900); font-size: .86rem; }
.cert-bottom { display: flex; align-items: end; justify-content: space-between; gap: 15px; margin-top: 28px; }
.qr { width: 76px; aspect-ratio: 1; padding: 7px; background: repeating-conic-gradient(#05235e 0 25%, white 0 50%) 0 / 13px 13px; border: 5px solid white; outline: 1px solid #a9b8cc; }
.seal { display: grid; width: 74px; aspect-ratio: 1; place-items: center; color: white; background: radial-gradient(circle, #169fe4 0 43%, #043b95 45% 63%, #e4b85d 65% 69%, #043b95 71%); border-radius: 50%; font-family: Georgia, serif; font-weight: 800; }

.hero-ribbon { position: relative; z-index: 3; margin-top: -64px; }
.ribbon-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; background: white; border: 1px solid #dbe4ef; border-radius: 18px; box-shadow: var(--shadow); }
.ribbon-item { position: relative; min-height: 170px; padding: 28px 26px 26px 74px; }
.ribbon-item + .ribbon-item::before { content: ""; position: absolute; inset: 26px auto 26px 0; width: 1px; background: var(--line); }
.ribbon-num { position: absolute; left: 24px; top: 28px; display: grid; width: 36px; aspect-ratio: 1; place-items: center; color: white; background: var(--blue-600); border-radius: 50%; font-weight: 900; }
.ribbon-item h3 { margin-bottom: 8px; font-size: 1.12rem; }
.ribbon-item p { color: var(--muted); font-size: .9rem; line-height: 1.5; }

/* Grids and cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.split { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: clamp(44px, 8vw, 120px); }
.split.reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.card { padding: 30px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(4,27,78,.07); }
.card-dark { color: white; background: linear-gradient(140deg, #072663, #031540); border-color: rgba(92,165,255,.28); }
.card-dark h3, .card-dark h4 { color: white; }
.card-dark p { color: #d0e0f6; }
.card-icon { display: grid; width: 58px; height: 58px; margin-bottom: 23px; place-items: center; color: var(--blue-600); background: #eaf4ff; border-radius: 15px; font-size: 1.5rem; font-weight: 900; }
.card-dark .card-icon { color: var(--cyan-400); background: rgba(37,196,244,.12); }
.feature-list { display: grid; gap: 22px; margin: 30px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 58px; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; width: 38px; height: 38px; place-items: center; color: var(--blue-600); background: #e7f3ff; border-radius: 10px; font-weight: 900; }
.feature-list h3 { margin-bottom: 5px; font-size: 1.12rem; }
.feature-list p { color: var(--muted); font-size: .95rem; }
.dark-feature-list li::before { color: var(--cyan-400); background: rgba(37,196,244,.13); }
.dark-feature-list p { color: #cddcf0; }
.metric-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; margin-top: 46px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.17); border-radius: 16px; }
.metric { padding: 26px; background: rgba(3,24,76,.82); }
.metric strong { display: block; margin-bottom: 5px; color: white; font-size: 1.5rem; }
.metric span { color: #c8dcf6; font-size: .89rem; }

.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sector-card { position: relative; min-height: 260px; overflow: hidden; padding: 28px; color: white; background: linear-gradient(145deg, #0b61c8, #061a4b); border-radius: 16px; text-decoration: none; isolation: isolate; }
.sector-card::before { content: ""; position: absolute; width: 240px; height: 240px; right: -80px; bottom: -90px; z-index: -1; border: 34px solid rgba(37,196,244,.13); border-radius: 50%; }
.sector-card:nth-child(2n)::before { right: auto; left: -95px; bottom: -110px; }
.sector-card:hover { color: white; transform: translateY(-3px); box-shadow: var(--shadow); }
.sector-card .sector-icon { display: grid; width: 70px; aspect-ratio: 1; place-items: center; margin-bottom: 60px; color: white; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); border-radius: 17px; font-size: 1.6rem; font-weight: 900; }
.sector-card h3 { margin: 0; color: white; }
.sector-card p { margin: 9px 0 0; color: #cfe4ff; font-size: .92rem; }

.process { counter-reset: process; display: grid; grid-template-columns: repeat(4, 1fr); gap: 19px; }
.process-step { counter-increment: process; position: relative; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.process-step::before { content: counter(process, decimal-leading-zero); display: block; margin-bottom: 24px; color: var(--blue-600); font-size: 1.7rem; font-weight: 900; }
.process-step:not(:last-child)::after { content: "→"; position: absolute; right: -17px; top: 31px; z-index: 2; color: var(--blue-600); font-size: 1.4rem; }
.process-step h3 { font-size: 1.13rem; }
.process-step p { color: var(--muted); font-size: .9rem; }

/* Trust levels */
.level-rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 38px; }
.level-chip { padding: 18px; color: white; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.17); border-radius: 12px; }
.level-chip strong { display: block; color: var(--cyan-400); }
.level-block { padding: clamp(56px, 7vw, 98px) 0; }
.level-layout { display: grid; grid-template-columns: 330px 1fr; gap: clamp(38px, 7vw, 90px); align-items: start; }
.level-mark { position: sticky; top: 142px; padding: 34px; color: white; background: linear-gradient(150deg, var(--navy-800), var(--blue-600)); border-radius: 22px; box-shadow: var(--shadow); }
.level-number { display: grid; width: 82px; aspect-ratio: 1; margin-bottom: 28px; place-items: center; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.27); border-radius: 50%; font-family: Georgia, serif; font-size: 2.4rem; font-weight: 700; }
.level-mark h2 { color: white; font-size: 2.1rem; }
.level-mark p { color: #dcecff; }
.level-content .grid-2 { margin: 28px 0; }
.check-list { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 35px; }
.check-list li { break-inside: avoid; position: relative; margin-bottom: 13px; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 900; }
.skill-band { padding: 30px; color: white; background: var(--navy-900); border-radius: 18px; }
.skill-band h3 { color: white; }
.skill-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.skill { padding: 15px; color: #e0ecff; background: rgba(255,255,255,.06); border-radius: 10px; font-size: .87rem; text-align: center; }

/* Verification */
.verify-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.verify-panel { padding: clamp(28px, 4vw, 48px); background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.verify-result { display: none; margin-top: 26px; padding: 24px; border-radius: 14px; }
.verify-result[data-state="valid"] { display: block; color: #075c46; background: #e7faf3; border: 1px solid #8bd9bf; }
.verify-result[data-state="missing"] { display: block; color: #7d4800; background: #fff6df; border: 1px solid #e5c37a; }
.verify-result[data-state="warning"], .verify-result[data-state="loading"] { display: block; color: #174d85; background: #edf5ff; border: 1px solid #9fc2e8; }
.result-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; font-weight: 850; }
.result-dot { width: 13px; height: 13px; background: currentColor; border-radius: 50%; box-shadow: 0 0 0 6px rgba(8,121,92,.1); }
.result-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; font-size: .9rem; }
.result-grid strong { display: block; }
.status-key { display: grid; gap: 12px; }
.status-key div { display: flex; align-items: center; gap: 10px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.valid { background: var(--success); }
.dot.suspended { background: var(--warning); }
.dot.expired { background: #69758a; }
.dot.revoked { background: var(--danger); }

/* Forms */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
label, legend { color: var(--navy-900); font-weight: 750; }
input, select, textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; color: var(--ink); background: white;
  border: 1px solid #aebdd1; border-radius: 9px;
}
textarea { min-height: 145px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 4px rgba(6,102,223,.11); outline: none; }
.help { color: var(--muted); font-size: .8rem; }
.check-row { display: flex; gap: 10px; align-items: flex-start; }
.check-row input { flex: 0 0 19px; width: 19px; min-height: 19px; margin-top: 4px; }
.check-row label { font-weight: 500; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin-top: 20px; padding: 18px; color: #075c46; background: #e7faf3; border: 1px solid #8bd9bf; border-radius: 10px; }
.form-status.show { display: block; }
.contact-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 38px; align-items: start; }
.contact-card { padding: 31px; color: white; background: var(--navy-900); border-radius: 18px; }
.contact-card h3 { color: white; }
.contact-card a { color: #9ae2ff; }
.contact-list { display: grid; gap: 22px; margin-top: 26px; }
.contact-list strong { display: block; color: white; }
.contact-list span { color: #c7d9ee; font-size: .9rem; }

/* CTA */
.cta-panel { position: relative; overflow: hidden; padding: clamp(40px, 6vw, 72px); color: white; background: linear-gradient(115deg, #041947, #0746ae 63%, #0797f6); border-radius: 22px; box-shadow: var(--shadow); }
.cta-panel::after { content: ""; position: absolute; width: 310px; height: 310px; right: -90px; top: -110px; border: 42px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 890px; color: white; }
.cta-panel p { max-width: 760px; color: #d9eaff; }

/* FAQ */
.accordion { display: grid; gap: 12px; }
.faq-item { background: white; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; color: var(--navy-900); background: white; border: 0; text-align: left; font-weight: 780; }
.faq-question::after { content: "+"; flex: 0 0 26px; font-size: 1.5rem; line-height: 1; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; padding: 0 23px 22px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { display: block; }

/* Articles */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { display: flex; min-height: 315px; flex-direction: column; padding: 28px; color: inherit; background: white; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; }
.article-card:hover { color: inherit; transform: translateY(-3px); box-shadow: var(--shadow); }
.article-tag { align-self: flex-start; margin-bottom: 50px; padding: 5px 10px; color: var(--blue-600); background: #eaf4ff; border-radius: 99px; font-size: .74rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.article-card h3 { margin-bottom: 12px; }
.article-card p { color: var(--muted); }
.article-card strong { margin-top: auto; color: var(--blue-600); }

/* Legal */
.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 55px; align-items: start; }
.legal-nav { position: sticky; top: 142px; padding: 20px; background: var(--paper-blue); border: 1px solid var(--line); border-radius: 13px; }
.legal-nav a { display: block; padding: 8px 10px; border-radius: 7px; text-decoration: none; font-size: .9rem; }
.legal-nav a:hover { background: white; }
.legal-copy { max-width: 850px; }
.legal-copy h2 { margin-top: 1.7em; padding-top: .3em; font-size: 1.7rem; }
.legal-copy h3 { margin-top: 1.5em; font-size: 1.25rem; }
.legal-copy ul, .legal-copy ol { padding-left: 1.35em; }
.legal-copy li { margin-bottom: .6em; }
.notice { padding: 20px; color: #493200; background: #fff8e8; border-left: 4px solid #e7ad2b; border-radius: 8px; }
.info-note { padding: 20px; color: #073b82; background: #edf6ff; border-left: 4px solid var(--blue-600); border-radius: 8px; }

/* Footer */
.site-footer { color: #c7d7ea; background: #020d27; }
.footer-main { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 34px; padding: 68px 0 48px; }
.footer-brand img { width: 122px; height: 76px; margin-bottom: 20px; }
.footer-brand p { max-width: 400px; font-size: .9rem; }
.footer-title { margin-bottom: 18px; color: white; font-weight: 800; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #c7d7ea; text-decoration: none; font-size: .9rem; }
.footer-links a:hover { color: #75d8ff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.regulatory-note { max-width: 760px; color: #90a8c4; }

.cookie-banner { position: fixed; right: 20px; bottom: 20px; z-index: 1200; display: none; width: min(calc(100% - 40px), 460px); padding: 22px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 60px rgba(0,0,0,.24); }
.cookie-banner.show { display: block; }
.cookie-banner h3 { margin-bottom: 7px; font-size: 1.1rem; }
.cookie-banner p { color: var(--muted); font-size: .86rem; }
.cookie-actions { display: flex; gap: 10px; }

/* Stronger professional-services geometry */
.dropdown, .nav-cta, .menu-btn, .btn, .certificate-visual, .ribbon-grid,
.card, .sector-card, .process-step, .level-chip, .level-mark, .skill-band,
.verify-panel, .contact-card, .cta-panel, .faq-item, .article-card, .legal-nav,
.cookie-banner, .metric-band, .sector-icon, .verify-result { border-radius: 8px; }
.dropdown a, .card-icon, .feature-list li::before, .skill, input, select, textarea,
.form-status, .notice, .info-note, .legal-nav a { border-radius: 4px; }

/* Business Library and resource pages */
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.resource-card { display: flex; min-height: 330px; flex-direction: column; padding: 30px; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--blue-600); border-radius: 6px; }
.resource-card p { color: var(--muted); }
.resource-card .btn { align-self: flex-start; margin-top: auto; }
.link-directory { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.directory-link { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 18px; color: var(--navy-900); background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue-600); border-radius: 4px; text-decoration: none; font-weight: 720; }
.directory-link:hover { color: var(--blue-600); background: #f7faff; }
.directory-link span { color: var(--muted); font-size: .78rem; font-weight: 600; }
.directory-link::after { content: "↗"; color: var(--blue-600); }
.provider-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; box-shadow: 0 10px 30px rgba(4,27,78,.06); }
.provider-table { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 6px; background: #fff; box-shadow: 0 10px 30px rgba(4,27,78,.06); }
.provider-row { display: grid; min-width: 880px; grid-template-columns: 1.05fr 1.35fr 1.8fr; }
.provider-row > * { min-width: 0; padding: 17px 18px; border-bottom: 1px solid var(--line); }
.provider-row > * + * { border-left: 1px solid var(--line); }
.provider-row:nth-child(odd):not(.provider-head) > * { background: #f8faff; }
.provider-row:last-child > * { border-bottom: 0; }
.provider-head > * { color: #fff; background: var(--navy-900); font-size: .83rem; text-transform: uppercase; letter-spacing: .06em; }
.provider-row strong small { display: block; margin-top: 5px; color: var(--muted); font-weight: 550; line-height: 1.45; }
.provider-table th, .provider-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); vertical-align: top; text-align: left; }
.provider-table th { color: #fff; background: var(--navy-900); font-size: .83rem; text-transform: uppercase; letter-spacing: .06em; }
.provider-table tr:last-child td { border-bottom: 0; }
.provider-table tr:nth-child(even) td { background: #f8faff; }
.provider-table a { font-weight: 780; }
.editorial-note { padding: 18px 20px; color: #24324a; background: #eef5fc; border: 1px solid #cbdcf0; border-left: 4px solid var(--blue-600); border-radius: 4px; }
.template-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 12px; }
.template-layout { display: grid; grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr); gap: 30px; align-items: start; }
.template-layout > aside { position: sticky; top: 126px; padding: 26px; background: #eef5fc; border-left: 4px solid var(--blue-600); border-radius: 4px; }
.template-layout > aside .btn { margin-top: 12px; }
.template-box { position: relative; overflow: auto; max-height: 760px; padding: 30px; color: #0c1830; background: #f7f9fc; border: 1px solid #c9d5e4; border-radius: 4px; white-space: pre-wrap; }
.template-box pre { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; font: 500 .91rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.template-index { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; counter-reset: templates; }
.template-index a { counter-increment: templates; display: flex; min-height: 82px; align-items: center; gap: 18px; padding: 16px; color: var(--navy-900); background: #fff; border: 1px solid var(--line); border-radius: 4px; text-decoration: none; font-weight: 740; }
.template-index a::before { content: counter(templates, decimal-leading-zero); display: grid; flex: 0 0 45px; width: 45px; height: 45px; place-items: center; color: #fff; background: var(--blue-600); border-radius: 4px; }
.template-index a:hover { color: var(--blue-600); box-shadow: 0 8px 22px rgba(4,27,78,.09); }
.source-list { display: grid; gap: 12px; margin: 25px 0; padding: 0; list-style: none; }
.source-list li { padding: 14px 16px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue-600); border-radius: 4px; }
.source-list a { font-weight: 760; }
.source-list small { display: block; margin-top: 3px; color: var(--muted); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  :root { --header: 92px; }
  .container { width: min(calc(100% - 36px), var(--max)); }
  .brand { flex-basis: 124px; }
  .brand img { width: 116px; height: 72px; }
  .menu-btn { display: block; }
  .desktop-nav {
    position: fixed; inset: var(--header) 0 0 0; z-index: 1001; display: none; padding: 24px 18px 80px;
    align-items: stretch; justify-content: flex-start; flex-direction: column; gap: 4px; overflow-y: auto; background: linear-gradient(145deg, #052b75, #020d2d);
  }
  .desktop-nav.open { display: flex; }
  .nav-link, .nav-toggle { width: 100%; justify-content: space-between; padding: 15px 7px; border-bottom: 1px solid rgba(255,255,255,.11); font-size: 1.04rem; }
  .nav-link[aria-current="page"] { border-bottom-color: var(--cyan-400); }
  .dropdown { position: static; display: none; width: 100%; margin: 0 0 8px; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
  .nav-item[data-open="true"] .dropdown { display: block; }
  .nav-item:hover .dropdown:not(:focus-within) { display: none; }
  .nav-item[data-open="true"]:hover .dropdown { display: block; }
  .nav-cta { margin: 15px 0 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 68px; }
  .certificate-visual { width: min(100%, 680px); margin: 0; }
  .ribbon-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item:nth-child(3)::before { display: none; }
  .sector-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-main > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 840px) {
  .container, .narrow { width: min(calc(100% - 30px), var(--max)); }
  .section { padding: 70px 0; }
  .section-sm { padding: 50px 0; }
  .grid-3, .grid-4, .process, .metric-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-2, .split, .split.reverse, .verify-shell, .contact-grid { grid-template-columns: 1fr; }
  .level-layout { grid-template-columns: 1fr; }
  .level-mark { position: relative; top: 0; }
  .level-rail { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .check-list { columns: 1; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; }
  .template-layout { grid-template-columns: 1fr; }
  .template-layout > aside { position: static; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 3px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .footer-main > :first-child { grid-column: 1 / -1; }
  .footer-main > :last-child { grid-column: auto; }
  .link-directory, .template-index { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  body { font-size: 15px; }
  .nav-wrap { min-height: 84px; }
  :root { --header: 84px; }
  .brand img { width: 100px; height: 64px; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding: 58px 0 100px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .certificate-paper { min-height: 390px; padding: 23px; }
  .cert-meta { grid-template-columns: 1fr; }
  .certificate-paper .cert-meta > :nth-child(n+3) { display: none; }
  .ribbon-grid, .grid-3, .grid-4, .sector-grid, .article-grid, .resource-grid, .process, .metric-band, .level-rail, .skill-grid { grid-template-columns: 1fr; }
  .ribbon-item + .ribbon-item::before { inset: 0 24px auto 24px; width: auto; height: 1px; }
  .ribbon-item:nth-child(3)::before { display: block; }
  .sector-card { min-height: 225px; }
  .process-step::after { display: none; }
  .form-grid, .result-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .actions .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-main > :first-child, .footer-main > :last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-actions { flex-direction: column; }
}

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

@media print {
  .site-header, .site-footer, .cookie-banner, .actions, .legal-nav { display: none !important; }
  body { color: black; font-size: 11pt; }
  .section, .section-sm, .page-hero { padding: 22px 0; }
  .page-hero, .section-dark { color: black; background: white; }
  .page-hero h1, .section-dark h1, .section-dark h2, .section-dark h3 { color: black; }
  a { color: black; text-decoration: none; }
}
