:root {
  --ink: #06122f;
  --muted: #5c6987;
  --line: #dce6f5;
  --soft: #f5f8fc;
  --soft-blue: #eef6ff;
  --panel: #ffffff;
  --blue: #006cff;
  --cyan: #10d2da;
  --violet: #7057ff;
  --green: #19b97d;
  --amber: #f3a712;
  --shadow: 0 24px 80px rgba(6, 18, 47, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 246, 255, .52) 0, rgba(255,255,255,0) 520px),
    #fff;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(220, 230, 245, .85);
  backdrop-filter: blur(18px);
}
.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-weight: 850;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0;
  color: #071842;
}
.brand-dot { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 700;
  color: #23304e;
}
.nav-links a { padding: 10px 0; }
.nav-links a:hover { color: var(--blue); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 270px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #23304e;
  font-size: 14px;
}
.nav-dropdown-menu a:hover {
  color: var(--blue);
  background: var(--soft);
}
.nav-links .btn {
  min-height: 44px;
  padding: 0 22px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-links .btn-primary:hover {
  color: #fff;
  background: #06122f;
  box-shadow: 0 16px 38px rgba(6, 18, 47, .24);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  color: var(--ink);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 8px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:disabled {
  cursor: wait;
  opacity: .68;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #02b8dc);
  box-shadow: 0 16px 38px rgba(0, 108, 255, .28);
}
.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
.btn-dark {
  color: #fff;
  background: #071842;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: 0;
}
h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.2;
}
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 1.65vw, 20px);
}
.copy { color: var(--muted); }

.ai-callout {
  padding: 0 0 clamp(70px, 9vw, 110px);
  background: #fff;
}
.ai-callout-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(220, 230, 245, .9);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 108, 255, .26), transparent 42%),
    linear-gradient(160deg, #06122f 0%, #071842 58%, #0b2d65 100%);
  box-shadow: var(--shadow);
}
.ai-callout-box h2 {
  max-width: 760px;
  color: #fff;
}
.ai-callout-box .lead {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .78);
}
.ai-callout-box .eyebrow {
  color: #7de7ff;
}
.ai-callout-box .btn {
  min-width: 190px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}
.ai-callout-box .btn:hover {
  color: #fff;
  background: var(--blue);
}

