:root {
  --navy-950: #041224;
  --navy-900: #071b35;
  --navy-800: #0b2a4b;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --cyan-400: #22d3ee;
  --teal-400: #2dd4bf;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow-lg: 0 24px 70px rgba(2, 12, 27, 0.18);
  --shadow-md: 0 14px 40px rgba(15, 23, 42, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
}

.section-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-copy {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--slate-600);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), #0ea5e9);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.28);
}

.button-primary:hover {
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.34);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  overflow: hidden;
}

/* Navigation */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 18px 0;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(4, 18, 36, 0.92);
  box-shadow: 0 10px 35px rgba(2, 12, 27, 0.16);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 310px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:not(.button) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  background: var(--cyan-400);
  transition: transform 180ms ease;
}

.nav-links a:not(.button):hover {
  color: var(--white);
}

.nav-links a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(37, 99, 235, 0.36), transparent 34%),
    radial-gradient(circle at 84% 24%, rgba(34, 211, 238, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 54%, #0a3050 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 88%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.015), 0 0 0 160px rgba(255, 255, 255, 0.01);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 70px;
  padding: 150px 0 100px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.13);
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.hero h1 .gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 44%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-trust .icon {
  width: 18px;
  height: 18px;
  color: var(--teal-400);
}

.hero-visual {
  position: relative;
  min-height: 510px;
  margin: 0;
}

.workflow-card {
  position: absolute;
  inset: 10px 0 auto auto;
  width: min(100%, 500px);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  color: var(--slate-900);
  background: linear-gradient(180deg, #f8fafc, #edf4fc);
  box-shadow: var(--shadow-lg);
}

.workflow-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--slate-200);
}

.workflow-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 800;
}

.workflow-title .mini-logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--blue-600);
  background: #e0f2fe;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #047857;
  background: #d1fae5;
  font-size: 0.72rem;
  font-weight: 800;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 2px 8px;
  color: var(--slate-600);
  font-size: 0.68rem;
  font-weight: 700;
}

.case-id {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.case-id small {
  color: var(--slate-500);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-sla {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-sla > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px #d1fae5;
}

.workflow-canvas {
  margin-top: 2px;
}

.stage-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 7px 0 14px;
  list-style: none;
}

.case-stage {
  position: relative;
  display: grid;
  gap: 5px;
  color: var(--slate-500);
  text-align: center;
}

.case-stage:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 12px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #d8e0ea;
}

.case-stage.is-complete::before {
  background: #34d399;
}

.stage-marker {
  display: grid;
  z-index: 1;
  width: 25px;
  height: 25px;
  margin-inline: auto;
  place-items: center;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  color: var(--slate-600);
  background: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
}

.stage-marker .icon {
  width: 14px;
  height: 14px;
}

