:root {
  --navy: #04102A;
  --indigo: #0C1793;
  --royal: #0A34D4;
  --orange: #FB700C;
  --smoke: #F2F2F2;
  --navy-92: rgba(4, 16, 42, .92);
  --navy-70: rgba(4, 16, 42, .70);
  --navy-18: rgba(4, 16, 42, .18);
  --navy-10: rgba(4, 16, 42, .10);
  --smoke-84: rgba(242, 242, 242, .84);
  --smoke-18: rgba(242, 242, 242, .18);
  --smoke-10: rgba(242, 242, 242, .10);
  --orange-18: rgba(251, 112, 12, .18);
  --royal-18: rgba(10, 52, 212, .18);
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(4, 16, 42, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--smoke);
  font-family: "Grift", "Avenir Next", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--orange); color: var(--navy); }

.skip-link {
  position: fixed; left: 16px; top: -70px; z-index: 2000;
  background: var(--orange); color: var(--navy); padding: 10px 16px;
  border-radius: 0 0 10px 10px; font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: min(var(--max), calc(100% - 44px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: var(--smoke); background: var(--navy); }
.section-soft { background: rgba(10, 52, 212, .055); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(242, 242, 242, .96);
  border-color: var(--navy-10);
  box-shadow: 0 8px 30px rgba(4, 16, 42, .08);
  backdrop-filter: blur(16px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: block; width: 208px; height: 62px; flex: 0 0 auto; position: relative; }
.brand-frame { display: block; position: relative; width: 100%; height: 100%; overflow: hidden; }
.brand-logo { position: absolute; width: 130.3%; max-width: none; height: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); transition: opacity .2s ease; }
.brand-logo-dark { opacity: 0; }
.site-header.scrolled .brand-logo-light { opacity: 0; }
.site-header.scrolled .brand-logo-dark { opacity: 1; }
.site-header:not(.scrolled) .brand-logo-light { filter: drop-shadow(0 4px 16px rgba(4,16,42,.2)); }
.main-nav { display: flex; align-items: center; gap: 30px; color: var(--smoke); font-size: .93rem; font-weight: 700; }
.scrolled .main-nav { color: var(--navy); }
.main-nav a:not(.nav-cta) { position: relative; padding: 12px 0; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 0; height: 2px; background: var(--orange); transition: width .2s ease; }
.main-nav a:not(.nav-cta):hover::after, .main-nav a:not(.nav-cta):focus-visible::after { width: 100%; }
.nav-cta { padding: 12px 20px; border-radius: 999px; background: var(--orange); color: var(--navy); box-shadow: 0 10px 28px var(--orange-18); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--smoke); margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }
.scrolled .menu-toggle span { background: var(--navy); }

.hero { min-height: 100vh; position: relative; overflow: hidden; padding: 150px 0 90px; display: grid; align-items: center; }
.hero::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; right: -230px; top: -260px; background: var(--indigo); opacity: .58; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; left: -250px; bottom: -220px; background: var(--orange); opacity: .88; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 68px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px; text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 900; }
.eyebrow span { width: 26px; height: 3px; background: var(--orange); border-radius: 99px; }
.eyebrow.dark { color: var(--indigo); }
.hero h1 { margin: 0; font-size: clamp(3rem, 5.6vw, 5.7rem); line-height: .99; letter-spacing: -.055em; font-weight: 650; }
.hero h1 strong { display: inline-block; color: var(--orange); font-weight: 800; }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: var(--smoke-84); font-size: clamp(1.05rem, 1.45vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 25px; border-radius: 999px; border: 2px solid transparent; font-weight: 900; letter-spacing: .01em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--navy); box-shadow: 0 14px 34px var(--orange-18); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(251,112,12,.28); }
.button-ghost { color: var(--smoke); border-color: var(--smoke-18); background: var(--smoke-10); }
.button-ghost:hover { background: var(--smoke-18); }
.button.full { width: 100%; border-radius: 14px; }
.sector-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.sector-list span { padding: 7px 11px; border: 1px solid var(--smoke-18); background: var(--smoke-10); border-radius: 999px; font-size: .78rem; color: var(--smoke-84); }
.hero-visual { position: relative; min-width: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 230px; height: 230px; background: var(--royal); top: -55px; right: -70px; opacity: .76; }
.orb-two { width: 160px; height: 160px; background: var(--orange); bottom: -70px; left: -60px; opacity: .78; }
.dashboard-shell { position: relative; z-index: 2; overflow: hidden; border: 1px solid var(--smoke-18); border-radius: 25px; background: var(--smoke); box-shadow: 0 34px 90px rgba(4,16,42,.52); transform: perspective(1400px) rotateY(-4deg) rotateX(2deg); }
.dashboard-topbar { height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--navy-10); }
.topbar-brand { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.topbar-mark { width: 45px; height: 45px; display: block; position: relative; overflow: hidden; flex: 0 0 auto; }
.topbar-mark img { position: absolute; width: 63px; max-width: none; height: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.topbar-brand div { display: grid; line-height: 1.15; }
.topbar-brand strong { font-size: .82rem; letter-spacing: .02em; }
.topbar-brand small { font-size: .58rem; color: var(--navy-70); }
.live-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; background: var(--royal-18); color: var(--indigo); font-size: .62rem; font-weight: 850; }
.live-chip i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px var(--orange-18); }
.dashboard-body { min-height: 450px; display: grid; grid-template-columns: 56px 1fr; }
.dashboard-sidebar { background: var(--navy); padding: 22px 0; display: flex; align-items: center; flex-direction: column; gap: 20px; }
.dashboard-sidebar span { width: 17px; height: 17px; border: 2px solid var(--smoke-18); border-radius: 5px; }
.dashboard-sidebar span:nth-child(2) { border-radius: 50%; }
.dashboard-sidebar span:nth-child(3) { transform: rotate(45deg); border-radius: 3px; }
.dashboard-sidebar span:nth-child(4) { width: 20px; height: 3px; border: 0; background: var(--smoke-18); box-shadow: 0 6px 0 var(--smoke-18), 0 -6px 0 var(--smoke-18); }
.dashboard-sidebar span.active { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 6px var(--orange-18); }
.dashboard-content { padding: 22px 20px 24px; color: var(--navy); min-width: 0; }
.dashboard-heading { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 17px; }
.dashboard-heading div { display: grid; }
.dashboard-heading small { font-size: .6rem; text-transform: uppercase; letter-spacing: .12em; color: var(--indigo); font-weight: 900; }
.dashboard-heading strong { font-size: 1.05rem; }
.view-label { font-size: .55rem; color: var(--navy-70); }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.metric-grid article { position: relative; min-height: 78px; padding: 13px 42px 13px 13px; border: 1px solid var(--navy-10); border-radius: 13px; background: var(--smoke); box-shadow: 0 8px 20px rgba(4,16,42,.05); display: grid; align-content: center; }
.metric-grid span { font-size: .57rem; color: var(--navy-70); }
.metric-grid strong { font-size: .75rem; }
.metric-icon { position: absolute; right: 12px; top: 50%; translate: 0 -50%; width: 21px; height: 21px; border-radius: 7px; }
.icon-blue { background: var(--royal); box-shadow: 0 0 0 5px var(--royal-18); }
.icon-orange { background: var(--orange); box-shadow: 0 0 0 5px var(--orange-18); }
.icon-indigo { background: var(--indigo); box-shadow: 0 0 0 5px rgba(12,23,147,.16); }
.icon-navy { background: var(--navy); box-shadow: 0 0 0 5px var(--navy-10); }
.chart-grid { display: grid; grid-template-columns: 1.45fr .9fr; gap: 10px; margin-top: 10px; }
.chart-card, .status-card { min-height: 190px; border: 1px solid var(--navy-10); border-radius: 13px; padding: 14px; background: var(--smoke); }
.card-title { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.card-title span { font-size: .66rem; font-weight: 900; }
.card-title small { font-size: .5rem; color: var(--navy-70); }
.bar-chart { height: 125px; display: flex; align-items: flex-end; gap: 8px; padding: 17px 5px 0; border-bottom: 1px solid var(--navy-10); }
.bar-chart i { flex: 1; height: var(--h); border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--royal), var(--indigo)); position: relative; }
.bar-chart i:nth-child(3n+2) { background: var(--orange); }
.status-card { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.status-card .card-title { grid-column: 1 / -1; }
.ring { width: 86px; aspect-ratio: 1; margin: auto; border-radius: 50%; background: conic-gradient(var(--royal) 0 44%, var(--orange) 44% 70%, var(--indigo) 70% 92%, var(--navy-10) 92%); display: grid; place-items: center; position: relative; }
.ring::after { content: ""; position: absolute; inset: 12px; background: var(--smoke); border-radius: 50%; }
.ring span { position: relative; z-index: 2; font-size: .68rem; font-weight: 900; }
.status-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .5rem; }
.status-card li { display: flex; align-items: center; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot.blue { background: var(--royal); } .dot.orange { background: var(--orange); } .dot.indigo { background: var(--indigo); }
.hero-stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: linear-gradient(90deg, var(--orange) 0 22%, var(--royal) 22% 66%, var(--indigo) 66%); }

