:root {
  --ink: #050b1f;
  --ink-soft: #15213f;
  --cyan: #06c7f2;
  --blue: #2563eb;
  --sky: #e8f8ff;
  --paper: #ffffff;
  --mist: #f5f7fa;
  --line: #dce4ef;
  --muted: #5d6980;
  --success: #0f8a70;
  --warning: #8a5a00;
  --shadow: 0 24px 70px rgba(5, 11, 31, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--blue);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--cyan);
  font-weight: 850;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  color: var(--ink);
  transform: translateY(0);
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 228, 239, 0.86);
  backdrop-filter: blur(18px);
}

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

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--ink);
}

.brand span {
  font-size: 1.08rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(5, 11, 31, 0.24);
}

.btn-primary:hover {
  color: var(--paper);
  background: #0b1735;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: var(--paper);
  border-color: rgba(6, 199, 242, 0.75);
  background: rgba(255, 255, 255, 0.13);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan), #46a8ff);
  color: #00172d;
  box-shadow: 0 16px 38px rgba(6, 199, 242, 0.26);
}

.btn-cyan:hover {
  color: #00172d;
  background: #34d9ff;
}

.btn-whatsapp {
  color: #062215;
  background: linear-gradient(135deg, #25d366, #8df2b4);
  border-color: rgba(12, 128, 68, 0.28);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.24);
}

.btn-whatsapp:hover {
  color: #062215;
  background: #55e58a;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(6, 199, 242, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 86% 12%, rgba(6, 199, 242, 0.22), transparent 28%),
    linear-gradient(135deg, #050b1f 0%, #071634 52%, #08244a 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, transparent 40%, rgba(6, 199, 242, 0.12) 50%, transparent 60%, transparent 100%);
  animation: hero-scan 8s ease-in-out infinite;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 46px;
  align-items: center;
  min-height: min(820px, calc(100vh - 76px));
  padding: 64px 0 54px;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.card h3,
.footer-brand,
h1,
h2,
h3 {
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.hero-brand-lockup img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  background: var(--ink);
}

.hero-brand-lockup span {
  display: grid;
  gap: 1px;
}

.hero-brand-lockup strong {
  color: var(--paper);
  font-size: 0.96rem;
  line-height: 1.05;
}

.hero-brand-lockup small {
  color: #aebfd3;
  font-size: 0.76rem;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.25rem);
  line-height: 1.02;
}

.hero-lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: #d9e8f7;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

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

.hero-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d2e1f0;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-proof-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(6, 199, 242, 0.8);
}

.hero-panel {
  align-self: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), 0 0 50px rgba(6, 199, 242, 0.13);
  transform: perspective(1100px) rotateY(-1.5deg) rotateX(0.6deg);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 31, 0.1), transparent 30%),
    linear-gradient(180deg, transparent 58%, rgba(5, 11, 31, 0.26));
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 62% center;
  filter: brightness(1.12) contrast(1.08) saturate(1.08);
}

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

.hero-visual-tags {
  position: absolute;
  top: auto;
  bottom: 84px;
  right: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-visual-tags span,
.hero-system-strip .pipeline-node {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(5, 11, 31, 0.62);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-system-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 199, 242, 0.12), transparent 42%),
    rgba(5, 11, 31, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.hero-system-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.4s ease-in-out infinite;
  pointer-events: none;
}

.system-strip-header,
.system-pipeline {
  position: relative;
  z-index: 1;
}

.system-strip-header {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 9px;
  color: var(--paper);
}

.system-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.9);
  animation: ai-node-pulse 1.35s ease-in-out infinite;
}

.system-strip-header strong {
  font-size: 0.82rem;
  line-height: 1.15;
}

.system-strip-header small {
  color: #b7d9e8;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.system-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.hero-system-strip .pipeline-node {
  position: relative;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  padding: 0 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(5, 11, 31, 0.68);
  box-shadow: inset 0 0 0 1px rgba(6, 199, 242, 0.06);
  font-size: 0.7rem;
  white-space: nowrap;
}

.pipeline-node b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(6, 199, 242, 0.42);
  font-size: 0.62rem;
  font-weight: 950;
}

.pipeline-node:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -9px;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.18));
  transform: translateY(-50%);
  pointer-events: none;
}

.ai-agent-card {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(260px, calc(100% - 36px));
  height: auto;
  min-height: 0;
  max-height: 220px;
  align-self: start;
  padding: 10px;
  border: 1px solid rgba(6, 199, 242, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(115deg, transparent 0%, rgba(6, 199, 242, 0.09) 42%, transparent 72%),
    radial-gradient(circle at 90% 10%, rgba(6, 199, 242, 0.14), transparent 28%),
    rgba(5, 11, 31, 0.82);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3), 0 0 38px rgba(6, 199, 242, 0.2);
  backdrop-filter: blur(18px);
}

.live-automation-pill {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(6, 199, 242, 0.32);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(5, 11, 31, 0.66);
  backdrop-filter: blur(14px);
  font-size: 0.82rem;
  font-weight: 850;
}

.live-automation-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #18f5ff;
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.92);
  animation: ai-node-pulse 1.35s ease-in-out infinite;
}

.ai-agent-card::before {
  display: none;
}

.ai-agent-top {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
}

.agent-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.agent-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(6, 199, 242, 0.4));
}

.ai-agent-top strong {
  color: var(--paper);
  font-size: 0.82rem;
  line-height: 1.16;
}

.ai-agent-top span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.13);
  border: 1px solid rgba(6, 199, 242, 0.32);
  font-size: 0.72rem;
  font-weight: 900;
}

.ai-agent-top span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.86);
  animation: ai-node-pulse 1.4s ease-in-out infinite;
}

.ai-agent-card ul {
  position: static;
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-agent-card li {
  position: static;
  display: grid;
  grid-template-columns: 8px 1fr;
  column-gap: 8px;
  align-items: center;
  min-height: 27px;
  padding: 4px 7px;
  border: 1px solid rgba(6, 199, 242, 0.18);
  border-radius: 8px;
  color: #f2f8ff;
  background: rgba(5, 11, 31, 0.72);
  font-size: 0.86rem;
}

.ai-agent-card li span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(6, 199, 242, 0.76);
  animation: ai-node-pulse 2s ease-in-out infinite;
}

.ai-agent-card li strong {
  color: #ffffff;
  font-size: 0.78rem;
  line-height: 1.15;
  font-weight: 850;
}

