:root {
  --bg: #0b0f19;
  --bg-deep: #05070d;
  --bg-soft: #080c14;
  --panel: #111827;
  --panel-2: #0c1424;
  --blue: #2f6bff;
  --blue-glow: #5ea2ff;
  --text: #f7fafc;
  --muted: rgba(247, 250, 252, 0.64);
  --line: rgba(94, 162, 255, 0.22);
  --line-strong: rgba(94, 162, 255, 0.48);
  --shadow-blue: 0 0 36px rgba(47, 107, 255, 0.36);
  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 5%, rgba(47, 107, 255, 0.2), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(94, 162, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #05070d 0%, var(--bg) 38%, #05070d 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(94, 162, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 78%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: var(--bg-deep);
  color: var(--text);
  transition: transform 180ms var(--ease-out);
}

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

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(94, 162, 255, 0.14);
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #05070d;
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.brand-copy small {
  margin-top: 0.22rem;
  color: var(--blue-glow);
  font-size: 0.58rem;
  font-weight: 700;
}

.nav-links {
  position: fixed;
  inset: 76px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem;
  background: rgba(8, 12, 20, 0.96);
  box-shadow: var(--shadow-blue);
}

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

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(47, 107, 255, 0.12);
  color: var(--text);
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  min-width: 230px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.45rem;
  background: rgba(5, 7, 13, 0.98);
  box-shadow: var(--shadow-blue);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-whatsapp {
  border: 1px solid rgba(94, 162, 255, 0.28);
  background: rgba(47, 107, 255, 0.08);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.7);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 220ms var(--ease-out), opacity 220ms var(--ease-out);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-cta {
  display: none;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  scroll-margin-top: 88px;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-grid,
.split-layout,
.footer-grid,
.service-grid,
.services-experience,
.portfolio-filters,
.portfolio-shell,
.portfolio-cta,
.values-grid,
.timeline,
.analytics-console {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-grid,
.split-layout {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue-glow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.03;
  text-wrap: pretty;
}

h1 {
  font-size: clamp(2.95rem, 6.4vw, 5.25rem);
  max-width: 13ch;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--blue);
}

h2 {
  font-size: clamp(2.15rem, 6.5vw, 4.7rem);
  max-width: 13ch;
}

h3 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

.hero-text {
  max-width: 58ch;
  margin: 1.25rem 0 0;
  color: rgba(247, 250, 252, 0.86);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.78rem 1.1rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-glow) 0%, var(--blue) 100%);
  color: var(--text);
  box-shadow: 0 0 28px rgba(47, 107, 255, 0.34);
}

.btn-secondary {
  border-color: rgba(247, 250, 252, 0.18);
  background: rgba(247, 250, 252, 0.04);
  color: var(--text);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(47, 107, 255, 0.46);
  outline: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--line-strong);
  background: rgba(47, 107, 255, 0.12);
}

.impact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.impact-strip span,
.benefit-list span,
.feature-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  background: rgba(47, 107, 255, 0.08);
  color: rgba(247, 250, 252, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
}

.credibility-strip {
  padding: clamp(1rem, 2.2vw, 1.7rem) 0 clamp(2.1rem, 4vw, 3.2rem);
}

.credibility-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.credibility-grid p {
  min-height: 104px;
  margin: 0;
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 18px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.1), transparent 52%),
    rgba(5, 7, 13, 0.7);
  color: rgba(247, 250, 252, 0.72);
  font-size: 0.9rem;
}

.credibility-grid strong {
  color: var(--text);
  font-family: var(--font-display);
}

.metric-note {
  margin: 0.65rem 0 0;
  color: rgba(154, 167, 189, 0.76);
  font-size: 0.8rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.laptop-glow {
  position: absolute;
  inset: auto 6% 1% 8%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 107, 255, 0.48), transparent 70%);
  filter: blur(16px);
}

.dashboard-panel,
.workflow-board,
.mock-browser,
.analytics-console,
.cta-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.86), rgba(5, 7, 13, 0.92)),
    radial-gradient(circle at 20% 0%, rgba(47, 107, 255, 0.16), transparent 18rem);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(247, 250, 252, 0.06);
}

.dashboard-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  margin: 0 auto;
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.5rem);
  transform: perspective(1100px) rotateX(6deg) rotateY(-8deg);
}

.dashboard-panel::after {
  content: "";
  position: absolute;
  inset: 100% 7% auto;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.92), rgba(5, 7, 13, 0.7));
}

.panel-topbar,
.mock-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(247, 250, 252, 0.74);
  font-size: 0.86rem;
  font-weight: 800;
}

.panel-topbar span,
.mock-top span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: rgba(94, 162, 255, 0.45);
}