.case-stage small {
  display: block;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.case-stage strong {
  display: block;
  color: var(--slate-700);
  font-size: 0.68rem;
  line-height: 1.25;
}

.case-stage.is-complete .stage-marker {
  border-color: #10b981;
  color: var(--white);
  background: #10b981;
}

.case-stage.is-active .stage-marker {
  border-color: var(--blue-600);
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 0 0 4px #dbeafe;
}

.case-stage.is-active strong {
  color: var(--blue-600);
}

.case-stage.is-resolution .stage-marker {
  border-color: #ef4444;
  color: #b91c1c;
  background: #fef2f2;
}

.case-stage.is-resolution strong {
  color: #b91c1c;
}

.process-panel {
  padding: 13px;
  border: 1px solid #dbe3ed;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.process-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.process-heading small {
  display: block;
  color: var(--slate-500);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-heading strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.76rem;
}

.process-badge {
  padding: 4px 7px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #dbeafe;
  font-size: 0.52rem;
  font-weight: 800;
}

.process-flow {
  display: grid;
  grid-template-columns: 22px 10px minmax(64px, 0.9fr) 10px minmax(58px, 0.75fr) 10px minmax(90px, 1.2fr) 10px 22px;
  align-items: center;
  margin-top: 12px;
}

.process-step {
  display: grid;
  min-width: 0;
  min-height: 78px;
  align-content: center;
  justify-items: center;
  gap: 5px;
  padding: 8px 5px;
  border: 1px solid var(--slate-200);
  border-top-width: 3px;
  border-radius: 10px;
  background: #f8fafc;
  text-align: center;
}

.process-step small {
  display: block;
  color: var(--slate-500);
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-step strong {
  display: block;
  color: var(--slate-700);
  font-size: 0.66rem;
  line-height: 1.2;
}

.step-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
}

.step-icon .icon {
  width: 14px;
  height: 14px;
}

.collect-step {
  border-top-color: #10b981;
}

.collect-step .step-icon {
  color: #047857;
  background: #d1fae5;
}

.decision-step {
  border-color: transparent;
  background: transparent;
}

.decision-step .step-icon {
  width: 31px;
  height: 31px;
  transform: rotate(45deg);
  border: 2px solid #f59e0b;
  border-radius: 4px;
  color: #b45309;
  background: #fffbeb;
}

.decision-step .step-icon .icon {
  transform: rotate(-45deg);
}

.terminal-node {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 3px;
  color: var(--slate-500);
}

.terminal-node i {
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
}

.terminal-node small {
  font-size: 0.43rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.start-node i {
  background: #10b981;
  box-shadow: 0 0 0 2px #10b981;
}

.end-node i {
  background: #ef4444;
  box-shadow: 0 0 0 2px #ef4444;
}

.branch-stack {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding-inline: 8px;
}

.branch-stack::before,
.branch-stack::after {
  content: "";
  position: absolute;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--slate-300);
}

.branch-stack::before { left: 2px; }
.branch-stack::after { right: 2px; }

.branch-path {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 1px;
  padding: 4px 5px;
  border: 1px solid #bfdbfe;
  border-left: 3px solid var(--blue-500);
  border-radius: 6px;
  color: #1e3a8a;
  background: #eff6ff;
}

.branch-path::before,
.branch-path::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 1px;
  background: var(--slate-300);
}

.branch-path::before { right: 100%; }
.branch-path::after { left: 100%; }

.branch-path small {
  color: var(--blue-600);
  font-size: 0.44rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.branch-path strong {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  font-size: 0.54rem;
  line-height: 1.15;
  white-space: nowrap;
}

.branch-path .icon {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
}

.automation-path {
  border-color: #fde68a;
  border-left-color: #f59e0b;
  color: #92400e;
  background: #fffbeb;
}

.automation-path small {
  color: #b45309;
}

.automation-path i {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #f59e0b;
}

.flow-connector {
  position: relative;
  display: block;
  height: 2px;
  background: var(--slate-300);
}

.flow-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid #94a3b8;
  transform: translateY(-50%);
}

.workflow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 8px 3px 0;
  border-top: 1px solid var(--slate-200);
  color: var(--slate-600);
  font-size: 0.63rem;
  font-weight: 700;
}

.workflow-footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.workflow-footer .icon {
  width: 13px;
  height: 13px;
  color: var(--blue-600);
}

.next-automation i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #f59e0b;
  box-shadow: 0 0 0 3px #fef3c7;
}

.mini-metric {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 185px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background: rgba(4, 18, 36, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.mini-metric strong {
  display: block;
  font-size: 0.88rem;
}

.mini-metric small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.mini-metric .metric-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--teal-400);
  background: rgba(45, 212, 191, 0.11);
}

.metric-1 { left: -36px; bottom: -2px; }
.metric-2 { right: -24px; bottom: -2px; }

/* Capability strip */
.capability-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.capability-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--slate-200);
  box-shadow: var(--shadow-md);
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}

.capability-item .cap-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: #eff6ff;
}

.capability-item strong {
  display: block;
  font-size: 0.94rem;
}