.section-heading { max-width: 760px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.section-heading h2, .benefits-intro h2, .about-copy h2, .contact-copy h2 { margin: 0; font-size: clamp(2.3rem, 4.1vw, 4.2rem); line-height: 1.08; letter-spacing: -.048em; }
.section-heading h2 em, .benefits-intro h2 em { font-style: normal; color: var(--royal); }
.section-heading p, .benefits-intro > p, .about-copy > p { margin: 24px 0 0; color: var(--navy-70); font-size: 1.08rem; }
.section-heading.light p { color: var(--smoke-84); }
.section-heading.light h2 { color: var(--smoke); }

.transformation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 62px; }
.transform-card { position: relative; min-height: 310px; overflow: hidden; padding: 32px 26px; border: 1px solid var(--navy-10); border-radius: var(--radius); background: var(--smoke); box-shadow: 0 16px 45px rgba(4,16,42,.06); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.transform-card:hover { transform: translateY(-7px); border-color: var(--royal); box-shadow: var(--shadow); }
.transform-card .number { position: absolute; right: 22px; top: 17px; font-size: .74rem; color: var(--navy-70); font-weight: 900; }
.transform-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: var(--royal); margin-bottom: 47px; box-shadow: 0 14px 34px var(--royal-18); }
.transform-card:nth-child(2) .transform-icon { background: var(--orange); box-shadow: 0 14px 34px var(--orange-18); }
.transform-card:nth-child(3) .transform-icon { background: var(--indigo); }
.transform-card:nth-child(4) .transform-icon { background: var(--navy); }
.transform-icon svg { width: 27px; fill: var(--smoke); }
.transform-card h3 { margin: 0 0 12px; font-size: 1.35rem; }
.transform-card p { margin: 0; color: var(--navy-70); font-size: .95rem; }

