/* ════════════════════════════════════════════
   DESIGN SYSTEM — AI AUTOMATIONS
   Dark mode · Electric purple · Minimal · Elite
════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────── */
:root {
  --bg-void: #05060f;
  --bg-deep: #070a18;
  --bg-mid: #0b0f24;
  --bg-card: #0d1028;
  --bg-card-hover: #111530;
  --bg-glass: rgba(13, 16, 40, 0.72);

  --purple: #7c3aed;
  --purple-light: #9d6ef8;
  --purple-glow: rgba(124, 58, 237, 0.25);
  --purple-glow-sm: rgba(124, 58, 237, 0.14);

  --blue: #38bdf8;
  --blue-glow: rgba(56, 189, 248, 0.15);

  --text-primary: #f0f0fa;
  --text-secondary: #9b9bc0;
  --text-muted: #5a5a80;
  --text-purple: #9d6ef8;

  --border: rgba(255, 255, 255, 0.06);
  --border-purple: rgba(124, 58, 237, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

/* ── LAYOUT ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--border-purple);
  border-radius: 40px;
  padding: 5px 14px;
  margin-bottom: 20px;
  background: var(--purple-glow-sm);
}

.section-headline {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.72;
  margin-bottom: 52px;
}

.text-muted {
  color: var(--text-muted);
}

.text-purple {
  color: var(--text-purple);
}

/* ── BUTTONS ─────────────────────────────  */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 200ms var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.4), 0 8px 32px rgba(124, 58, 237, 0.3);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #8b4cf5 0%, #6d28d9 100%);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.6), 0 12px 40px rgba(124, 58, 237, 0.45);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-purple);
  color: var(--text-primary);
  background: var(--purple-glow-sm);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 18px 38px;
  font-size: 1rem;
  border-radius: 12px;
}

/* ── ANIMATION BASE ─────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 30%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(56, 189, 248, 0.05) 0%, transparent 60%),
    linear-gradient(160deg, #07091a 0%, var(--bg-void) 100%);
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  border: 1px solid var(--border-purple);
  border-radius: 40px;
  padding: 6px 14px 6px 10px;
  background: var(--purple-glow-sm);
  margin-bottom: 28px;
  width: fit-content;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    box-shadow: 0 0 6px var(--purple-light);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 14px var(--purple-light);
    opacity: 0.7;
  }
}

/* Headline */
.hero__headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.br-md {
  display: none;
}

.hero__gradient-word {
  background: linear-gradient(90deg, #9d6ef8, #38bdf8, #c084fc, #9d6ef8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 36px;
}

/* CTA row */
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust indicators */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero__trust-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.trust-dot--green {
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e80;
}

.trust-dot--purple {
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-glow);
}

.trust-dot--blue {
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue-glow);
}

/* ── MOCKUP ─────────────────────────────── */
.hero__mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__mockup-float {
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(124, 58, 237, 0.28)) drop-shadow(0 0 1px rgba(124, 58, 237, 0.4));
  width: 100%;
  max-width: 520px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

.mockup-frame {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: linear-gradient(160deg, #10153a 0%, #080b1d 100%);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

/* Topbar */
.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) {
  background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
  background: #febc2e;
}

.mockup-dots span:nth-child(3) {
  background: #28c840;
}

.mockup-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  flex: 1;
  text-align: center;
}

.mockup-live-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 2px 9px;
  animation: glow-green 2.2s ease-in-out infinite;
}

@keyframes glow-green {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(34, 197, 94, 0);
  }

  50% {
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
  }
}

/* Mockup body */
.mockup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mockup-section {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  backdrop-filter: blur(8px);
}

.mockup-section--ai {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.05);
}

.mockup-section-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Nodes row */
.mockup-nodes {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.mockup-nodes::-webkit-scrollbar {
  display: none;
}

.m-node {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-mid);
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 300ms var(--ease-out);
  flex-shrink: 0;
}

.m-node svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.m-node--crm {
  border-color: rgba(34, 197, 94, 0.25);
}

.m-node--ai {
  border-color: var(--border-purple);
  background: var(--purple-glow-sm);
  color: var(--purple-light);
}

.m-node--ai svg {
  color: var(--purple-light);
}

.m-node--wa {
  border-color: rgba(34, 197, 94, 0.2);
}

.m-node--email {
  border-color: rgba(56, 189, 248, 0.2);
}

.m-node--ads {
  border-color: rgba(251, 146, 60, 0.2);
}

.active-node {
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
  animation: node-pulse 2.5s ease-in-out infinite;
}

@keyframes node-pulse {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.35);
  }

  50% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
  }
}

.m-connector {
  flex-shrink: 0;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--border-purple), var(--border));
  position: relative;
}

.m-connector::after {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 50%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--purple-light));
  animation: flow-line 2.4s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes flow-line {
  0% {
    left: 0;
    opacity: 0;
  }

  20% {
    opacity: 0.8;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    left: 60%;
    opacity: 0;
  }
}

/* AI box */
.mockup-ai-box {
  min-height: 46px;
  position: relative;
}

.mockup-ai-typing {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-label {
  font-size: 11px;
  color: var(--purple-light);
  font-weight: 500;
}

.ai-dots {
  display: flex;
  gap: 4px;
}

.ai-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple-light);
  animation: dot-bounce 1.4s ease-in-out infinite;
}

