:root {
  --bg: #f5f7fb;
  --ink: #0b1422;
  --muted: #617087;
  --line: #dfe6ef;
  --navy: #07111f;
  --navy-2: #0c1a2d;
  --blue: #4f7cff;
  --cyan: #56d9e8;
  --mint: #73f2c2;
  --white: #ffffff;
  --card: rgba(255,255,255,0.78);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(17, 34, 68, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(79,124,255,.10), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #f5f7fb 32%, #ffffff 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.site-shell { overflow: hidden; }
.section-pad { padding-left: clamp(24px, 6vw, 92px); padding-right: clamp(24px, 6vw, 92px); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 30px));
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(250,252,255,.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(24,38,62,.08);
  transition: .3s ease;
}
.site-header.scrolled {
  top: 10px;
  background: rgba(255,255,255,.92);
  border-color: rgba(222,229,239,.9);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 33px;
  height: 33px;
  border-radius: 10px;
  background: var(--navy);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.brand-mark span {
  position: absolute;
  width: 8px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--mint), var(--blue));
  transform: rotate(38deg);
}
.brand-mark span:nth-child(1) { height: 22px; left: 8px; top: 5px; }
.brand-mark span:nth-child(2) { height: 16px; left: 15px; top: 9px; opacity: .82; }
.brand-mark span:nth-child(3) { height: 10px; left: 22px; top: 13px; opacity: .62; }
.brand-text {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -.03em;
  font-size: 17px;
}
.brand-text strong { font-weight: 500; color: #6a7a91; }

.main-nav { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { color: #344257; transition: color .2s; }
.main-nav > a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta {
  padding: 12px 17px;
  background: var(--navy);
  color: white;
  border-radius: 13px;
}
.menu-toggle { display: none; }

.hero {
  min-height: 820px;
  padding-top: 170px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  gap: clamp(45px, 6vw, 100px);
  align-items: center;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.eyebrow, .kicker {
  font-weight: 700;
  color: #4567d8;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #dbe4ff;
  background: rgba(255,255,255,.72);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(40,72,160,.07);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4f7cff;
  box-shadow: 0 0 0 5px rgba(79,124,255,.12);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Manrope", sans-serif; }
h1 {
  font-size: clamp(48px, 6.1vw, 88px);
  line-height: .99;
  letter-spacing: -.065em;
  margin: 28px 0 28px;
  max-width: 860px;
}
h1 span {
  display: block;
  color: #65758d;
  font-weight: 600;
}
.hero-lead {
  max-width: 650px;
  font-size: clamp(17px, 1.35vw, 21px);
  color: var(--muted);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  min-height: 52px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, #0b1930 0%, #183a80 100%);
  box-shadow: 0 15px 35px rgba(16,48,111,.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(16,48,111,.3); }
.btn-secondary { border-color: #d8e0eb; background: rgba(255,255,255,.72); color: #27374e; }
.btn-secondary:hover { background: white; border-color: #c4cfdd; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-proof div { display: grid; gap: 2px; }
.proof-label { color: #7b8798; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.hero-proof strong { font-size: 14px; color: #26364a; }

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}
.glow-one { width: 520px; height: 520px; right: -110px; top: 90px; background: rgba(79,124,255,.12); }
.glow-two { width: 380px; height: 380px; right: 290px; top: 270px; background: rgba(86,217,232,.08); }

.orbital { position: absolute; border: 1px solid rgba(79,124,255,.12); border-radius: 50%; }
.orbital-one { width: 530px; height: 530px; }
.orbital-two { width: 420px; height: 420px; border-style: dashed; animation: spin 32s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.glass-card {
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(247,250,255,.86));
  border: 1px solid rgba(218,226,239,.9);
  box-shadow: 0 35px 90px rgba(31,52,91,.18), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.product-window {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
  border-radius: 24px;
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.window-top {
  height: 51px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #e6ebf3;
  padding: 0 16px;
}
.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #cbd4e1; }
.window-label { font-weight: 700; color: #67758a; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.status-pill { justify-self: end; padding: 5px 9px; border-radius: 999px; background: #ecfbf5; color: #2b8a65; font-size: 10px; font-weight: 800; }
.dashboard-grid { min-height: 402px; display: grid; grid-template-columns: 76px 1fr; }
.dash-sidebar { background: #0d1728; padding: 18px 16px; display: grid; align-content: start; gap: 20px; }
.mini-brand { width: 26px; height: 26px; border-radius: 9px; background: linear-gradient(135deg, var(--mint), var(--blue)); margin-bottom: 12px; }
.side-line { height: 5px; border-radius: 999px; background: #354156; opacity: .8; }
.side-line.active { background: #7294ff; }
.side-line.short { width: 70%; }

.dash-main { padding: 24px; background: #f8fafd; }
.dash-topline { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.dash-topline > div:first-child { display: grid; }
.micro { font-size: 8px; letter-spacing: .12em; color: #8996a8; font-weight: 800; }
.dash-topline strong { font-size: 14px; }
.avatar-stack { display: flex; padding-right: 8px; }
.avatar-stack span {
  width: 25px; height: 25px; border-radius: 50%;
  border: 2px solid #f8fafd;
  background: #cdd8e8;
  display: grid; place-items: center;
  margin-right: -8px;
  font-size: 10px; font-weight: 800; color: white;
}
.avatar-stack span:nth-child(2) { background: #8ca9e5; }
.avatar-stack span:nth-child(3) { background: #283c66; }

.metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.metric-card {
  min-height: 104px;
  border: 1px solid #e2e8f1;
  background: white;
  border-radius: 15px;
  padding: 14px;
  display: grid;
  align-content: center;
}
.metric-card span { color: #7b8797; font-size: 10px; }
.metric-card strong { font-size: 27px; letter-spacing: -.04em; }
.metric-card small { font-size: 9px; color: #3a956f; }
.metric-card.accent { background: #10233f; border-color: #10233f; }
.metric-card.accent span, .metric-card.accent small { color: #9fb1cb; }
.metric-card.accent strong { color: white; }

.chart-card, .activity-card {
  border: 1px solid #e2e8f1;
  background: white;
  border-radius: 15px;
  margin-top: 12px;
}
.chart-card { padding: 14px; }
.chart-header { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; color: #4e5e73; }
.chart-header small { font-weight: 500; color: #8f9bab; }
.chart { height: 72px; display: flex; align-items: end; gap: 7px; margin-top: 12px; }
.chart span { flex: 1; border-radius: 4px 4px 2px 2px; background: linear-gradient(180deg, #6f8fff, #c3d2ff); }

.activity-card { padding: 4px 13px; }
.activity-card > div { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 9px; padding: 9px 0; }
.activity-card > div + div { border-top: 1px solid #edf1f6; }
.activity-icon {
  width: 25px; height: 25px; border-radius: 8px;
  display: grid; place-items: center;
  background: #ebefff; color: #4d6bce; font-size: 8px; font-weight: 800;
}
.activity-icon.alt { background: #eaf9f3; color: #399172; }
.activity-card p { margin: 0; display: grid; }
.activity-card p strong { font-size: 9px; }
.activity-card p small, .activity-time { font-size: 8px; color: #919bac; }

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 225px;
  padding: 12px 15px;
  border: 1px solid rgba(218,226,239,.95);
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 45px rgba(33,53,92,.14);
  backdrop-filter: blur(16px);
}
.floating-note-top { right: -14px; top: 52px; }
.floating-note-bottom { left: -20px; bottom: 65px; }
.note-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  color: white; background: linear-gradient(135deg, #536df0, #59d9e4);
}
.floating-note div { display: grid; }
.floating-note small { font-size: 9px; color: #8591a3; }
.floating-note strong { font-size: 11px; }
.pulse { width: 12px; height: 12px; border-radius: 50%; background: #52c89d; box-shadow: 0 0 0 7px rgba(82,200,157,.15); margin: 0 7px; }

.trust-strip {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.58);
}
.trust-strip > span { color: #99a4b3; font-size: 10px; letter-spacing: .16em; font-weight: 800; white-space: nowrap; }
.trust-items { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-items strong { font-family: "Manrope"; font-size: 13px; color: #526176; text-align: center; }

.section-block { padding-top: 120px; padding-bottom: 125px; }
.section-heading { max-width: 820px; margin-bottom: 60px; }
.section-heading .kicker { margin-bottom: 16px; }
.section-heading h2 {
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.04;
  letter-spacing: -.055em;
  margin-bottom: 22px;
}
.section-heading > p:last-child { max-width: 670px; color: var(--muted); font-size: 18px; }

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 430px;
  border: 1px solid #dfe6ef;
  background: rgba(255,255,255,.76);
  border-radius: 26px;
  padding: 34px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #cfd9e7; }
.service-card.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(86,217,232,.11), transparent 35%),
    linear-gradient(145deg, #0d1a2d, #0a1424);
  color: white;
  border-color: #182a43;
}
.service-number { position: absolute; right: 24px; top: 18px; color: #a1adbd; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.service-icon {
  width: 48px; height: 48px; border-radius: 15px; padding: 12px;
  background: #eef2ff; margin-bottom: 46px;
}
.service-icon svg { fill: none; stroke: #4f67d9; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon { background: rgba(102,139,255,.14); }
.featured .service-icon svg { stroke: #8ca8ff; }
.service-card h3 { font-size: 25px; letter-spacing: -.035em; margin-bottom: 15px; }
.service-card p { color: #68778d; max-width: 560px; }
.featured p { color: #aebbd0; }
.service-card ul { margin: 26px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; font-size: 14px; color: #44546a; }
.featured ul { color: #d7e0ed; }
.service-card li::before { content: "↳"; margin-right: 8px; color: #7087f0; }

.dark-panel {
  padding-top: 120px;
  padding-bottom: 120px;
  margin: 0 clamp(12px, 2vw, 28px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 20%, rgba(79,124,255,.16), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(86,217,232,.08), transparent 35%),
    #07111f;
  color: white;
}
.why-layout { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(60px, 8vw, 120px); align-items: start; }
.section-heading.light { position: sticky; top: 130px; margin: 0; }
.section-heading.light h2 { font-size: clamp(40px, 4.2vw, 62px); }
.section-heading.light > p:last-child { color: #9eacc1; }

.advantage-stack { display: grid; }
.advantage {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
}
.advantage:first-child { padding-top: 0; }
.advantage-index {
  width: 36px; height: 36px; border-radius: 11px; border: 1px solid rgba(140,168,255,.25);
  display: grid; place-items: center; color: #8ca8ff; font-size: 11px; font-weight: 800;
}
.advantage h3 { font-size: 21px; margin-bottom: 5px; }
.advantage p { margin: 0; color: #9aa9be; }

.comparison-card {
  margin-top: 85px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  border-radius: 22px;
  overflow: hidden;
}
.comparison-head, .comparison-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
}
.comparison-head { background: rgba(255,255,255,.05); }
.comparison-head > *, .comparison-row > * { padding: 20px 22px; margin: 0; }
.comparison-head strong { font-size: 13px; color: #a8b4c7; }
.comparison-row { border-top: 1px solid rgba(255,255,255,.08); }
.comparison-row span { color: #75859d; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.comparison-row p { color: #a9b5c8; }
.highlight-col { background: rgba(79,124,255,.08); color: white !important; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}
.process-step > span {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  background: #f0f4ff; color: #516de0;
  font-size: 12px; font-weight: 800;
  margin-bottom: 66px;
}
.process-step h3 { font-size: 21px; margin-bottom: 9px; }
.process-step p { color: var(--muted); margin: 0; }

.training-section { padding-bottom: 120px; }
.training-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: clamp(36px, 6vw, 76px);
  border-radius: 32px;
  background: linear-gradient(145deg, #eaf1ff 0%, #f1fbfb 100%);
  border: 1px solid #dfe8f3;
}
.training-card::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px; border-radius: 50%;
  right: -150px; top: -170px;
  background: rgba(79,124,255,.11);
  filter: blur(12px);
}
.training-copy { position: relative; z-index: 2; max-width: 650px; }
.training-copy h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.05em;
}
.training-copy > p:not(.kicker) { color: #637286; font-size: 17px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 800; margin-top: 14px; color: #2f54c9; }
.training-visual { position: relative; min-height: 390px; display: grid; place-items: center; z-index: 2; }
.training-core {
  width: 175px; height: 175px; border-radius: 50%;
  display: grid; place-items: center; align-content: center;
  background: #0c1830; color: white;
  box-shadow: 0 30px 70px rgba(25,56,113,.23), 0 0 0 34px rgba(255,255,255,.55), 0 0 0 35px #d8e4f2;
}
.training-core span { font-family: "Manrope"; font-size: 58px; font-weight: 800; letter-spacing: -.07em; }
.training-core small { color: #9eb0c9; font-size: 10px; }
.training-chip {
  position: absolute;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid #d6e0ed;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37,61,103,.08);
  font-size: 12px;
  font-weight: 800;
  color: #516178;
}
.training-chip:nth-child(1) { top: 24px; left: 27%; }
.training-chip:nth-child(2) { top: 100px; right: 3%; }
.training-chip:nth-child(3) { bottom: 30px; right: 11%; }
.training-chip:nth-child(4) { bottom: 55px; left: 3%; }
.training-chip:nth-child(5) { top: 105px; left: 1%; }

.vision-section {
  padding-top: 40px;
  padding-bottom: 125px;
}
.vision-quote { max-width: 1040px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: Georgia, serif; font-size: 92px; line-height: .6; color: #7690f3; }
blockquote {
  margin: 20px 0 24px;
  font-family: "Manrope";
  font-weight: 600;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.vision-quote p { color: #768398; font-weight: 700; }

.contact-section {
  padding-top: 0;
  padding-bottom: 70px;
}
.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(35px, 6vw, 72px);
  border-radius: 32px;
  background: #0a1526;
  color: white;
  box-shadow: 0 35px 80px rgba(16,32,58,.19);
}
.contact-copy h2 {
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.contact-copy > p:not(.kicker) { color: #9eacc1; font-size: 17px; }
.contact-points { display: grid; gap: 15px; margin-top: 36px; color: #bdc8d8; }
.contact-points div { display: flex; gap: 12px; }
.contact-points span {
  flex: 0 0 auto;
  width: 28px; height: 28px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(100,131,255,.13);
  color: #9fb2ff; font-size: 9px; font-weight: 800;
}

.contact-form {
  padding: 28px;
  background: white;
  color: var(--ink);
  border-radius: 22px;
  display: grid;
  gap: 16px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label > span { font-size: 12px; font-weight: 800; color: #516075; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  background: #f9fbfd;
  padding: 13px 14px;
  color: #142035;
  outline: none;
  transition: .2s;
}
.contact-form textarea { resize: vertical; min-height: 118px; }
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #7c96f6;
  box-shadow: 0 0 0 4px rgba(79,124,255,.09);
  background: white;
}
.submit-btn { width: 100%; border: 0; margin-top: 3px; }
.form-note { margin: 0; text-align: center; color: #8b97a8; font-size: 10px; }
.form-note.success { color: #318967; font-weight: 700; }

.site-footer { padding-top: 70px; padding-bottom: 32px; }
.footer-brand { display: grid; gap: 18px; }
.footer-brand p { color: #718096; max-width: 380px; }
.footer-links {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 230px));
  gap: 40px;
}
.footer-links div { display: grid; gap: 8px; align-content: start; }
.footer-links strong { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: #9aa5b4; margin-bottom: 4px; }
.footer-links a { color: #3f4f65; font-size: 14px; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8894a4;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1040px) {
  .main-nav { gap: 17px; }
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { max-width: 860px; }
  .hero-visual { min-height: 520px; max-width: 700px; width: 100%; margin: 0 auto; }
  .trust-strip { flex-direction: column; align-items: stretch; padding-top: 28px; padding-bottom: 28px; gap: 18px; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .why-layout { grid-template-columns: 1fr; }
  .section-heading.light { position: relative; top: auto; }
  .advantage-stack { grid-template-columns: repeat(2, 1fr); gap: 0 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .training-card, .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 45px;
    height: 45px;
    border: 1px solid #dde4ed;
    border-radius: 13px;
    background: white;
  }
  .menu-toggle span { width: 20px; height: 2px; background: #1a2738; border-radius: 3px; transition: .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid #dde4ed;
    box-shadow: 0 24px 45px rgba(18,31,54,.13);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 6px; }
  .nav-cta { text-align: center; }

  .services-grid { grid-template-columns: 1fr; }
  .comparison-head, .comparison-row { grid-template-columns: 110px 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-header { height: 64px; }
  .brand-text { font-size: 15px; }
  .hero { min-height: auto; padding-top: 128px; padding-bottom: 65px; }
  h1 { font-size: clamp(43px, 14vw, 65px); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .product-window { transform: none; }
  .dashboard-grid { grid-template-columns: 54px 1fr; }
  .dash-sidebar { padding: 14px 11px; }
  .dash-main { padding: 15px; }
  .floating-note { display: none; }
  .orbital-one { width: 360px; height: 360px; }
  .orbital-two { width: 300px; height: 300px; }
  .trust-items { grid-template-columns: 1fr; }
  .trust-items strong { text-align: left; }
  .section-block { padding-top: 85px; padding-bottom: 90px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 39px; }
  .service-card { padding: 25px; min-height: auto; }
  .service-icon { margin-bottom: 35px; }
  .dark-panel { margin: 0 8px; padding-top: 80px; padding-bottom: 80px; border-radius: 26px; }
  .advantage-stack { grid-template-columns: 1fr; }
  .comparison-card { overflow-x: auto; }
  .comparison-head, .comparison-row { min-width: 700px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 220px; }
  .process-step > span { margin-bottom: 42px; }
  .training-section { padding-bottom: 85px; }
  .training-card { padding: 30px 24px; }
  .training-visual { min-height: 330px; }
  .training-chip { font-size: 10px; }
  .vision-section { padding-bottom: 90px; }
  .contact-card { padding: 28px 22px; border-radius: 24px; }
  .contact-form { padding: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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