.solutions-layout { display: grid; grid-template-columns: 370px 1fr; gap: 25px; margin-top: 58px; }
.solution-tabs { display: grid; gap: 9px; align-content: start; }
.solution-tab { width: 100%; text-align: left; border: 1px solid var(--navy-10); background: var(--smoke); color: var(--navy); min-height: 62px; padding: 0 18px; border-radius: 14px; cursor: pointer; display: flex; align-items: center; gap: 15px; font-weight: 800; transition: .2s ease; }
.solution-tab span { color: var(--royal); font-size: .72rem; }
.solution-tab:hover { border-color: var(--royal); transform: translateX(4px); }
.solution-tab.active { background: var(--navy); color: var(--smoke); border-color: var(--navy); box-shadow: 0 18px 40px var(--navy-18); }
.solution-tab.active span { color: var(--orange); }
.solution-panels { min-width: 0; }
.solution-panel { min-height: 455px; display: grid; grid-template-columns: 1fr .9fr; gap: 34px; align-items: center; padding: 40px; border-radius: 28px; background: var(--navy); color: var(--smoke); box-shadow: var(--shadow); overflow: hidden; position: relative; }
.solution-panel::after { content: ""; position: absolute; width: 310px; height: 310px; border-radius: 50%; right: -180px; top: -150px; background: var(--royal); opacity: .55; }
.solution-panel[hidden] { display: none; }
.panel-copy { position: relative; z-index: 2; }
.panel-tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: var(--orange-18); color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; font-weight: 900; }
.panel-copy h3 { margin: 18px 0 17px; font-size: clamp(1.7rem, 2.4vw, 2.6rem); line-height: 1.12; letter-spacing: -.025em; }
.panel-copy p { color: var(--smoke-84); margin: 0; }
.check-list { list-style: none; margin: 25px 0 0; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 9px; font-size: .9rem; }
.check-list li::before { content: ""; width: 16px; height: 16px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: inset 0 0 0 5px var(--navy); border: 2px solid var(--orange); }
.panel-visual { min-height: 310px; position: relative; z-index: 2; display: grid; place-items: center; border: 1px solid var(--smoke-18); border-radius: 24px; background: var(--smoke-10); overflow: hidden; }
.panel-visual::before { content: ""; position: absolute; inset: 12%; border: 1px dashed var(--smoke-18); border-radius: 50%; }
.mini-card { position: absolute; width: 82%; min-height: 82px; padding: 14px; border-radius: 15px; background: var(--smoke); color: var(--navy); display: flex; align-items: center; gap: 12px; box-shadow: 0 16px 36px rgba(4,16,42,.3); }
.mini-card > i { width: 38px; height: 38px; border-radius: 12px; background: var(--royal); flex: 0 0 auto; position: relative; }
.mini-card > i::before { content: ""; position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--smoke); left: 50%; top: 7px; translate: -50%; }
.mini-card > i::after { content: ""; position: absolute; width: 22px; height: 10px; border-radius: 10px 10px 4px 4px; background: var(--smoke); left: 50%; bottom: 6px; translate: -50%; }
.mini-card div { display: grid; flex: 1; line-height: 1.35; }
.mini-card strong { font-size: .8rem; }.mini-card span { font-size: .58rem; color: var(--navy-70); }.mini-card b { font-size: .56rem; padding: 5px 7px; background: var(--royal-18); color: var(--indigo); border-radius: 999px; }
.person-main { top: 18%; left: 9%; }.person-sub { bottom: 16%; right: 9%; }.person-sub > i { background: var(--orange); }.person-sub b { background: var(--orange-18); color: var(--orange); }.connection-line { position: absolute; width: 3px; height: 70px; background: var(--smoke-18); rotate: 23deg; }
.id-card { width: 210px; height: 265px; border-radius: 22px; background: var(--smoke); color: var(--navy); box-shadow: 0 25px 50px rgba(4,16,42,.35); text-align: center; padding: 34px 22px 20px; position: relative; display: flex; flex-direction: column; align-items: center; }
.id-top { position: absolute; inset: 0 0 auto; height: 23px; border-radius: 22px 22px 0 0; background: var(--orange); }
.id-card i { width: 73px; height: 73px; border-radius: 50%; background: var(--royal); margin-bottom: 24px; box-shadow: 0 0 0 9px var(--royal-18); position: relative; }
.id-card i::before { content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: var(--smoke); top: 14px; left: 50%; translate: -50%; }
.id-card i::after { content: ""; position: absolute; width: 42px; height: 20px; border-radius: 20px 20px 8px 8px; background: var(--smoke); bottom: 10px; left: 50%; translate: -50%; }
.id-card strong { color: var(--indigo); font-size: .88rem; letter-spacing: .08em; }.id-card span { color: var(--navy-70); font-size: .66rem; }.id-card b { margin-top: auto; font-size: .62rem; letter-spacing: .12em; }
.gate { display: flex; gap: 54px; align-items: end; height: 185px; }.gate span { width: 54px; height: 175px; background: var(--smoke); border-radius: 8px; position: relative; box-shadow: 0 14px 34px rgba(4,16,42,.25); }.gate span::before { content: ""; position: absolute; width: 85px; height: 10px; background: var(--orange); top: 55px; }.gate span:first-child::before { left: 38px; transform-origin: left; rotate: 0deg; }.gate span:last-child::before { right: 38px; transform-origin: right; rotate: 0deg; }
.access-signal { position: absolute; bottom: 26px; padding: 11px 16px; border-radius: 13px; background: var(--smoke); color: var(--navy); display: grid; grid-template-columns: auto 1fr; column-gap: 9px; line-height: 1.3; box-shadow: 0 12px 32px rgba(4,16,42,.3); }.access-signal i { width: 12px; height: 12px; border-radius: 50%; background: var(--orange); grid-row: 1 / 3; align-self: center; box-shadow: 0 0 0 5px var(--orange-18); }.access-signal strong { font-size: .72rem; }.access-signal small { font-size: .55rem; color: var(--navy-70); }
.doc { position: absolute; width: 185px; height: 235px; border-radius: 15px; background: var(--smoke); box-shadow: 0 20px 45px rgba(4,16,42,.28); }.doc.back { rotate: -13deg; opacity: .35; }.doc.mid { rotate: 10deg; opacity: .55; }.doc.front { padding: 28px 22px; color: var(--navy); }.doc.front > i { display: block; width: 48px; height: 48px; border-radius: 14px; background: var(--royal); margin-bottom: 24px; }.doc.front > span { display: block; height: 7px; border-radius: 10px; background: var(--navy-10); margin: 11px 0; }.doc.front > span:nth-of-type(1) { width: 90%; }.doc.front > span:nth-of-type(2) { width: 72%; }.doc.front > span:nth-of-type(3) { width: 82%; }.doc.front b { display: inline-flex; margin-top: 26px; padding: 6px 9px; background: var(--orange-18); color: var(--orange); border-radius: 99px; font-size: .58rem; }
.hub { width: 125px; height: 125px; border-radius: 50%; background: var(--smoke); display: grid; place-items: center; box-shadow: 0 18px 45px rgba(4,16,42,.3); position: relative; overflow: hidden; }.hub img { width: 132px; max-width: none; height: auto; }.node { position: absolute; width: 42px; height: 42px; border-radius: 14px; background: var(--orange); box-shadow: 0 0 0 9px var(--orange-18); }.node::before { content: ""; position: absolute; height: 2px; width: 72px; background: var(--smoke-18); top: 50%; z-index: -1; }.n1 { left: -95px; top: -50px; }.n1::before { left: 35px; rotate: 28deg; transform-origin: left; }.n2 { right: -95px; top: -50px; background: var(--royal); box-shadow: 0 0 0 9px var(--royal-18); }.n2::before { right: 35px; rotate: -28deg; transform-origin: right; }.n3 { left: -95px; bottom: -50px; background: var(--indigo); box-shadow: 0 0 0 9px rgba(12,23,147,.2); }.n3::before { left: 35px; rotate: -28deg; transform-origin: left; }.n4 { right: -95px; bottom: -50px; background: var(--orange); }.n4::before { right: 35px; rotate: 28deg; transform-origin: right; }
.sign-doc { width: 230px; min-height: 270px; background: var(--smoke); color: var(--navy); padding: 28px 25px; border-radius: 18px; box-shadow: 0 25px 50px rgba(4,16,42,.35); position: relative; }.sign-doc > span { font-size: .8rem; font-weight: 900; }.sign-doc > i { display: block; height: 7px; border-radius: 8px; background: var(--navy-10); margin-top: 18px; }.sign-doc > i:nth-of-type(2) { width: 72%; }.signature { margin-top: 48px; padding-bottom: 6px; border-bottom: 2px solid var(--navy); color: var(--royal); font-size: 1.35rem; font-style: italic; font-weight: 800; }.sign-doc b { position: absolute; right: 20px; bottom: 18px; padding: 6px 9px; border-radius: 999px; background: var(--orange-18); color: var(--orange); font-size: .58rem; }