.ai-agent-card li small {
  display: none;
}

.ai-agent-card li:nth-child(2) span {
  animation-delay: 0.25s;
}

.ai-agent-card li:nth-child(3) span {
  animation-delay: 0.5s;
}

.ai-agent-card li:nth-child(4) span {
  animation-delay: 0.75s;
}

.ai-agent-chip {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 4;
  width: min(280px, calc(100% - 36px));
  padding: 11px;
  border: 1px solid rgba(6, 199, 242, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(6, 199, 242, 0.16), transparent 30%),
    rgba(5, 11, 31, 0.9);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36), 0 0 28px rgba(6, 199, 242, 0.18);
  backdrop-filter: blur(16px);
}

.agent-chip-head {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  gap: 9px;
  align-items: center;
  margin-bottom: 9px;
}

.agent-chip-head img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(6, 199, 242, 0.45));
}

.agent-chip-head strong {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.1;
}

.agent-chip-head span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(6, 199, 242, 0.34);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.13);
  font-size: 0.7rem;
  font-weight: 900;
}

.agent-chip-head span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.9);
  animation: ai-node-pulse 1.4s ease-in-out infinite;
}

.agent-chip-steps {
  display: grid;
  gap: 5px;
}

.agent-chip-steps span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 27px;
  padding: 0 8px;
  border: 1px solid rgba(6, 199, 242, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 850;
}

.agent-chip-steps span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.76);
}

.hero-data-nodes span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 24px rgba(6, 199, 242, 0.9);
  animation: data-node-drift 4.2s ease-in-out infinite;
}

.hero-data-nodes span:nth-child(1) {
  left: 40%;
  top: 34%;
}

.hero-data-nodes span:nth-child(2) {
  left: 56%;
  top: 58%;
  animation-delay: 0.7s;
}

.hero-data-nodes span:nth-child(3) {
  left: 76%;
  top: 42%;
  animation-delay: 1.2s;
}

@keyframes ai-card-scan {
  0% {
    transform: translateX(-90%);
  }
  45%,
  100% {
    transform: translateX(90%);
  }
}

@keyframes ai-node-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes data-node-drift {
  0%,
  100% {
    opacity: 0.38;
    transform: translateY(0) scale(0.86);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px) scale(1);
  }
}

@keyframes hero-scan {
  0% {
    transform: translateX(-80%);
  }
  42%,
  100% {
    transform: translateX(80%);
  }
}

.growth-visual {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  color: #d9e8f7;
}

.visual-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(6, 199, 242, 0.13);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.step-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(6, 199, 242, 0.14);
  color: var(--cyan);
  font-weight: 900;
}

.pipeline-step strong {
  display: block;
  color: var(--paper);
  line-height: 1.25;
}

.pipeline-step span:not(.step-num) {
  color: #bfd2e6;
  font-size: 0.9rem;
}

.mini-status {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.metric {
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  color: var(--paper);
  font-size: 1.28rem;
}

.metric span {
  color: #bfd2e6;
  font-size: 0.82rem;
}

main {
  flex: 1;
}

.section {
  padding: 88px 0;
}

.section-muted {
  background: var(--mist);
}

.section-ink {
  color: var(--paper);
  background: var(--ink);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-ink .section-heading p,
.section-ink .muted,
.section-ink .card p {
  color: #c6d3e4;
}

.section-ink .card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.section-ink .card h3 {
  color: var(--paper);
}

.system-flow-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(6, 199, 242, 0.08), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, #f5f8fc 100%);
}

.system-flow-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(5, 11, 31, 0.09);
}

.system-flow-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.flow-lane,
.flow-divider {
  position: relative;
  z-index: 1;
}

.flow-lane {
  padding: 22px;
  border-radius: 8px;
}

.broken-flow {
  border: 1px dashed #cbd5e1;
  background: rgba(245, 247, 250, 0.76);
}

.connected-flow {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  border: 1px solid rgba(6, 199, 242, 0.22);
  background:
    radial-gradient(circle at 8% 0%, rgba(6, 199, 242, 0.22), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(37, 99, 235, 0.26), transparent 34%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 28px 80px rgba(5, 11, 31, 0.18);
}

.connected-flow::before,
.connected-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.connected-flow::before {
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.54;
}

.connected-flow::after {
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(6, 199, 242, 0.16) 48%, transparent 58%, transparent 100%);
  animation: workflow-scan 5.6s ease-in-out infinite;
}

.flow-console-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.flow-console-header strong {
  display: block;
  margin-top: 3px;
  color: var(--paper);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.flow-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(6, 199, 242, 0.28);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.flow-live-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.86);
  animation: ai-node-pulse 1.45s ease-in-out infinite;
}

.flow-lane-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.connected-flow .flow-lane-label {
  color: var(--cyan);
}

.flow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 42px minmax(140px, 1fr) 42px minmax(140px, 1fr);
  gap: 0;
  align-items: stretch;
}

.connected-flow .flow-steps {
  grid-template-columns: minmax(130px, 1fr) 34px minmax(130px, 1fr) 34px minmax(130px, 1fr) 34px minmax(130px, 1fr);
}

.flow-step {
  position: relative;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.connected-flow .flow-step {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.connected-flow .flow-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 14%, rgba(6, 199, 242, 0.2), transparent 24%),
    linear-gradient(115deg, transparent 0%, transparent 35%, rgba(6, 199, 242, 0.12) 48%, transparent 62%, transparent 100%);
  opacity: 0.78;
  pointer-events: none;
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #00172d;
  background: linear-gradient(135deg, var(--cyan), #46a8ff);
  box-shadow: 0 0 24px rgba(6, 199, 242, 0.22);
}

.muted-step .flow-icon {
  color: #64748b;
  background: #e2e8f0;
  box-shadow: none;
}

.flow-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step strong {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 1.04rem;
}

.connected-flow .flow-step strong {
  color: var(--paper);
}

.flow-step small {
  position: relative;
  z-index: 1;
  color: #c6d3e4;
}

.flow-step em {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  color: var(--cyan);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.flow-steps > i {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, rgba(100, 116, 139, 0.5), rgba(100, 116, 139, 0.12));
}

.connected-flow .flow-steps > i {
  position: relative;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.22));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.44);
}

.connected-flow .flow-steps > i::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.8);
  animation: ai-node-pulse 1.6s ease-in-out infinite;
}