.hero {
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: center;
  padding: 78px 0 40px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 44%, rgba(255,255,255,.52) 100%),
    radial-gradient(circle at 74% 20%, rgba(16,210,218,.22), transparent 30%),
    linear-gradient(135deg, #f8fbff, #edf5ff 62%, #fff);
  overflow: hidden;
}
.hero-image {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  padding: clamp(86px, 10vw, 132px) 0 clamp(52px, 7vw, 86px);
  color: #fff;
  background: #06122f;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 22%, rgba(16, 210, 218, .34), transparent 25%),
    radial-gradient(circle at 55% 76%, rgba(112, 87, 255, .24), transparent 28%),
    linear-gradient(90deg, rgba(6, 18, 47, .97) 0%, rgba(6, 18, 47, .86) 36%, rgba(6, 18, 47, .54) 72%, rgba(6, 18, 47, .34) 100%),
    linear-gradient(0deg, rgba(6, 18, 47, .50), rgba(6, 18, 47, .06) 45%, rgba(6, 18, 47, .30));
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-slides .hero-bg {
  z-index: auto;
  opacity: 0;
  transform: scale(1.06);
  animation: heroSlide 24s infinite;
}
.hero-bg-1 { animation-delay: 0s; }
.hero-bg-2 { animation-delay: 6s; }
.hero-bg-3 { animation-delay: 12s; }
.hero-bg-4 { animation-delay: 18s; }
@keyframes heroSlide {
  0% { opacity: 0; transform: scale(1.06) translateX(0); }
  8% { opacity: 1; }
  28% { opacity: 1; }
  34% { opacity: 0; transform: scale(1.14) translateX(-2.5%); }
  100% { opacity: 0; transform: scale(1.14) translateX(-2.5%); }
}
.hero-content {
  min-height: calc(100svh - 240px);
  display: grid;
  align-items: center;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(320px, 420px);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}
.hero-copy {
  max-width: 760px;
}
.hero-image .eyebrow {
  color: #77ddff;
}
.hero-image h1 {
  font-size: clamp(42px, 6.4vw, 74px);
  line-height: 1.01;
  color: #fff;
  text-shadow: 0 18px 60px rgba(0, 0, 0, .36);
}
.hero-image .lead {
  color: rgba(255, 255, 255, .84);
}
.hero-image .proof-item {
  border-top-color: rgba(255, 255, 255, .25);
}
.hero-image .proof-item span {
  color: rgba(255, 255, 255, .72);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 34px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 710px;
}
.hero-showcase {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.055)),
    rgba(255, 255, 255, .06);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .24);
  backdrop-filter: blur(20px);
}
.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(16, 210, 218, .38), transparent 64%);
}
.showcase-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.showcase-top strong {
  padding: 4px 8px;
  border-radius: 8px;
  color: #06122f;
  background: #7df4df;
}
.showcase-metrics {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.showcase-metrics div,
.showcase-panel {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
}
.showcase-metrics div {
  padding: 16px;
}
.showcase-metrics span,
.showcase-panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  font-weight: 750;
}
.showcase-metrics strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.showcase-flow {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 14px 0;
}
.showcase-flow span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px 0 38px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255,255,255,.08);
  font-weight: 800;
}
.showcase-flow span::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 5px rgba(16, 210, 218, .11);
}
.showcase-panel {
  position: relative;
  padding: 18px;
}
.showcase-panel strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}
.proof-item {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.proof-item strong {
  display: block;
  font-size: 22px;
}
.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.product-visual {
  position: relative;
  min-height: 520px;
}
.dashboard {
  position: absolute;
  inset: 24px 0 auto auto;
  width: min(100%, 500px);
  padding: 18px;
  border: 1px solid rgba(220, 230, 245, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}
.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.window-dots span {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--line);
}
.window-dots span:nth-child(2) { background: var(--cyan); }
.window-dots span:nth-child(3) { background: var(--blue); }
.dash-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: #0d5b3f;
  background: #dcf8ed;
  font-size: 12px;
  font-weight: 850;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.metric {
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
  min-height: 94px;
}
.metric small { color: var(--muted); font-weight: 750; }
.metric strong { display: block; margin-top: 8px; font-size: 25px; }
.flow {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}
.flow-line {
  display: grid;
  grid-template-columns: 110px 1fr 52px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}
.bar {
  height: 9px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.bar.short { width: 68%; }
.bar.mid { width: 82%; }
.bar.long { width: 96%; }
.phone {
  position: absolute;
  right: 38px;
  bottom: 12px;
  width: 174px;
  padding: 12px;
  border: 8px solid #071842;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(6, 18, 47, .18);
}
.phone-screen {
  min-height: 268px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, #071842, #063b83);
  color: #fff;
}
.phone-screen b { font-size: 20px; }
.phone-card {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  font-size: 13px;
}
.code-card {
  position: absolute;
  left: 0;
  bottom: 80px;
  width: 260px;
  padding: 18px;
  border-radius: 8px;
  color: #ddf3ff;
  background: #06122f;
  box-shadow: 0 22px 58px rgba(6,18,47,.22);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}
.code-card span { color: var(--cyan); }

.split {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}
.service-grid,
.case-grid,
.values-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 26px;
}
.card:hover { box-shadow: 0 18px 48px rgba(6,18,47,.08); }
.icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #fff;
  background: #071842;
  font-weight: 900;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.tag {
  padding: 7px 10px;
  border-radius: 999px;
  color: #23304e;
  background: var(--soft);
  font-size: 13px;
  font-weight: 750;
}
.band { background: var(--soft); }
.dark-panel {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(16,210,218,.16), transparent 28%),
    linear-gradient(135deg, #06122f, #071842 48%, #082a66);
}
.dark-panel h2,
.dark-panel h3 {
  color: #fff;
}
.dark-panel .lead,
.dark-panel .copy {
  color: rgba(255, 255, 255, .72);
}
.dark-panel .eyebrow {
  color: #77ddff;
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 32px;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.service-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.035));
  box-shadow: 0 18px 58px rgba(0, 0, 0, .12);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-row:hover {
  transform: translateY(-3px);
  border-color: rgba(119, 221, 255, .52);
  background:
    linear-gradient(135deg, rgba(0, 108, 255, .18), rgba(16, 210, 218, .07));
}
.service-row:hover h3 {
  color: #77ddff;
}
.service-row .icon {
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.service-row p {
  margin-bottom: 0;
}
.service-arrow {
  grid-column: 2;
  align-self: end;
  justify-self: start;
  margin-top: 8px;
  color: #77ddff;
  font-weight: 850;
}

.section-image {
  margin: 34px 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(6, 18, 47, .10);
}
.section-image img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.case-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(6, 18, 47, .07);
  transition: transform .18s ease, box-shadow .18s ease;
}
.case-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(6, 18, 47, .12);
}
.case-media-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.case-media {
  min-height: 210px;
  padding: 20px;
  background: linear-gradient(135deg, #071842, #0b55bc 72%, #11cbd7);
  color: #fff;
}
.case-media.light {
  background: linear-gradient(135deg, #eef7ff, #dceeff 60%, #fff);
  color: var(--ink);
}
.mini-ui {
  display: grid;
  gap: 8px;
}
.mini-ui div {
  height: 36px;
  border-radius: 7px;
  background: rgba(255,255,255,.20);
}
.light .mini-ui div { background: rgba(6,18,47,.10); }
.case-body { padding: 26px; }
.case-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.case-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 72px rgba(6, 18, 47, .08);
}
.case-feature + .case-feature {
  margin-top: 28px;
}
.case-feature:nth-child(even) .case-feature-media {
  order: 2;
}
.case-feature-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}
.case-feature-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.reference-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 44px;
}
.reference-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 18, 47, .08);
}
.reference-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--line);
}
.reference-gallery-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-trigger img {
  transition: transform .28s ease;
}
.gallery-trigger:hover img {
  transform: scale(1.02);
}
.reference-gallery figcaption {
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 18, 47, .88);
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-width: min(1500px, 96vw);
  max-height: 86svh;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 120px rgba(0,0,0,.38);
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  font-size: 24px;
  cursor: pointer;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}