.benefits-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.benefits-intro { position: sticky; top: 120px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; color: var(--indigo); font-weight: 900; }
.text-link span { display: grid; place-items: center; width: 31px; height: 31px; border-radius: 50%; background: var(--orange); color: var(--navy); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.benefit-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-card { min-height: 226px; padding: 27px; border: 1px solid var(--navy-10); border-radius: 20px; background: var(--smoke); box-shadow: 0 12px 35px rgba(4,16,42,.05); transition: .25s ease; }
.benefit-card:hover { transform: translateY(-5px); border-color: var(--orange); box-shadow: var(--shadow); }
.benefit-card > span { display: inline-grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: var(--royal); color: var(--smoke); font-size: .72rem; font-weight: 900; box-shadow: 0 10px 28px var(--royal-18); }
.benefit-card:nth-child(even) > span { background: var(--orange); color: var(--navy); box-shadow: 0 10px 28px var(--orange-18); }
.benefit-card h3 { margin: 34px 0 9px; font-size: 1.25rem; }
.benefit-card p { margin: 0; color: var(--navy-70); font-size: .92rem; }

.process { position: relative; overflow: hidden; }
.process::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: var(--indigo); left: -330px; top: -170px; opacity: .55; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 58px; }
.process-track::before { content: ""; position: absolute; left: 8%; right: 8%; top: 78px; height: 2px; background: linear-gradient(90deg, var(--orange), var(--royal), var(--orange)); opacity: .7; }
.process-step { position: relative; z-index: 2; min-height: 270px; padding: 24px; border: 1px solid var(--smoke-18); border-radius: 22px; background: var(--smoke-10); backdrop-filter: blur(6px); }
.process-step > span { color: var(--orange); font-size: .7rem; font-weight: 900; letter-spacing: .12em; }
.step-icon { width: 62px; height: 62px; margin: 23px 0 36px; border-radius: 50%; background: var(--smoke); display: grid; place-items: center; position: relative; box-shadow: 0 0 0 10px var(--smoke-10); }
.step-icon i { width: 23px; height: 23px; border-radius: 7px; border: 3px solid var(--royal); }
.process-step:nth-child(2) .step-icon i { position: absolute; width: 19px; height: 19px; }.process-step:nth-child(2) .step-icon i:first-child { translate: -6px -5px; }.process-step:nth-child(2) .step-icon i:last-child { translate: 7px 6px; border-color: var(--orange); }
.process-step:nth-child(3) .step-icon i { border-radius: 50%; }.process-step:nth-child(3) .step-icon b { position: absolute; width: 28px; height: 3px; background: var(--orange); rotate: -36deg; }
.process-step:nth-child(4) .step-icon { display: flex; gap: 4px; align-items: end; justify-content: center; }.process-step:nth-child(4) .step-icon i { border: 0; width: 8px; border-radius: 3px; background: var(--royal); }.process-step:nth-child(4) .step-icon i:nth-child(1) { height: 15px; }.process-step:nth-child(4) .step-icon i:nth-child(2) { height: 26px; background: var(--orange); }.process-step:nth-child(4) .step-icon i:nth-child(3) { height: 36px; background: var(--indigo); }
.process-step h3 { margin: 0 0 10px; font-size: 1.25rem; }.process-step p { margin: 0; color: var(--smoke-84); font-size: .91rem; }