.flow-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.flow-stack span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d7e5f3;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.intelligence-panel {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  border-color: rgba(6, 199, 242, 0.18);
  background:
    radial-gradient(circle at 50% 35%, rgba(6, 199, 242, 0.17), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(37, 99, 235, 0.16), transparent 30%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 30px 90px rgba(5, 11, 31, 0.18);
}

.intelligence-panel::before {
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.intelligence-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 38%, rgba(6, 199, 242, 0.14) 48%, transparent 58%, transparent 100%);
  animation: workflow-scan 6s ease-in-out infinite;
  pointer-events: none;
}

.intelligence-grid,
.intelligence-beam,
.system-metrics,
.intelligence-panel .flow-stack {
  position: relative;
  z-index: 1;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.16fr) minmax(0, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.system-column,
.ai-engine-core {
  border-radius: 8px;
}

.system-column {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(10px);
}

.before-column {
  opacity: 0.74;
  border-style: dashed;
}

.after-column {
  border-color: rgba(6, 199, 242, 0.34);
  box-shadow: inset 0 0 0 1px rgba(6, 199, 242, 0.08);
}

.system-column h3,
.ai-engine-core h3 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.mini-flow-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-flow-list span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #d0dded;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 750;
}

.mini-flow-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #64748b;
}

.after-column .mini-flow-list span::before {
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(6, 199, 242, 0.75);
}

.ai-engine-core {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(6, 199, 242, 0.36);
  background:
    radial-gradient(circle at 50% 42%, rgba(6, 199, 242, 0.24), transparent 38%),
    rgba(255, 255, 255, 0.075);
  box-shadow: 0 0 60px rgba(6, 199, 242, 0.14), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.engine-status {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: #00172d;
  background: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.engine-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #00172d;
  animation: ai-node-pulse 1.4s ease-in-out infinite;
}

.engine-orbit {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(6, 199, 242, 0.18);
  border-radius: 999px;
  animation: orbit-spin 13s linear infinite;
}

.engine-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.8);
}

.engine-orbit i:nth-child(1) {
  top: -5px;
  left: 50%;
}

.engine-orbit i:nth-child(2) {
  right: 14px;
  bottom: 36px;
}

.engine-orbit i:nth-child(3) {
  left: 14px;
  bottom: 36px;
}

.engine-core-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #00172d;
  background:
    radial-gradient(circle at 50% 52%, rgba(6, 199, 242, 0.2), transparent 48%),
    rgba(6, 199, 242, 0.08);
  box-shadow: 0 0 54px rgba(6, 199, 242, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.engine-core-icon::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(6, 199, 242, 0.34);
  border-radius: 999px;
  animation: engine-ring 2.8s ease-in-out infinite;
}

.engine-core-icon img {
  position: relative;
  z-index: 1;
  width: 108px;
  height: 108px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(6, 199, 242, 0.34));
}

.ai-engine-core h3,
.ai-engine-core p {
  position: relative;
  z-index: 1;
}

.ai-engine-core p {
  max-width: 420px;
  margin: 14px auto 0;
  color: #d0dded;
}

.intelligence-beam {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 22px 11% 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.75), transparent);
  box-shadow: 0 0 22px rgba(6, 199, 242, 0.35);
}

.intelligence-beam span {
  width: 10px;
  height: 10px;
  align-self: center;
  justify-self: center;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.82);
  animation: beam-node 2.4s ease-in-out infinite;
}

.intelligence-beam span:nth-child(2) {
  animation-delay: 0.3s;
}

.intelligence-beam span:nth-child(3) {
  animation-delay: 0.6s;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.system-metrics span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #d7e5f3;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 800;
}

.intelligence-panel .flow-stack {
  justify-content: center;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes engine-ring {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes beam-node {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.flow-divider {
  display: grid;
  place-items: center;
  min-height: 62px;
}

.flow-divider span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #07364a;
  background: #e8fbff;
  border: 1px solid #b8eaf7;
  font-size: 0.82rem;
  font-weight: 900;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 26px;
}

.card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card ul,
.content-block ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.card li + li,
.content-block li + li {
  margin-top: 8px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 0%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.18), transparent 30%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  border-color: rgba(6, 199, 242, 0.2);
  box-shadow: 0 18px 55px rgba(5, 11, 31, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.service-card::before {
  background:
    linear-gradient(115deg, transparent 0%, transparent 36%, rgba(6, 199, 242, 0.22) 46%, transparent 57%, transparent 100%),
    radial-gradient(circle at 16% 12%, rgba(6, 199, 242, 0.2), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(37, 99, 235, 0.22), transparent 22%);
  transform: translateX(-42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card::after {
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.09) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 34%, #000 68%, transparent 100%);
  opacity: 0.34;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(6, 199, 242, 0.72);
  box-shadow: 0 28px 82px rgba(5, 11, 31, 0.26), 0 0 34px rgba(6, 199, 242, 0.18);
}

.service-card:hover::before,
.service-card:focus-within::before {
  opacity: 1;
  animation: card-scan 1.8s ease-in-out infinite;
}

.service-card a {
  margin-top: 22px;
  color: var(--cyan);
  font-weight: 850;
}

.service-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.service-card-top .icon-box {
  margin-bottom: 0;
}

.service-card-top > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.26);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-card h3 {
  color: var(--paper);
}

.service-card p,
.service-card li {
  color: #d0dded;
}

.icon-box {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #00172d;
  background: linear-gradient(135deg, var(--cyan), #3aa7ff);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 199, 242, 0.28);
}

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

.icon-box::before,
.icon-box::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  pointer-events: none;
}

.icon-box::before {
  inset: -8px;
  border: 1px solid rgba(6, 199, 242, 0.28);
}

.icon-box::after {
  width: 10px;
  height: 10px;
  right: -4px;
  top: -4px;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(37, 99, 235, 0.7);
  animation: pulse-node 2.2s ease-in-out infinite;
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-system-section {
  color: var(--paper);
  background: var(--ink);
}

.service-system-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 78px rgba(0, 0, 0, 0.22);
}

.service-system-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.5;
  pointer-events: none;
}

.service-system-panel > * {
  position: relative;
  z-index: 1;
}

.service-system-panel .section-heading p {
  color: #c6d3e4;
}

.service-system-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 12px;
  align-items: stretch;
}

.service-system-flow article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 11, 31, 0.54);
}

.service-system-flow article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.service-system-flow strong {
  display: block;
  color: var(--paper);
  font-size: 1.1rem;
}

