*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #6366f1;
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 48px -16px rgba(37, 99, 235, 0.2);
  --section-pad: 140px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerEnter {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-24px, 20px) scale(1.08);
    opacity: 0.85;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes statPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.header--enter {
  animation: headerEnter 0.6s var(--ease-out) both;
}

.header--scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: transparent;
}

.header__logo-icon {
  transition: transform 0.35s var(--ease-out);
}

.header__logo:hover .header__logo-icon {
  transform: rotate(-8deg) scale(1.08);
}

.logo-float {
  animation: logoPulse 4s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

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

.hero-animate {
  opacity: 0;
  animation: fadeUp 0.85s var(--ease-out) forwards;
}

.hero__bg::after {
  display: none;
}

.service-card,
.industry-card,
.value-card,
.contact-card,
.timeline-step__body,
.tech-category,
.feature-row,
.deliverable-item,
.help-tile,
.faq-item,
.value-row {
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.service-card:hover,
.industry-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
}

.tag {
  transition: transform 0.2s var(--ease-out), background 0.2s;
}

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

.btn {
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    background 0.25s;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.stat-item.is-visible .stat-item__value {
  animation: statPop 0.6s var(--ease-out) both;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 50%
  );
  animation: heroGlow 12s ease-in-out infinite;
  pointer-events: none;
}

/* ── Header ─────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease-out), border-color 0.35s;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: opacity 0.15s;
}

.header__logo:hover {
  opacity: 0.85;
}

.header__logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header__logo-text {
  color: var(--text);
}

.header__logo-text span {
  color: var(--primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 999px;
  transition: color 0.15s, background 0.15s;
  line-height: 1;
}

.header__link:hover,
.header__link--active {
  color: var(--text);
  background: #f3f4f6;
}

.header__link--active {
  color: var(--primary);
  background: var(--primary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

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

.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(37, 99, 235, 0.6);
}

.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 28px -8px rgba(37, 99, 235, 0.75);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--large {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ── Sections shared ────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 64px;
  line-height: 1.75;
}

/* ── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #f8faff 0%, var(--bg) 55%, var(--bg) 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.hero__orb--1 {
  top: -80px;
  right: -60px;
  width: 420px;
  height: 420px;
  background: rgba(37, 99, 235, 0.22);
  animation: heroGlow 12s ease-in-out infinite;
}

.hero__orb--2 {
  bottom: -100px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(99, 102, 241, 0.18);
  animation: heroGlow 14s ease-in-out infinite reverse;
}

.hero__orb--3 {
  top: 40%;
  left: 45%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.12);
  animation: heroGlow 10s ease-in-out infinite 2s;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero__content {
  max-width: 620px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease infinite;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero__title span {
  background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 50%, #3b82f6 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero__pills li {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}

.hero__pills li:hover {
  border-color: rgba(37, 99, 235, 0.3);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Hero visual panel */
.hero__visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 24px 64px rgba(37, 99, 235, 0.14),
    0 0 0 1px rgba(37, 99, 235, 0.06);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.hero-panel__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(180deg, #f1f5f9 0%, #e8eef5 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
}

.hero-panel__dot:nth-child(1) {
  background: #ff5f57;
}

.hero-panel__dot:nth-child(2) {
  background: #febc2e;
}

.hero-panel__dot:nth-child(3) {
  background: #28c840;
}

.hero-panel__title {
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: ui-monospace, monospace;
}

.hero-panel__body {
  padding: 24px;
}

.hero-panel__status {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-panel__status-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-panel__status strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #065f46;
  margin-bottom: 2px;
}

.hero-panel__status span {
  font-size: 0.75rem;
  color: #047857;
  font-weight: 600;
}

.hero-panel__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hero-panel__metric {
  padding: 14px 10px;
  border-radius: 12px;
  background: var(--bg);
  text-align: center;
  border: 1px solid var(--border);
}

.hero-panel__metric-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-panel__metric-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-panel__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-panel__stack span {
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  backdrop-filter: blur(12px);
  z-index: 3;
}

.hero-float svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  stroke-width: 2;
}