.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.about-visual { min-height: 560px; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: 32px; background: var(--navy); box-shadow: var(--shadow); }
.about-shape { position: absolute; border-radius: 50%; }.shape-one { width: 440px; height: 440px; border: 75px solid var(--indigo); right: -240px; top: -120px; }.shape-two { width: 290px; height: 290px; background: var(--orange); left: -170px; bottom: -130px; }
.brand-disc { width: 295px; height: 295px; border-radius: 50%; display: grid; place-items: center; background: var(--smoke); position: relative; z-index: 2; box-shadow: 0 24px 70px rgba(4,16,42,.42); overflow: hidden; }.brand-disc img { width: 318px; max-width: none; height: auto; }
.about-note { position: absolute; z-index: 3; left: 30px; bottom: 28px; padding: 13px 16px; border-radius: 14px; background: var(--smoke); color: var(--navy); display: grid; box-shadow: 0 15px 35px rgba(4,16,42,.28); }.about-note strong { font-size: .85rem; }.about-note span { font-size: .62rem; color: var(--navy-70); }
.about-copy blockquote { margin: 30px 0; padding: 22px 24px; border-left: 5px solid var(--orange); border-radius: 0 16px 16px 0; background: var(--orange-18); color: var(--indigo); font-size: 1.05rem; font-weight: 750; }
.mission-vision { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }.mission-vision article { padding: 18px; border: 1px solid var(--navy-10); border-radius: 15px; }.mission-vision span { color: var(--royal); font-weight: 900; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; }.mission-vision p { margin: 9px 0 0; color: var(--navy-70); font-size: .88rem; }

