:root {
  --bg: #0a0a1a;
  --panel: rgba(30, 20, 60, 0.10);
  --text: #f8faff;
  --muted: #b1b1d1;
  --soft: #7a7abf;
  --accent-1: #ff2bbd;
  --accent-2: #a259e6;
  --accent-3: #22d3ee;
  --accent-4: #2b6cff;
  --accent-5: #1a2a5c;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 43, 214, 0.12), transparent 25%),
    radial-gradient(circle at 90% 12%, rgba(34, 211, 238, 0.12), transparent 25%),
    linear-gradient(180deg, #050505 0%, #080808 40%, #050505 100%);
  color: var(--text);
  overflow-x: hidden;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2bd6, #8b5cf6);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.45);
}

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

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

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  opacity: 0.22;
  filter: blur(120px);
  animation: float 18s ease-in-out infinite;
}

.blob-1 {
  background: #ff2bd6;
  top: -140px;
  left: -120px;
}

.blob-2 {
  background: #22d3ee;
  top: 22%;
  right: -140px;
  animation-delay: 4s;
}

.blob-3 {
  background: #8b5cf6;
  bottom: -160px;
  left: 32%;
  animation-delay: 8s;
}

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

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.content-fade {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(5, 5, 5, 0.7) 35%,
    rgba(5, 5, 5, 0.35) 70%,
    rgba(5, 5, 5, 0) 100%
  );
}

.content-fade.is-active {
  opacity: 1;
}

.nav.scrolled {
  background: rgba(6, 6, 12, 0.7);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav.scrolled .nav-inner {
  padding: 12px 0;
}

.nav.scrolled .brand-logos {
  width: 58px;
  height: 58px;
}

.nav-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 26px 0;
}

.brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  display: flex;
  align-items: center;
  margin-left: -10px;
}

.brand-logos {
  position: relative;
  width: 110px;
  height: 110px;
  margin-right: 18px;
  display: inline-block;
}

.brand-logo {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.logo-alt {
  opacity: 0;
  transform: scale(0.96);
}

.brand-text {
  position: relative;
  display: inline-block;
  line-height: 1.1;
  height: 1.2em;
  min-width: 12ch;
  overflow: hidden;
}

.brand-text-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.brand-text-line.alt {
  opacity: 0;
  transform: translateY(100%);
}

.brand-switch.is-alt .logo-primary {
  opacity: 0;
  transform: scale(1.04);
}

.brand-switch.is-alt .logo-alt {
  opacity: 1;
  transform: scale(1);
}

.brand-switch.is-alt .brand-text-line.primary {
  opacity: 0;
  transform: translateY(-100%);
}

.brand-switch.is-alt .brand-text-line.alt {
  opacity: 1;
  transform: translateY(0);
}

.brand-switch.is-flip .brand-text-line.primary,
.brand-switch.is-flip .brand-text-line.alt {
  opacity: 1;
}

.brand-text-line span {
  display: inline-block;
  transform-origin: center;
  transition: transform 0.7s ease, opacity 0.7s ease;
  transition-delay: calc(var(--i) * 40ms);
}

.brand-switch.is-flip .brand-text-line span {
  transform: rotateX(70deg);
  opacity: 0.4;
}

.brand:hover .brand-logos {
  transform: scale(1.06);
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: 0.95rem;
  color: var(--muted);
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.6;
  margin-left: auto;
  margin-right: -10px;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: rgba(10, 10, 20, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 60;
}

.nav-dropdown a {
  display: block;
  padding: 6px 4px;
  color: var(--muted);
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-item.open .nav-dropdown {
  display: block;
}

.nav-links a {
  position: relative;
  font-family: inherit;
  font-weight: 300;
  letter-spacing: 0.18em;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-3));
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 118px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% -30%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(520px 380px at 20% 20%, rgba(255, 43, 189, 0.22), transparent 62%),
    radial-gradient(560px 420px at 70% 25%, rgba(34, 211, 238, 0.2), transparent 65%),
    radial-gradient(520px 420px at 45% 70%, rgba(162, 89, 230, 0.22), transparent 70%);
  filter: blur(6px);
  opacity: 0.9;
}


.hero-flow {
  position: absolute;
  inset: -10% -10% -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  --mx: 0.5;
  --my: 0.5;
  transform: translate3d(calc((var(--mx) - 0.5) * 20px), calc((var(--my) - 0.5) * 16px), 0);
  transition: transform 0.2s ease;
}

.hero-flow svg {
  width: 100%;
  height: 100%;
}

.flow-edges path {
  fill: none;
  stroke: url(#flowStroke);
  stroke-width: 1.1;
  opacity: 0.45;
  animation: flowPulse 10s ease-in-out infinite;
}

.flow-edges path:nth-child(2n) {
  animation-duration: 12s;
  opacity: 0.35;
}

.flow-nodes circle {
  fill: rgba(255, 255, 255, 0.55);
  opacity: 0.7;
  animation: nodeFloat 8s ease-in-out infinite;
}

.typing {
  border-right: 0.12em solid rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: visible;
  padding-right: 0.2em;
  display: inline-block;
  animation: caretBlink 0.7s step-end infinite;
}

@keyframes caretBlink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: rgba(255, 255, 255, 0.5);
  }
}