.service-system-flow p {
  margin: 10px 0 0;
  color: #c6d3e4;
  font-size: 0.92rem;
}

.service-system-flow > i {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.28);
}

@keyframes card-scan {
  0% {
    transform: translateX(-52%);
  }
  55%,
  100% {
    transform: translateX(62%);
  }
}

@keyframes pulse-node {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 52px;
  align-items: center;
}

.content-block h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.08;
}

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

.proof-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid #b8eaf7;
  border-radius: 999px;
  color: #056277;
  background: #e8fbff;
  font-size: 0.78rem;
  font-weight: 850;
}

.workflow-section {
  background:
    linear-gradient(180deg, var(--paper) 0%, #f4f8fd 100%);
}

.workflow-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.2), transparent 32%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 30px 90px rgba(5, 11, 31, 0.18);
}

.workflow-panel::before,
.workflow-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.workflow-panel::before {
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.48;
}

.workflow-panel::after {
  background: linear-gradient(110deg, transparent 0%, transparent 38%, rgba(6, 199, 242, 0.16) 48%, transparent 58%, transparent 100%);
  animation: workflow-scan 5s ease-in-out infinite;
}

.workflow-intro,
.workflow-map {
  position: relative;
  z-index: 1;
}

.workflow-intro .proof-label {
  border-color: rgba(6, 199, 242, 0.36);
  color: var(--cyan);
  background: rgba(6, 199, 242, 0.1);
}

.workflow-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.workflow-intro p {
  margin: 20px 0 0;
  color: #d0dded;
  font-size: 1.03rem;
}

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

.workflow-node {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.workflow-node::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -18px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.workflow-node:nth-child(2)::after,
.workflow-node:nth-child(4)::after {
  display: none;
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #00172d;
  background: linear-gradient(135deg, var(--cyan), #3aa7ff);
  box-shadow: 0 0 28px rgba(6, 199, 242, 0.28);
}

.workflow-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-node span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--cyan);
  font-weight: 900;
  font-size: 0.9rem;
}

.workflow-node h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.18rem;
}

.workflow-node p {
  margin: 10px 0 0;
  color: #c4d2e4;
}

@keyframes workflow-scan {
  0% {
    transform: translateX(-70%);
  }
  45%,
  100% {
    transform: translateX(70%);
  }
}

.delivery-section {
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 78%, transparent);
  pointer-events: none;
}

.delivery-section .container {
  position: relative;
  z-index: 1;
}

.delivery-heading {
  max-width: 820px;
}

.delivery-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #c8d6e8;
}

.delivery-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.delivery-board::before {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(6, 199, 242, 0.18), rgba(6, 199, 242, 0.72), rgba(6, 199, 242, 0.18));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.delivery-step {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 285px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(15, 23, 42, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 52px rgba(0, 0, 0, 0.18);
}

.delivery-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(6, 199, 242, 0.14), transparent 38%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.delivery-step:hover::after {
  opacity: 1;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(6, 199, 242, 0.42);
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  box-shadow: 0 0 30px rgba(6, 199, 242, 0.36);
  font-size: 0.9rem;
  font-weight: 950;
}

.step-kicker {
  margin: 0 0 9px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-step h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.12rem;
  line-height: 1.2;
}

.delivery-step p:not(.step-kicker) {
  margin: 12px 0 0;
  color: #c9d7e8;
  font-size: 0.93rem;
}

.delivery-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(6, 199, 242, 0.18);
  border-radius: 8px;
  background: rgba(5, 11, 31, 0.62);
}

.delivery-assurance span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: #dcecff;
  font-size: 0.82rem;
  font-weight: 850;
}

.delivery-assurance span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

.process-list {
  display: grid;
  gap: 14px;
  counter-reset: process;
}

.process-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  counter-increment: process;
}

.process-item::before {
  content: counter(process, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--cyan);
  font-weight: 900;
}

.process-item h3 {
  margin: 0;
}

.process-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 54px;
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 199, 242, 0.18), transparent 44%),
    var(--ink);
}

.cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.cta-band p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #d5e3f3;
}

.page-hero {
  padding: 88px 0 70px;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 10%, rgba(6, 199, 242, 0.18), transparent 30%),
    var(--ink);
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #d5e3f3;
  font-size: 1.14rem;
}

.breadcrumbs {
  margin-bottom: 20px;
  color: #aebfd3;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: #dcecff;
}

.services-hero {
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%);
  pointer-events: none;
}

.services-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: 56px;
  align-items: center;
}

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

.services-command-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.76);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.services-command-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.command-card-header,
.command-grid,
.command-flow,
.command-metrics {
  position: relative;
  z-index: 1;
}

.command-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.command-card-header span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.command-card-header strong {
  color: var(--paper);
  font-size: 0.92rem;
}

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

.command-grid div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.command-grid b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #06111f;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.34);
  font-size: 0.78rem;
}

.command-grid b svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command-grid span {
  color: #e2f5ff;
  font-size: 0.9rem;
  font-weight: 850;
}

.command-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.command-flow span {
  color: #e8f8ff;
  font-size: 0.76rem;
  font-weight: 900;
}

.command-flow i {
  height: 1px;
  min-width: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.28);
}

.command-metrics {
  display: grid;
  gap: 9px;
}

.command-metrics span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 850;
}

.command-metrics strong {
  color: var(--cyan);
  font-size: 0.76rem;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 92%);
  pointer-events: none;
}

.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.contact-hero-copy h1 {
  max-width: 940px;
}

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

.contact-digital-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-digital-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.digital-card-top,
.digital-message,
.digital-route,
.digital-contact-grid,
.digital-status-row {
  position: relative;
  z-index: 1;
}

.digital-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.digital-card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.digital-card-top strong {
  color: var(--paper);
  font-size: 0.92rem;
}

.digital-message {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.message-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(6, 199, 242, 0.18), transparent 62%),
    rgba(6, 199, 242, 0.08);
  box-shadow: 0 0 26px rgba(6, 199, 242, 0.42), inset 0 0 0 1px rgba(6, 199, 242, 0.32);
}

.message-avatar img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(6, 199, 242, 0.35));
}

.digital-message strong {
  color: var(--paper);
}

.digital-message p {
  margin: 5px 0 0;
  color: #b7ccdd;
  font-size: 0.88rem;
}

.digital-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.digital-route span {
  color: #e8f8ff;
  font-size: 0.75rem;
  font-weight: 850;
  white-space: nowrap;
}