.contact-section { padding: 45px 0 100px; background: var(--smoke); }
.contact-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 68px; padding: 58px; border-radius: 32px; background: var(--navy); color: var(--smoke); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.contact-shell::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; border: 95px solid var(--indigo); left: -290px; bottom: -270px; opacity: .7; }
.contact-copy, .contact-form { position: relative; z-index: 2; }
.contact-copy h2 { color: var(--smoke); }
.contact-copy > p { color: var(--smoke-84); font-size: 1.05rem; }
.contact-points { display: grid; gap: 12px; margin-top: 32px; }.contact-points span { display: flex; align-items: center; gap: 10px; font-size: .9rem; }.contact-points i { width: 17px; height: 17px; border-radius: 50%; border: 2px solid var(--orange); box-shadow: inset 0 0 0 4px var(--navy); background: var(--orange); }
.contact-form { padding: 28px; border-radius: 22px; background: var(--smoke); color: var(--navy); display: grid; gap: 15px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.contact-form label { display: grid; gap: 7px; font-size: .76rem; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--navy-18); border-radius: 11px; background: var(--smoke); color: var(--navy); padding: 12px 13px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--royal); box-shadow: 0 0 0 4px var(--royal-18); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 9px; font-weight: 600; color: var(--navy-70); }.consent input { width: 17px; height: 17px; accent-color: var(--orange); margin-top: 2px; }
.form-status { min-height: 20px; margin: -4px 0 0; font-size: .73rem; color: var(--indigo); font-weight: 800; text-align: center; }
.field-error { border-color: var(--orange) !important; box-shadow: 0 0 0 4px var(--orange-18) !important; }