.panel-topbar strong {
  margin-left: auto;
  font-family: var(--font-display);
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.dashboard-metrics article,
.analytics-sidebar article,
.service-card,
.value-card,
.step-card {
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 18px;
  background: rgba(8, 12, 20, 0.72);
}

.dashboard-metrics article {
  padding: 0.75rem;
}

.dashboard-metrics small,
.analytics-sidebar span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.dashboard-metrics span,
.analytics-sidebar small {
  color: var(--blue-glow);
  font-size: 0.75rem;
  font-weight: 800;
}

.chart-area {
  margin-top: 1rem;
  border: 1px solid rgba(94, 162, 255, 0.16);
  border-radius: 18px;
  padding: 0.6rem;
  background: rgba(5, 7, 13, 0.78);
}

.grid-lines {
  fill: none;
  stroke: rgba(94, 162, 255, 0.14);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: url(#lineGlow);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 0 10px rgba(94, 162, 255, 0.9));
  stroke-dasharray: 900;
  animation: draw-line 3.6s var(--ease-smooth) infinite alternate;
}

.mini-line .chart-line {
  stroke: var(--blue-glow);
}

.chart-fill {
  fill: rgba(47, 107, 255, 0.12);
}

.automation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.radial-progress {
  --size: 94px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0b0f19 0 48%, transparent 50%),
    conic-gradient(var(--blue) 0 65%, rgba(94, 162, 255, 0.14) 65% 100%);
  box-shadow: inset 0 0 24px rgba(47, 107, 255, 0.22), 0 0 22px rgba(47, 107, 255, 0.25);
}

.radial-progress span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
}

.hero-nodes {
  position: absolute;
  inset: 4% 0 auto auto;
  width: min(42%, 330px);
  height: 360px;
}

.hero-nodes > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(94, 162, 255, 0.7));
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.22rem;
  width: 68px;
  height: 68px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(5, 7, 13, 0.9);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: var(--shadow-blue);
}

.node svg {
  position: static;
  inset: auto;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--blue-glow);
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(94, 162, 255, 0.72));
}

.node span {
  display: block;
  font-size: 0.72rem;
  line-height: 1;
}

.node-chat {
  right: 0;
  top: 42px;
}

.node-auto {
  right: 0;
  top: 148px;
}

.node-web {
  right: 0;
  top: 254px;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading.centered h2,
.section-heading.centered p {
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  max-width: 64ch;
  margin-top: 1rem;
  font-size: 1.02rem;
}

.trust-bar {
  padding: clamp(1.2rem, 3vw, 2rem) 0;
}

.trust-grid,
.integration-hub,
.faq-layout {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.85rem;
}

.trust-grid article,
.audit-panel,
.chatbot-phone,
.ai-core-visual,
.integration-hub,
.faq-item {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 0%, rgba(47, 107, 255, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.82), rgba(5, 7, 13, 0.94));
  box-shadow: 0 0 26px rgba(47, 107, 255, 0.16), inset 0 1px 0 rgba(247, 250, 252, 0.05);
}

.trust-grid article {
  min-height: 150px;
  border-radius: 20px;
  padding: 1rem;
}

.trust-grid article span {
  display: block;
  width: 34px;
  height: 34px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(94, 162, 255, 0.8) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(94, 162, 255, 0.8) 48% 52%, transparent 53%),
    rgba(47, 107, 255, 0.12);
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.28);
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  line-height: 1.15;
}

.trust-grid p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

.audit-panel {
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.audit-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.audit-panel li {
  position: relative;
  border: 1px solid rgba(94, 162, 255, 0.16);
  border-radius: 14px;
  padding: 0.75rem 0.85rem 0.75rem 2.35rem;
  background: rgba(5, 7, 13, 0.58);
  color: rgba(247, 250, 252, 0.82);
  font-weight: 700;
}

.audit-panel li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  width: 12px;
  height: 12px;
  border: 1px solid var(--blue-glow);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(94, 162, 255, 0.8);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.services-experience {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}

.service-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.9rem;
}

.service-card,
.value-card,
.step-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 1.25rem;
  transition:
    transform 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out),
    background 220ms var(--ease-out);
}

.service-card {
  width: 100%;
  border: 1px solid rgba(94, 162, 255, 0.18);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.service-card::after,
.value-card::after,
.step-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: radial-gradient(circle at 24% 0%, rgba(47, 107, 255, 0.22), transparent 18rem);
  transition: opacity 220ms var(--ease-out);
}

.service-card > *,
.value-card > *,
.step-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover,
.service-card:focus-within,
.service-card.is-active,
.value-card:hover,
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-blue);
  outline: none;
}

.service-card:hover::after,
.service-card.is-active::after,
.value-card:hover::after,
.step-card:hover::after {
  opacity: 1;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(47, 107, 255, 0.12);
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.18);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue-glow);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 1.4rem;
}

.service-card.is-active .icon-box {
  background: rgba(47, 107, 255, 0.2);
}

.service-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 85% 12%, rgba(47, 107, 255, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.88), rgba(5, 7, 13, 0.94));
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(247, 250, 252, 0.06);
}

.service-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(94, 162, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.service-detail > * {
  position: relative;
  z-index: 2;
}

.service-detail h3 {
  max-width: 18ch;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
}

.service-detail h3 span {
  color: var(--blue);
}

.service-detail p:not(.eyebrow) {
  max-width: 68ch;
}

.service-detail ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.3rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(247, 250, 252, 0.74);
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 14px rgba(94, 162, 255, 0.8);
}