.digital-route i {
  height: 1px;
  min-width: 24px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.28);
}

.digital-contact-grid {
  display: grid;
  gap: 9px;
}

.digital-contact-grid span {
  display: grid;
  gap: 4px;
  min-height: 56px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  overflow-wrap: anywhere;
  font-size: 0.86rem;
}

.digital-contact-grid b {
  color: var(--cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.digital-status-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.digital-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
}

.digital-status-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.8);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.info-strip div {
  padding: 22px;
}

.info-strip div + div {
  border-left: 1px solid var(--line);
}

.info-strip strong {
  display: block;
}

.info-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.commercial-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(6, 199, 242, 0.08), transparent 30%),
    var(--mist);
}

.commercial-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 199, 242, 0.13), transparent 42%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 26px 80px rgba(5, 11, 31, 0.18);
}

.commercial-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.46;
  pointer-events: none;
}

.commercial-copy,
.commercial-board,
.commercial-rules {
  position: relative;
  z-index: 1;
}

.commercial-copy {
  align-self: center;
}

.commercial-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.commercial-copy p:not(.eyebrow) {
  margin: 18px 0 24px;
  color: #c6d3e4;
  font-size: 1.04rem;
}

.commercial-board {
  display: grid;
  gap: 12px;
}

.commercial-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.commercial-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.commercial-step strong {
  color: var(--paper);
  font-size: 1.02rem;
}

.commercial-step p {
  grid-column: 2;
  margin: -16px 0 0;
  color: #c6d3e4;
  font-size: 0.92rem;
}

.commercial-rules {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding-top: 4px;
}

.commercial-rules span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 11px;
  border: 1px solid rgba(6, 199, 242, 0.16);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(5, 11, 31, 0.54);
  font-size: 0.82rem;
  font-weight: 850;
}

.commercial-rules span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

.automation-hero {
  position: relative;
  overflow: hidden;
}

.automation-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%);
  pointer-events: none;
}

.automation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.automation-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.automation-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.automation-console-top,
.automation-core-row,
.automation-signal-grid,
.automation-progress {
  position: relative;
  z-index: 1;
}

.automation-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.automation-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.automation-console-top strong,
.automation-core-row strong {
  color: var(--paper);
}

.automation-core-row {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.automation-core-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(6, 199, 242, 0.28);
  border-radius: 999px;
  background: rgba(6, 199, 242, 0.08);
  box-shadow: 0 0 32px rgba(6, 199, 242, 0.24);
}

.automation-core-icon img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.automation-core-row p {
  margin: 7px 0 0;
  color: #b7ccdd;
  font-size: 0.9rem;
}

.automation-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.automation-signal-grid span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
}

.automation-signal-grid b {
  color: var(--cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.automation-progress {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.automation-progress span {
  color: #e8f8ff;
  font-size: 0.75rem;
  font-weight: 900;
}

.automation-progress i {
  height: 1px;
  min-width: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.28);
}

.automation-use-card,
.audit-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 24px 70px rgba(5, 11, 31, 0.16);
}

.automation-use-card h3 {
  margin: 0 0 18px;
  color: var(--paper);
}

.automation-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.automation-use-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 820;
}

.automation-use-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

.automation-system-section {
  color: var(--paper);
  background: var(--ink);
}

.automation-system-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.automation-system-panel::before,
.audit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.automation-system-panel > *,
.audit-panel > * {
  position: relative;
  z-index: 1;
}

.automation-system-panel .section-heading p,
.audit-panel .section-heading p {
  color: #c6d3e4;
}

.automation-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 12px;
  align-items: stretch;
}

.automation-flow article,
.audit-steps article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 11, 31, 0.54);
}

.automation-flow article span,
.audit-steps article span,
.automation-feature-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.automation-flow strong,
.audit-steps h3 {
  display: block;
  color: var(--paper);
  font-size: 1.1rem;
}

.automation-flow p,
.audit-steps p {
  margin: 10px 0 0;
  color: #c6d3e4;
  font-size: 0.92rem;
}

.automation-flow > i {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.28);
}

.automation-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(6, 199, 242, 0.14), transparent 26%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
}

.automation-feature-card h3 {
  margin: 0;
  color: var(--paper);
}

.automation-feature-card p {
  color: #c6d3e4;
}

.audit-panel {
  padding: 34px;
}

.audit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.seo-hero {
  position: relative;
  overflow: hidden;
}

.seo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%);
  pointer-events: none;
}

.seo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.seo-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.seo-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.seo-console-top,
.seo-search-bar,
.seo-signal-grid,
.seo-visibility-chart,
.seo-status-row {
  position: relative;
  z-index: 1;
}

.seo-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.seo-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-console-top strong {
  color: var(--paper);
}

.seo-search-bar {
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.seo-search-bar span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-search-bar strong {
  color: var(--paper);
  font-size: 1.04rem;
}

.seo-signal-grid,
.seo-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.seo-signal-grid span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
}

.seo-signal-grid b {
  color: var(--cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.seo-visibility-chart {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 199, 242, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

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

.chart-header span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-header strong {
  color: var(--paper);
  font-size: 0.86rem;
}

.chart-stage {
  position: relative;
  min-height: 128px;
  border-radius: 8px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 30px, 52px 100%;
}

.chart-stage svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-grid-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-trend {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(6, 199, 242, 0.52));
}

.chart-stage circle {
  fill: #dff9ff;
  stroke: var(--cyan);
  stroke-width: 2;
  filter: drop-shadow(0 0 7px rgba(6, 199, 242, 0.72));
}

.chart-bars {
  position: absolute;
  inset: 18px 10px 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
}

.chart-bars i {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(6, 199, 242, 0.78), rgba(6, 199, 242, 0.12));
  box-shadow: 0 0 16px rgba(6, 199, 242, 0.22);
}

.chart-bars i:nth-child(1) { height: 34%; }
.chart-bars i:nth-child(2) { height: 48%; }
.chart-bars i:nth-child(3) { height: 42%; }
.chart-bars i:nth-child(4) { height: 64%; }
.chart-bars i:nth-child(5) { height: 72%; }
.chart-bars i:nth-child(6) { height: 86%; }

.chart-labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

.chart-labels span {
  color: #b7ccdd;
  font-size: 0.66rem;
  font-weight: 850;
  text-align: center;
}

.seo-status-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.seo-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
}