.case-body ul,
.service-detail ul {
  padding-left: 20px;
  color: var(--muted);
}

.cta {
  color: #fff;
  background: linear-gradient(135deg, #06122f, #082d6d 58%, #006cff);
}
.cta h2, .cta .lead { color: #fff; }
.cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}
.contact-copy {
  max-width: 620px;
}
.contact-email {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 10px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(220, 230, 245, .9);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 18, 47, .08);
  font-size: 18px;
  font-weight: 850;
}
.contact-email span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.billing-box {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(220, 230, 245, .95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 18, 47, .09);
}
.billing-box h3 {
  margin-bottom: 16px;
  font-size: 24px;
}
.billing-box dl {
  display: grid;
  gap: 0;
  margin: 0;
}
.billing-box dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid rgba(220, 230, 245, .85);
}
.billing-box dl div:last-child {
  border-bottom: 0;
}
.billing-box dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.billing-box dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}
form {
  display: grid;
  gap: 14px;
}
.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
label {
  display: grid;
  gap: 7px;
  color: #23304e;
  font-weight: 780;
}
input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 138px; resize: vertical; }
.checkbox-line {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}
.checkbox-line input {
  flex: 0 0 18px;
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}
.checkbox-line span {
  min-width: 0;
}
.checkbox-line a {
  color: var(--blue);
  font-weight: 800;
  white-space: nowrap;
}
.form-status {
  margin: 2px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(25, 185, 125, .28);
  border-radius: 8px;
  color: #0d6f4b;
  background: rgba(25, 185, 125, .10);
  font-weight: 750;
}
.form-status.is-error {
  border-color: rgba(214, 49, 49, .28);
  color: #a32020;
  background: rgba(214, 49, 49, .10);
}
.form-status[hidden] {
  display: none;
}