.site-footer { background: var(--navy); color: var(--smoke); padding: 65px 0 24px; }
.footer-main { display: grid; grid-template-columns: 1.6fr .65fr .9fr; gap: 65px; padding-bottom: 48px; }.footer-logo { display: block; width: 220px; height: 65px; }.footer-logo-frame { display: block; position: relative; width: 100%; height: 100%; overflow: hidden; }.footer-logo-frame img { position: absolute; width: 130.3%; max-width: none; height: auto; left: 50%; top: 50%; transform: translate(-50%, -50%); filter: drop-shadow(0 5px 18px rgba(4,16,42,.3)); }.footer-brand p { max-width: 410px; color: var(--smoke-84); font-size: .9rem; }.footer-links { display: grid; align-content: start; gap: 10px; }.footer-links strong { color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; margin-bottom: 7px; }.footer-links a { color: var(--smoke-84); font-size: .88rem; }.footer-links a:hover { color: var(--orange); }.footer-bottom { border-top: 1px solid var(--smoke-18); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: var(--smoke-84); font-size: .76rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; 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; }
}

@media (max-width: 1100px) {
  .hero-grid { gap: 38px; }
  .dashboard-shell { transform: none; }
  .transformation-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-layout { grid-template-columns: 300px 1fr; }
  .solution-panel { grid-template-columns: 1fr; }
  .panel-visual { min-height: 280px; }
  .benefits-grid { grid-template-columns: 1fr; }.benefits-intro { position: static; max-width: 760px; }
  .process-track { grid-template-columns: repeat(2, 1fr); }.process-track::before { display: none; }
}