.service-card p,
.value-card p,
.step-card p {
  margin-bottom: 0;
}

.automation .section-heading h2 {
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 5.25vw, 4.2rem);
  overflow-wrap: normal;
}

.workflow-board {
  position: relative;
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
}

.workflow-board::before,
.web-mockup::before,
.analytics-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(94, 162, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
}

.workflow-lines {
  position: absolute;
  inset: 8%;
  width: 84%;
  height: 84%;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(94, 162, 255, 0.8));
}

.workflow-lines path {
  stroke-dasharray: 12 14;
  animation: dash-flow 12s linear infinite;
}

.flow-node {
  position: absolute;
  z-index: 2;
  min-width: 104px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  background: rgba(5, 7, 13, 0.92);
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.2);
}

.flow-node.start {
  left: 6%;
  top: 45%;
}

.flow-node.left.mid-a {
  left: 6%;
  top: 15%;
}

.flow-node.left.mid-b {
  left: 6%;
  bottom: 13%;
}

.flow-node.core {
  left: 50%;
  top: 50%;
  width: 92px;
  height: 92px;
  min-width: 92px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.22), rgba(5, 7, 13, 0.96));
}

.flow-node.right.out-a {
  right: 6%;
  top: 15%;
}

.flow-node.right.out-b {
  right: 6%;
  top: 45%;
}

.flow-node.right.out-c {
  right: 6%;
  bottom: 13%;
}

.flow-node.bottom {
  left: 42%;
  bottom: 8%;
}

.flow-node.top {
  left: 42%;
  top: 8%;
}

.benefit-list,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.web-mockup {
  position: relative;
}

.mock-browser {
  position: relative;
  border-radius: 28px;
  padding: 1rem;
  overflow: hidden;
}

.mock-top {
  padding-bottom: 0.9rem;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  min-height: 230px;
  border: 1px solid rgba(94, 162, 255, 0.16);
  border-radius: 22px;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 82% 30%, rgba(47, 107, 255, 0.36), transparent 10rem),
    rgba(5, 7, 13, 0.74);
}

.mock-hero small,
.mock-section-grid span {
  color: var(--blue-glow);
  font-weight: 800;
}

.mock-hero strong {
  display: block;
  max-width: 14ch;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.mock-hero button {
  margin-top: 1.2rem;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: var(--text);
  font-weight: 800;
}

.mock-orbit {
  min-height: 190px;
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle, rgba(94, 162, 255, 0.26) 0 10%, transparent 11%),
    repeating-radial-gradient(circle, transparent 0 36px, rgba(94, 162, 255, 0.18) 37px 38px),
    linear-gradient(145deg, rgba(47, 107, 255, 0.08), rgba(5, 7, 13, 0.7));
  animation: pulse-orbit 4s var(--ease-smooth) infinite alternate;
}

.mock-section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.mock-section-grid span {
  border: 1px solid rgba(94, 162, 255, 0.16);
  border-radius: 16px;
  padding: 1rem;
  background: rgba(8, 12, 20, 0.74);
}

.chatbot-phone {
  position: relative;
  width: min(100%, 420px);
  min-height: 560px;
  justify-self: center;
  display: grid;
  align-content: start;
  gap: 0.9rem;
  border-radius: 34px;
  padding: 1.1rem;
  overflow: hidden;
}

.chatbot-phone::before,
.ai-core-visual::before,
.integration-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(94, 162, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.phone-topbar,
.chat-bubble,
.bot-avatar {
  position: relative;
  z-index: 2;
}

.phone-topbar {
  border-bottom: 1px solid rgba(94, 162, 255, 0.16);
  padding: 0.6rem 0 1rem;
  color: var(--blue-glow);
  font-family: var(--font-display);
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
}

.chat-bubble {
  width: fit-content;
  max-width: 82%;
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 18px;
  padding: 0.85rem 0.95rem;
  color: rgba(247, 250, 252, 0.9);
  font-weight: 700;
}

.chat-bubble.user {
  margin-left: auto;
  background: rgba(47, 107, 255, 0.2);
}

.chat-bubble.bot {
  background: rgba(5, 7, 13, 0.82);
}

.bot-avatar {
  width: 74px;
  height: 74px;
  margin: 0.6rem auto 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(47, 107, 255, 0.28), rgba(5, 7, 13, 0.9));
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--shadow-blue);
}

.ai-core-visual {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
}

.ai-brain,
.ai-core-visual span {
  position: absolute;
  z-index: 2;
}

.ai-brain {
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background:
    radial-gradient(circle at 35% 25%, rgba(94, 162, 255, 0.46), transparent 42%),
    linear-gradient(180deg, rgba(47, 107, 255, 0.24), rgba(5, 7, 13, 0.96));
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-blue);
}

.ai-core-visual span {
  left: var(--x);
  top: var(--y);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: rgba(5, 7, 13, 0.9);
  color: rgba(247, 250, 252, 0.92);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.2);
}