.capability-item small {
  display: block;
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 0.77rem;
}

/* Services */
.services {
  background: linear-gradient(to bottom, #ffffff, #f8fbff);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 54px;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ai-service {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 36px;
}

.ai-service .service-intro {
  max-width: 540px;
}

.ai-service .service-list {
  margin-top: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10), transparent 68%);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: #bfdbfe;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.11);
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  color: var(--blue-600);
  background: linear-gradient(145deg, #eff6ff, #ecfeff);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.06);
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 1.42rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 0;
  color: var(--slate-600);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--slate-700);
  font-size: 0.89rem;
  font-weight: 700;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.service-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
}

/* Why us */
.why-us {
  color: var(--white);
  background: var(--navy-950);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 80px;
}

.why-us .section-label {
  color: #7dd3fc;
}

.why-us .section-copy {
  color: rgba(255, 255, 255, 0.68);
}

.client-experience {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(125, 211, 252, 0.20);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.13), rgba(34, 211, 238, 0.06));
}

.client-experience-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  color: var(--cyan-400);
  background: rgba(34, 211, 238, 0.10);
}

.client-experience-icon .icon {
  width: 21px;
  height: 21px;
}

.client-experience-label {
  display: block;
  color: #7dd3fc;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-experience p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.why-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(37, 99, 235, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.why-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 310px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(125, 211, 252, 0.20);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(125, 211, 252, 0.025), 0 0 0 120px rgba(125, 211, 252, 0.015);
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.52));
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.34);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
}

.orbit-core span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.orbit-item {
  position: absolute;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  color: var(--cyan-400);
  background: rgba(7, 27, 53, 0.88);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.26);
}

.orbit-item:nth-child(2) { top: 36px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(3) { top: 50%; right: 28px; transform: translateY(-50%); }
.orbit-item:nth-child(4) { bottom: 34px; left: 50%; transform: translateX(-50%); }
.orbit-item:nth-child(5) { top: 50%; left: 28px; transform: translateY(-50%); }

.why-points {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.client-experience + .why-points {
  margin-top: 28px;
}

.why-point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.why-point:first-child {
  border-top: 0;
}

.why-point .number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.09);
  font-size: 0.76rem;
  font-weight: 900;
}

.why-point h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.why-point p {
  margin: 0;
  color: rgba(255, 255, 255, 0.60);
  font-size: 0.94rem;
}

/* Delivery */
.delivery {
  background: #f8fafc;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.delivery-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
}

.delivery-card .step {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #bfdbfe;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.delivery-card .icon-wrap {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-600);
  background: #eff6ff;
}

.delivery-card h3 {
  margin: 24px 0 10px;
  font-size: 1.22rem;
}

.delivery-card p {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.94rem;
}

.engagements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.engagements span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--slate-200);
  border-radius: 999px;
  color: var(--slate-700);
  background: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.engagements span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-400);
}

/* Technology stack */
.technology {
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 70px;
}

.tech-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tech-chip {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  color: var(--slate-700);
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.tech-chip.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--blue-600), #0891b2);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.24);
}

.tech-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.tech-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-700);
  font-weight: 700;
}

.tech-list .icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--blue-600);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), #0a2b4c 72%, #0b3a5b);
}

.contact::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 68%);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
}

.contact .section-label {
  color: #7dd3fc;
}

.contact .section-copy {
  color: rgba(255, 255, 255, 0.66);
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-detail .detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  color: var(--cyan-400);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.20);
  backdrop-filter: blur(16px);
}

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

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  outline: none;
  background: rgba(4, 18, 36, 0.56);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 122px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.field select option {
  color: var(--slate-900);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.10);
}

.turnstile-panel {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 7px;
  justify-items: center;
}

.turnstile-widget {
  display: flex;
  width: 100%;
  min-height: 65px;
  justify-content: center;
}

.turnstile-status {
  min-height: 1.1em;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.45;
  text-align: center;
}

.turnstile-status.success {
  color: #a7f3d0;
}

