:root {
  --ink: #111418;
  --panel: #171b21;
  --muted: #5d6875;
  --line: #dfe6eb;
  --soft: #f5f8fa;
  --white: #ffffff;
  --cyan: #00a9ce;
  --cyan-dark: #087f98;
  --green: #21b887;
  --amber: #d99830;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(17, 20, 24, 0.12);
  --shadow-strong: 0 28px 80px rgba(17, 20, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(223, 230, 235, 0.58);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.18);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 280px;
}

.brand-logo {
  width: 270px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #2a343d 58%, var(--cyan));
  box-shadow: 0 12px 28px rgba(0, 169, 206, 0.24);
}

.brand span:last-child {
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-link,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #2f3843;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.nav-link:hover,
.dropdown:hover .dropdown-trigger,
.dropdown-trigger:focus-visible {
  color: var(--ink);
  background: var(--soft);
}

.dropdown {
  position: relative;
}

.dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 520px;
  top: 100%;
  height: 14px;
  z-index: 1;
  transform: translateX(-50%);
}

.dropdown-menu {
  position: absolute;
  z-index: 2;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 500px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 8px;
  border-radius: 8px;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.dropdown-menu strong {
  display: block;
  font-size: 0.9rem;
}

.dropdown-menu small {
  display: none;
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--cyan);
  background: #e8f8fb;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 169, 206, 0.18), transparent 34%),
    linear-gradient(135deg, #0e1115 0%, #171d24 54%, #0f1718 100%);
}

.hero.short {
  min-height: 420px;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.8;
}

.hero-media::after,
.dark-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
  animation: gridDrift 20s linear infinite;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: 44%;
  height: 120%;
  right: -8%;
  top: -10%;
  background: linear-gradient(180deg, transparent, rgba(0, 169, 206, 0.16), transparent);
  transform: rotate(14deg);
  animation: scanBeam 7s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
  min-height: 680px;
  padding: 74px 0;
}

.hero-copy {
  max-width: 760px;
}

.hero.short .hero-inner {
  min-height: 420px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #9be6f4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.short h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.lead {
  max-width: 760px;
  color: #d7e0e6;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-points {
  display: grid;
  gap: 10px;
  max-width: 720px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: #dce8ed;
}

.hero-points i {
  color: var(--green);
  margin-top: 2px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-visual-stack {
  position: relative;
  display: grid;
  gap: 16px;
  align-self: stretch;
  align-content: center;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #202730;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.hero.short .hero-image-card {
  min-height: 310px;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transform: scale(1.03);
  animation: imageFloat 10s ease-in-out infinite;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(17, 20, 24, 0.72)),
    linear-gradient(90deg, rgba(0, 169, 206, 0.18), transparent 42%);
}

.motion-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 20, 24, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.84rem;
  font-weight: 750;
}

.motion-chip.one {
  top: 18px;
  left: 18px;
  animation: floatChip 5s ease-in-out infinite;
}

.motion-chip.two {
  right: 18px;
  bottom: 18px;
  animation: floatChip 6s ease-in-out infinite reverse;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 20, 24, 0.62);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: panelRise 680ms ease both;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: #9fadba;
  font-size: 0.86rem;
}

.status-row strong {
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem;
}

.signal {
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(33, 184, 135, 0.12);
  animation: pulseSignal 1.8s ease-in-out infinite;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-title strong {
  font-size: 1.02rem;
}

.section {
  padding: 92px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.section.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.55;
}

.section.dark > * {
  position: relative;
  z-index: 1;
}

.section.dark .section-heading p,
.section.dark .muted,
.section.dark .card p {
  color: #bdc9d3;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, #edf9fb 0%, #ffffff 46%, #eef8f4 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 169, 206, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 169, 206, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.cta-section .section-inner {
  position: relative;
  z-index: 1;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: 34px;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.cta-band p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  font-weight: 750;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item i {
  color: var(--cyan);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(0, 169, 206, 0.28), rgba(33, 184, 135, 0.16), rgba(223, 230, 235, 0.22)) border-box;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 8%, rgba(0, 169, 206, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 248, 250, 0.72));
  opacity: 0;
  transition: opacity 220ms ease;
}