.ai-core-visual::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(94, 162, 255, 0.34);
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(94, 162, 255, 0.45));
  animation: pulse-orbit 5s var(--ease-smooth) infinite alternate;
}

.integration-hub {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  gap: 1rem;
  border-radius: 30px;
  padding: clamp(1rem, 4vw, 2rem);
  overflow: hidden;
}

.hub-center {
  position: relative;
  z-index: 2;
  width: 156px;
  height: 156px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.55rem;
  border: 1px solid var(--line-strong);
  border-radius: 38px;
  background: rgba(5, 7, 13, 0.9);
  box-shadow: var(--shadow-blue);
}

.hub-center img {
  width: 72px;
  border-radius: 18px;
}

.hub-center strong {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.hub-tools,
.integration-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.hub-tools span,
.integration-steps article {
  border: 1px solid rgba(94, 162, 255, 0.22);
  border-radius: 999px;
  padding: 0.65rem 0.85rem;
  background: rgba(5, 7, 13, 0.84);
  color: rgba(247, 250, 252, 0.88);
  font-weight: 800;
}

.integration-steps article {
  border-radius: 16px;
  background: rgba(47, 107, 255, 0.1);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.portfolio {
  overflow: hidden;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: -0.75rem;
  margin-bottom: 1.4rem;
}

.portfolio-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(47, 107, 255, 0.08);
  color: rgba(247, 250, 252, 0.82);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.portfolio-filter:hover,
.portfolio-filter:focus-visible,
.portfolio-filter.is-active {
  border-color: var(--line-strong);
  background: var(--blue);
  color: var(--text);
  box-shadow: 0 0 26px rgba(47, 107, 255, 0.32);
  outline: none;
}

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

.portfolio-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1rem);
}

.portfolio-stage {
  min-width: 0;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(1rem, 2.6vw, 1.5rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 107, 255, 0.2), transparent 20rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.88), rgba(5, 7, 13, 0.94));
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(247, 250, 252, 0.06);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(94, 162, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 162, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

.portfolio-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 162, 255, 0.2);
  border-radius: 24px;
  background: #05070d;
  box-shadow: inset 0 0 0 1px rgba(247, 250, 252, 0.03), 0 0 30px rgba(47, 107, 255, 0.2);
}

.portfolio-video-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% -16px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 107, 255, 0.44), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.portfolio-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 520px;
  display: block;
  background: #05070d;
  object-fit: contain;
}

.portfolio-chat-mockup {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 0.8rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    radial-gradient(circle at 50% 10%, rgba(47, 107, 255, 0.2), transparent 18rem),
    rgba(5, 7, 13, 0.88);
}

.portfolio-chat-mockup .chat-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-bottom: 1px solid rgba(94, 162, 255, 0.16);
  padding-bottom: 0.9rem;
  color: var(--text);
  font-family: var(--font-display);
}

.portfolio-chat-mockup .chat-head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-glow);
  box-shadow: 0 0 14px rgba(94, 162, 255, 0.9);
}

.portfolio-chat-mockup .chat-head small {
  margin-left: auto;
  color: var(--blue-glow);
  font-weight: 900;
}

.portfolio-copy {
  display: grid;
  align-content: center;
  gap: 0.95rem;
}

.portfolio-category {
  width: max-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(47, 107, 255, 0.12);
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 4vw, 3.65rem);
}

.portfolio-copy h3 span {
  color: var(--blue);
}

.portfolio-copy p {
  max-width: 62ch;
  margin: 0;
}

.portfolio-tags,
.portfolio-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-tags li {
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 999px;
  padding: 0.42rem 0.62rem;
  background: rgba(8, 12, 20, 0.82);
  color: rgba(247, 250, 252, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.portfolio-metrics li {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 18px;
  padding: 0.85rem;
  background: rgba(5, 7, 13, 0.72);
}

.portfolio-metrics strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.1;
}

.portfolio-metrics span {
  color: var(--blue-glow);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 7, 13, 0.9);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 0 20px rgba(47, 107, 255, 0.16);
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.portfolio-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-arrow:hover,
.portfolio-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(47, 107, 255, 0.16);
  box-shadow: var(--shadow-blue);
  outline: none;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.portfolio-dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(247, 250, 252, 0.14);
  cursor: pointer;
}

.portfolio-dot.is-active {
  background: var(--blue);
  box-shadow: 0 0 16px rgba(47, 107, 255, 0.75);
}

.portfolio-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(1rem, 3vw, 1.3rem);
  background:
    radial-gradient(circle at 14% 0%, rgba(47, 107, 255, 0.18), transparent 16rem),
    rgba(8, 12, 20, 0.78);
  box-shadow: 0 0 28px rgba(47, 107, 255, 0.18);
}

.portfolio-cta p {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 800;
}

.faq-layout {
  display: grid;
  gap: 1rem;
}