.hero-float--1 {
  top: 8%;
  right: -4%;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float--2 {
  bottom: 18%;
  left: -6%;
  animation: floatCard 7s ease-in-out infinite 1s;
}

.hero-float--3 {
  top: 52%;
  right: -8%;
  animation: floatCard 5.5s ease-in-out infinite 0.5s;
}

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

.hero-animate.hero__visual {
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ── Page hero (subpages) ───────────────────────────── */
.page-hero {
  padding: 100px 0 80px;
  background: var(--surface);
}

.page-hero__inner {
  max-width: 800px;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ── Process — Timeline ─────────────────────────────── */
.process {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.process__timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
  opacity: 0.25;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.timeline-step__marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}

.timeline-step__body {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.timeline-step:hover .timeline-step__body {
  box-shadow: var(--shadow-card-hover);
  transform: translateX(6px);
}

.timeline-step__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.timeline-step__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── Tech stack — Category chips ────────────────────── */
.tech-stack {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.tech-stack__categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tech-category {
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tech-category:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-card);
}

.tech-category__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin-bottom: 18px;
}

.tech-category__abbr {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--primary-light);
}

.tech-category__title {
  font-size: 1.125rem;
  font-weight: 800;
}

.tech-category__desc {
  width: 100%;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.tech-category__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-chip {
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.tech-chip:hover {
  background: var(--primary-light);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── Why us — Feature rows ──────────────────────────── */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.why-us__features {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.35s var(--ease-out);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-row:hover {
  padding-left: 8px;
}

.feature-row__num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--primary-light);
  -webkit-text-stroke: 1px rgba(37, 99, 235, 0.15);
  color: transparent;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.35;
}

.feature-row__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.feature-row__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Mission ────────────────────────────────────────── */
.mission {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

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

/* ── FAQ — Accordion ────────────────────────────────── */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-card);
}

.faq-item__question {
  padding: 22px 56px 22px 28px;
  font-size: 1.0625rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

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

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.2s;
}

.faq-item[open] .faq-item__question::after {
  content: '−';
  background: var(--primary);
  color: #fff;
}

.faq-item__question:hover {
  color: var(--primary);
}

.faq-item__answer {
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Engagement — Tier cards ────────────────────────── */
.engagement {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.engagement__grid--tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}

.engagement__grid--tiers .service-card:nth-child(2) {
  padding: 48px 36px 44px;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  position: relative;
}

.engagement__grid--tiers .service-card:nth-child(2)::before {
  content: 'Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.engagement__grid--tiers .service-card:nth-child(2):hover {
  transform: scale(1.04) translateY(-6px);
}

/* ── Deliverables — Checklist ───────────────────────── */
.deliverables {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.deliverables__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.deliverable-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.deliverable-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.deliverable-item__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.deliverable-item__title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.deliverable-item__title--icon {
  display: flex;
  align-items: center;
  gap: 8px;
}

.deliverable-item__title--icon .card-icon--xs {
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-row__icon .card-icon {
  margin-bottom: 0;
}

.help-tile .card-icon--stat {
  margin-bottom: 12px;
}

.tech-category__header .card-icon--sm {
  margin-bottom: 0;
}

.timeline-step__body > .card-icon--sm {
  margin-bottom: 12px;
}

.feature-row__body > .card-icon--sm {
  margin-bottom: 10px;
}

.deliverable-item__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Home stats bar ─────────────────────────────────── */
.stats--home {
  padding: 64px 0;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.stats--home .stat-item__value {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* ── Home values — Zigzag ───────────────────────────── */
.values--home {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.values__zigzag {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.value-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px 40px;
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.value-row--reverse {
  grid-template-columns: 1fr 100px;
}

.value-row--reverse .value-row__icon-wrap {
  order: 2;
}

.value-row--reverse .value-row__content {
  order: 1;
  text-align: right;
}

.value-row:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.value-row__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-row__icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e0e7ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-row__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.value-row__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Help with — Compact tiles ──────────────────────── */
.help-with {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.help-with__tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.help-tile {
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(160deg, var(--primary-light) 0%, var(--surface) 60%);
  border: 1px solid rgba(37, 99, 235, 0.1);
  text-align: center;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.help-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.help-tile__num {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 12px;
}

.help-tile__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.3;
}

.help-tile__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Services ───────────────────────────────────────── */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

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

.services__grid--bento {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.services__grid--bento .service-card:nth-child(1) {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--surface) 100%);
}

.services__grid--bento .service-card:nth-child(5) {
  grid-column: span 2;
}

.services__grid--bento .service-card:nth-child(8) {
  grid-column: span 2;
  background: linear-gradient(135deg, #ede9fe 0%, var(--surface) 100%);
}

.service-card {
  padding: 40px 36px 36px;
  border-radius: var(--radius);
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.service-card__num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── Industries — Horizontal scroll ─────────────────── */
.industries {
  padding: var(--section-pad) 0;
}

.industries__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}

.industries__intro {
  flex: 1;
  min-width: 0;
}

.section-desc--flush {
  margin-bottom: 0;
}

.industries__nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.industries__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s,
    opacity 0.2s;
}

.industries__nav-btn svg {
  width: 20px;
  height: 20px;
}

.industries__nav-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-card);
}

.industries__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.industries__scroll {
  margin: 0 -40px;
  padding: 14px 40px 8px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industries__scroll::-webkit-scrollbar {
  display: none;
}

.industries__track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: stretch;
}

.industry-card--scroll {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.industry-card--scroll:hover {
  transform: none;
  box-shadow: var(--shadow-card-hover);
}

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

.industry-card {
  padding: 40px 36px;
  border-radius: var(--radius);
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.industry-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.industry-card__num {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 16px;
}

.industry-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.industry-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #4f46e5 100%);
}

.cta__inner {
  text-align: center;
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta .btn--ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cta .btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── About page ─────────────────────────────────────── */
.about-content {
  padding: var(--section-pad) 0;
}

.about-content__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-block__title {
  font-size: 1.625rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-block p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-list li {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 20px 24px;
  border-left: none;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.about-list strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}

.values {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.value-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.value-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.value-card__icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

/* ── Icons ──────────────────────────────────────────── */
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #e0e7ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg,
.list-icon svg,
.step-icon svg,
.nav-icon svg,
.btn-icon svg {
  width: 24px;
  height: 24px;
}

.card-icon--xs svg {
  width: 15px;
  height: 15px;
}

.card-icon--xs {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  margin-bottom: 0;
  margin-right: 4px;
  vertical-align: middle;
}

.card-icon--sm {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card-icon--sm svg {
  width: 20px;
  height: 20px;
}

.card-icon--stat {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
}

.card-icon--stat svg {
  width: 22px;
  height: 22px;
}

.section-label--icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label--icon .card-icon--xs {
  margin-right: 0;
}

.service-card,
.industry-card {
  position: relative;
}

.service-card__num,
.industry-card__num {
  position: absolute;
  top: 28px;
  right: 28px;
  margin-bottom: 0;
}

.value-card .card-icon {
  margin-bottom: 16px;
}

.contact-card .card-icon {
  margin-bottom: 16px;
}

.about-block__title--icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-block__title--icon .card-icon--sm {
  margin-bottom: 0;
}

.list-icon {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.list-icon svg {
  width: 18px;
  height: 18px;
}

.about-list li {
  position: relative;
  padding: 20px 24px 20px 64px;
}

.step-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.step-icon svg {
  width: 18px;
  height: 18px;
}

.contact-steps li::before {
  display: none;
}

.header__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  line-height: 0;
}

.nav-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 2px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

.footer__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__pills li.hero-animate {
  opacity: 0;
  animation: fadeUp 0.55s var(--ease-out) forwards;
}

.map-note__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-item {
  padding: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.value-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.stats {
  padding: 100px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Contact page ───────────────────────────────────── */
.contact-section {
  padding: var(--section-pad) 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  display: block;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.contact-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.contact-card--static {
  cursor: default;
}

.contact-card--static:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

.contact-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.contact-card__title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-card__hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.contact-info__title {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.contact-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 48px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-steps strong {
  display: block;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map-note {
  padding: 0 0 var(--section-pad);
}

.map-note__inner {
  padding: 32px 40px;
  border-radius: var(--radius);
  background: var(--primary-light);
  border: none;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.map-note__inner p {
  font-size: 0.9375rem;
  color: var(--primary-dark);
  line-height: 1.65;
}

/* ── Footer ─────────────────────────────────────────── */
.footer {
  background: #111827;
  color: #9ca3af;
  padding: 56px 0 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__brand-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.footer__tagline {
  font-size: 0.875rem;
  color: #60a5fa;
  font-weight: 600;
  margin-top: -16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer__links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: #fff;
}

.footer__company {
  padding-top: 24px;
  border-top: 1px solid #374151;
  width: 100%;
  max-width: 480px;
}

.footer__company p {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.8;
  color: #6b7280;
}

.footer__company p:first-child {
  color: #e5e7eb;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer__copy {
  font-size: 0.75rem;
  color: #6b7280;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual {
    order: -1;
    min-height: 380px;
  }

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

  .hero-float--1 {
    right: 0;
    top: 0;
  }

  .hero-float--2 {
    left: 0;
  }

  .hero-float--3 {
    right: 0;
    display: none;
  }

  .services__grid,
  .services__grid--bento,
  .about-content__grid,
  .contact-section__grid,
  .mission__grid,
  .help-with__tiles,
  .tech-stack__categories,
  .deliverables__list {
    grid-template-columns: 1fr;
  }

  .services__grid--bento .service-card:nth-child(1),
  .services__grid--bento .service-card:nth-child(5),
  .services__grid--bento .service-card:nth-child(8) {
    grid-column: span 1;
  }

  .engagement__grid--tiers {
    grid-template-columns: 1fr;
  }

  .engagement__grid--tiers .service-card:nth-child(2) {
    transform: none;
    order: -1;
  }

  .engagement__grid--tiers .service-card:nth-child(2):hover {
    transform: translateY(-6px);
  }

  .value-row,
  .value-row--reverse {
    grid-template-columns: 72px 1fr;
    padding: 24px 28px;
  }

  .value-row--reverse .value-row__icon-wrap {
    order: 0;
  }

  .value-row--reverse .value-row__content {
    order: 0;
    text-align: left;
  }

  .feature-row {
    grid-template-columns: 56px 1fr;
    gap: 20px;
  }

  .process__timeline::before {
    left: 19px;
  }

  .timeline-step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .timeline-step__marker {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .industries__scroll {
    margin: 0 -40px;
  }

  .industry-card--scroll {
    flex: 0 0 280px;
  }

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

  .header__nav .header__link:not(.header__link--active) {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 24px;
  }

  :root {
    --section-pad: 80px;
  }

  .hero {
    padding: 72px 0 88px;
  }

  .hero__title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .services__grid,
  .services__grid--bento,
  .industries__grid,
  .engagement__grid--tiers,
  .deliverables__list,
  .tech-stack__categories,
  .help-with__tiles {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-card--scroll {
    flex: 0 0 260px;
  }

  .industries__top {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 32px;
  }

  .industries__nav {
    align-self: flex-end;
  }

  .industries__scroll {
    margin: 0 -24px;
    padding: 8px 24px 8px;
  }

  .stats--home .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .values__grid,
  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

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