@media (max-width: 900px) {
  .site-header { background: rgba(4,16,42,.96); border-bottom-color: var(--smoke-18); }.site-header.scrolled { background: rgba(242,242,242,.97); }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }.menu-toggle.open span:nth-child(2) { opacity: 0; }.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 82px 0 auto; padding: 20px 22px 28px; display: grid; gap: 4px; background: var(--navy); color: var(--smoke); border-top: 1px solid var(--smoke-18); box-shadow: 0 30px 50px rgba(4,16,42,.35); translate: 0 -130%; opacity: 0; pointer-events: none; transition: .25s ease; }
  .scrolled .main-nav { background: var(--smoke); color: var(--navy); border-top-color: var(--navy-10); }
  .main-nav.open { translate: 0; opacity: 1; pointer-events: auto; }
  .main-nav a:not(.nav-cta) { padding: 13px 4px; }.nav-cta { margin-top: 8px; text-align: center; }
  .hero { padding-top: 125px; }.hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.hero-visual { max-width: 680px; margin-inline: auto; }
  .section-heading.split { grid-template-columns: 1fr; gap: 20px; }
  .solutions-layout { grid-template-columns: 1fr; }.solution-tabs { display: flex; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }.solution-tab { min-width: 245px; scroll-snap-align: start; }
  .about-grid, .contact-shell { grid-template-columns: 1fr; }.about-visual { min-height: 470px; }.contact-shell { padding: 42px; }
  .footer-main { grid-template-columns: 1.4fr 1fr; }.footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 82px 0; }
  .brand { width: 174px; height: 52px; }.header-inner { min-height: 74px; }.main-nav { inset: 74px 0 auto; }
  .hero { padding-top: 112px; }.hero h1 { font-size: clamp(2.7rem, 13vw, 4.3rem); }.hero-actions { display: grid; }.hero-actions .button { width: 100%; }.sector-list { gap: 6px; }
  .dashboard-body { grid-template-columns: 38px 1fr; }.dashboard-sidebar { gap: 16px; }.dashboard-sidebar span { scale: .8; }.dashboard-content { padding: 16px 12px; }.dashboard-topbar { padding: 0 13px; }.live-chip { display: none; }.metric-grid { grid-template-columns: 1fr; }.chart-grid { grid-template-columns: 1fr; }.status-card { display: none; }
  .section-heading h2, .benefits-intro h2, .about-copy h2, .contact-copy h2 { font-size: clamp(2.05rem, 11vw, 3.2rem); }
  .transformation-grid { grid-template-columns: 1fr; }.transform-card { min-height: 270px; }
  .solution-panel { padding: 28px 22px; }.panel-visual { min-height: 255px; }.solution-tab { min-width: 225px; }
  .benefit-cards { grid-template-columns: 1fr; }.benefit-card { min-height: 200px; }
  .process-track { grid-template-columns: 1fr; }
  .about-visual { min-height: 390px; }.brand-disc { width: 230px; height: 230px; }.brand-disc img { width: 250px; }.about-note { left: 17px; bottom: 16px; }
  .mission-vision, .field-row { grid-template-columns: 1fr; }.contact-shell { padding: 34px 20px; border-radius: 24px; }.contact-form { padding: 21px 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 35px; }.footer-brand { grid-column: auto; }.footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  .brand { width: 156px; height: 47px; }
  .hero h1 { font-size: clamp(2.45rem, 12.5vw, 3.35rem); }
  .sector-list span { font-size: .68rem; padding-inline: 10px; }
  .brand-disc { width: 208px; height: 208px; }
  .brand-disc img { width: 226px; }
  .footer-logo { width: 190px; height: 57px; }
}