.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.faq-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  background: rgba(47, 107, 255, 0.08);
  color: rgba(247, 250, 252, 0.82);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms var(--ease-out),
    border-color 180ms var(--ease-out),
    background 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out);
}

.faq-tab:hover,
.faq-tab:focus-visible,
.faq-tab.is-active {
  border-color: var(--line-strong);
  background: var(--blue);
  color: var(--text);
  box-shadow: 0 0 26px rgba(47, 107, 255, 0.32);
  outline: none;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border-radius: 18px;
  overflow: hidden;
}

.faq-item summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--blue-glow);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 74ch;
  margin: 0;
  padding: 0 1.1rem 1rem;
}

.analytics-console {
  position: relative;
  display: grid;
  gap: 1rem;
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.4rem);
  overflow: hidden;
}

.analytics-sidebar,
.analytics-main,
.analytics-donut {
  position: relative;
  z-index: 2;
}

.analytics-sidebar {
  display: grid;
  gap: 0.75rem;
}

.analytics-sidebar article {
  padding: 0.9rem;
}

.analytics-sidebar strong {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.analytics-main {
  display: grid;
  gap: 1rem;
}

.bar-chart,
.mini-line,
.analytics-donut {
  border: 1px solid rgba(94, 162, 255, 0.16);
  border-radius: 22px;
  background: rgba(5, 7, 13, 0.74);
}

.bar-chart {
  height: 220px;
  display: flex;
  align-items: end;
  gap: clamp(0.45rem, 1.8vw, 1rem);
  padding: 1.2rem;
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  min-width: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--blue-glow), var(--blue));
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.46);
  transform-origin: bottom;
  animation: bar-breathe 3.6s var(--ease-smooth) infinite alternate;
}

.mini-line {
  padding: 1rem;
}

.analytics-donut {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 240px;
  padding: 1.2rem;
  text-align: center;
}

.radial-progress.large {
  --size: 128px;
}

.analytics-donut p {
  margin: 0.8rem 0 0.2rem;
}

.forge-core {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.forge-core img {
  width: min(45vw, 230px);
  border-radius: 36px;
  filter: drop-shadow(0 0 36px rgba(47, 107, 255, 0.6));
  animation: float-soft 5s var(--ease-smooth) infinite alternate;
}

.core-ring,
.core-base {
  position: absolute;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-blue);
}

.core-ring {
  width: min(58vw, 360px);
  height: min(58vw, 360px);
  border-radius: 50%;
  transform: rotateX(72deg);
}

.core-base {
  bottom: 8%;
  width: min(58vw, 360px);
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 107, 255, 0.26), transparent 70%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  min-height: 190px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(var(--blue), rgba(94, 162, 255, 0.08));
}

.step-card {
  min-height: auto;
  padding-left: 4.25rem;
}

.step-card span {
  position: absolute;
  left: 1rem;
  top: 1.25rem;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.18);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(47, 107, 255, 0.36);
}

.final-cta {
  padding-top: clamp(3rem, 7vw, 6rem);
}

.cta-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  border-radius: 30px;
  padding: clamp(1.5rem, 5vw, 3.2rem);
  overflow: hidden;
}

.cta-shell::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.32), transparent 70%);
  filter: blur(20px);
}

.cta-shell h2 {
  max-width: 14ch;
}