.card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.75;
  transition: transform 220ms ease;
}

.card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 169, 206, 0.38);
  box-shadow: var(--shadow-strong);
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover .icon-box {
  color: var(--white);
  background: var(--cyan-dark);
  transform: translateY(-2px);
}

.card.dark-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: #1b2027;
}

.card h3 {
  margin: 20px 0 10px;
  font-size: 1.25rem;
}

.card p {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
}

.service-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(0, 169, 206, 0.18);
  border-radius: 999px;
  background: #f1fafc;
  color: #285261;
  font-size: 0.8rem;
  font-weight: 750;
}

.dark .card-link {
  color: var(--white);
}

.process {
  counter-reset: step;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: relative;
  inset: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  opacity: 1;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: #34404b;
  font-weight: 700;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.image-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(17, 20, 24, 0.72));
}

.floating-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  max-width: 310px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(17, 20, 24, 0.72);
  backdrop-filter: blur(12px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric {
  padding: 24px;
  background: var(--white);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--cyan-dark);
}

.metric span {
  color: var(--muted);
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > div {
  padding: 22px;
}

.comparison-row > div:first-child {
  border-right: 1px solid var(--line);
}

.comparison-row strong {
  display: block;
  margin-bottom: 8px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list i {
  color: var(--green);
}

.service-hero-panel {
  display: grid;
  gap: 14px;
}

.architecture {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.arch-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.arch-node small {
  color: #a7dce6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.timeline-item strong:first-child {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.team-card {
  min-height: 240px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--green));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: start;
}

.form-panel,
.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #34404b;
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cad6de;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(0, 169, 206, 0.15);
}

.success-message {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(33, 184, 135, 0.28);
  border-radius: 8px;
  background: #edf9f5;
  color: #12674f;
  font-weight: 750;
}

.success-message.visible {
  display: block;
}

.contact-detail {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail:last-child {
  border-bottom: 0;
}

.site-footer {
  color: #c6d0d9;
  background:
    linear-gradient(180deg, #101317 0%, #0b0e11 100%);
}

.footer-inner {
  width: calc(100% - 64px);
  max-width: none;
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  padding: 64px 0 34px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 850;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}

.footer-brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 169, 206, 0.24));
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.96rem;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #84909b;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.feature-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.capability-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfe;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.capability-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 206, 0.34);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.capability-item:hover .icon-box {
  color: var(--white);
  background: var(--cyan-dark);
  transform: rotate(-5deg) scale(1.04);
}

.capability-item h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.capability-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.insight-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.insight-row div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.insight-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.05rem;
}

.insight-row p {
  margin-bottom: 0;
  color: #bdc9d3;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 64px 64px; }
}

@keyframes scanBeam {
  0%, 100% { transform: translateX(0) rotate(14deg); opacity: 0.28; }
  50% { transform: translateX(-18%) rotate(14deg); opacity: 0.62; }
}

@keyframes imageFloat {
  0%, 100% { transform: scale(1.03) translate3d(0, 0, 0); }
  50% { transform: scale(1.065) translate3d(-6px, -5px, 0); }
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulseSignal {
  0%, 100% { box-shadow: 0 0 0 8px rgba(33, 184, 135, 0.12); }
  50% { box-shadow: 0 0 0 13px rgba(33, 184, 135, 0.05); }
}

@keyframes panelRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 74px);
    padding: 18px 20px 28px;
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  body.nav-open .nav-links {
    display: flex;
  }

  .nav-link,
  .dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown::after {
    display: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    transform: none;
  }

  .menu-toggle {
    display: grid;
  }

  .header-actions .button {
    display: none;
  }

  .hero-inner,
  .split,
  .contact-layout,
  .feature-band,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
  }

  .trust-strip,
  .grid.three,
  .grid.four,
  .metric-grid,
  .capability-map,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    display: grid;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 205px;
    height: 46px;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .hero-inner,
  .section {
    padding: 58px 0;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .trust-strip,
  .grid.two,
  .grid.three,
  .grid.four,
  .metric-grid,
  .capability-map,
  .insight-row,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-row > div:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .image-frame,
  .image-frame img {
    min-height: 360px;
  }
}
