:root {
  --navy: #061427;
  --navy-2: #0b2241;
  --navy-3: #102d56;
  --blue: #1d8de0;
  --blue-2: #63ccff;
  --blue-3: #a9e8ff;
  --ice: #eaf8ff;
  --paper: #f7fbff;
  --white: #ffffff;
  --text: #122037;
  --muted: #647389;
  --line: rgba(10, 34, 65, 0.12);
  --line-strong: rgba(36, 144, 219, 0.24);
  --shadow: 0 28px 80px rgba(4, 18, 37, 0.16);
  --shadow-soft: 0 18px 50px rgba(4, 18, 37, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --header: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
img, svg { max-width: 100%; display: block; }
::selection { background: rgba(99, 204, 255, .35); color: var(--navy); }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 999;
  background: var(--white); color: var(--navy); padding: .7rem 1rem;
  border-radius: 999px; transform: translateY(-130%); transition: transform .2s ease;
  box-shadow: var(--shadow-soft);
}
.skip-link:focus { transform: translateY(0); }

.top-strip {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: rgba(255,255,255,.84);
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-strip__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 9px 0; }
.top-strip__links { display: flex; align-items: center; gap: .7rem; color: var(--white); font-weight: 760; }
.top-strip a:hover { color: var(--blue-2); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10, 34, 65, .10);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { background: rgba(255,255,255,.94); box-shadow: 0 18px 40px rgba(4,18,37,.08); }
.nav-shell { min-height: var(--header); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .85rem; min-width: 250px; }
.brand__mark {
  width: 52px; height: 52px; border-radius: 18px;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  box-shadow: 0 18px 38px rgba(29, 141, 224, .28);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand__mark svg, .brand__mark img { width: 40px; height: 40px; }
.brand__text strong { display: block; color: var(--navy); font-weight: 900; letter-spacing: -.04em; line-height: 1.05; }
.brand__text small { display: block; color: var(--muted); font-size: .74rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; margin-top: .18rem; }
.main-nav { display: flex; align-items: center; gap: 1.35rem; font-size: .94rem; font-weight: 780; color: var(--navy); }
.main-nav a { opacity: .78; position: relative; padding: .4rem 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: .1rem; width: 0; height: 2px; background: linear-gradient(90deg, var(--blue), var(--blue-2)); transition: width .22s ease; }
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.language-toggle, .menu-toggle {
  cursor: pointer; border-radius: 999px; color: var(--navy); background: var(--white); border: 1px solid var(--line);
  font-weight: 900; box-shadow: 0 10px 26px rgba(4,18,37,.06); transition: .2s ease;
}
.language-toggle { padding: .74rem .96rem; }
.language-toggle:hover, .menu-toggle:hover { border-color: var(--line-strong); color: var(--blue); }
.menu-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle span { width: 19px; height: 2px; border-radius: 99px; background: currentColor; transition: .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .9rem 1.25rem; border-radius: 999px;
  font-weight: 900; letter-spacing: -.01em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--small { min-height: 44px; padding: .78rem 1.05rem; }
.btn--primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #0d4f96 62%, var(--navy)); box-shadow: 0 18px 40px rgba(29,141,224,.28); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(29,141,224,.36); }
.btn--ghost { color: var(--navy); background: rgba(255,255,255,.84); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(4,18,37,.08); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--line-strong); color: var(--blue); }
.btn--full { width: 100%; }

.hero { position: relative; overflow: hidden; padding: 96px 0 84px; background: radial-gradient(circle at 76% 12%, rgba(99,204,255,.18), transparent 30%), linear-gradient(180deg, #fff 0%, #f2f9ff 100%); }
.hero__media { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(1px); }
.orb--one { width: 54vw; height: 54vw; right: -20vw; top: -24vw; background: radial-gradient(circle, rgba(29,141,224,.20), transparent 66%); }
.orb--two { width: 28vw; height: 28vw; left: -12vw; bottom: -10vw; background: radial-gradient(circle, rgba(99,204,255,.18), transparent 64%); }
.hero-gridline { position: absolute; inset: 0; background-image: linear-gradient(rgba(6,20,39,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(6,20,39,.045) 1px, transparent 1px); background-size: 58px 58px; mask-image: linear-gradient(180deg, transparent, #000 18%, transparent 90%); opacity: .6; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: .65rem; color: var(--navy); background: rgba(234,248,255,.92); border: 1px solid rgba(29,141,224,.18); border-radius: 999px; padding: .48rem .78rem; font-weight: 900; font-size: .88rem; margin-bottom: 1.2rem; box-shadow: 0 12px 30px rgba(29,141,224,.10); }
.eyebrow__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 6px rgba(29,141,224,.13); }
.hero h1 { color: var(--navy); font-size: clamp(2.75rem, 6.2vw, 6.25rem); line-height: .93; letter-spacing: -.075em; max-width: 840px; margin-bottom: 1.25rem; }
.gradient-text { display: block; color: transparent; background: linear-gradient(105deg, var(--blue), #0e64bd 46%, var(--navy)); background-clip: text; -webkit-background-clip: text; }
.hero__copy { color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 690px; margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.trust-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; max-width: 710px; }
.trust-points div { padding: .95rem 1rem; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.72); backdrop-filter: blur(10px); box-shadow: 0 16px 34px rgba(4,18,37,.06); }
.trust-points strong { display: block; color: var(--navy); font-size: 1.05rem; }
.trust-points span { display: block; color: var(--muted); font-size: .9rem; font-weight: 650; }

.hero-card { position: relative; color: var(--white); border-radius: var(--radius-xl); padding: 28px; overflow: hidden; background: linear-gradient(145deg, #07152b, #0b2344 52%, #0a3e77); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.13); isolation: isolate; }
.hero-card::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(circle at 76% 12%, rgba(99,204,255,.36), transparent 32%), linear-gradient(145deg, transparent, rgba(255,255,255,.06)); z-index: -1; }
.hero-card::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 240px; height: 240px; border-radius: 50%; border: 34px solid rgba(99,204,255,.15); z-index: -1; }
.hero-card__glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; background: rgba(99,204,255,.22); filter: blur(34px); right: -80px; top: -70px; }
.hero-card__top { position: relative; display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hero-card__logo { width: 92px; height: 92px; border-radius: 28px; display: grid; place-items: center; color: var(--blue-2); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.hero-card__logo svg { width: 66px; height: 66px; }
.hero-card__top p { color: rgba(255,255,255,.68); font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 900; }
.hero-card__top h2 { font-size: clamp(1.45rem, 2.4vw, 2.05rem); line-height: 1; letter-spacing: -.045em; }
.hero-card__body { display: grid; gap: 1rem; }
.meter span { display: flex; justify-content: space-between; color: rgba(255,255,255,.84); font-weight: 780; margin-bottom: .42rem; }
.meter i { display: block; height: 10px; background: rgba(255,255,255,.12); border-radius: 999px; overflow: hidden; position: relative; }
.meter i::before { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--value); background: linear-gradient(90deg, var(--blue), var(--blue-2)); border-radius: inherit; box-shadow: 0 0 24px rgba(99,204,255,.4); }
.hero-card__footer { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-card__footer span { border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.86); background: rgba(255,255,255,.08); border-radius: 999px; padding: .55rem .75rem; font-weight: 820; font-size: .86rem; }

.section { padding: 92px 0; position: relative; }
.section--surface { padding: 34px 0 0; margin-top: -44px; position: relative; z-index: 5; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stats-grid article { background: rgba(255,255,255,.92); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.25rem; box-shadow: var(--shadow-soft); }
.stats-grid span { display: inline-flex; color: var(--blue); font-weight: 950; letter-spacing: .12em; font-size: .78rem; margin-bottom: .6rem; }
.stats-grid h3 { color: var(--navy); font-size: 1.1rem; letter-spacing: -.02em; }
.stats-grid p { color: var(--muted); margin-top: .25rem; }
.section-heading { text-align: center; max-width: 770px; margin: 0 auto 2.5rem; }
.section-heading--left { text-align: left; margin: 0; }
.kicker { color: var(--blue); font-size: .84rem; font-weight: 950; text-transform: uppercase; letter-spacing: .16em; margin-bottom: .7rem; }
.kicker--light { color: var(--blue-2); }
.section-heading h2, .split-content h2, .cta-panel h2, .contact-info h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.45rem); line-height: 1.02; letter-spacing: -.06em; margin-bottom: 1rem; }
.section-heading p, .split-content p, .cta-panel p, .contact-info p { color: var(--muted); font-size: 1.06rem; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { position: relative; overflow: hidden; min-height: 260px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.45rem; box-shadow: 0 16px 40px rgba(4,18,37,.07); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.service-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -80px; bottom: -80px; border-radius: 50%; background: radial-gradient(circle, rgba(99,204,255,.20), transparent 70%); transition: transform .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 26px 70px rgba(4,18,37,.12); border-color: rgba(29,141,224,.25); }
.service-card:hover::after { transform: scale(1.35); }
.icon-badge { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; color: var(--white); background: linear-gradient(145deg, var(--blue), var(--navy)); box-shadow: 0 16px 34px rgba(29,141,224,.24); font-weight: 950; margin-bottom: 1.25rem; }
.service-card h3 { color: var(--navy); font-size: 1.35rem; letter-spacing: -.035em; margin-bottom: .55rem; }
.service-card p { color: var(--muted); }
.service-card--dark { background: linear-gradient(145deg, var(--navy), var(--navy-3)); color: var(--white); border-color: rgba(255,255,255,.12); }
.service-card--dark h3, .service-card--dark p { color: var(--white); }
.service-card--dark p { opacity: .78; }
.service-card--dark a { display: inline-flex; margin-top: 1.1rem; color: var(--blue-2); font-weight: 900; }

.section--navy { background: radial-gradient(circle at 86% 20%, rgba(99,204,255,.18), transparent 28%), linear-gradient(145deg, var(--navy), #0a1d38); color: var(--white); overflow: hidden; }
.section--navy::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 62px 62px; mask-image: linear-gradient(90deg, #000, transparent 80%); opacity: .45; }
.split-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 3rem; align-items: start; }
.split-content h2 { color: var(--white); }
.split-content p { color: rgba(255,255,255,.72); }
.industry-list { display: grid; gap: .9rem; }
.industry-list div { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 1rem; padding: 1.1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); border-radius: 22px; backdrop-filter: blur(12px); }
.industry-list span { color: var(--blue-2); font-weight: 950; letter-spacing: .13em; }
.industry-list p { font-size: 1.08rem; color: rgba(255,255,255,.9); font-weight: 780; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.process-card { background: rgba(255,255,255,.86); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.35rem; box-shadow: 0 18px 44px rgba(4,18,37,.07); }
.process-card span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; background: var(--ice); color: var(--blue); font-weight: 950; margin-bottom: 1.2rem; }
.process-card h3 { color: var(--navy); font-size: 1.15rem; letter-spacing: -.03em; margin-bottom: .35rem; }
.process-card p { color: var(--muted); font-size: .96rem; }

.section--cta { padding-top: 0; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-radius: var(--radius-xl); padding: clamp(1.6rem, 4vw, 3.2rem); background: linear-gradient(135deg, var(--white), #eef9ff); border: 1px solid rgba(29,141,224,.18); box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.cta-panel::after { content: ""; position: absolute; width: 360px; height: 360px; right: -170px; bottom: -190px; border-radius: 50%; background: radial-gradient(circle, rgba(29,141,224,.18), transparent 70%); }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.faq-list { display: grid; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 34px rgba(4,18,37,.06); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.2rem; color: var(--navy); font-weight: 900; display: flex; justify-content: space-between; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; line-height: 1; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 1.2rem 1.2rem; color: var(--muted); }

.section--contact { background: linear-gradient(180deg, #ffffff, #eef8ff); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2rem; align-items: start; }
.contact-info { position: sticky; top: calc(var(--header) + 28px); }
.contact-methods { display: grid; gap: .9rem; margin-top: 1.5rem; }
.contact-methods a { display: grid; grid-template-columns: 54px 1fr; column-gap: 1rem; align-items: center; padding: 1.05rem; border-radius: 20px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(4,18,37,.07); }
.contact-methods span { grid-row: span 2; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; color: var(--white); background: linear-gradient(145deg, var(--blue), var(--navy)); font-weight: 950; }
.contact-methods strong { color: var(--navy); font-size: 1.08rem; letter-spacing: -.02em; }
.contact-methods small { color: var(--muted); font-weight: 740; }
.request-form { background: rgba(255,255,255,.92); border: 1px solid rgba(10,34,65,.12); border-radius: var(--radius-xl); padding: clamp(1.35rem, 3vw, 2rem); box-shadow: var(--shadow); }
.form-header { margin-bottom: 1.1rem; }
.form-header h3 { color: var(--navy); font-size: 1.65rem; letter-spacing: -.045em; }
.form-header p, .form-note { color: var(--muted); }
.form-row { display: grid; gap: .9rem; margin-bottom: .9rem; }
.form-row--two { grid-template-columns: repeat(2, 1fr); }
.request-form label { display: grid; gap: .42rem; margin-bottom: .9rem; color: var(--navy); font-weight: 850; }
.request-form input, .request-form select, .request-form textarea { width: 100%; border: 1px solid rgba(10,34,65,.14); border-radius: 16px; padding: .95rem 1rem; color: var(--text); background: #fbfdff; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.request-form input:focus, .request-form select:focus, .request-form textarea:focus { border-color: rgba(29,141,224,.62); box-shadow: 0 0 0 4px rgba(29,141,224,.12); background: var(--white); }
.request-form textarea { resize: vertical; min-height: 140px; }
.form-note { margin-top: .8rem; font-size: .88rem; }
.honeypot { display: none !important; }

.site-footer { background: var(--navy); color: rgba(255,255,255,.78); padding: 58px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .9fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.10); }
.brand--footer { min-width: 0; margin-bottom: 1rem; }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text small { color: var(--blue-2); }
.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: .7rem; }
.site-footer a { display: block; margin: .32rem 0; color: rgba(255,255,255,.86); font-weight: 760; }
.site-footer a:hover { color: var(--blue-2); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-top: 1.25rem; font-size: .9rem; }
.floating-call { position: fixed; right: 18px; bottom: 18px; z-index: 80; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 999px; color: var(--white); background: linear-gradient(145deg, var(--blue), var(--navy)); box-shadow: 0 20px 50px rgba(29,141,224,.36); font-size: 1.4rem; }

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

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

@media (max-width: 1020px) {
  .nav-shell { gap: .9rem; }
  .main-nav { position: fixed; top: calc(var(--header) + 36px); left: 20px; right: 20px; padding: 1rem; display: none; flex-direction: column; align-items: stretch; gap: .2rem; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: .75rem; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .hero__grid, .split-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .hero { padding-top: 70px; }
  .hero-card { max-width: 650px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .top-strip__inner { align-items: flex-start; flex-direction: column; gap: .25rem; }
  .brand { min-width: 0; }
  .brand__text strong { font-size: .94rem; }
  .brand__text small { font-size: .68rem; }
  .hero { padding: 54px 0 64px; }
  .hero h1 { font-size: clamp(2.35rem, 14vw, 4rem); }
  .hero__actions, .cta-panel, .footer-bottom { align-items: stretch; flex-direction: column; }
  .trust-points, .stats-grid, .service-grid, .process-grid, .footer-grid, .form-row--two { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .section { padding: 66px 0; }
  .section--surface { padding-top: 18px; margin-top: -26px; }
  .industry-list div { grid-template-columns: 1fr; gap: .3rem; }
  .contact-methods a { grid-template-columns: 46px 1fr; }
  .contact-methods span { width: 46px; height: 46px; }
  .floating-call { right: 14px; bottom: 14px; width: 54px; height: 54px; }
}