.lead-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  min-width: min(100%, 520px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(247, 250, 252, 0.82);
  font-size: 0.82rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(94, 162, 255, 0.22);
  border-radius: 14px;
  padding: 0.88rem 0.95rem;
  background: rgba(5, 7, 13, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background 180ms var(--ease-out);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(247, 250, 252, 0.38);
}

.lead-form textarea {
  resize: vertical;
  min-height: 118px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--blue-glow);
  background: rgba(8, 12, 20, 0.9);
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.form-actions p {
  max-width: 34ch;
  margin: 0;
  font-size: 0.82rem;
}

.form-actions p.is-ready {
  color: var(--blue-glow);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.contact-assurance span {
  border: 1px solid rgba(94, 162, 255, 0.2);
  border-radius: 999px;
  padding: 0.5rem 0.72rem;
  background: rgba(47, 107, 255, 0.08);
  color: rgba(247, 250, 252, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid rgba(94, 162, 255, 0.14);
  padding: 3rem 0;
  background: #05070d;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid h2 {
  margin: 0 0 0.9rem;
  font-size: 1rem;
  color: var(--text);
}

.footer-grid a:not(.brand) {
  display: flex;
  align-items: center;
  min-height: 40px;
  min-width: 44px;
  width: fit-content;
  margin: 0.4rem 0;
  color: var(--muted);
  font-weight: 700;
}

.footer-grid a:not(.brand):hover,
.footer-grid a:not(.brand):focus-visible {
  color: var(--blue-glow);
  outline: none;
}

.footer-line {
  display: block;
  margin-top: 1rem;
  color: var(--text);
  font-family: var(--font-display);
}

.ambient {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.24), transparent 70%);
  filter: blur(16px);
}

.ambient-one {
  top: 12%;
  left: 8%;
  width: 260px;
  height: 260px;
}

.ambient-two {
  right: 8%;
  bottom: 8%;
  width: 320px;
  height: 320px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 650ms var(--ease-out) calc(var(--i, 0) * 70ms),
    transform 650ms var(--ease-out) calc(var(--i, 0) * 70ms);
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 160;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes pulse-orbit {
  from {
    filter: brightness(0.85);
    transform: scale(0.98);
  }
  to {
    filter: brightness(1.1);
    transform: scale(1);
  }
}

@keyframes bar-breathe {
  from {
    transform: scaleY(0.82);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes float-soft {
  from {
    transform: translateY(8px);
  }
  to {
    transform: translateY(-8px);
  }
}

@media (min-width: 680px) {
  .analytics-console {
    grid-template-columns: 0.75fr 1.4fr;
  }

  .analytics-donut {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  }
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links a {
    min-height: 44px;
    padding: 0.55rem 0.7rem;
  }

  .nav-dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.6rem);
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .automation .split-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: clamp(2rem, 3.5vw, 3rem);
  }

  .services-experience {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.9fr);
    align-items: stretch;
  }

  .portfolio-card {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
  }

  .analytics-console {
    grid-template-columns: 0.72fr 1.6fr 0.82fr;
  }

  .analytics-donut {
    grid-column: auto;
  }

  .cta-shell {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .timeline::before {
    left: 5%;
    right: 5%;
    top: 42px;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .step-card {
    padding: 4.6rem 1.1rem 1.1rem;
  }

  .step-card span {
    left: 1.1rem;
  }
}

@media (max-width: 859px) {
  .nav-cta {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

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

  .hero-nodes {
    display: none;
  }

  .dashboard-panel {
    transform: none;
  }

  .workflow-board {
    min-height: 620px;
  }

  .nav-dropdown-menu {
    display: grid;
    margin-top: 0.25rem;
    box-shadow: none;
  }

  .nav-whatsapp {
    color: var(--text) !important;
  }

  .portfolio-shell {
    grid-template-columns: 1fr;
  }

  .portfolio-arrow {
    position: absolute;
    z-index: 5;
    top: clamp(6rem, 17vw, 8rem);
  }

  .portfolio-arrow-prev {
    left: 0.7rem;
  }

  .portfolio-arrow-next {
    right: 0.7rem;
  }

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

  .workflow-lines {
    display: none;
  }

  .flow-node {
    left: 50% !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: translateX(-50%);
  }

  .flow-node.top { top: 6% !important; }
  .flow-node.left.mid-a { top: 17% !important; }
  .flow-node.start { top: 28% !important; }
  .flow-node.core { top: 43% !important; transform: translate(-50%, 0); }
  .flow-node.left.mid-b { top: 59% !important; }
  .flow-node.right.out-a { top: 70% !important; }
  .flow-node.right.out-b { top: 81% !important; }
  .flow-node.right.out-c { top: 92% !important; }
  .flow-node.bottom { display: none; }
}

@media (max-width: 560px) {
  .nav-shell,
  .hero-grid,
  .split-layout,
  .footer-grid,
  .service-grid,
  .trust-grid,
  .integration-hub,
  .faq-layout,
  .values-grid,
  .timeline,
  .analytics-console,
  .portfolio-filters,
  .portfolio-shell,
  .portfolio-cta,
  .cta-shell,
  .section-heading.centered {
    width: min(100% - 24px, 1180px);
  }

  .brand-copy {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: clamp(3rem, 12vw, 4.5rem);
  }

  .hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.25rem);
    max-width: 10.8ch;
  }

  .hero-text {
    font-size: 1rem;
  }

  .credibility-grid {
    width: min(100% - 24px, 1180px);
    grid-template-columns: 1fr;
  }

  .credibility-grid p {
    min-height: auto;
  }

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

  .mock-hero,
  .mock-section-grid {
    grid-template-columns: 1fr;
  }

  .bar-chart {
    height: 180px;
    padding: 0.85rem;
  }
}

@media (hover: none) {
  .service-card:hover,
  .value-card:hover,
  .step-card:hover,
  .btn:hover {
    transform: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Multipage Forge system */
.page-hero {
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
}

.service-route-grid,
.comparison-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.service-route-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.route-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-height: 280px;
}

.route-link {
  width: max-content;
  margin-top: auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.58rem 0.78rem;
  background: rgba(47, 107, 255, 0.12);
  color: var(--blue-glow);
  font-size: 0.82rem;
  font-weight: 900;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--text);
  background: var(--blue);
  outline: none;
}

.trust-grid article .trust-icon {
  display: grid;
  place-items: center;
  background: rgba(47, 107, 255, 0.12);
}

.trust-icon svg,
.route-card .icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-glow);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(94, 162, 255, 0.7));
}

.compact-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.comparison-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: rgba(8, 12, 20, 0.74);
}

.comparison-grid strong {
  font-family: var(--font-display);
}

.floating-checklist {
  position: absolute;
  right: clamp(0.8rem, 3vw, 1.4rem);
  bottom: clamp(0.8rem, 3vw, 1.4rem);
  z-index: 3;
  display: grid;
  gap: 0.42rem;
}