.page-hero {
  padding: 88px 0 70px;
  background: linear-gradient(135deg, #f8fbff, #edf5ff);
}
.page-hero.visual {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 104px 0 76px;
  color: #fff;
  background: #06122f;
  overflow: hidden;
}
.page-hero.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 18, 47, .94) 0%, rgba(6, 18, 47, .72) 46%, rgba(6, 18, 47, .24) 100%),
    linear-gradient(0deg, rgba(6, 18, 47, .42), transparent 52%);
}
.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero.visual .breadcrumb,
.page-hero.visual .lead {
  color: rgba(255, 255, 255, .78);
}
.page-hero.visual .eyebrow {
  color: #77ddff;
}
.page-hero.visual h1 {
  max-width: 820px;
  font-size: clamp(36px, 5.3vw, 62px);
  line-height: 1.05;
  color: #fff;
}
.service-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 28px;
}
.service-hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .16);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 850;
}
.breadcrumb {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
}
.sticky-panel {
  position: sticky;
  top: 104px;
  align-self: start;
}
.service-overview {
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}
.service-main {
  display: grid;
  gap: clamp(34px, 5vw, 52px);
}
.service-lead-block {
  max-width: 820px;
}
.service-lead-block h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
}
.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-benefit {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(6, 18, 47, .07);
}
.service-benefit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 13px;
  font-weight: 900;
}
.service-benefit h3 {
  font-size: 20px;
}
.service-feature-panel {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 108, 255, .24), transparent 42%),
    linear-gradient(160deg, #06122f 0%, #071842 56%, #0b2d65 100%);
  box-shadow: var(--shadow);
}
.service-feature-panel h2,
.service-feature-panel h3,
.service-feature-panel .copy {
  color: #fff;
}
.service-feature-panel .eyebrow {
  color: #7de7ff;
}
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.service-feature {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}
.service-feature h3 {
  font-size: 19px;
}
.service-feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .74);
}
.service-process-section h2 {
  margin-bottom: 28px;
}
.service-process {
  display: grid;
  gap: 14px;
  counter-reset: service-step;
}
.service-process-step {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(6, 18, 47, .055);
}
.service-process-step::before {
  counter-increment: service-step;
  content: counter(service-step, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  color: var(--blue);
  background: #eef5ff;
  font-weight: 900;
}
.service-process-step h3 {
  margin-bottom: 6px;
  font-size: 20px;
}
.service-process-step p {
  margin-bottom: 0;
}
.service-result-band {
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 108, 255, .10), rgba(16, 210, 218, .08)),
    #fff;
}
.service-result-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.service-result-grid span {
  display: grid;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-weight: 850;
}
.service-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
}
.service-side .card {
  box-shadow: 0 18px 48px rgba(6, 18, 47, .07);
}
.service-mini-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.service-mini-list li {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: #23304e;
  font-size: 14px;
  font-weight: 750;
}
.service-cta-card {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #02b8dc);
  border-color: transparent;
}
.service-cta-card h3,
.service-cta-card p {
  color: #fff;
}
.service-cta-card .btn-secondary {
  width: 100%;
  margin-top: 8px;
}
.list-check {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}
.list-check li {
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.site-footer {
  padding: 46px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}
.footer-grid a { display: block; margin: 8px 0; color: var(--muted); }
.footer-cookie-link {
  display: block;
  margin: 8px 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.footer-cookie-link:hover {
  color: var(--blue);
}
.small { color: var(--muted); font-size: 14px; }

.cookie-panel {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.cookie-card {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(220, 230, 245, .9);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 80px rgba(6, 18, 47, .22);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}
.cookie-copy h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.cookie-copy p {
  margin-bottom: 8px;
  color: var(--muted);
}
.cookie-copy a {
  display: inline-block;
  margin-right: 14px;
  color: var(--blue);
  font-weight: 800;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
  justify-content: flex-end;
}
.cookie-preferences {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.cookie-preferences[hidden] {
  display: none;
}
.cookie-preferences label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  font-size: 14px;
}
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-image {
    min-height: auto;
  }
  .hero-content {
    min-height: auto;
  }
  .hero-grid,
  .hero-home-grid,
  .split,
  .section-head,
  .case-feature,
  .contact-grid,
  .ai-callout-box,
  .service-detail,
  .service-layout,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .product-visual { min-height: 470px; }
  .service-grid,
  .case-grid,
  .reference-gallery,
  .values-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sticky-panel { position: static; }
  .service-side { position: static; }
  .service-benefits,
  .service-result-grid,
  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-arrow { justify-self: start; }
  .case-feature:nth-child(even) .case-feature-media { order: 0; }
  .cookie-card { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.08;
  }
  h2 {
    font-size: clamp(27px, 8vw, 36px);
    line-height: 1.12;
  }
  h3 {
    font-size: 20px;
  }
  .lead {
    font-size: 17px;
  }
  .container,
  .nav {
    width: min(100% - 24px, 1180px);
  }
  .nav { height: 66px; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 66px;
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 82px);
    overflow: auto;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    display: grid;
    gap: 8px;
  }
  .nav-links .btn { width: 100%; }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--soft);
  }
  .hero {
    padding-top: 44px;
  }
  .hero-image {
    min-height: auto;
    padding: 50px 0 42px;
  }
  .hero-image h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.06;
  }
  .hero-image .lead {
    font-size: 16px;
  }
  .hero-image::after {
    background:
      linear-gradient(180deg, rgba(6, 18, 47, .90) 0%, rgba(6, 18, 47, .82) 48%, rgba(6, 18, 47, .58) 100%);
  }
  .hero-bg {
    object-position: 58% center;
  }
  .hero-slides .hero-bg {
    animation-duration: 28s;
  }
  .hero-content {
    min-height: auto;
    align-items: end;
  }
  .hero-copy {
    max-width: 100%;
  }
  .hero-actions {
    margin: 20px 0 18px;
  }
  .hero-proof {
    gap: 8px;
  }
  .proof-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 10px 0;
  }
  .proof-item strong {
    flex: 0 0 auto;
    font-size: 18px;
  }
  .proof-item span {
    text-align: right;
    font-size: 13px;
  }
  .hero-showcase {
    display: none;
  }
  .section-image img {
    aspect-ratio: 4 / 3;
  }
  .case-media-img {
    height: 220px;
  }
  .page-hero.visual {
    min-height: auto;
    padding: 72px 0 44px;
  }
  .page-hero.visual h1 {
    font-size: clamp(33px, 10vw, 46px);
    line-height: 1.08;
  }
  .service-lead-block h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.12;
  }
  .hero-proof,
  .service-grid,
  .service-benefits,
  .service-feature-grid,
  .service-result-grid,
  .service-list,
  .case-grid,
  .values-grid,
  .steps-grid,
  .footer-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }
  .service-process-step {
    grid-template-columns: 1fr;
  }
  .service-process-step::before {
    width: 44px;
    height: 44px;
  }
  .service-hero-proof span {
    width: 100%;
    justify-content: center;
  }
  .product-visual { min-height: 610px; }
  .dashboard {
    position: relative;
    inset: auto;
  }
  .phone {
    right: 8px;
    bottom: 0;
  }
  .code-card {
    left: 0;
    bottom: 44px;
    width: min(240px, 68vw);
  }
  .flow-line {
    grid-template-columns: 92px 1fr 44px;
    font-size: 13px;
  }
  .section { padding: 62px 0; }
  .btn { width: 100%; }
  .ai-callout {
    padding-bottom: 62px;
  }
  .ai-callout-box {
    padding: 24px;
  }
  .contact-email {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 16px;
  }
  .billing-box {
    padding: 18px;
  }
  .billing-box dl div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .checkbox-line a {
    white-space: normal;
  }
  .service-row {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: auto;
    gap: 12px;
    padding: 18px;
  }
  .service-row .icon {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .service-arrow {
    grid-column: 1 / -1;
    margin-top: 2px;
  }
  .service-benefit {
    min-height: auto;
    padding: 20px;
  }
  .service-feature-panel,
  .service-result-band {
    padding: 22px;
  }
  .case-actions {
    display: grid;
  }
  .cookie-card {
    max-height: calc(100svh - 32px);
    overflow: auto;
    padding: 18px;
  }
  .cookie-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slides .hero-bg {
    animation: none;
  }
  .hero-slides .hero-bg:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Nexode conversion refresh */
:root{--radius:20px;--blue:#1469ff;--cyan:#28d6c5;--shadow:0 28px 90px rgba(7,18,41,.12)}
body{background:radial-gradient(circle at 8% 14%,rgba(20,105,255,.07),transparent 28rem),radial-gradient(circle at 92% 40%,rgba(40,214,197,.06),transparent 28rem),#fff}
.site-header{background:rgba(255,255,255,.82);backdrop-filter:blur(18px)}
.btn,.nav-links .btn{border-radius:999px}.btn-primary{background:linear-gradient(110deg,#0759f8,#147dff 48%,#13c9c3);box-shadow:0 16px 42px rgba(20,105,255,.3)}
.card,.case-card,.service-row,.service-feature-panel,.service-result-band,.ai-callout-box,.cta-box,.billing-box{border-radius:20px}.card,.case-card,.service-row{transition:transform .25s,box-shadow .25s}.card:hover,.case-card:hover,.service-row:hover{transform:translateY(-5px);box-shadow:0 30px 80px rgba(7,18,41,.12)}

.calendar-booking-card{display:grid;grid-template-columns:56px 1fr;gap:14px;align-items:center;margin:22px 0;padding:16px;border:1px solid rgba(20,105,255,.2);border-radius:18px;background:linear-gradient(135deg,rgba(20,105,255,.08),rgba(40,214,197,.08)),#fff;box-shadow:0 18px 46px rgba(7,18,41,.07)}.calendar-booking-card:hover{transform:translateY(-3px)}.calendar-icon{display:grid;place-items:center;width:56px;height:56px;border-radius:15px;color:#fff;font-weight:900;background:linear-gradient(145deg,#0759f8,#28d6c5)}.calendar-booking-card>span:last-child{display:grid}.calendar-booking-card small{color:var(--blue);font-weight:900;text-transform:uppercase}.calendar-booking-card strong{font-size:15px}.calendar-booking-card em{color:#5c6987;font-size:12px;font-style:normal}.cta-actions{display:grid;gap:10px}.btn-calendar{color:#fff;border-color:rgba(255,255,255,.25);background:rgba(255,255,255,.12)}
.callback-popup{position:fixed;inset:0;z-index:10000;display:grid;place-items:center;padding:20px;background:rgba(5,10,20,.76);backdrop-filter:blur(12px)}.callback-popup[hidden]{display:none}.callback-card{position:relative;display:grid;grid-template-columns:.9fr 1.1fr;width:min(900px,100%);max-height:calc(100svh - 40px);overflow:auto;border-radius:28px;background:#fff;box-shadow:0 35px 110px rgba(0,0,0,.38)}.callback-intro{padding:48px;color:#fff;background:radial-gradient(circle at 85% 15%,rgba(40,214,197,.25),transparent 35%),#071842}.callback-intro h2{color:#fff}.callback-intro p{color:rgba(255,255,255,.72)}.callback-form{display:grid;gap:12px;padding:44px}.callback-form label:not(.checkbox-line){display:grid;gap:6px;font-weight:750}.callback-form input:not([type=checkbox]),.callback-form textarea{width:100%;padding:12px;border:1px solid #dce6f5;border-radius:12px;font:inherit}.callback-form textarea{min-height:84px}.callback-close{position:absolute;top:14px;right:14px;z-index:2;width:38px;height:38px;border:0;border-radius:50%;font-size:24px;cursor:pointer}.callback-success{text-align:center}.callback-success h3{font-size:30px}.callback-success-icon{display:grid;place-items:center;width:64px;height:64px;margin:0 auto 16px;border-radius:50%;color:#08734a;font-size:30px;background:#dff8ec}
@media(max-width:760px){.callback-card{grid-template-columns:1fr}.callback-intro{padding:30px 24px 22px}.callback-form{padding:24px}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important}}

/* Redesigned about section */
.about-section{overflow:hidden;background:linear-gradient(180deg,#fff,#f5f8fc)}
.about-showcase{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);align-items:stretch;overflow:hidden;border:1px solid rgba(220,230,245,.9);border-radius:30px;background:#fff;box-shadow:0 34px 100px rgba(7,18,41,.11)}
.about-visual{position:relative;min-height:620px;margin:0;overflow:hidden;background:#071842}
.about-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(5,14,33,.52))}
.about-visual img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .7s ease}
.about-showcase:hover .about-visual img{transform:scale(1.025)}
.about-visual figcaption{position:absolute;right:22px;bottom:18px;z-index:2;color:rgba(255,255,255,.62);font-size:10px}
.about-experience{position:absolute;top:24px;left:24px;z-index:2;display:flex;align-items:center;gap:13px;padding:14px 17px;border:1px solid rgba(255,255,255,.2);border-radius:17px;color:#fff;background:rgba(6,18,47,.75);backdrop-filter:blur(14px)}
.about-experience strong{font-size:30px;line-height:1}.about-experience span{color:rgba(255,255,255,.7);font-size:11px;line-height:1.35}
.about-content{display:grid;align-content:center;padding:clamp(34px,5vw,66px)}
.about-content h2{font-size:clamp(32px,4vw,52px)}
.about-content .copy{margin:8px 0 28px}
.about-principles{display:grid;gap:10px}
.about-principles>div{display:grid;grid-template-columns:36px 1fr;gap:1px 12px;padding:14px 0;border-top:1px solid var(--line)}
.about-principles span{grid-row:1/3;display:grid;place-items:center;width:34px;height:34px;border-radius:10px;color:var(--blue);background:#edf5ff;font-size:11px;font-weight:900}
.about-principles strong{font-size:14px}.about-principles small{color:var(--muted);font-size:12px}
@media(max-width:900px){.about-showcase{grid-template-columns:1fr}.about-visual{min-height:430px}.about-content{padding:34px}}
@media(max-width:560px){.about-showcase{border-radius:22px}.about-visual{min-height:330px}.about-content{padding:26px 20px}.about-experience{top:15px;left:15px}.about-visual figcaption{display:none}}