.turnstile-status.error,
.turnstile-status.error a {
  color: #fecaca;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form .button[data-loading="true"]:disabled {
  cursor: wait;
}

.form-note {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  text-align: center;
}

.form-status {
  max-height: 0;
  margin: 0;
  padding: 0 12px;
  overflow: hidden;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status.visible {
  max-height: 160px;
  margin-top: 14px;
  padding-block: 10px;
}

.form-status.pending {
  color: #bae6fd;
  background: rgba(14, 165, 233, 0.12);
}

.form-status.success {
  color: #a7f3d0;
  background: rgba(16, 185, 129, 0.10);
}

.form-status.error {
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
}

/* Footer */
.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.56);
  background: #020b16;
  font-size: 0.84rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

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

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1120px) and (min-width: 721px) {
  .capability-panel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .capability-item {
    grid-column: span 2;
  }

  .capability-item:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .capability-item:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

@media (max-width: 980px) {
  .section { padding: 82px 0; }

  .brand-logo { width: 270px; }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 96px 20px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    transform: translateY(-18px);
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(4, 18, 36, 0.97);
    box-shadow: var(--shadow-lg);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .nav-links a:not(.button) {
    padding: 12px 10px;
  }

  .nav-links .button {
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .why-grid,
  .tech-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 44px;
    padding: 140px 0 100px;
  }

  .hero-visual {
    width: min(100%, 570px);
    min-height: 500px;
    margin-inline: auto;
  }

  .why-grid,
  .contact-grid {
    gap: 48px;
  }

  .why-panel {
    order: 2;
    width: min(100%, 650px);
    margin-inline: auto;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .brand-logo { width: 250px; }

  .hero-inner {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .hero-visual {
    min-height: 530px;
  }

  .workflow-card {
    padding: 18px;
  }

  .process-flow {
    grid-template-columns: 22px 8px minmax(64px, 0.9fr) 8px minmax(58px, 0.75fr) 8px minmax(90px, 1.2fr) 8px 22px;
  }

  .metric-1 { left: 0; bottom: 48px; }
  .metric-2 { right: 0; bottom: -12px; }
  .mini-metric { min-width: 160px; padding: 12px; }

  .capability-strip {
    margin-top: -28px;
  }

  .capability-panel,
  .services-grid,
  .tech-cloud,
  .form-row {
    grid-template-columns: 1fr;
  }

  .capability-item {
    min-height: 92px;
  }

  .service-card,
  .delivery-card,
  .contact-form {
    padding: 24px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .ai-service {
    display: block;
  }

  .ai-service .service-list {
    margin-top: 24px;
  }

  .why-panel {
    min-height: 420px;
  }

  .orbit {
    width: 250px;
    height: 250px;
  }

  .orbit-core {
    width: 108px;
    height: 108px;
  }

  .orbit-item {
    width: 62px;
    height: 62px;
  }

  .orbit-item:nth-child(2) { top: 30px; }
  .orbit-item:nth-child(3) { right: 18px; }
  .orbit-item:nth-child(4) { bottom: 30px; }
  .orbit-item:nth-child(5) { left: 18px; }

  .footer-inner {
    display: grid;
    text-align: center;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 225px;
  }

  .hero-visual {
    min-height: 510px;
  }

  .workflow-card {
    padding: 14px;
  }

  .workflow-title {
    gap: 8px;
    font-size: 0.78rem;
  }

  .workflow-title .mini-logo {
    width: 30px;
    height: 30px;
  }

  .status-pill {
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .case-meta {
    display: grid;
    gap: 4px;
  }

  .case-stage small,
  .process-step small {
    display: none;
  }

  .terminal-node small {
    display: none;
  }

  .process-step {
    min-height: 70px;
    padding-inline: 3px;
  }

  .process-step strong {
    font-size: 0.56rem;
  }

  .mini-metric {
    min-width: 145px;
    font-size: 0.78rem;
  }
}