.floating-checklist span {
  border: 1px solid rgba(94, 162, 255, 0.2);
  border-radius: 999px;
  padding: 0.46rem 0.65rem;
  background: rgba(5, 7, 13, 0.9);
  color: var(--blue-glow);
  font-size: 0.78rem;
  font-weight: 900;
}

.rich-workflow {
  min-height: 560px;
}

.rich-workflow .icon-node {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.28rem;
}

.mini-node-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 47%, var(--blue-glow) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--blue-glow) 48% 52%, transparent 53%),
    rgba(47, 107, 255, 0.14);
}

.rich-workflow .n0 { left: 6%; top: 43%; }
.rich-workflow .n1 { left: 8%; top: 13%; }
.rich-workflow .n2 {
  left: 50%;
  top: 48%;
  width: 104px;
  height: 104px;
  min-width: 104px;
  border-radius: 30px;
  transform: translate(-50%, -50%);
}
.rich-workflow .n3 { right: 7%; top: 14%; }
.rich-workflow .n4 { right: 6%; top: 43%; }
.rich-workflow .n5 { right: 7%; bottom: 13%; }
.rich-workflow .n6 { left: 8%; bottom: 13%; }
.rich-workflow .n7 {
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
}

.workflow-status {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 12%;
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgba(94, 162, 255, 0.2);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(5, 7, 13, 0.86);
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.2);
  transform: translateX(-50%);
}

.workflow-status strong {
  color: var(--text);
  font-family: var(--font-display);
}

.workflow-status span {
  color: var(--blue-glow);
  font-size: 0.78rem;
  font-weight: 800;
}

.premium-chat {
  width: min(100%, 480px);
  min-height: 640px;
}

.phone-topbar small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(247, 250, 252, 0.64);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.ai-avatar-live,
.chat-flow-mini,
.chat-floating-card {
  position: relative;
  z-index: 2;
}

.ai-avatar-live {
  width: 96px;
  height: 96px;
  margin: 0.4rem auto 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(94, 162, 255, 0.44), transparent 42%),
    rgba(5, 7, 13, 0.94);
  box-shadow: var(--shadow-blue);
}

.ai-avatar-live span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.ai-avatar-live i {
  position: absolute;
  inset: var(--inset, 0);
  border: 1px solid rgba(94, 162, 255, 0.32);
  border-radius: 50%;
  animation: pulse-orbit 2.8s var(--ease-smooth) infinite alternate;
}

.ai-avatar-live i:nth-child(2) { --inset: -10px; }
.ai-avatar-live i:nth-child(3) { --inset: -20px; }

.chat-flow-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
}

.chat-flow-mini span,
.chat-floating-card {
  border: 1px solid rgba(94, 162, 255, 0.18);
  border-radius: 12px;
  padding: 0.55rem;
  background: rgba(47, 107, 255, 0.1);
  color: rgba(247, 250, 252, 0.86);
  font-size: 0.74rem;
  font-weight: 800;
  text-align: center;
}

.chat-floating-card {
  position: absolute;
  width: max-content;
  max-width: 170px;
  box-shadow: 0 0 18px rgba(47, 107, 255, 0.18);
}

.chat-floating-card.card-a { left: 0.85rem; top: 20%; }
.chat-floating-card.card-b { right: 0.85rem; top: 54%; }
.chat-floating-card.card-c { left: 8%; bottom: 7%; }

.ai-command {
  min-height: 610px;
}

.ai-command .ai-orbit-card {
  width: max-content;
  max-width: 180px;
}

.ai-command .c0 { left: 9%; top: 18%; }
.ai-command .c1 { left: 67%; top: 16%; }
.ai-command .c2 { left: 5%; top: 62%; }
.ai-command .c3 { left: 67%; top: 63%; }
.ai-command .c4 { left: 35%; top: 7%; }
.ai-command .c5 { left: 35%; top: 82%; }

.ai-side-dashboard {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.45rem;
  border: 1px solid rgba(94, 162, 255, 0.2);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(5, 7, 13, 0.88);
  box-shadow: 0 0 22px rgba(47, 107, 255, 0.22);
}

.ai-side-dashboard strong {
  font-family: var(--font-display);
}

.ai-side-dashboard span {
  position: static;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-glow);
  box-shadow: none;
}

.contact-page-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.35rem);
  background:
    radial-gradient(circle at 82% 0%, rgba(47, 107, 255, 0.18), transparent 18rem),
    rgba(8, 12, 20, 0.82);
  box-shadow: var(--shadow-blue), inset 0 1px 0 rgba(247, 250, 252, 0.05);
}

/* Tightening pass from visual QA */
.section {
  padding: clamp(3rem, 5.5vw, 5.6rem) 0;
}

.page-hero {
  min-height: auto;
  padding-top: clamp(3.2rem, 6vw, 5rem);
  padding-bottom: clamp(2.6rem, 5vw, 4.6rem);
}

