:root {
  --navy-1000: #020712;
  --navy-950: #040b16;
  --navy-900: #06111f;
  --navy-850: #0a1829;
  --navy-800: #0d2037;
  --blue-600: #2563eb;
  --blue-500: #2f7bf4;
  --blue-400: #60a5fa;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --emerald-400: #34d399;
  --amber-400: #fbbf24;
  --red-400: #fb7185;
  --slate-950: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --surface: #f7f9fc;
  --white: #ffffff;
  --container: 1180px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 18px 50px rgba(15, 23, 42, .08);
  --shadow-md: 0 26px 72px rgba(15, 23, 42, .14);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, .28);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--slate-950);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { margin-bottom: .7em; line-height: 1.1; letter-spacing: -.04em; }
p { color: var(--slate-600); }

::selection { color: var(--white); background: var(--blue-600); }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--navy-950);
  background: var(--white);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-heading { max-width: 780px; margin: 0 auto 58px; text-align: center; }
.section-heading h2 { margin-bottom: 18px; font-size: clamp(34px, 5vw, 54px); }
.section-heading p { max-width: 670px; margin-inline: auto; font-size: 18px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #145fc9;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; content: ""; border-radius: 10px; background: currentColor; }
.eyebrow.light { color: var(--cyan-300); }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(2,7,18,.68);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(2,7,18,.95); box-shadow: 0 12px 36px rgba(0,0,0,.22); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-size: 18px; font-weight: 700; letter-spacing: -.025em; }
.brand strong { color: var(--cyan-400); }
.brand-mark {
  width: 36px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-400));
  clip-path: polygon(50% 0, 94% 17%, 87% 72%, 50% 100%, 13% 72%, 6% 17%);
  filter: drop-shadow(0 10px 20px rgba(34,211,238,.22));
}
.brand-mark svg { width: 19px; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav > a { color: #d1deec; text-decoration: none; font-size: 13px; font-weight: 700; transition: color .2s ease; }
.site-nav > a:hover { color: var(--white); }
.site-nav .nav-cta { min-height: 44px; padding: 0 17px; border-radius: 11px; color: var(--white); background: linear-gradient(135deg, var(--blue-600), #138bbd); box-shadow: 0 12px 30px rgba(37,99,235,.25); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; color: var(--white); background: rgba(255,255,255,.06); cursor: pointer; }
.menu-button svg { width: 22px; margin: auto; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button svg { width: 18px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, #2563eb, #0e95c0); box-shadow: 0 16px 38px rgba(37,99,235,.3); }
.button-primary:hover { box-shadow: 0 20px 46px rgba(37,99,235,.38); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.055); }
.button-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.1); }
.button-light { color: #0b4fae; background: var(--white); box-shadow: 0 15px 35px rgba(0,21,60,.18); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.28); background: transparent; }
.button-outline-light:hover { background: rgba(255,255,255,.08); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: #1462cb; text-decoration: none; font-size: 14px; font-weight: 850; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform .2s ease; }
.text-link.large { font-size: 16px; }

.hero {
  position: relative;
  min-height: 920px;
  padding: 168px 0 82px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 13%, rgba(37,99,235,.35), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(34,211,238,.16), transparent 25%),
    linear-gradient(145deg, #020611 0%, #06111f 52%, #0a1f38 100%);
}
.hero-grid-lines { position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to bottom, black 25%, transparent 90%); }
.orb { position: absolute; border-radius: 999px; pointer-events: none; }
.orb-a { width: 380px; height: 380px; right: -180px; top: 150px; border: 1px solid rgba(96,165,250,.2); box-shadow: inset 0 0 80px rgba(37,99,235,.08); }
.orb-b { width: 180px; height: 180px; left: -80px; bottom: 110px; border: 1px solid rgba(34,211,238,.2); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr); align-items: center; gap: 66px; }
.trust-badge { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 25px; padding: 8px 13px; border: 1px solid rgba(96,165,250,.22); border-radius: 999px; color: #dbeafe; background: rgba(59,130,246,.09); font-size: 13px; font-weight: 750; }
.trust-badge span { width: 8px; height: 8px; border-radius: 50%; background: var(--emerald-400); box-shadow: 0 0 0 5px rgba(52,211,153,.1); }
.hero h1 { max-width: 780px; margin-bottom: 25px; font-size: clamp(50px,6.2vw,80px); letter-spacing: -.06em; }
.hero h1 span { color: transparent; background: linear-gradient(90deg,#b8d6ff,#6ce7f4); background-clip: text; -webkit-background-clip: text; }
.hero-copy-block > p { max-width: 680px; margin-bottom: 35px; color: #b5c6da; font-size: clamp(18px,2vw,21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-proof { display: grid; gap: 10px; margin: 0; padding: 0; color: #9cb0c8; list-style: none; font-size: 14px; font-weight: 650; }
.hero-proof li { display: flex; align-items: center; gap: 9px; }
.hero-proof svg { width: 17px; color: var(--emerald-400); }
.hero-panel { position: relative; padding: 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 28px; background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: var(--shadow-dark); backdrop-filter: blur(20px); }
.hero-panel::before { position: absolute; inset: -1px; z-index: -1; content: ""; border-radius: inherit; background: linear-gradient(150deg, rgba(96,165,250,.35), transparent 45%, rgba(34,211,238,.18)); }
.panel-heading { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 12px; margin-bottom: 18px; }
.panel-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #d9ecff; background: rgba(59,130,246,.15); }
.panel-icon svg { width: 21px; }
.panel-heading small { display: block; margin-bottom: 2px; color: #8fa6c0; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.panel-heading strong { display: block; font-size: 16px; }
.verified-pill { padding: 7px 10px; border-radius: 999px; color: #9af0ce; background: rgba(52,211,153,.1); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.assessment-list { display: grid; gap: 10px; }
.assessment-list > div { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 17px; border: 1px solid rgba(255,255,255,.07); border-radius: 17px; background: rgba(1,8,18,.4); }
.assessment-list > div > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; color: #8edfec; background: rgba(34,211,238,.08); font-size: 12px; font-weight: 900; }
.assessment-list p { margin: 0; color: #8fa5bd; font-size: 13px; }
.assessment-list strong { display: block; margin-bottom: 2px; color: var(--white); font-size: 14px; }
.panel-note { display: flex; align-items: flex-start; gap: 10px; margin-top: 13px; padding: 15px; border-radius: 14px; color: #9fb2c7; background: rgba(255,255,255,.035); font-size: 12px; }
.panel-note svg { width: 18px; flex: 0 0 18px; color: var(--cyan-400); }
.trust-strip { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 78px; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 18px; background: rgba(255,255,255,.08); }
.trust-strip > div { min-height: 103px; padding: 22px 24px; background: rgba(4,14,27,.76); }
.trust-strip strong { display: block; margin-bottom: 5px; font-size: 17px; }
.trust-strip span { color: #8ea4bc; font-size: 12px; }

.credibility-band { padding: 35px 0; border-bottom: 1px solid var(--slate-200); background: var(--white); }
.credibility-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.credibility-grid > div { display: flex; align-items: flex-start; gap: 13px; }
.credibility-grid svg { width: 25px; flex: 0 0 25px; color: #1768d6; }
.credibility-grid span { color: var(--slate-500); font-size: 13px; }
.credibility-grid strong { display: block; margin-bottom: 2px; color: var(--slate-800); font-size: 14px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { position: relative; min-height: 570px; display: flex; flex-direction: column; padding: 34px; overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-7px); border-color: #b9d5f8; box-shadow: var(--shadow-md); }
.service-card::after { position: absolute; right: -65px; bottom: -75px; width: 175px; height: 175px; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.09), transparent 68%); }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 16px; color: #1768d6; background: #edf5ff; }
.service-icon svg { width: 26px; }
.service-number { position: absolute; top: 33px; right: 34px; color: #b4c3d5; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 13px; font-size: 25px; }
.service-card > p { min-height: 84px; margin-bottom: 24px; }
.service-card h4 { margin-bottom: 12px; color: var(--slate-700); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: 10px; margin: 0 0 28px; padding: 0; list-style: none; color: var(--slate-700); font-size: 14px; font-weight: 650; }
.check-list li { position: relative; padding-left: 23px; }
.check-list li::before { position: absolute; left: 0; top: 4px; width: 15px; height: 15px; display: grid; place-items: center; content: "✓"; border-radius: 50%; color: #0d7c59; background: #e5faf2; font-size: 10px; font-weight: 900; }
.service-card .text-link { position: relative; z-index: 2; margin-top: auto; }

.assessment-section { color: var(--white); background: linear-gradient(135deg,#0b2850,#0a6e91); }
.assessment-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.assessment-copy h2 { margin-bottom: 18px; font-size: clamp(36px,5vw,55px); }
.assessment-copy > p { color: #c6def0; font-size: 18px; }
.assessment-promise { display: grid; grid-template-columns: 76px 1fr; gap: 16px; margin: 30px 0; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.06); }
.assessment-promise > span { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 16px; color: var(--navy-900); background: var(--white); font-weight: 900; }
.assessment-promise p { margin: 0; color: #c6def0; font-size: 14px; }
.assessment-promise strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 16px; }
.assessment-steps { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.assessment-steps li { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(3,14,29,.32); }
.assessment-steps > li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #8de5f4; background: rgba(34,211,238,.1); font-weight: 900; }
.assessment-steps strong { display: block; margin-bottom: 3px; }
.assessment-steps p { margin: 0; color: #a9c2d8; font-size: 14px; }

.risk-section { background: #f1f5fa; }
.risk-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 25px; }
.chart-card, .simple-explain { padding: 36px; border: 1px solid var(--slate-200); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-sm); }
.chart-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.chart-kicker { color: #1768d6; font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.chart-heading h3 { margin: 5px 0 0; font-size: 28px; }
.source-pill { padding: 7px 10px; border-radius: 999px; color: #0f6c53; background: #e7faf3; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.bar-chart { display: grid; gap: 22px; }
.bar-label { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 7px; color: var(--slate-600); font-size: 13px; font-weight: 700; }
.bar-label strong { color: var(--slate-900); font-size: 16px; }
.bar-track { height: 12px; overflow: hidden; border-radius: 999px; background: #edf1f7; }
.bar-fill { display: block; width: calc(var(--bar) * 1%); height: 100%; border-radius: inherit; background: linear-gradient(90deg,#2563eb,#22d3ee); box-shadow: 0 0 20px rgba(37,99,235,.2); }
.bar-fill.accent { background: linear-gradient(90deg,#0f9f78,#34d399); }
.chart-note { margin: 28px 0 12px; padding-top: 20px; border-top: 1px solid var(--slate-200); color: var(--slate-500); font-size: 12px; }
.source-links { display: flex; flex-wrap: wrap; gap: 15px; }
.source-links a { color: #1768d6; font-size: 12px; font-weight: 800; text-decoration: none; }
.simple-explain h3 { margin-bottom: 24px; font-size: 29px; }
.analogy-list { display: grid; gap: 13px; }
.analogy-list article { display: grid; grid-template-columns: 48px 1fr; gap: 14px; padding: 16px; border: 1px solid var(--slate-200); border-radius: 16px; background: #fbfcfe; }
.analogy-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; background: #edf5ff; font-size: 23px; }
.analogy-list strong { display: block; margin-bottom: 3px; color: var(--slate-800); font-size: 14px; }
.analogy-list p { margin: 0; font-size: 13px; }

.cases-section { color: var(--white); background: var(--navy-900); }
.cases-section .section-heading p { color: #9fb1c7; }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.case-card { min-height: 690px; display: flex; flex-direction: column; padding: 29px; border: 1px solid rgba(255,255,255,.09); border-radius: 24px; background: linear-gradient(150deg,rgba(59,130,246,.12),rgba(255,255,255,.025)),#091728; }
.case-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 23px; }
.case-tag, .not-client { padding: 7px 9px; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.case-tag { color: #9cebf5; background: rgba(34,211,238,.09); }
.not-client { color: #b3c4d7; border: 1px solid rgba(255,255,255,.1); }
.case-card h3 { margin-bottom: 20px; font-size: 29px; }
.impact-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.impact-grid > div { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(1,8,18,.35); }
.impact-grid strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 20px; }
.impact-grid span { color: #879db5; font-size: 11px; }
.impact-bar { height: 7px; margin: 17px 0 22px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.07); }
.impact-bar span { display: block; width: calc(var(--impact) * 1%); height: 100%; border-radius: inherit; background: linear-gradient(90deg,#2563eb,#22d3ee); }
.case-summary { color: #a3b5ca; font-size: 14px; }
.child-box { margin: 6px 0 22px; padding: 16px; border-left: 3px solid var(--cyan-400); border-radius: 0 13px 13px 0; background: rgba(34,211,238,.06); }
.child-box strong { display: block; margin-bottom: 4px; color: #8ee9f5; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.child-box p { margin: 0; color: #b4c6d8; font-size: 13px; }
.case-card h4 { margin-bottom: 10px; color: #d9e6f2; font-size: 13px; letter-spacing: .05em; text-transform: uppercase; }
.lesson-list { display: grid; gap: 8px; margin: 0 0 25px; padding: 0; list-style: none; color: #9fb1c7; font-size: 13px; }
.lesson-list li { position: relative; padding-left: 19px; }
.lesson-list li::before { position: absolute; left: 0; content: "•"; color: var(--cyan-400); font-size: 18px; line-height: 1; }
.case-source { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: #84e7f3; text-decoration: none; font-size: 13px; font-weight: 850; }
.case-disclaimer { display: flex; align-items: flex-start; gap: 13px; margin-top: 24px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.035); }
.case-disclaimer svg { width: 22px; flex: 0 0 22px; color: var(--cyan-400); }
.case-disclaimer p { margin: 0; color: #9fb1c7; font-size: 13px; }
.case-disclaimer strong { color: var(--white); }

.self-check-section { background: var(--white); }
.self-check-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.self-check-copy h2 { font-size: clamp(36px,5vw,54px); }
.self-check-copy > p { font-size: 18px; }
.privacy-note { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; padding: 9px 12px; border-radius: 999px; color: #0d7457; background: #e7faf3; font-size: 12px; font-weight: 850; }
.privacy-note svg { width: 17px; }
.readiness-card { padding: 30px; border: 1px solid var(--slate-200); border-radius: 24px; background: #f9fbfd; box-shadow: var(--shadow-sm); }
.readiness-card fieldset { display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.readiness-card label { display: flex; align-items: center; gap: 12px; padding: 13px 14px; border: 1px solid var(--slate-200); border-radius: 13px; color: var(--slate-700); background: var(--white); font-size: 13px; font-weight: 700; cursor: pointer; }
.readiness-card label:has(input:checked) { border-color: #9bd8c3; background: #f1fcf8; }
.readiness-card input { width: 19px; height: 19px; accent-color: #0f9f78; }
.readiness-result { display: grid; grid-template-columns: 95px 1fr; align-items: center; gap: 18px; margin-top: 22px; padding: 20px; border-radius: 18px; color: var(--white); background: var(--navy-900); }
.score-ring { width: 84px; height: 84px; display: grid; place-content: center; border-radius: 50%; background: radial-gradient(circle at center,var(--navy-900) 56%,transparent 57%),conic-gradient(var(--cyan-400) calc(var(--score) * 1%),rgba(255,255,255,.1) 0); text-align: center; }
.score-ring span { font-size: 25px; font-weight: 900; line-height: 1; }
.score-ring small { color: #8fa5bd; font-size: 10px; }
.readiness-result strong { display: block; margin-bottom: 3px; }
.readiness-result p { margin: 0; color: #9fb2c8; font-size: 13px; }
.assessment-caveat { margin: 13px 0 0; color: var(--slate-500); font-size: 11px; }

.process-section { background: #eef3f8; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.process-card { min-height: 220px; padding: 27px; border: 1px solid var(--slate-200); border-radius: 19px; background: var(--white); box-shadow: 0 13px 36px rgba(15,23,42,.05); }
.process-card > span { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 26px; border-radius: 13px; color: #1768d6; background: #edf5ff; font-size: 12px; font-weight: 900; }
.process-card h3 { margin-bottom: 9px; font-size: 21px; }
.process-card p { margin: 0; font-size: 14px; }

.why-section { padding-top: 0; }
.why-layout { display: grid; grid-template-columns: 1.03fr .97fr; gap: 56px; padding: 58px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 88% 12%,rgba(34,211,238,.17),transparent 25%),linear-gradient(140deg,#06111f,#0b243f); box-shadow: var(--shadow-dark); }
.why-layout h2 { font-size: clamp(36px,5vw,52px); }
.why-layout > div:first-child > p { max-width: 600px; color: #9fb1c7; font-size: 17px; }
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.why-grid article { padding: 21px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.035); }
.why-grid strong { display: block; margin-bottom: 5px; }
.why-grid span { color: #97abc1; font-size: 13px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }
.faq-heading { position: sticky; top: 110px; }
.faq-heading h2 { font-size: clamp(35px,4.5vw,50px); }
.faq-heading > p { font-size: 17px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { border: 1px solid var(--slate-200); border-radius: 16px; background: var(--white); box-shadow: 0 10px 30px rgba(15,23,42,.04); }
.faq-list summary { position: relative; padding: 21px 54px 21px 22px; color: var(--slate-800); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; right: 21px; top: 19px; width: 28px; height: 28px; display: grid; place-items: center; content: "+"; border-radius: 50%; color: #1768d6; background: #edf5ff; font-size: 20px; font-weight: 500; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 22px 22px; font-size: 14px; }

.final-cta { padding: 0 0 90px; }
.final-cta-card { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 66px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(135deg,#1556ca,#087fae); box-shadow: 0 30px 75px rgba(37,99,235,.23); }
.final-cta-card::before { position: absolute; right: -100px; top: -110px; width: 300px; height: 300px; content: ""; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.final-cta-card h2 { position: relative; font-size: clamp(36px,5vw,54px); }
.final-cta-card p { position: relative; margin: 0; color: #d6ecff; font-size: 17px; }
.cta-actions { position: relative; display: grid; gap: 12px; }
.cta-actions small { color: #c7e2f7; text-align: center; }

.site-footer { padding: 65px 0 25px; color: #91a5bc; background: var(--navy-1000); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.65fr); gap: 42px; padding-bottom: 48px; }
.footer-brand p { max-width: 390px; margin: 20px 0 0; color: #7f94aa; font-size: 14px; }
.footer-brand .footer-disclaimer { font-size: 11px; }
.footer-col h3 { margin-bottom: 17px; color: var(--white); font-size: 14px; letter-spacing: 0; }
.footer-col a { display: block; margin: 10px 0; color: #91a5bc; text-decoration: none; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }

@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-nav > a { font-size: 12px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 790px; }
  .hero-panel { max-width: 670px; }
  .hero { min-height: auto; }
  .service-card { min-height: 610px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: auto; }
}

@media (max-width: 920px) {
  .menu-button { display: block; }
  .site-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 4px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(2,7,18,.98);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .site-nav > a { display: block; padding: 12px; border-radius: 10px; font-size: 14px; }
  .site-nav > a:hover { background: rgba(255,255,255,.06); }
  .site-nav .nav-cta { display: flex; margin-top: 6px; }
  .hero { padding-top: 138px; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .credibility-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card > p { min-height: 0; }
  .assessment-layout, .risk-grid, .self-check-layout, .why-layout, .faq-layout, .final-cta-card { grid-template-columns: 1fr; }
  .assessment-layout, .risk-grid, .self-check-layout, .faq-layout { gap: 45px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 42px; }
  .section-heading p { font-size: 16px; }
  .brand { font-size: 16px; }
  .brand-mark { width: 33px; height: 37px; }
  .hero { padding-bottom: 64px; }
  .hero h1 { font-size: 45px; }
  .hero-copy-block > p { font-size: 17px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-panel { padding: 14px; border-radius: 22px; }
  .panel-heading { grid-template-columns: 42px 1fr; }
  .verified-pill { grid-column: 1 / -1; justify-self: start; }
  .trust-strip { grid-template-columns: 1fr; margin-top: 55px; }
  .trust-strip > div { min-height: auto; }
  .service-card, .chart-card, .simple-explain, .case-card, .readiness-card { padding: 24px; }
  .assessment-layout { gap: 40px; }
  .assessment-promise { grid-template-columns: 1fr; }
  .assessment-steps li { grid-template-columns: 44px 1fr; padding: 16px; }
  .chart-heading { flex-direction: column; }
  .bar-label { align-items: flex-start; }
  .impact-grid { grid-template-columns: 1fr; }
  .readiness-result { grid-template-columns: 1fr; text-align: center; }
  .score-ring { margin-inline: auto; }
  .process-grid, .why-grid { grid-template-columns: 1fr; }
  .why-layout { padding: 34px 24px; }
  .final-cta-card { padding: 48px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

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


/* UAE TrustCore brand assets and comprehensive layout */
.brand-logo {
  min-width: 190px;
}
.brand-logo img {
  width: 214px;
  height: auto;
  object-fit: contain;
}
.footer-logo img { width: 230px; }
.hero-panel {
  overflow: hidden;
}
.hero-panel-logo {
  position: absolute;
  right: -26px;
  bottom: -42px;
  width: 178px;
  opacity: .055;
  pointer-events: none;
  filter: drop-shadow(0 20px 35px rgba(34,211,238,.22));
}
.brand-section {
  background:
    radial-gradient(circle at 88% 20%, rgba(34,211,238,.08), transparent 26%),
    linear-gradient(180deg, #fff, #f6f9fd);
}
.brand-story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 54px;
  align-items: center;
}
.brand-story-copy h2 {
  max-width: 670px;
  font-size: clamp(38px, 5vw, 58px);
}
.brand-story-copy > p {
  max-width: 670px;
  font-size: 18px;
}
.brand-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0;
}
.brand-principles > div {
  min-height: 150px;
  padding: 21px;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 36px rgba(15,23,42,.05);
}
.brand-principles strong {
  display: block;
  margin-bottom: 7px;
  color: #0b315f;
  font-size: 17px;
}
.brand-principles span {
  color: var(--slate-600);
  font-size: 13px;
}
.experience-label {
  margin: 0 0 12px;
  color: var(--slate-700);
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.technology-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.technology-chips span {
  padding: 8px 12px;
  border: 1px solid #cfe0f5;
  border-radius: 999px;
  color: #174f95;
  background: #edf5ff;
  font-size: 12px;
  font-weight: 800;
}
.brand-story-visual {
  min-width: 0;
}
.brand-banner {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(34,211,238,.16);
  border-radius: 26px;
  background: var(--navy-950);
  box-shadow: var(--shadow-dark);
}
.brand-visual-note {
  width: min(90%, 620px);
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
  margin: -42px auto 0;
  padding: 20px 24px;
  position: relative;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-md);
}
.brand-visual-note img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
.brand-visual-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--slate-900);
  font-size: 16px;
}
.brand-visual-note span {
  color: var(--slate-600);
  font-size: 13px;
}
.service-grid {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  min-height: 540px;
}
.hero::after {
  position: absolute;
  right: -90px;
  top: 88px;
  width: min(58vw, 980px);
  height: 250px;
  content: "";
  background: url("hero-city.png") right center / contain no-repeat;
  opacity: .14;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  pointer-events: none;
}
.hero-layout,
.trust-strip { position: relative; z-index: 2; }

@media (max-width: 1100px) {
  .brand-logo { min-width: 170px; }
  .brand-logo img { width: 190px; }
  .site-nav { gap: 16px; }
  .site-nav > a { font-size: 12px; }
  .brand-story-grid { grid-template-columns: 1fr; }
  .brand-story-copy { max-width: 850px; }
  .brand-banner { min-height: 200px; }
}

@media (max-width: 880px) {
  .brand-logo { min-width: auto; }
  .brand-logo img { width: 185px; }
  .brand-principles { grid-template-columns: 1fr; }
  .brand-principles > div { min-height: auto; }
  .brand-visual-note { width: calc(100% - 24px); }
  .hero::after { width: 100%; right: -180px; opacity: .09; }
}

@media (max-width: 560px) {
  .brand-logo img { width: 164px; }
  .brand-banner { min-height: 160px; border-radius: 20px; }
  .brand-visual-note {
    grid-template-columns: 58px 1fr;
    gap: 13px;
    margin-top: -24px;
    padding: 16px;
  }
  .brand-visual-note img { width: 54px; height: 54px; }
  .hero-panel-logo { width: 130px; }
}
