:root {
  --navy: #071324;
  --navy-2: #0b1d34;
  --blue: #176bff;
  --cyan: #38d6e7;
  --ink: #10233d;
  --muted: #5d6d80;
  --line: #dce5ef;
  --soft: #f3f7fb;
  --white: #ffffff;
  --success: #22b573;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(5, 28, 59, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(800px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.7rem, 6vw, 5.35rem); max-width: 900px; }
h2 { font-size: clamp(2.05rem, 4.5vw, 3.55rem); max-width: 820px; }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.72; }
.section { padding: 108px 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #c8d7e8; background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 52px; }
.section-head .lead { max-width: 520px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 30px rgba(23, 107, 255, .3); }
.btn-primary:hover { background: #0757dc; }
.btn-secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.btn-secondary:hover { border-color: #a8bfd8; }
.btn-white { color: var(--navy); background: var(--white); }
.text-link { color: var(--blue); font-weight: 800; }
.text-link::after { content: "  →"; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--navy);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(220,229,239,.78);
  backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.03em; font-size: 1.25rem; }
.brand-mark { display: block; height: 44px; width: auto; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 27px; font-size: .92rem; font-weight: 750; }
.nav-links a:not(.btn):hover, .nav-links a.active { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; color: var(--navy); }
.nav-toggle span { display: block; width: 25px; height: 2px; margin: 5px; background: currentColor; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 78px;
  color: white;
  background:
    radial-gradient(circle at 90% 10%, rgba(56,214,231,.22), transparent 26%),
    radial-gradient(circle at 12% 85%, rgba(23,107,255,.24), transparent 32%),
    var(--navy);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; }
.hero h1 { color: white; font-size: clamp(3rem, 6.2vw, 5.35rem); }
.hero h1 span { color: var(--cyan); }
.hero .eyebrow { color: var(--cyan); margin-bottom: 24px; }
.hero-copy > p { max-width: 700px; margin-top: 26px; color: #c8d8eb; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 19px 30px; margin-top: 34px; color: #aebfd2; font-size: .87rem; font-weight: 650; }
.trust-row span::before { content: "✓"; margin-right: 8px; color: var(--cyan); }
.hero-visual { position: relative; min-height: 520px; }
.hero-photo {
  width: 100%; height: 520px; object-fit: cover; border-radius: 28px; border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}
.hero-dashboard {
  position: absolute; left: -48px; bottom: 30px; width: min(330px, 85%); padding: 22px;
  color: var(--ink); background: rgba(255,255,255,.96); border-radius: 20px; box-shadow: var(--shadow);
}
.metric-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.metric-label { color: var(--muted); font-size: .76rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.live-pill { color: #087548; background: #e5f8ef; padding: 4px 9px; border-radius: 99px; font-size: .72rem; font-weight: 850; }
.metric-value { margin: 10px 0 14px; color: var(--navy); font-size: 2rem; font-weight: 900; line-height: 1; }
.bars { display: flex; height: 56px; align-items: end; gap: 7px; }
.bars i { flex: 1; display: block; border-radius: 6px 6px 2px 2px; background: linear-gradient(var(--cyan), var(--blue)); }
.bars i:nth-child(1) { height: 32%; }.bars i:nth-child(2) { height: 48%; }.bars i:nth-child(3) { height: 42%; }
.bars i:nth-child(4) { height: 68%; }.bars i:nth-child(5) { height: 60%; }.bars i:nth-child(6) { height: 85%; }.bars i:nth-child(7) { height: 100%; }

.logo-strip { padding: 23px 0; background: white; border-bottom: 1px solid var(--line); }
.logo-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 35px; color: #52657a; font-size: .83rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.logo-strip strong { color: var(--blue); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { padding: 32px; background: white; border: 1px solid var(--line); border-radius: var(--radius); transition: .25s ease; }
.card:hover { transform: translateY(-5px); border-color: #b9cae0; box-shadow: var(--shadow); }
.card-number { display: inline-block; margin-bottom: 30px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .12em; }
.card p { margin: 14px 0 24px; color: var(--muted); }
.card-featured { color: #d7e4f2; background: var(--navy); border-color: var(--navy); }
.card-featured h3 { color: white; }
.card-featured p { color: #b8c8d9; }
.card-featured .text-link { color: var(--cyan); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.sticky-copy { position: sticky; top: 120px; }
.sticky-copy h2 { margin-top: 16px; }
.sticky-copy .lead { margin-top: 24px; }
.steps { counter-reset: process; }
.step { position: relative; padding: 0 0 42px 76px; counter-increment: process; }
.step::before {
  content: "0" counter(process); position: absolute; left: 0; top: 0; display: grid; width: 48px; height: 48px; place-items: center;
  color: var(--blue); background: #eaf2ff; border-radius: 50%; font-size: .76rem; font-weight: 900;
}
.step:not(:last-child)::after { content: ""; position: absolute; top: 54px; bottom: 6px; left: 23px; width: 1px; background: var(--line); }
.step p { margin-top: 9px; color: var(--muted); }

.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.result-panel { padding: 38px; border-radius: var(--radius); }
.result-panel h3 { margin-bottom: 14px; }
.result-panel p { color: #b8c8d9; }
.result-panel.light { color: var(--ink); background: white; }
.result-panel.light h3 { color: var(--navy); }
.result-panel.light p { color: var(--muted); }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan); font-weight: 900; }
.light .check-list li::before { color: var(--blue); }

.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px; }
.proof { padding: 28px; border: 1px solid var(--line); border-radius: 18px; }
.proof strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 1.1rem; }
.proof span { color: var(--muted); font-size: .93rem; }

.cta-band { position: relative; overflow: hidden; padding: 72px; color: white; background: linear-gradient(120deg, #095ce4, #1838a7); border-radius: 30px; }
.cta-band::after { content: ""; position: absolute; width: 320px; height: 320px; right: -100px; top: -170px; border: 60px solid rgba(255,255,255,.1); border-radius: 50%; }
.cta-band h2 { color: white; max-width: 720px; }
.cta-band p { max-width: 720px; margin: 20px 0 30px; color: #dce8ff; font-size: 1.1rem; }

.page-hero { padding: 94px 0 82px; color: #c5d4e5; background: var(--navy); }
.page-hero h1 { margin-top: 20px; color: white; max-width: 980px; }
.page-hero .lead { max-width: 770px; margin-top: 25px; color: #c5d4e5; }
.page-hero .eyebrow { color: var(--cyan); }
.page-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.service-box { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.service-box p { margin-top: 15px; color: var(--muted); }
.service-box ul { margin: 24px 0 0; padding-left: 20px; color: var(--muted); }
.service-box li { margin: 8px 0; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.industry { padding: 24px; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 16px; font-weight: 850; }

.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 30px; }
.contact-panel { padding: 38px; border-radius: var(--radius); background: var(--navy); color: #c2d2e4; }
.contact-panel h2, .contact-panel h3 { color: white; }
.contact-panel h2 { font-size: 2.2rem; }
.contact-list { display: grid; gap: 24px; margin-top: 36px; }
.contact-item span { display: block; color: #91a6bd; font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-item a, .contact-item p { display: block; margin-top: 4px; color: white; font-weight: 700; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .86rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; color: var(--ink); background: #fbfdff; border: 1px solid #cdd9e6; border-radius: 10px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,107,255,.11); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { grid-column: 1 / -1; color: var(--muted); font-size: .82rem; }
.success-message { display: none; grid-column: 1 / -1; padding: 13px 15px; color: #08643f; background: #e8f8f0; border-radius: 10px; font-weight: 700; }

.legal h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal h2 { margin: 46px 0 15px; font-size: 1.65rem; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 22px; }

.site-footer { padding: 65px 0 28px; color: #9eb1c6; background: #050e1b; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr .9fr; gap: 45px; }
.footer-brand p { max-width: 330px; margin-top: 18px; }
.footer-col h3 { margin-bottom: 17px; color: white; font-size: .95rem; letter-spacing: 0; }
.footer-col a { display: block; margin: 9px 0; font-size: .9rem; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 24px; border-top: 1px solid #1a293b; font-size: .82rem; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 76px 0 auto; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 24px 20px 30px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 6px; }
  .nav-links .btn { margin-top: 10px; }
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; }
  .hero-photo { height: 430px; }
  .hero-dashboard { left: 20px; }
  .sticky-copy { position: static; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .section-head { align-items: start; flex-direction: column; margin-bottom: 36px; }
  .hero { padding: 66px 0 56px; }
  .hero-grid { gap: 44px; }
  .hero h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero-copy > p { font-size: 1.05rem; }
  .hero-photo { height: 350px; }
  .hero-dashboard { position: relative; left: 14px; bottom: auto; margin-top: -68px; }
  .cards, .results-grid, .service-detail, .industry-grid, .proof-grid, .form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-note, .success-message { grid-column: auto; }
  .card, .service-box, .form, .contact-panel { padding: 27px; }
  .step { padding-left: 64px; }
  .cta-band { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
