:root {
  --ink: #0a1633;
  --ink-2: #111f42;
  --blue: #3157f6;
  --blue-2: #1f46e5;
  --blue-soft: #eef2ff;
  --cyan-soft: #e9f6ff;
  --paper: #f7f8fb;
  --white: #ffffff;
  --line: rgba(10, 22, 51, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #5f6c86;
  --muted-light: #b9c3d8;
  --success: #0f8c67;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 8px 30px rgba(19, 36, 78, 0.08);
  --shadow-lg: 0 28px 90px rgba(13, 28, 67, 0.16);
  --container: min(1220px, calc(100% - 40px));
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(49, 87, 246, .18); }

.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 9999;
  background: var(--white); color: var(--ink); padding: 12px 16px; border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-sm { padding: 76px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-white { background: var(--white); }
.section-blue { background: var(--blue); color: var(--white); }
.section-grid {
  background-image: linear-gradient(rgba(10,22,51,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,22,51,.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 750; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-dark .eyebrow, .section-blue .eyebrow { color: #a9bcff; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -.035em; line-height: 1.06; }
h1 { font-size: clamp(3.2rem, 7vw, 6.9rem); font-weight: 570; }
h2 { font-size: clamp(2.35rem, 4.7vw, 4.8rem); font-weight: 560; }
h3 { font-size: clamp(1.35rem, 2.1vw, 2rem); font-weight: 600; }
h4 { font-size: 1.05rem; letter-spacing: -.01em; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.65; color: var(--muted); }
.section-dark .lead, .section-blue .lead { color: var(--muted-light); }
.copy { max-width: 68ch; color: var(--muted); }
.section-dark .copy, .section-blue .copy { color: var(--muted-light); }
.muted { color: var(--muted); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 750; letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 10px 30px rgba(49,87,246,.26); }
.btn-primary:hover { background: var(--blue-2); box-shadow: 0 14px 38px rgba(49,87,246,.34); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-outline { border-color: var(--line); background: transparent; color: var(--ink); }
.section-dark .btn-outline { border-color: var(--line-light); color: var(--white); }
.btn-link { min-height: auto; padding: 0; border-radius: 0; color: var(--blue); }
.btn svg { width: 17px; transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247,248,251,.9); border-color: var(--line); backdrop-filter: blur(18px);
}
.site-header.on-dark:not(.is-scrolled) { color: var(--white); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 760; letter-spacing: -.03em; font-size: 20px; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 10px; background: var(--blue); position: relative; overflow: hidden; flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.brand-mark::before, .brand-mark::after { content: ""; position: absolute; background: white; border-radius: 999px; }
.brand-mark::before { width: 5px; height: 21px; left: 10px; top: 7px; transform: rotate(28deg); }
.brand-mark::after { width: 5px; height: 15px; right: 9px; top: 10px; transform: rotate(28deg); opacity: .68; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav > a, .nav .nav-trigger { font-size: 14px; font-weight: 670; color: inherit; background: none; border: 0; padding: 10px 0; }
.nav > a:hover, .nav .nav-trigger:hover { color: var(--blue); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { min-height: 46px; padding-inline: 18px; }
.nav-item { position: relative; }
.nav-trigger { display: inline-flex; align-items: center; gap: 6px; }
.nav-trigger svg { width: 14px; }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 10px);
  width: 640px; padding: 16px; border: 1px solid var(--line); border-radius: 18px;
  background: rgba(255,255,255,.98); color: var(--ink); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: all .18s ease;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown-card { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 14px; border-radius: 13px; }
.dropdown-card:hover { background: var(--blue-soft); }
.dropdown-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.dropdown-icon svg { width: 19px; }
.dropdown-card strong { display: block; font-size: 14px; }
.dropdown-card span { display: block; font-size: 12px; line-height: 1.45; color: var(--muted); margin-top: 2px; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); place-items: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 18px; height: 2px; background: var(--ink); position: absolute; transition: .2s ease; }
.menu-toggle::before { transform: translateY(-6px); }
.menu-toggle::after { transform: translateY(6px); }
.menu-toggle.is-active span { opacity: 0; }
.menu-toggle.is-active::before { transform: rotate(45deg); }
.menu-toggle.is-active::after { transform: rotate(-45deg); }

.hero {
  min-height: 900px; padding: 160px 0 90px; background: var(--ink); color: var(--white); overflow: hidden; position: relative;
}
.hero::before {
  content: ""; position: absolute; width: 720px; height: 720px; border-radius: 50%; right: -220px; top: -280px;
  background: radial-gradient(circle, rgba(49,87,246,.35), rgba(49,87,246,0) 68%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 78%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; gap: 72px; align-items: center; }
.hero h1 { margin: 22px 0 26px; max-width: 920px; }
.hero h1 span { color: #9cb0ff; }
.hero-copy { max-width: 680px; font-size: 1.16rem; color: #c4cce0; }
.hero .actions { margin-top: 34px; }
.hero-note { margin-top: 28px; display: flex; gap: 22px; flex-wrap: wrap; color: #aeb8ce; font-size: 13px; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7aa2ff; box-shadow: 0 0 0 5px rgba(122,162,255,.1); }

.system-window {
  position: relative; border: 1px solid rgba(255,255,255,.16); border-radius: 28px; overflow: hidden;
  background: rgba(255,255,255,.07); backdrop-filter: blur(16px); box-shadow: 0 45px 120px rgba(0,0,0,.35);
}
.window-bar { height: 56px; border-bottom: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; padding: 0 18px; }
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); }
.window-label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #bbc7e2; }
.window-status { display: flex; align-items: center; gap: 8px; color: #b5f2d8; font-size: 11px; }
.window-status::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #42d6a4; box-shadow: 0 0 14px #42d6a4; }
.system-body { display: grid; grid-template-columns: 82px 1fr; min-height: 520px; }
.system-side { border-right: 1px solid rgba(255,255,255,.1); padding: 20px 14px; display: flex; flex-direction: column; gap: 14px; }
.side-pill { height: 40px; border-radius: 10px; display: grid; place-items: center; color: #93a4c7; }
.side-pill.active { background: var(--blue); color: white; }
.side-pill svg { width: 18px; }
.system-main { padding: 22px; }
.system-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.system-title h3 { font-size: 1.35rem; margin: 0; }
.system-title small { color: #9eabc5; }
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi-card { padding: 16px; min-height: 108px; border-radius: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.kpi-label { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: #a7b4d0; }
.kpi-value { font-size: 1.75rem; font-weight: 720; margin-top: 12px; letter-spacing: -.04em; }
.kpi-change { font-size: 11px; color: #6fe0b5; margin-top: 4px; }
.chart-panel { margin-top: 12px; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.chart-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.chart-head strong { font-size: 12px; }
.chart-head span { font-size: 10px; color: #9eabc5; }
.chart { height: 145px; position: relative; overflow: hidden; }
.chart-gridline { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255,255,255,.08); }
.chart-gridline:nth-child(1){ top:15%;}.chart-gridline:nth-child(2){top:45%;}.chart-gridline:nth-child(3){top:75%;}
.chart svg { width: 100%; height: 100%; }
.queue { margin-top: 12px; display: grid; gap: 8px; }
.queue-row { display:grid; grid-template-columns: 30px 1fr auto; align-items:center; gap: 10px; padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.055); }
.queue-icon { width: 30px; height: 30px; border-radius: 9px; display:grid; place-items:center; background: rgba(49,87,246,.28); color:#b7c4ff; }
.queue-row strong { font-size: 11px; display:block; }
.queue-row small { font-size: 9px; color:#8f9dbb; }
.queue-badge { font-size:9px; padding:5px 7px; border-radius:999px; background:rgba(66,214,164,.12); color:#7be3bd; }
.floating-card { position: absolute; border: 1px solid rgba(255,255,255,.16); background: rgba(18,32,70,.92); color:white; backdrop-filter:blur(12px); border-radius: 16px; box-shadow: 0 22px 50px rgba(0,0,0,.28); }
.floating-card.one { left:-42px; bottom:74px; padding:14px 16px; width:175px; }
.floating-card.two { right:-34px; top:102px; padding:13px 15px; width:160px; }
.floating-card span { display:block; color:#9fabca; font-size:9px; text-transform:uppercase; letter-spacing:.1em; }
.floating-card strong { font-size:13px; display:block; margin-top:5px; }
.floating-card em { font-size:10px; color:#73e0b7; font-style:normal; }

.trust-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 28px 20px; min-height: 98px; border-right: 1px solid var(--line); display:flex; flex-direction:column; justify-content:center; }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item strong { font-size: 14px; }
.trust-item span { color: var(--muted); font-size: 12px; margin-top: 3px; }

.section-head { display:flex; align-items:end; justify-content:space-between; gap: 44px; margin-bottom: 56px; }
.section-head h2 { max-width: 780px; margin: 12px 0 0; }
.section-head .copy { max-width: 430px; margin-bottom: 5px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 370px; padding: 32px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display:flex; flex-direction:column; transition: background .25s ease, transform .25s ease; position:relative; overflow:hidden; }
.service-card:hover { background: var(--blue-soft); }
.service-number { font-size: 11px; font-weight: 750; color: var(--blue); letter-spacing: .12em; }
.service-icon { width: 54px; height: 54px; border-radius: 15px; display:grid; place-items:center; background: var(--blue-soft); color: var(--blue); margin: 34px 0 34px; }
.service-card:hover .service-icon { background: var(--blue); color: white; }
.service-icon svg { width: 25px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card .btn-link { margin-top: auto; align-self:flex-start; font-size: 13px; }

.outcomes-grid { display:grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items:start; }
.outcome-tabs { display:grid; border-top:1px solid var(--line); }
.outcome-tab { width:100%; border:0; border-bottom:1px solid var(--line); background:transparent; padding:24px 0; text-align:left; display:grid; grid-template-columns:42px 1fr auto; align-items:center; gap:14px; color:var(--muted); }
.outcome-tab strong { font-size:16px; color:inherit; }
.outcome-tab span { font-size:11px; color:var(--blue); }
.outcome-tab svg { width:18px; }
.outcome-tab.active { color:var(--ink); }
.outcome-panel { min-height: 520px; background: var(--ink); color:white; border-radius: var(--radius-lg); padding:40px; position:relative; overflow:hidden; }
.outcome-panel::before { content:""; position:absolute; width:360px; height:360px; border-radius:50%; right:-140px; top:-100px; background:radial-gradient(circle, rgba(49,87,246,.45), transparent 68%); }
.outcome-content { position:relative; z-index:1; }
.outcome-content > div { display:none; }
.outcome-content > div.active { display:block; }
.outcome-content h3 { font-size:clamp(2rem,3.4vw,3.4rem); max-width:590px; }
.outcome-content p { color:#bdc7dc; max-width:590px; }
.outcome-list { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:34px; }
.outcome-list li { list-style:none; padding:16px; border:1px solid rgba(255,255,255,.12); border-radius:14px; color:#d5dcef; font-size:13px; }
.outcome-list li::before { content:"✓"; color:#8bb0ff; margin-right:8px; }

.work-grid { display:grid; gap:30px; }
.project-card { display:grid; grid-template-columns: 1.04fr .96fr; min-height:590px; border-radius:28px; overflow:hidden; background:var(--white); border:1px solid var(--line); }
.project-card:nth-child(even) .project-visual { order:2; }
.project-visual { padding:44px; background:#eaf0ff; position:relative; overflow:hidden; display:grid; place-items:center; }
.project-card:nth-child(2) .project-visual { background:#e9f7f6; }
.project-card:nth-child(3) .project-visual { background:#f4eefc; }
.project-copy { padding:54px; display:flex; flex-direction:column; justify-content:center; }
.project-label { display:inline-flex; align-items:center; gap:8px; color:var(--blue); font-size:11px; font-weight:760; letter-spacing:.11em; text-transform:uppercase; }
.project-label::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--blue); }
.project-copy h3 { font-size:clamp(2rem,3.2vw,3.5rem); margin:18px 0; }
.project-copy p { color:var(--muted); }
.project-tags { display:flex; flex-wrap:wrap; gap:8px; margin:24px 0 34px; }
.project-tags span { padding:7px 10px; border:1px solid var(--line); border-radius:999px; font-size:11px; color:var(--muted); }
.mock-window { width:min(100%,540px); border-radius:22px; background:#fff; box-shadow:0 28px 70px rgba(20,45,110,.18); overflow:hidden; transform:rotate(-2deg); }
.mock-top { height:42px; border-bottom:1px solid #e9edf5; display:flex; align-items:center; justify-content:space-between; padding:0 14px; }
.mock-dots { display:flex; gap:5px; }.mock-dots i{width:6px;height:6px;border-radius:50%;background:#cfd7e7;}
.mock-top span { font-size:8px; color:#7d899f; }
.mock-body { display:grid; grid-template-columns:64px 1fr; min-height:350px; }
.mock-nav { background:#0d1a38; padding:14px 10px; display:flex; flex-direction:column; gap:10px; }
.mock-nav i { height:28px; border-radius:7px; background:rgba(255,255,255,.08); }.mock-nav i:first-child{background:#3157f6;}
.mock-content { padding:18px; }
.mock-heading { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.mock-heading b { font-size:10px; }.mock-heading i{width:60px;height:18px;border-radius:6px;background:#3157f6;}
.mock-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }.mock-kpis div{height:70px;border:1px solid #e8edf5;border-radius:10px;padding:10px;}.mock-kpis b{display:block;font-size:14px;}.mock-kpis span{font-size:6px;color:#8a96aa;}
.mock-graph { height:120px; margin-top:9px; border:1px solid #e8edf5; border-radius:10px; position:relative; overflow:hidden; background:linear-gradient(to bottom,#fff,#fafbff); }
.mock-graph svg{position:absolute;inset:0;width:100%;height:100%;}
.mock-table{margin-top:9px;border:1px solid #e8edf5;border-radius:10px;padding:8px;display:grid;gap:6px;}.mock-table i{height:13px;border-radius:4px;background:#f0f3f8;}.mock-table i:nth-child(2){width:82%;}.mock-table i:nth-child(3){width:91%;}
.phone { width:235px; padding:9px; border-radius:38px; background:#0c1730; box-shadow:0 30px 70px rgba(25,41,85,.25); transform:rotate(5deg); }
.phone-screen { background:#fff; border-radius:31px; overflow:hidden; min-height:470px; }
.phone-top { height:110px; background:linear-gradient(135deg,#3157f6,#6f8cff); padding:24px 18px;color:white; }
.phone-top small{font-size:8px;opacity:.8}.phone-top b{display:block;font-size:20px;margin-top:8px;}.phone-cards{padding:14px;display:grid;gap:10px}.phone-card{padding:13px;border:1px solid #e7ebf3;border-radius:14px}.phone-card b{font-size:10px}.phone-card p{font-size:7px;margin:5px 0 0;color:#7f8aa0}.phone-progress{height:6px;border-radius:999px;background:#edf0f7;margin-top:9px;overflow:hidden}.phone-progress i{display:block;width:67%;height:100%;background:#3157f6}.phone-nav{height:52px;border-top:1px solid #e7ebf3;display:grid;grid-template-columns:repeat(4,1fr);place-items:center}.phone-nav i{width:14px;height:14px;border-radius:4px;background:#d8deea}.phone-nav i:first-child{background:#3157f6}

.process-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line-light); border-left:1px solid var(--line-light); }
.process-step { padding:32px; min-height:310px; border-right:1px solid var(--line-light); border-bottom:1px solid var(--line-light); }
.process-step span { font-size:11px; color:#92a9ff; letter-spacing:.12em; }
.process-step h3 { margin:70px 0 14px; }
.process-step p { color:#b9c3d8; font-size:14px; }

.why-grid { display:grid; grid-template-columns: 1fr 1fr; gap:80px; align-items:center; }
.why-list { display:grid; }
.why-item { padding:22px 0; border-bottom:1px solid var(--line); display:grid; grid-template-columns:42px 1fr; gap:16px; }
.why-item:first-child{border-top:1px solid var(--line)}
.why-index { width:34px;height:34px;border-radius:50%;background:var(--blue-soft);color:var(--blue);display:grid;place-items:center;font-size:11px;font-weight:750; }
.why-item h3 { font-size:1.22rem; margin:2px 0 6px; }
.why-item p { color:var(--muted); font-size:13px; margin:0; }
.principles-card { padding:44px; border-radius:28px; background:var(--blue); color:white; min-height:520px; position:relative; overflow:hidden; }
.principles-card::after { content:""; position:absolute; width:360px;height:360px;border:1px solid rgba(255,255,255,.2);border-radius:50%;right:-170px;bottom:-140px;box-shadow:0 0 0 60px rgba(255,255,255,.04),0 0 0 120px rgba(255,255,255,.025); }
.principles-card blockquote { font-size:clamp(1.8rem,3vw,3rem); line-height:1.18; letter-spacing:-.035em; margin:0; max-width:620px; position:relative; z-index:1; }
.principles-card footer { margin-top:40px; color:#d4dcff; font-size:13px; position:relative; z-index:1; }

.industries-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; }
.industry-card { min-height:230px; padding:24px; border-radius:18px; border:1px solid var(--line); background:white; display:flex;flex-direction:column;justify-content:space-between; }
.industry-card svg{width:25px;color:var(--blue)}
.industry-card h3{font-size:1.1rem;margin:0}.industry-card p{font-size:12px;color:var(--muted);margin:8px 0 0}
.tech-cloud { display:flex; flex-wrap:wrap; gap:10px; margin-top:34px; }
.tech-cloud span { padding:11px 14px; border:1px solid var(--line); border-radius:999px; background:white; font-size:12px; font-weight:670; }

.faq { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-question { width:100%;border:0;background:transparent;padding:25px 0;text-align:left;display:grid;grid-template-columns:1fr 30px;align-items:center;gap:20px;font-weight:700;color:var(--ink); }
.faq-icon { width:28px;height:28px;border-radius:50%;border:1px solid var(--line);position:relative; }
.faq-icon::before,.faq-icon::after{content:"";position:absolute;width:10px;height:1px;background:var(--ink);left:8px;top:13px;transition:.2s}.faq-icon::after{transform:rotate(90deg)}
.faq-item.open .faq-icon::after{transform:rotate(0)}
.faq-answer { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-answer p { padding:0 60px 24px 0; color:var(--muted); max-width:760px; }

.cta-panel { border-radius:32px; background:var(--ink); color:white; overflow:hidden; position:relative; }
.cta-grid { display:grid; grid-template-columns:1.08fr .92fr; }
.cta-copy { padding:72px; position:relative; z-index:1; }
.cta-copy h2 { margin:14px 0 20px; }
.cta-copy p { color:#bdc7dc; max-width:590px; }
.cta-art { min-height:480px; position:relative; background:var(--blue); overflow:hidden; }
.cta-art::before,.cta-art::after { content:"";position:absolute;border:1px solid rgba(255,255,255,.25);border-radius:50%; }
.cta-art::before{width:460px;height:460px;right:-130px;top:-40px;box-shadow:0 0 0 70px rgba(255,255,255,.05),0 0 0 140px rgba(255,255,255,.03)}
.cta-art::after{width:140px;height:140px;left:70px;bottom:60px;background:rgba(255,255,255,.08)}
.cta-art .mini-note { position:absolute;left:60px;top:70px;right:60px;padding:22px;border-radius:18px;background:white;color:var(--ink);box-shadow:var(--shadow-lg); }
.mini-note span {font-size:10px;color:var(--blue);font-weight:750;text-transform:uppercase;letter-spacing:.12em}.mini-note strong{display:block;font-size:20px;margin-top:8px}.mini-note p{font-size:12px;color:var(--muted);margin:8px 0 0}

.site-footer { background:#071027; color:white; padding:76px 0 28px; }
.footer-top { display:grid; grid-template-columns:1.4fr repeat(3,.6fr); gap:50px; padding-bottom:60px; }
.footer-brand p { color:#aab5cd; max-width:410px; margin:20px 0 0; }
.footer-col h4 { font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#8998b8;margin-bottom:18px; }
.footer-col a { display:block;color:#d7deed;font-size:13px;margin:10px 0; }
.footer-col a:hover { color:#8ea7ff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12);padding-top:22px;display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;color:#8492af;font-size:12px; }
.footer-locations { display:flex;gap:18px;flex-wrap:wrap; }

.page-hero { padding:170px 0 90px; background:var(--ink); color:white; position:relative; overflow:hidden; }
.page-hero::after { content:"";position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:64px 64px;mask-image:linear-gradient(to right,transparent,black);opacity:.28; }
.page-hero .container { position:relative;z-index:1; }
.page-hero h1 { max-width:1050px;margin:18px 0 24px;font-size:clamp(3.4rem,7vw,6.8rem); }
.page-hero .lead { max-width:760px; }
.breadcrumbs { display:flex;gap:8px;font-size:12px;color:#91a0bf;margin-bottom:24px; }.breadcrumbs a:hover{color:white}

.split { display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start; }
.large-list { border-top:1px solid var(--line); }
.large-list-item { padding:28px 0;border-bottom:1px solid var(--line);display:grid;grid-template-columns:44px 1fr;gap:16px; }
.large-list-item span { color:var(--blue);font-size:11px;font-weight:760;letter-spacing:.1em; }
.large-list-item h3{font-size:1.35rem;margin-bottom:8px}.large-list-item p{color:var(--muted);font-size:14px;margin:0}

.service-detail-grid { display:grid;grid-template-columns:1fr 1fr;gap:28px; }
.detail-card { background:white;border:1px solid var(--line);border-radius:20px;padding:30px; }
.detail-card .service-icon{margin:0 0 28px}.detail-card p{color:var(--muted);font-size:14px}.detail-card ul{padding:0;margin:22px 0 0;display:grid;gap:10px}.detail-card li{list-style:none;font-size:13px;color:var(--muted)}.detail-card li::before{content:"→";color:var(--blue);margin-right:8px}

.stats-grid { display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line); }
.stat { padding:32px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);background:white; }
.stat strong{display:block;font-size:clamp(2rem,4vw,4rem);letter-spacing:-.06em}.stat span{display:block;color:var(--muted);font-size:12px;margin-top:6px}

.contact-grid { display:grid;grid-template-columns:.8fr 1.2fr;gap:80px;align-items:start; }
.contact-card { padding:32px;border:1px solid var(--line);border-radius:20px;background:white; }
.contact-card + .contact-card { margin-top:14px; }
.contact-card span{font-size:11px;color:var(--blue);font-weight:750;text-transform:uppercase;letter-spacing:.1em}.contact-card strong{display:block;font-size:20px;margin-top:10px}.contact-card p{font-size:13px;color:var(--muted);margin:7px 0 0}
.form { display:grid;gap:16px; }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:16px; }
.field { display:grid;gap:7px; }
.field label { font-size:12px;font-weight:700; }
.field input,.field textarea,.field select { width:100%;border:1px solid var(--line);border-radius:12px;background:white;padding:15px 16px;color:var(--ink);outline:none;transition:border-color .2s,box-shadow .2s; }
.field textarea{min-height:150px;resize:vertical}.field input:focus,.field textarea:focus,.field select:focus{border-color:var(--blue);box-shadow:0 0 0 4px rgba(49,87,246,.1)}
.form-note{font-size:11px;color:var(--muted)}.form-status{font-size:13px;min-height:20px}.form-status.success{color:var(--success)}.form-status.error{color:#b42318}.honeypot{position:absolute;left:-9999px;}

.legal { max-width:820px; }.legal h2{font-size:2rem;margin-top:48px}.legal h3{font-size:1.25rem;margin-top:32px}.legal p,.legal li{color:var(--muted)}

.reveal { opacity:0; transform:translateY(22px); transition:opacity .7s cubic-bezier(.2,.75,.25,1), transform .7s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1{transition-delay:.08s}.reveal-delay-2{transition-delay:.16s}.reveal-delay-3{transition-delay:.24s}

@media (max-width: 1050px) {
  .nav, .header-cta .btn { display:none; }
  .menu-toggle { display:grid; position:relative; }
  .mobile-nav { display:none; position:fixed;inset:82px 0 0;background:var(--paper);padding:24px 20px 40px;overflow:auto;color:var(--ink); }
  .mobile-nav.open{display:block}.mobile-nav a{display:block;padding:18px 0;border-bottom:1px solid var(--line);font-size:20px;font-weight:650}.mobile-nav small{display:block;font-size:11px;color:var(--muted);margin-top:4px;font-weight:400}
  .hero-grid { grid-template-columns:1fr; }
  .hero { min-height:auto; }
  .system-window { max-width:760px; }
  .floating-card.one { left:12px; }.floating-card.two{right:12px}
  .trust-grid { grid-template-columns:repeat(3,1fr); }.trust-item:nth-child(4),.trust-item:nth-child(5){border-top:1px solid var(--line)}
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .outcomes-grid,.why-grid,.split,.contact-grid { grid-template-columns:1fr;gap:48px; }
  .project-card { grid-template-columns:1fr; }.project-card:nth-child(even) .project-visual{order:0}.project-visual{min-height:480px}
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .industries-grid{grid-template-columns:repeat(3,1fr)}
  .cta-grid{grid-template-columns:1fr}.cta-art{min-height:390px}
  .footer-top{grid-template-columns:1fr 1fr 1fr}.footer-brand{grid-column:1/-1}
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1220px); }
  .section{padding:78px 0}.section-sm{padding:56px 0}.header-inner{height:72px}.mobile-nav{inset:72px 0 0}
  h1{font-size:clamp(2.75rem,15vw,4.5rem)}h2{font-size:clamp(2.15rem,11vw,3.4rem)}
  .hero{padding:132px 0 66px}.hero-grid{gap:48px}.hero-copy{font-size:1.03rem}
  .system-body{grid-template-columns:54px 1fr;min-height:470px}.system-side{padding:14px 8px}.system-main{padding:14px}.kpi-grid{grid-template-columns:1fr 1fr}.kpi-card:nth-child(3){display:none}.system-title small{display:none}.floating-card{display:none}.chart{height:125px}
  .trust-grid{grid-template-columns:1fr 1fr}.trust-item{padding:20px 14px;min-height:84px}.trust-item:nth-child(3){border-top:1px solid var(--line)}
  .section-head{display:block;margin-bottom:36px}.section-head .copy{margin-top:20px}
  .services-grid{grid-template-columns:1fr}.service-card{min-height:310px;padding:26px}.service-icon{margin:25px 0}
  .outcome-panel{padding:28px;min-height:500px}.outcome-list{grid-template-columns:1fr}
  .project-copy{padding:32px 25px}.project-visual{padding:26px;min-height:400px}.mock-window{transform:none}.mock-body{grid-template-columns:50px 1fr}.mock-kpis{grid-template-columns:1fr 1fr}.mock-kpis div:nth-child(3){display:none}
  .process-grid{grid-template-columns:1fr}.process-step{min-height:auto}.process-step h3{margin:40px 0 10px}
  .principles-card{padding:30px;min-height:430px}
  .industries-grid{grid-template-columns:1fr 1fr}.industry-card{min-height:190px}
  .cta-copy{padding:42px 26px}.cta-art .mini-note{left:24px;right:24px;top:44px}
  .footer-top{grid-template-columns:1fr 1fr;gap:34px}.footer-brand{grid-column:1/-1}
  .page-hero{padding:130px 0 68px}.page-hero h1{font-size:clamp(3rem,14vw,5rem)}
  .service-detail-grid,.stats-grid{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}
}

@media (max-width: 430px){
  .actions{align-items:stretch}.actions .btn{width:100%}.hero-note{display:grid;gap:10px}.industries-grid{grid-template-columns:1fr}.footer-top{grid-template-columns:1fr}.kpi-grid{grid-template-columns:1fr}.kpi-card:nth-child(2){display:none}.system-window{border-radius:20px}.phone{transform:none}
}

@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}
}