.ai-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.ai-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dot-bounce {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.4;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.mockup-ai-output {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
  min-height: 0;
  overflow: hidden;
}

/* Leads */
.mockup-leads {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-lead {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
}

.m-lead--qualified {
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.04);
}

.m-lead-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.m-lead-indicator--blue {
  background: var(--blue);
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.5);
}

.m-lead-indicator--grey {
  background: var(--text-muted);
  box-shadow: none;
}

.m-lead-name {
  font-weight: 600;
  color: var(--text-primary);
  flex: 0 0 60px;
}

.m-lead-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
  white-space: nowrap;
}

.m-lead-tag--blue {
  background: var(--blue-glow);
  color: var(--blue);
  border-color: rgba(56, 189, 248, 0.2);
}

.m-lead-tag--grey {
  background: rgba(90, 90, 128, 0.15);
  color: var(--text-muted);
  border-color: var(--border);
}

.m-lead-status {
  margin-left: auto;
  font-size: 9.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Analytics */
.mockup-analytics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.m-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}

.m-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.m-stat span:not(.m-stat-label):not(.m-stat-val):not(.m-stat-optimized):not(.m-stat-badge) {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
}

.m-stat>span:nth-child(2) {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-light);
}

.m-stat-label {
  font-size: 8.5px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.m-stat-optimized {
  height: 24px;
  display: flex;
  align-items: center;
}

.m-stat-badge {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 20px;
  background: var(--purple-glow-sm);
  color: var(--purple-light);
  border: 1px solid var(--border-purple);
  animation: glow-badge 2.5s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes glow-badge {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(124, 58, 237, 0);
  }

  50% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
  }
}

/* ════════════════════════════════════════════
   AUTHORITY STRIP
════════════════════════════════════════════ */
.authority {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.03);
}

.authority__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}

.authority__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  transition: transform 200ms var(--ease-out);
}

.authority__item:hover {
  transform: translateY(-2px);
}

.authority__num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.authority__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 140px;
  line-height: 1.4;
}

.authority__divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}



/* ════════════════════════════════════════════
   BENEFITS
════════════════════════════════════════════ */
.benefits {
  padding: 100px 0;
}

.benefits__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}

.benefits__col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 220ms var(--ease-out);
}

.benefits__col:hover {
  border-color: var(--border-purple);
}

.benefits__col-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.benefits__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 10px;
  color: var(--purple-light);
  margin-top: 5px;
  flex-shrink: 0;
}

.benefit-icon--blue {
  color: var(--blue);
}

.benefits__item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.benefits__item p {
  font-size: 0.825rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ════════════════════════════════════════════
   USE CASES
════════════════════════════════════════════ */
.usecases {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.04) 50%, transparent 100%);
}

.usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 220ms var(--ease-out);
  cursor: default;
}

.usecase-card:hover {
  border-color: var(--border-purple);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.12), 0 0 0 1px rgba(124, 58, 237, 0.15);
  transform: translateY(-4px);
}

.usecase-card:active {
  transform: scale(0.98) translateY(-2px);
}

.usecase-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--purple-glow-sm);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  margin-bottom: 18px;
  transition: box-shadow 220ms var(--ease-out);
}

.usecase-card:hover .usecase-card__icon {
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
}

.usecase-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.usecase-card p {
  font-size: 0.835rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.usecase-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.usecase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--blue-glow);
  color: var(--blue);
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.usecase-result {
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
}

/* 5 cards: last 2 centered */
.usecases__grid>div:nth-child(4) {
  grid-column: 1;
}

.usecases__grid>div:nth-child(5) {
  grid-column: 2;
}

/* ════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════ */
.process {
  padding: 100px 0;
}

.process__timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process__step-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--purple-light);
  background: var(--purple-glow-sm);
  border: 1px solid var(--border-purple);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: box-shadow 220ms var(--ease-out);
}

.process__step:hover .process__step-num {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.process__step-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-purple), rgba(124, 58, 237, 0.1));
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 1;
}

.process__step-line--last {
  display: none;
}

.process__step-content {
  margin-top: 24px;
}

.process__step-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.process__step-content p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.65;
}


/* ════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════ */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
}

.cta-final__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
}

.cta-final__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 28px;
}

.cta-final__headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.cta-final__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.cta-final__note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__brand {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .hero__mockup-wrap {
    order: 1;
  }

  .hero__mockup-float {
    max-width: 420px;
    margin: 0 auto;
  }

  .process__timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
  }

  .process__step-line {
    display: none;
  }

  .process__step-content {
    margin-top: 0;
  }

  .authority__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .authority__divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero__headline {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__trust {
    gap: 10px;
  }

  .hero__trust-sep {
    display: none;
  }

  .benefits__split {
    grid-template-columns: 1fr;
  }

  .usecases__grid {
    grid-template-columns: 1fr;
  }

  .usecases__grid>div:nth-child(4),
  .usecases__grid>div:nth-child(5) {
    grid-column: auto;
  }

  .mockup-analytics {
    grid-template-columns: repeat(2, 1fr);
  }

  .br-md {
    display: block;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .section-headline {
    font-size: 1.8rem;
  }

  .authority__grid {
    grid-template-columns: 1fr;
  }

  .hero__mockup-float {
    max-width: 100%;
  }

  .mockup-nodes {
    gap: 0;
  }

  .m-connector {
    width: 10px;
  }

  .m-node {
    padding: 5px 7px;
    font-size: 9px;
  }
}