.page-hero .eyebrow,
.final-cta .eyebrow,
.portfolio .eyebrow {
  display: none;
}

.page-hero .section-heading {
  max-width: 720px;
}

.page-hero .section-heading.centered {
  max-width: 820px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.4vw, 4.65rem);
  line-height: 1.04;
}

.page-hero .section-heading.centered h1 {
  margin-inline: auto;
}

.section-heading.centered {
  margin-bottom: clamp(1.35rem, 3vw, 2rem);
}

.section-heading.centered h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.portfolio .section-heading.centered h1 {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.portfolio.compact-section {
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.faq-section {
  padding-top: clamp(2.4rem, 4vw, 4rem);
}

.final-cta {
  padding-top: clamp(2.5rem, 4.5vw, 4.5rem);
}

.cta-shell {
  position: relative;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  min-height: 320px;
}

.cta-shell::before {
  content: "";
  position: relative;
  z-index: 2;
  order: 2;
  width: min(100%, 460px);
  aspect-ratio: 1;
  justify-self: end;
  align-self: center;
  background:
    radial-gradient(circle at 50% 68%, rgba(47, 107, 255, 0.36), transparent 48%),
    url("/assets/toten-forge.webp") center / contain no-repeat;
  filter: drop-shadow(0 0 34px rgba(47, 107, 255, 0.44));
}

.eyebrow {
  display: none !important;
}

.cta-shell > div {
  position: relative;
  z-index: 3;
}

.cta-shell h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.timeline {
  justify-content: center;
}

@media (min-width: 860px) {
  .page-hero .split-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 3.5vw, 2.8rem);
  }

  .page-hero .split-layout h1 {
    max-width: 10.5ch;
    font-size: clamp(2.75rem, 4.15vw, 3.95rem);
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 859px) {
  .page-hero .split-layout,
  .rich-workflow {
    width: min(100%, calc(100vw - 32px));
  }

  .page-hero .split-layout > * {
    min-width: 0;
  }

  .page-hero .split-layout h1 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9vw, 2.55rem);
  }

  .cta-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-shell::before {
    order: 0;
    justify-self: start;
    width: min(100%, 360px);
  }

  .page-hero h1,
  .cta-shell h2 {
    max-width: 100%;
  }
}

@media (max-width: 859px) {
  .page-hero {
    min-height: auto;
  }

  .rich-workflow {
    min-height: 760px;
  }

  .rich-workflow .flow-node {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }

  .rich-workflow .n0 { top: 8% !important; }
  .rich-workflow .n1 { top: 18% !important; }
  .rich-workflow .n2 { top: 32% !important; }
  .rich-workflow .n3 { top: 46% !important; }
  .rich-workflow .n4 { top: 58% !important; }
  .rich-workflow .n5 { top: 69% !important; bottom: auto !important; }
  .rich-workflow .n6 { top: 80% !important; bottom: auto !important; }
  .rich-workflow .n7 { top: 91% !important; bottom: auto !important; }

  .workflow-status {
    display: none;
  }

  .chat-floating-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin-inline: auto;
  }

  .ai-command {
    min-height: 720px;
  }

  .ai-command .ai-orbit-card {
    left: 50% !important;
    transform: translateX(-50%);
  }

  .ai-command .c0 { top: 10%; }
  .ai-command .c1 { top: 20%; }
  .ai-command .c2 { top: 68%; }
  .ai-command .c3 { top: 76%; }
  .ai-command .c4 { top: 4%; }
  .ai-command .c5 { top: 84%; }

  .ai-side-dashboard {
    left: 1rem;
    right: 1rem;
  }
}

@media (max-width: 560px) {
  .service-route-grid,
  .comparison-grid {
    width: min(100% - 24px, 1180px);
  }

  .page-hero:has(.contact-page-form) {
    padding-top: clamp(2rem, 8vw, 2.8rem);
    padding-bottom: 2rem;
  }

  .page-hero:has(.contact-page-form) .split-layout {
    gap: 1.35rem;
  }

  .page-hero:has(.contact-page-form) h1 {
    max-width: 15ch;
    font-size: clamp(2.05rem, 9vw, 2.55rem);
  }

  .page-hero:has(.contact-page-form) .section-heading p:not(.eyebrow) {
    margin-top: 0.85rem;
    font-size: 0.98rem;
  }

  .page-hero:has(.contact-page-form) .cta-actions {
    gap: 0.65rem;
    margin-top: 1.1rem;
  }

  .page-hero:has(.contact-page-form) .cta-actions a[href="/faq/"] {
    display: none;
  }

  .chat-flow-mini {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-checklist {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
  }
}


/* Forge production additions */

.service-route-grid,
.use-case-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.use-case-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.use-case-card p {
  margin: 0;
}

.use-case-card strong {
  color: var(--text);
}

.legal-section .service-detail {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.lead-form .sr-only {
  position: absolute;
}

.form-actions p.is-ready {
  color: var(--blue-glow);
}

.form-actions p.is-error {
  color: #ffb4b4;
}