.flow-nodes circle:nth-child(3n) {
  fill: rgba(34, 211, 238, 0.6);
  animation-duration: 9.5s;
}

.flow-nodes circle:nth-child(4n) {
  fill: rgba(162, 89, 230, 0.6);
  animation-duration: 10.5s;
}


@keyframes flowPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

@keyframes nodeFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(1px, -2px); }
}


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

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 26px 0 0;
  font-size: clamp(3.1rem, 8vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

h2,
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.gradient-text {
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #ffffff;
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
}

.hero-title-2 {
  display: block;
  color: rgba(255, 255, 255, 0.32);
  font-family: 'Sora', sans-serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 4.6vw, 2.6rem);
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.hero-copy {
  margin: 28px auto 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 1.06rem;
}

.actions {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  min-width: 210px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(90deg, #ff2bd6, #8b5cf6);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 62px rgba(139, 92, 246, 0.66);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.hero-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  letter-spacing: -0.05em;
}

.stat span {
  color: var(--soft);
  font-size: 0.95rem;
}

.wave {
  display: none;
}

.wave::before,
.wave::after {
  content: "";
  position: absolute;
  inset: 0;
}

.wave::before {
  background: repeating-linear-gradient(100deg, transparent 0 24px, rgba(34, 211, 238, 0.48) 25px 26px, transparent 28px 48px);
  opacity: 0.34;
  transform: perspective(900px) rotateX(65deg) translateY(140px) scale(1.4);
  animation: waveMove 14s linear infinite;
}

.wave::after {
  background: repeating-linear-gradient(80deg, transparent 0 24px, rgba(255, 43, 214, 0.42) 25px 26px, transparent 28px 48px);
  opacity: 0.24;
  transform: perspective(900px) rotateX(65deg) translateY(182px) scale(1.4);
  animation: waveMove2 18s linear infinite reverse;
}

@keyframes waveMove {
  from {
    transform: perspective(900px) rotateX(65deg) translateY(140px) scale(1.4) translateX(0);
  }
  to {
    transform: perspective(900px) rotateX(65deg) translateY(140px) scale(1.4) translateX(-220px);
  }
}

@keyframes waveMove2 {
  from {
    transform: perspective(900px) rotateX(65deg) translateY(182px) scale(1.4) translateX(0);
  }
  to {
    transform: perspective(900px) rotateX(65deg) translateY(182px) scale(1.4) translateX(220px);
  }
}

.section {
  padding: 120px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0));
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.05em;
  margin: 0;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 760px;
  margin: 18px auto 60px;
  line-height: 1.8;
}

.section-subtitle.section-note {
  margin-top: -36px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.72);
}

.chart-card {
  padding: 12px 12px;
  border: none;
  border-radius: 16px;
  background: transparent;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chart-head h3 {
  margin: 0;
  font-size: 1rem;
}

.chart-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}

.chart-svg {
  width: 100%;
  height: 80px;
}

.chart-grid {
  gap: 8px;
}

.chart-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: rgba(34, 211, 238, 0.9);
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.35));
  animation: chartDraw 4.2s ease forwards;
}

@keyframes chartDraw {
  to { stroke-dashoffset: 0; }
}

.leadchart {
  width: 100%;
  max-width: 260px;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.leadchart-grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.leadchart-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 8px 0 16px;
  padding: 6px 0;
  white-space: nowrap;
}

.leadchart-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeMove 14s linear infinite;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

@keyframes marqueeMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.leadchart-trigger {
  background: transparent;
  border: none;
  padding: 0;
  cursor: zoom-in;
  flex: 0 0 auto;
  scroll-snap-align: start;
  text-align: center;
}