.seo-status-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.8);
}

.seo-focus-card,
.seo-review-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 24px 70px rgba(5, 11, 31, 0.16);
}

.seo-focus-card h3 {
  margin: 0 0 18px;
  color: var(--paper);
}

.seo-focus-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 820;
}

.seo-focus-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

.seo-system-section {
  color: var(--paper);
  background: var(--ink);
}

.seo-system-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.seo-system-panel::before,
.seo-review-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.seo-system-panel > *,
.seo-review-panel > * {
  position: relative;
  z-index: 1;
}

.seo-system-panel .section-heading p,
.seo-review-panel .section-heading p {
  color: #c6d3e4;
}

.seo-system-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 12px;
  align-items: stretch;
}

.seo-system-flow article,
.seo-review-steps article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 11, 31, 0.54);
}

.seo-system-flow article span,
.seo-review-steps article span,
.seo-feature-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.seo-system-flow strong,
.seo-review-steps h3 {
  display: block;
  color: var(--paper);
  font-size: 1.1rem;
}

.seo-system-flow p,
.seo-review-steps p {
  margin: 10px 0 0;
  color: #c6d3e4;
  font-size: 0.92rem;
}

.seo-system-flow > i {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.28);
}

.seo-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(6, 199, 242, 0.14), transparent 26%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
}

.seo-feature-card h3 {
  margin: 0;
  color: var(--paper);
}

.seo-feature-card p {
  color: #c6d3e4;
}

.seo-review-panel {
  padding: 34px;
}

.seo-review-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.insights-hero {
  position: relative;
  overflow: hidden;
}

.insights-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%);
  pointer-events: none;
}

.insights-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.insights-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.insights-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.insights-console-top,
.insights-topic-grid,
.insights-pipeline,
.insights-status-row {
  position: relative;
  z-index: 1;
}

.insights-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.insights-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insights-console-top strong {
  color: var(--paper);
}

.insights-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.insights-topic-grid span {
  display: grid;
  gap: 5px;
  min-height: 76px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.9rem;
  font-weight: 850;
}

.insights-topic-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #06111f;
  background: var(--cyan);
  font-size: 0.72rem;
}

.insights-pipeline {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.insights-pipeline span {
  color: #e8f8ff;
  font-size: 0.75rem;
  font-weight: 900;
}

.insights-pipeline i {
  height: 1px;
  min-width: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.28);
}

.insights-status-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.insights-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
}

.insights-status-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.8);
}

.insights-library-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(6, 199, 242, 0.08), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, #f5f8fc 100%);
}

.insight-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.insight-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(6, 199, 242, 0.14), transparent 26%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 18px 55px rgba(5, 11, 31, 0.16);
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
  pointer-events: none;
}

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

.insight-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.26);
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 18px 0 0;
  color: var(--paper);
  font-size: 1.18rem;
}

.insight-card p {
  color: #c6d3e4;
}

.insight-card small {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.insight-standards-section {
  color: var(--paper);
  background: var(--ink);
}

.insight-standards-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.insight-standards-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.insight-standards-panel > * {
  position: relative;
  z-index: 1;
}

.insight-standards-panel .section-heading p {
  color: #c6d3e4;
}

.insight-standards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.insight-standards-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(6, 199, 242, 0.16);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(5, 11, 31, 0.54);
  font-size: 0.84rem;
  font-weight: 850;
}

.insight-standards-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

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

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 20px 22px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--cyan);
  border-radius: 0 8px 8px 0;
  background: #eafaff;
  color: #12324d;
}

.contact-intro {
  align-self: center;
}

.contact-prep-panel {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(6, 199, 242, 0.11), transparent 48%),
    #f1fbff;
}

.contact-prep-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.contact-prep-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-prep-panel li + li {
  margin-top: 8px;
}

.contact-hours-panel {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 16px 20px;
  border: 1px solid rgba(6, 199, 242, 0.15);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(6, 199, 242, 0.06), transparent 48%), #f8fcff;
}

.contact-hours-panel strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.contact-hours-panel span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-options-card {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.contact-options-card > p {
  margin: -4px 0 0;
  color: var(--muted);
}

.contact-method-list {
  display: grid;
  gap: 12px;
}

.contact-method {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.contact-method span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--ink);
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-method .btn {
  grid-row: span 2;
  min-height: 42px;
  padding: 0 16px;
  white-space: nowrap;
}

.contact-method .btn-primary {
  min-width: 170px;
}

.contact-method .btn-whatsapp {
  min-width: 190px;
}

.contact-method:hover {
  border-color: rgba(6, 199, 242, 0.5);
  background: #eefcff;
}

.contact-response-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  color: #dff8ff;
  background: var(--ink);
}

.contact-response-note span {
  color: #a9c6d7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-response-note strong {
  font-size: 0.92rem;
}

.social-follow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.social-follow-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-follow-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6,199,242,0.6);
  box-shadow: 0 12px 32px rgba(5,11,31,0.1);
}

.social-follow-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.social-follow-card strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.social-follow-card small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 760px) {
  .social-follow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .social-follow-grid {
    grid-template-columns: 1fr;
  }
}

.form-shell {
  display: grid;
  gap: 16px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: #005d80;
  font-weight: 850;
}

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

.field label {
  color: var(--ink-soft);
  font-weight: 760;
}

.field label span {
  color: var(--muted);
  font-size: 0.82em;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(6, 199, 242, 0.22);
  border-color: rgba(6, 199, 242, 0.72);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.site-footer {
  color: #c6d3e4;
  background: #050b1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  padding: 58px 0;
}

.footer-brand {
  color: var(--paper);
  font-weight: 900;
  font-size: 1.2rem;
}

.site-footer p {
  max-width: 420px;
  color: #aebfd3;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 0.96rem;
}

.footer-col a {
  display: block;
  margin-top: 9px;
  color: #c6d3e4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9aacbf;
  font-size: 0.92rem;
}

/* Digital marketing and growth strategy service pages */
.marketing-hero,
.growth-strategy-hero {
  position: relative;
  overflow: hidden;
}

.marketing-hero::before,
.growth-strategy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 199, 242, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 199, 242, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 90%);
  pointer-events: none;
}

.marketing-hero-grid,
.growth-strategy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 56px;
  align-items: center;
}

.marketing-hero-grid > *,
.growth-strategy-hero-grid > * {
  min-width: 0;
}

.marketing-console,
.growth-roadmap-console {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(6, 199, 242, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 199, 242, 0.14), transparent 42%),
    rgba(5, 11, 31, 0.78);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.marketing-console::before,
.growth-roadmap-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 242, 0.12), transparent);
  transform: translateX(-110%);
  animation: ai-card-scan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.marketing-console > *,
.growth-roadmap-console > * {
  position: relative;
  z-index: 1;
}

.marketing-console-top,
.growth-console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.marketing-console-top span,
.growth-console-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(6, 199, 242, 0.3);
  border-radius: 999px;
  color: #c9f6ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marketing-console-top strong,
.growth-console-top strong {
  color: var(--paper);
  font-size: 0.86rem;
}

.marketing-campaign-row,
.growth-priority-card {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.marketing-campaign-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.marketing-campaign-row div {
  display: grid;
  gap: 5px;
}

.marketing-campaign-row small,
.growth-priority-card small {
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.marketing-campaign-row strong,
.growth-priority-card strong {
  color: var(--paper);
}

.marketing-campaign-row > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-size: 0.7rem;
  font-weight: 950;
  white-space: nowrap;
}

.marketing-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.marketing-metric-grid span {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
}

.marketing-metric-grid b {
  color: var(--cyan);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.marketing-journey {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.marketing-journey span {
  color: #e8f8ff;
  font-size: 0.75rem;
  font-weight: 900;
}

.marketing-journey i {
  height: 1px;
  min-width: 18px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 18px rgba(6, 199, 242, 0.28);
}

.marketing-status-row,
.growth-status-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.marketing-status-row span,
.growth-status-row span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  color: #dff9ff;
  background: rgba(6, 199, 242, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
}

.marketing-status-row span::before,
.growth-status-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.8);
}

.growth-priority-card {
  display: grid;
  gap: 7px;
}

.growth-priority-card p {
  margin: 0;
  color: #b7ccdd;
  font-size: 0.86rem;
}

.growth-lane-list {
  display: grid;
  gap: 9px;
}

.growth-lane-list article {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.055);
}

.growth-lane-list b {
  color: var(--cyan);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.growth-lane-list span {
  font-size: 0.86rem;
  font-weight: 850;
}

.growth-lane-list em {
  color: #9fb3c8;
  font-size: 0.7rem;
  font-style: normal;
}

.marketing-foundation-section,
.growth-foundation-section {
  background:
    radial-gradient(circle at 10% 16%, rgba(6, 199, 242, 0.08), transparent 26%),
    linear-gradient(180deg, var(--paper) 0%, #f5f8fc 100%);
}

.marketing-focus-card,
.growth-focus-card,
.marketing-review-panel,
.growth-audit-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
  box-shadow: 0 24px 70px rgba(5, 11, 31, 0.16);
}

.marketing-focus-card h3,
.growth-focus-card h3 {
  margin: 0 0 18px;
  color: var(--paper);
}

.marketing-focus-grid,
.growth-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.marketing-focus-grid span,
.growth-focus-grid span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: #dcecff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  font-weight: 820;
}

.marketing-focus-grid span::before,
.growth-focus-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(6, 199, 242, 0.72);
}

.marketing-system-section,
.growth-system-section {
  color: var(--paper);
  background: var(--ink);
}

.marketing-system-panel,
.growth-system-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 12%, rgba(6, 199, 242, 0.16), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.045);
}

.marketing-system-panel::before,
.growth-system-panel::before,
.marketing-review-panel::before,
.growth-audit-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 199, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 199, 242, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.42;
  pointer-events: none;
}

.marketing-system-panel > *,
.growth-system-panel > *,
.marketing-review-panel > *,
.growth-audit-panel > * {
  position: relative;
  z-index: 1;
}

.marketing-system-panel .section-heading p,
.growth-system-panel .section-heading p,
.marketing-review-panel .section-heading p,
.growth-audit-panel .section-heading p {
  color: #c6d3e4;
}

.marketing-system-flow,
.growth-system-flow {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr;
  gap: 12px;
  align-items: stretch;
}

.marketing-system-flow article,
.growth-system-flow article,
.marketing-review-steps article,
.growth-score-grid article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 11, 31, 0.54);
}

.marketing-system-flow article span,
.growth-system-flow article span,
.marketing-feature-card span,
.growth-feature-card span,
.marketing-review-steps article span,
.growth-score-grid article span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #06111f;
  background: var(--cyan);
  font-weight: 950;
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.32);
}

.marketing-system-flow strong,
.growth-system-flow strong,
.marketing-review-steps h3,
.growth-score-grid h3 {
  display: block;
  color: var(--paper);
  font-size: 1.1rem;
}

.marketing-system-flow p,
.growth-system-flow p,
.marketing-review-steps p,
.growth-score-grid p {
  margin: 10px 0 0;
  color: #c6d3e4;
  font-size: 0.92rem;
}

.marketing-system-flow > i,
.growth-system-flow > i {
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(6, 199, 242, 0.14));
  box-shadow: 0 0 20px rgba(6, 199, 242, 0.28);
}

.marketing-feature-card,
.growth-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(6, 199, 242, 0.2);
  border-radius: 8px;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% 8%, rgba(6, 199, 242, 0.14), transparent 26%),
    linear-gradient(145deg, #050b1f 0%, #071634 58%, #08244a 100%);
}

.marketing-feature-card h3,
.growth-feature-card h3 {
  margin: 0;
  color: var(--paper);
}

.marketing-feature-card p,
.growth-feature-card p {
  color: #c6d3e4;
}

.marketing-review-panel,
.growth-audit-panel {
  padding: 34px;
}