.leadchart-trigger:hover .leadchart {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.leadchart-caption {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.leadchart-icon {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  box-shadow: 0 4px 10px rgba(255, 43, 214, 0.25);
  position: relative;
}

.leadchart-icon::before,
.leadchart-icon::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  top: 5px;
  left: 3px;
}

.leadchart-icon::after {
  transform: rotate(90deg);
}

.leadchart-note {
  margin-top: 18px;
}

.modal-content.modal-image {
  max-width: 1120px;
  padding: 20px;
  text-align: left;
}

.modal-image-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.leadchart-full {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.leadchart-desc {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.leadchart-flow {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.leadchart-fits {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.leadchart-fits li {
  margin: 6px 0;
}

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

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

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

.proof-grid {
  align-items: stretch;
}

.proof-card {
  text-align: center;
  padding: 22px 16px;
}

.proof-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.proof-label {
  color: var(--muted);
  font-size: 0.95rem;
}

.integration-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 18px 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.carousel-inner {
  display: flex;
  width: max-content;
  gap: 48px;
  animation: logoMarquee 40s linear infinite;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  padding: 0 20px;
}

.carousel-track img {
  height: 70px;
  width: 150px;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(0);
}

.carousel-track img.logo-groq,
.carousel-track img.logo-perplexity,
.carousel-track img.logo-hf,
.carousel-track img.logo-n8n {
  height: 86px;
}

.carousel-track img.logo-transparent {
  mix-blend-mode: multiply;
}

@keyframes logoMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mini-case .case-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 14px 0 4px;
}

.faq-grid .faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card {
  padding: 8px 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

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

.card h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(10, 16, 34, 0.4);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

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

.service-card {
  border-radius: 18px;
  padding: 20px 22px;
  background: linear-gradient(160deg, rgba(16, 24, 48, 0.75), rgba(6, 12, 24, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.value-list {
  display: grid;
  gap: 14px;
}

.value-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 16, 34, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(160deg, rgba(34, 211, 238, 0.12), rgba(162, 89, 230, 0.12));
  display: grid;
  gap: 16px;
}

.local-seo {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.local-seo p {
  margin: 0;
}

.service-teaser {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 16, 34, 0.4);
}

.service-teaser h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.service-teaser p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.offer-name {
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.offer-price {
  font-size: 1.35rem;
  letter-spacing: -0.06em;
  margin: 16px 0 14px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

.offer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform-origin: center;
}

.offer > p {
  min-height: 72px;
}

.offer .actions {
  margin-top: auto;
}

.offer.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.offer ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.offer li {
  color: var(--muted);
  margin: 10px 0;
}

.offer li::before {
  content: "• ";
  color: var(--accent-3);
}

.case-result {
  color: var(--accent-3);
  font-weight: 700;
  margin-bottom: 10px;
}

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

.industry {
  color: var(--muted);
  line-height: 1.8;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

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

.list-item {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 18px;
  position: relative;
}

.list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
}

.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
}

.step-number {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #fff, #7dd3fc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-photo {
  width: 100%;
  max-width: 280px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-name {
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin: 0 0 10px;
}

.about-intro {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 22px;
}

.about-block {
  margin-bottom: 18px;
}

.about-block h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.about p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  padding: 18px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: white;
  font: inherit;
  outline: none;
  font-family: 'Sora', sans-serif;
  font-weight: 300;
}

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

select option {
  color: black;
}

.final-cta {
  text-align: center;
  padding-top: 38px;
}

.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 80;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: rgba(12, 12, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.modal-content h3 {
  margin-top: 0;
}

footer {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-copy {
  color: var(--soft);
  max-width: 520px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--soft);
}

.footer-sublink {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-left: 10px;
}

.footer-legal {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-links a:hover {
  color: #fff;
}

.nav-links a:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(34, 211, 238, 0.6);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3,
  .grid-2,
  .split,
  .about,
  .industries,
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .nav-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links {
    gap: 14px 18px;
    flex-wrap: wrap;
    line-height: 2;
  }

  .nav-dropdown {
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 6px 0 0;
  }
  .nav-dropdown a {
    padding-left: 12px;
  }
  .hero {
    padding-top: 80px;
  }
  .section {
    padding: 78px 0;
  }
  .wave {
    height: 220px;
  }
  .step {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 4.2rem);
    line-height: 1.02;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.8;
  }

  .section-title {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .section-subtitle {
    margin-bottom: 42px;
  }

  .section-subtitle.section-note {
    margin-top: -28px;
  }

  .leadchart {
    border-radius: 14px;
  }

  .grid {
    gap: 22px;
  }

  .card {
    padding: 12px 6px;
  }

  .actions {
    width: 100%;
  }

  .btn {
    width: 100%;
    min-width: 0;
  }

  .service-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta {
    width: 100%;
  }

  .pill {
    width: fit-content;
  }

  .cta-panel {
    padding: 22px;
  }

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

  .sticky-cta {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .brand-logos {
    width: 96px;
    height: 96px;
  }

  .content-fade {
    height: 170px;
  }

  .hero-flow {
    opacity: 0.16;
  }
  .flow-edges path {
    stroke-width: 0.9;
  }
  .flow-nodes circle {
    opacity: 0.5;
  }

  .hero::after {
    height: 140px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .flow-edges path,
  .flow-nodes circle,
  .flow-dot {
    animation: none;
  }
  .carousel-track {
    animation: none;
  }
  .typing {
    animation: none;
    border-right: none;
  }
  .hero-flow {
    transform: none;
  }

  .leadchart-trigger:hover .leadchart {
    transform: none;
  }

  .leadchart-marquee span {
    animation: none;
  }

  .chart-line {
    animation: none;
    stroke-dashoffset: 0;
  }
}
  .carousel-track {
    gap: 34px;
  }
  .carousel-inner {
    gap: 34px;
    animation-duration: 30s;
  }
  .carousel-track img {
    height: 56px;
    width: 120px;
  }
  .carousel-track img.logo-groq,
  .carousel-track img.logo-perplexity,
  .carousel-track img.logo-hf,
  .carousel-track img.logo-n8n {
    height: 68px;
  }