.marketing-review-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.growth-score-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 26px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .hero .container,
  .split,
  .workflow-panel,
  .contact-hero-grid,
  .services-hero-grid,
  .automation-hero-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero-grid {
    grid-template-columns: 1fr;
  }

  .insights-hero-grid {
    grid-template-columns: 1fr;
  }

  .marketing-hero-grid,
  .growth-strategy-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero .container {
    min-height: auto;
    padding-top: 56px;
  }

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

  .hero-image-card {
    transform: none;
  }

  .hero-image-card img {
    min-height: 440px;
    object-position: 72% center;
  }

  .workflow-panel {
    padding: 34px;
  }

  .contact-digital-card {
    max-width: 680px;
  }

  .services-command-card {
    max-width: 680px;
  }

  .automation-console {
    max-width: 680px;
  }

  .seo-console {
    max-width: 680px;
  }

  .insights-console {
    max-width: 680px;
  }

  .marketing-console,
  .growth-roadmap-console {
    width: 100%;
    max-width: 680px;
  }

  .flow-steps,
  .connected-flow .flow-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .intelligence-grid,
  .system-metrics {
    grid-template-columns: 1fr;
  }

  .ai-engine-core {
    min-height: 310px;
  }

  .intelligence-beam {
    display: none;
  }

  .flow-steps > i {
    width: 2px;
    height: 26px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(100, 116, 139, 0.5), rgba(100, 116, 139, 0.12));
  }

  .connected-flow .flow-steps > i {
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.18));
  }

  .connected-flow .flow-steps > i::after {
    top: auto;
    right: -4px;
    bottom: 0;
  }

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

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

  .delivery-board::before {
    display: none;
  }

  .delivery-step {
    min-height: 240px;
  }

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

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

  .service-system-flow > i {
    width: 2px;
    height: 24px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
    box-shadow: none;
  }

  .automation-flow {
    grid-template-columns: 1fr;
  }

  .automation-flow > i {
    width: 2px;
    height: 24px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .seo-system-flow {
    grid-template-columns: 1fr;
  }

  .seo-system-flow > i {
    width: 2px;
    height: 24px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .marketing-system-flow,
  .growth-system-flow {
    grid-template-columns: 1fr;
  }

  .marketing-system-flow > i,
  .growth-system-flow > i {
    width: 2px;
    height: 24px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .audit-steps,
  .seo-review-steps,
  .marketing-review-steps {
    grid-template-columns: 1fr;
  }

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

  .commercial-panel {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .nav {
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav-links {
    inset: 68px 0 auto 0;
  }

  .hero .container {
    padding: 46px 0 40px;
  }

  .hero h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .hero-image-card img {
    min-height: 300px;
    object-position: 72% center;
  }

  .hero-visual-tags {
    top: auto;
    bottom: 82px;
    right: 12px;
  }

  .ai-agent-card {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .ai-agent-chip {
    position: static;
    width: auto;
    margin: 0;
    border-radius: 0;
  }

  .live-automation-pill {
    top: 12px;
    right: 12px;
  }

  .hero-data-nodes {
    display: none;
  }

  .hero-system-strip {
    position: static;
    border-radius: 0;
  }

  .system-strip-header {
    grid-template-columns: 10px 1fr;
  }

  .system-strip-header small {
    display: none;
  }

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

  .pipeline-node:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .delivery-heading {
    max-width: none;
  }

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

  .delivery-board {
    margin-top: 28px;
  }

  .delivery-step {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .step-number {
    width: 54px;
    height: 54px;
  }

  .delivery-assurance {
    padding: 14px 18px;
  }

  .contact-options-card {
    padding: 22px;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .contact-method .btn {
    grid-row: auto;
    width: 100%;
    justify-content: center;
  }

  .contact-response-note {
    display: grid;
  }

  .page-hero {
    padding: 64px 0 52px;
  }

  .contact-hero {
    padding: 58px 0 54px;
  }

  .contact-hero-grid {
    gap: 34px;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }

  .services-hero-actions .btn {
    width: 100%;
  }

  .marketing-hero .hero-actions,
  .growth-strategy-hero .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .marketing-hero .hero-actions .btn,
  .growth-strategy-hero .hero-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .command-card-header {
    display: grid;
  }

  .command-flow {
    grid-template-columns: 1fr;
  }

  .command-flow i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
    box-shadow: none;
  }

  .automation-console-top,
  .automation-progress {
    display: grid;
    grid-template-columns: 1fr;
  }

  .automation-core-row,
  .automation-signal-grid,
  .automation-use-grid {
    grid-template-columns: 1fr;
  }

  .automation-progress i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .automation-system-panel,
  .audit-panel {
    padding: 24px 18px;
  }

  .seo-console-top,
  .seo-status-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .seo-signal-grid,
  .seo-focus-grid {
    grid-template-columns: 1fr;
  }

  .seo-system-panel,
  .seo-review-panel {
    padding: 24px 18px;
  }

  .marketing-console-top,
  .marketing-status-row,
  .growth-console-top,
  .growth-status-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .marketing-campaign-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketing-metric-grid,
  .marketing-focus-grid,
  .growth-focus-grid,
  .growth-score-grid {
    grid-template-columns: 1fr;
  }

  .marketing-journey {
    grid-template-columns: 1fr;
  }

  .marketing-journey i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .growth-lane-list article {
    grid-template-columns: 42px 1fr;
  }

  .growth-lane-list em {
    grid-column: 2;
  }

  .marketing-system-panel,
  .growth-system-panel,
  .marketing-review-panel,
  .growth-audit-panel {
    padding: 24px 18px;
  }

  .insights-console-top,
  .insights-topic-grid,
  .insights-status-row {
    grid-template-columns: 1fr;
  }

  .insights-console-top {
    display: grid;
  }

  .insights-pipeline {
    grid-template-columns: 1fr;
  }

  .insights-pipeline i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
  }

  .insight-card-grid,
  .insight-standards-grid {
    grid-template-columns: 1fr;
  }

  .insight-standards-panel {
    padding: 24px 18px;
  }

  .service-system-panel {
    padding: 24px 18px;
  }

  .commercial-panel {
    padding: 24px 18px;
  }

  .commercial-rules {
    grid-template-columns: 1fr;
  }

  .digital-card-top,
  .digital-status-row {
    grid-template-columns: 1fr;
  }

  .digital-card-top {
    display: grid;
  }

  .digital-route {
    grid-template-columns: 1fr;
  }

  .digital-route i {
    width: 2px;
    height: 18px;
    justify-self: center;
    background: linear-gradient(180deg, var(--cyan), rgba(6, 199, 242, 0.14));
    box-shadow: none;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .info-strip,
  .workflow-map {
    grid-template-columns: 1fr;
  }

  .info-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .workflow-panel {
    padding: 26px 18px;
  }

  .system-flow-panel {
    padding: 18px;
  }

  .flow-lane {
    padding: 16px;
  }

  .workflow-node {
    min-height: auto;
  }

  .workflow-node::after {
    display: none;
  }

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

  .pipeline-step {
    grid-template-columns: 42px 1fr;
  }

  .mini-status {
    grid-column: 2;
  }

  .cta-band {
    padding: 32px 22px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
}

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