/* ================================================================
   MAXNET 0800 LANDING — Dark Design System v2
   Primary: #00badb (cyan), BG: #0a0e1a (dark navy)
   ================================================================ */

/* ── Custom Properties ── */
:root {
  --brand-blue:        #00badb;
  --brand-blue-dark:   #0095b0;
  --brand-blue-deeper: #0a0e1a;
  --brand-blue-light:  #33c8e5;
  --brand-blue-pale:   rgba(0,186,219,0.10);
  --accent:            #ffc942;
  --accent-dark:       #e6b200;
  --success:           #00d68f;
  --danger:            #ff4d6d;
  --text-primary:      #e8ecf4;
  --text-secondary:    #8892a8;
  --text-muted:        #5a6478;
  --bg-white:          #161b2e;
  --bg-alt:            #111627;
  --border:            rgba(255,255,255,0.07);
  --border-accent:     rgba(0,186,219,0.25);
  --shadow-sm:         0 1px 4px rgba(0,0,0,0.3);
  --shadow-md:         0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:         0 10px 48px rgba(0,0,0,0.5);
  --shadow-blue:       0 8px 32px rgba(0,186,219,0.22);
  --shadow-glow:       0 0 60px rgba(0,186,219,0.08);
  --radius-sm:         8px;
  --radius:            12px;
  --radius-lg:         20px;
  --radius-xl:         28px;
  --transition:        0.25s cubic-bezier(0.4,0,0.2,1);
  --font:              'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono:         'JetBrains Mono', monospace;
  --container:         1200px;
  --header-h:          72px;
  --urgency-h:         44px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--color-bg, #0a0e1a);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--urgency-h) + var(--header-h));
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   BACKGROUND EFFECTS
   ================================================================ */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,186,219,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,186,219,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black 10%, transparent 70%);
}
.orb {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,186,219,0.07), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 20s ease-in-out infinite;
}
.orb--1 { top: -100px; right: -150px; }
.orb--2 {
  bottom: 10%;
  left: -200px;
  background: radial-gradient(circle, rgba(108,99,255,0.05), transparent 70%);
  animation-delay: -10s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-40px) scale(1.05); }
  66%       { transform: translate(-20px,30px) scale(0.95); }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 16px 36px; font-size: 1.0625rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-blue), #0095b0);
  color: #0a0e1a;
  box-shadow: 0 4px 24px rgba(0,186,219,0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,186,219,0.38);
}

.btn--accent {
  background: var(--accent);
  color: #0a0e1a;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,201,66,0.30);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,201,66,0.40);
}

.btn--outline {
  background: transparent;
  color: var(--brand-blue);
  border: 1.5px solid var(--border-accent);
  transition: all var(--transition);
}
.btn--outline:hover {
  background: var(--brand-blue-pale);
  border-color: var(--brand-blue);
}

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); }

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,201,66,.30); }
  50%       { box-shadow: 0 4px 36px rgba(255,201,66,.60), 0 0 0 8px rgba(255,201,66,.08); }
}
.btn--pulse { animation: btnPulse 2.4s ease-in-out infinite; }
.btn--pulse:hover { animation: none; }

/* Badge */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 100px; font-size: 0.875rem; font-weight: 600; }
.badge--light {
  background: rgba(0,186,219,0.12);
  color: var(--brand-blue);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(8px);
}

/* ================================================================
   URGENCY BAR
   ================================================================ */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--accent);
  color: #0a0e1a;
  min-height: var(--urgency-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-weight: 500;
}
.urgency-bar__fire { font-size: 1.1rem; }
.urgency-bar__text { text-align: center; }
.urgency-timer {
  display: inline-block;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 1rem;
  font-weight: 800;
  background: #0a0e1a;
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
}
.urgency-bar__btn {
  background: #0a0e1a;
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.urgency-bar__btn:hover { opacity: 0.85; }

/* ================================================================
   HEADER
   ================================================================ */
.header {
  position: fixed;
  top: var(--urgency-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10,14,26,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: transform 0.3s ease, background 0.3s ease;
}
.header.header--hidden { transform: translateY(calc(-100% - var(--urgency-h))); }
.header.header--scrolled { background: rgba(10,14,26,0.97); }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 44px; width: 140px; min-width: 140px; object-fit: contain; flex-shrink: 0; filter: brightness(0) invert(1); }
.header__nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.header__nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.header__nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--transition);
}
.header__phone svg { stroke: var(--brand-blue); }
.header__phone:hover { color: var(--brand-blue); }

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,14,26,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-menu.open { max-height: 440px; }
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
}
.mobile-menu__link {
  color: var(--text-secondary);
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.mobile-menu__link:hover { color: #fff; }
.mobile-menu__phone {
  color: var(--brand-blue);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 12px 0;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.section { padding: 120px 0; position: relative; z-index: 1; overflow: hidden; }
.section--alt { background: var(--bg-alt); }
.section--light { background: var(--bg-white); }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--brand-blue-pale);
  border: 1px solid var(--border-accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.section-header__row .section-title { margin-bottom: 0; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: linear-gradient(135deg, #0a0e1a 0%, #0f1424 50%, #0a1028 100%);
  position: relative;
  z-index: 1;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,186,219,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { display: flex; flex-direction: column; gap: 24px; }
.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero__br { display: block; }
.text-accent {
  background: linear-gradient(135deg, var(--brand-blue), #33c8e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 520px;
}
.hero__subtitle strong { color: var(--brand-blue); -webkit-text-fill-color: var(--brand-blue); }
.hero__features { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__feature-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero__feature-badge svg { color: var(--brand-blue); flex-shrink: 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero number display card */
.hero__visual { display: flex; align-items: center; justify-content: center; }
.number-display {
  position: relative;
  background: #161b2e;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  text-align: center;
  box-shadow: var(--shadow-glow), var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}
.number-display::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0,186,219,0.35), rgba(108,99,255,0.2), transparent 60%);
  z-index: -1;
}
.number-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.number-big {
  font-family: var(--font-mono);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1;
}
.num-highlight { color: var(--brand-blue); }
.number-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.number-stat-value {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.number-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Floating pills */
.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #1e2440;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: floatPill 6s ease-in-out infinite;
}
.float-pill svg { width: 18px; height: 18px; flex-shrink: 0; }
.float-pill--1 { top: 12%;  right: -36px; animation-delay: 0s; }
.float-pill--2 { bottom: -20px; left: 8%; animation-delay: -2s; }
.float-pill--3 { top: -20px; left: 15%; animation-delay: -4s; }
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Hero wave — replaced by dark gradient fade */
.hero__wave { display: none; }

/* ================================================================
   CARDS
   ================================================================ */
.cards-grid { display: grid; gap: 20px; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card--hover::before, .card--benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), #6c63ff);
  opacity: 0;
  transition: opacity var(--transition);
}
.card--hover:hover, .card--benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  border-color: var(--border-accent);
}
.card--hover:hover::before, .card--benefit:hover::before { opacity: 1; }
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--brand-blue-pale);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.card--hover:hover .card__icon, .card--benefit:hover .card__icon {
  background: var(--brand-blue);
  color: #0a0e1a;
}
.card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.card__text { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.65; }

/* ================================================================
   PAIN / SOLUTION
   ================================================================ */
.pain-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pain-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pain-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-accent); }
.pain-card__problem, .pain-card__solution {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 28px;
}
.pain-card__problem {
  background: rgba(255,77,109,0.06);
  border-left: 3px solid rgba(255,77,109,0.5);
  border-right: 1px solid var(--border);
}
.pain-card__solution { background: rgba(0,214,143,0.06); border-left: 3px solid rgba(0,214,143,0.5); }
.pain-card__divider { display: none; }
.pain-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-card__icon--problem { background: rgba(255,77,109,0.12); color: #ff4d6d; }
.pain-card__icon--solution { background: rgba(0,214,143,0.12); color: #00d68f; }
.pain-card__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff4d6d;
  margin-bottom: 6px;
}
.pain-card__label--solution { color: #00d68f; }
.pain-card__problem p, .pain-card__solution p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.6; }
.pain-card__problem strong, .pain-card__solution strong { color: var(--text-primary); }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.step-flow__item {
  flex: 1;
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.step-flow__item:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.step-flow__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--brand-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-flow__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-blue-pale);
  border: 1px solid var(--border-accent);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-flow__title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.step-flow__desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }
.step-flow__connector {
  display: flex;
  align-items: center;
  color: var(--brand-blue);
  opacity: 0.4;
  padding: 0 8px;
  padding-top: 60px;
  flex-shrink: 0;
}

/* ================================================================
   ROUTING SCHEMA
   ================================================================ */
.routing-schema {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 8px 0 32px;
}

/* Caller */
.routing-caller {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.routing-caller__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0,186,219,0.1);
  border: 1.5px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
}
.routing-caller__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.5;
}
.routing-caller__label span {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: rgba(0,214,143,0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Arrow */
.routing-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 12px 24px;
  flex-shrink: 0;
  position: relative;
}
.routing-arrow__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), rgba(0,186,219,0.3));
  position: relative;
}
.routing-arrow__tip {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-blue);
}
.routing-arrow__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
}

/* Hub */
.routing-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.routing-hub__badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-pale);
  border: 1px solid var(--border-accent);
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.routing-hub__inner {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,186,219,0.12), rgba(0,186,219,0.04));
  border: 2px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  box-shadow: 0 0 32px rgba(0,186,219,0.18);
  animation: hubPulse 3s ease-in-out infinite;
}
@keyframes hubPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,186,219,0.15); }
  50%       { box-shadow: 0 0 40px rgba(0,186,219,0.30); }
}
.routing-hub__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

/* Destinations */
.routing-destinations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  padding-left: 4px;
}
.routing-dest {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  min-width: 180px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.routing-dest:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.routing-dest__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.routing-dest__icon--blue   { background: rgba(0,186,219,0.12); color: var(--brand-blue); }
.routing-dest__icon--purple { background: rgba(108,99,255,0.12); color: #6c63ff; }
.routing-dest__icon--green  { background: rgba(0,214,143,0.10); color: var(--success); }
.routing-dest__icon--gold   { background: rgba(255,201,66,0.12); color: var(--accent); }
.routing-dest span { font-size: 0.875rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.routing-dest small { display: block; font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

/* Fan arrow (multiple targets) */
.routing-arrow--fan .routing-arrow__line {
  background: linear-gradient(90deg, rgba(0,186,219,0.3), rgba(0,186,219,0.1));
}

/* Note */
.routing-note {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  background: rgba(0,214,143,0.06);
  border: 1px solid rgba(0,214,143,0.2);
  border-radius: var(--radius-lg);
  padding: 14px 28px;
  max-width: 560px;
  margin: 0 auto;
}
.routing-note svg { stroke: var(--success); flex-shrink: 0; }

/* ================================================================
   URGENCY BADGE
   ================================================================ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,201,66,0.10);
  border: 1.5px solid rgba(255,201,66,0.35);
  color: var(--text-secondary);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}
.mini-timer {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--accent);
  background: rgba(255,201,66,0.10);
  padding: 1px 8px;
  border-radius: 4px;
}

/* ================================================================
   NUMBER PICKER
   ================================================================ */
.number-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.number-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.number-card:hover { border-color: var(--border-accent); box-shadow: var(--shadow-glow), var(--shadow-md); }
.number-card--premium {
  border-color: rgba(255,201,66,0.3);
  background: linear-gradient(135deg, rgba(255,201,66,0.05), rgba(255,201,66,0.02));
}
.number-card--premium:hover { border-color: rgba(255,201,66,0.5); }
.number-card__badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--danger);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(255,77,109,0.4);
}
.number-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.number-card__type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.number-card__price { text-align: right; }
.number-card__price-old {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: line-through;
}
.number-card__price-main {
  display: block;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-primary);
}
.number-card__price-main--accent { color: var(--brand-blue); }
.number-card__price-note { font-size: 0.8rem; color: var(--text-muted); }
.number-card__example {
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.number-card__xx { color: var(--brand-blue); }
.number-card__list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.number-card__list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.number-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}
.number-card__for { font-size: 0.875rem; font-style: italic; color: var(--text-muted); }

/* Number picker form */
.picker-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  transition: border-color var(--transition);
}
.picker-form-wrap:focus-within { border-color: var(--border-accent); }
.picker-form-wrap__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-align: center;
}
.picker-form-wrap__sub {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.number-mask-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.number-mask__prefix {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}
.number-mask__input {
  width: 72px;
  height: 64px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand-blue);
  background: var(--color-surface, #1e2440);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.number-mask__input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,186,219,0.15);
}
.number-mask__sep {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  border-color: var(--border-accent);
}
.pricing-card--popular {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
}
.pricing-card--popular:hover { border-color: var(--brand-blue-light); }
.pricing-card--individual {
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}
.pricing-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-blue), #0095b0);
  color: #0a0e1a;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 4px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-blue);
  margin-bottom: 24px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pricing-card__price span { font-family: var(--font); font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.pricing-card__price--custom { font-size: 1.375rem; color: var(--text-secondary); }
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-card__list svg { flex-shrink: 0; color: var(--success); margin-top: 1px; }
.pricing-card__btn { margin-top: auto; }
.pricing__note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ================================================================
   SOCIAL PROOF — STATS BAR
   ================================================================ */
.stats-bar {
  background: linear-gradient(135deg, #0d1220 0%, #111825 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  position: relative;
  z-index: 1;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item__num {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.stat-item__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
  border-color: var(--border-accent);
}
.testimonial__stars { color: var(--accent); font-size: 1.125rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #0095b0);
  color: #0a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial__author strong { display: block; font-size: 0.9375rem; color: var(--text-primary); }
.testimonial__author span { font-size: 0.8125rem; color: var(--text-muted); }

/* Testimonials mobile slider controls */
.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.testimonials-dot.active {
  background: var(--brand-blue);
  transform: scale(1.3);
}

/* ================================================================
   CONNECTION STEPS
   ================================================================ */
.conn-steps__list {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.conn-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.conn-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-blue), #0095b0);
  color: #0a0e1a;
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,186,219,0.25);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.conn-step__body { }
.conn-step__title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.conn-step__body p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.conn-step__line {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), rgba(0,186,219,0.2));
  margin-top: 26px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq__wrap { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item.open { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }
.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-item__q:hover { color: var(--brand-blue); }
.faq-item.open .faq-item__q { color: var(--brand-blue); }
.faq-item__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-item__icon { transform: rotate(180deg); color: var(--brand-blue); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__a p {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item__a strong { color: var(--text-primary); }

/* ================================================================
   FORMS
   ================================================================ */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field--wide { grid-column: 1 / -1; }
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 0.875rem; font-weight: 600; color: var(--text-secondary); }
.form__label--light { color: rgba(255,255,255,0.7); }
.form__input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form__input:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,186,219,0.12);
}
.form__input::placeholder { color: var(--text-muted); }
.form__input--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.form__input--dark::placeholder { color: rgba(255,255,255,0.35); }
.form__input--dark:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0,186,219,0.15);
}
.form__select { cursor: pointer; }
.form__select option { background: #1e2440; color: var(--text-primary); }
.form__input.error { border-color: var(--danger); }
.form__error { font-size: 0.8125rem; color: var(--danger); min-height: 18px; }

.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__consent {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  line-height: 1.5;
}
.form__consent-link { color: var(--brand-blue); text-decoration: underline; }

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 24px;
}
.form-success h3 { font-size: 1.375rem; font-weight: 800; color: #fff; }
.form-success p { color: var(--text-secondary); font-size: 1rem; }
.form-success[hidden] { display: none; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer__cta {
  background: linear-gradient(135deg, #0d1220 0%, #111825 100%);
  border-top: 1px solid var(--border);
  padding: 96px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer__cta-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: flex-start;
}
.footer__cta-inner > * { min-width: 0; }
.footer__cta-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.footer__cta-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer__cta-sub strong { color: var(--brand-blue); }
.footer__timer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
.footer__timer {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.footer__bottom {
  background: #0a0e1a;
  border-top: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__logo-img { height: 36px; width: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; }
.footer__brand span { font-size: 0.8125rem; color: var(--text-muted); }
.footer__contacts { display: flex; gap: 24px; }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.footer__contact:hover { color: var(--brand-blue); }
.footer__copy { font-size: 0.8125rem; color: var(--text-muted); }

/* ================================================================
   ANIMATIONS
   ================================================================ */
.animate-fade-up,
.animate-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.22,1,.36,1), transform 0.6s cubic-bezier(.22,1,.36,1);
}
.animate-fade-up.in-view,
.animate-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.animate-stagger.in-view > *:nth-child(1)  { transition-delay: 0s; }
.animate-stagger.in-view > *:nth-child(2)  { transition-delay: 0.1s; }
.animate-stagger.in-view > *:nth-child(3)  { transition-delay: 0.2s; }
.animate-stagger.in-view > *:nth-child(4)  { transition-delay: 0.3s; }
.animate-stagger.in-view > *:nth-child(5)  { transition-delay: 0.4s; }
.animate-stagger.in-view > *:nth-child(6)  { transition-delay: 0.5s; }
.animate-stagger.in-view > *:nth-child(7)  { transition-delay: 0.6s; }
.animate-stagger.in-view > *:nth-child(8)  { transition-delay: 0.7s; }
.animate-stagger.in-view > *:nth-child(9)  { transition-delay: 0.8s; }
.animate-stagger.in-view > *:nth-child(10) { transition-delay: 0.9s; }

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero__visual { order: -1; }
  .hero__subtitle { margin: 0 auto; }
  .hero__features { justify-content: center; }
  .hero__cta { justify-content: center; }
  .number-display { max-width: 420px; margin: 0 auto; }
  .float-pill--1 { right: -10px; }
  .float-pill--2 { left: -10px; }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .testimonials article:last-child { grid-column: span 2; max-width: 420px; margin: 0 auto; }
  .footer__cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cta-inner > div:last-child { max-width: 100%; }
  .steps-flow { flex-wrap: wrap; gap: 16px; }
  .step-flow__connector { display: none; }
  .step-flow__item { flex: 1 1 calc(50% - 8px); min-width: 200px; }
  .conn-steps__list { flex-wrap: wrap; gap: 24px; justify-content: center; }
  .conn-step { flex: 1 1 calc(33% - 16px); min-width: 160px; }
  .conn-step__line { display: none; }
  .header__nav { display: none; }
  .header__actions { display: none; }
  .header__burger { display: flex; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ================================================================ */
@media (max-width: 640px) {
  :root { --section-padding: 64px; }
  .section { padding: 64px 0; }

  .hero { padding: 72px 0 56px; }
  .hero__title { font-size: 1.9rem; }
  .hero__br { display: none; }
  .number-display { padding: 32px 24px; }
  .number-big { font-size: 1.5rem; }
  .number-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .number-stat-value { font-size: 1.2rem; }
  .float-pill--1, .float-pill--2, .float-pill--3 { display: none; }

  .cards-grid--3 { grid-template-columns: 1fr; }
  .routing-schema {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    overflow-x: visible;
  }
  .routing-arrow { flex-direction: row; padding: 0; }
  .routing-arrow__line { width: 2px; height: 40px; background: linear-gradient(180deg, var(--brand-blue), rgba(0,186,219,0.3)); }
  .routing-arrow__tip { transform: rotate(90deg) translateX(-50%); right: auto; top: auto; bottom: -4px; left: 50%; }
  .routing-arrow__label { display: none; }
  .routing-destinations { flex-direction: column; width: 100%; padding-left: 0; }
  .routing-dest { min-width: 0; width: 100%; }
  .pain-card { grid-template-columns: 1fr; }
  .pain-card__problem { border-right: none; border-bottom: 1px solid var(--border); }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* Testimonials: CSS scroll-snap slider */
  .testimonials {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 4px;
    scrollbar-width: none;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .testimonials::-webkit-scrollbar { display: none; }
  .testimonial {
    flex: 0 0 calc(100% - 32px);
    scroll-snap-align: center;
    min-width: calc(100% - 32px);
  }
  .testimonials article:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }
  .testimonials-dots { display: flex; }

  .steps-flow { flex-direction: column; gap: 16px; }
  .step-flow__item { width: 100%; }

  .conn-step { flex: 1 1 100%; }

  .number-cards { grid-template-columns: 1fr; }
  .picker-form-wrap { padding: 24px 16px; }
  .form__row { grid-template-columns: 1fr; }
  .form__field--wide { grid-column: auto; }
  .number-mask-row { gap: 6px; }
  .number-mask__prefix { font-size: 1rem; }
  .number-mask__input { width: 52px; height: 48px; font-size: 1.3rem; }
  .footer__cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__cta-inner > * { width: 100%; max-width: 100%; min-width: 0; }
  .footer__form-wrap,
  .footer__form-wrap .form,
  .footer__form-wrap .form__input,
  .footer__form-wrap .form__select,
  .footer__form-wrap .btn { width: 100%; max-width: 100%; box-sizing: border-box; }
  .form--dark .form__input--dark { font-size: 0.9375rem; }

  .footer__cta { padding: 56px 0; }
  .footer__bottom-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer__contacts { flex-direction: column; align-items: center; gap: 12px; }

  .urgency-bar__btn { display: none; }
  .urgency-bar__inner { justify-content: center; padding: 6px 16px; }
  .urgency-bar__text .long-text { display: none; }
  .urgency-badge { white-space: normal; text-align: center; max-width: 100%; }
  .footer__timer-row { flex-wrap: wrap; gap: 6px; }
  .hero__visual { display: none; }
  .btn--full { white-space: normal; line-height: 1.3; min-height: 52px; height: auto; }
  .routing-arrow__label { display: none; }
  .routing-arrow { gap: 4px; }

  .section-header__row { flex-direction: column; align-items: center; }
}

/* ================================================================
   RESPONSIVE — SMALL MOBILE (≤ 380px)
   ================================================================ */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.65rem; }
  .number-big { font-size: 1.3rem; }
  .number-stats { grid-template-columns: 1fr 1fr 1fr; }
}

/* ================================================================
   MOBILE — HIDE HEAVY BG ANIMATIONS & FIX OVERFLOW
   ================================================================ */
@media (max-width: 640px) {
  /* Hide animated background on mobile — saves performance */
  .bg-grid,
  .orb { display: none; }

  /* Prevent any child from causing horizontal scroll */
  .routing-schema,
  .number-display,
  .number-mask-row,
  .stats-bar__inner,
  .pain-card,
  .cards-grid,
  .steps-flow,
  .pricing-grid,
  .conn-steps {
    max-width: 100%;
    overflow-x: visible;
  }

  /* Pills already hidden on mobile, ensure wrapper doesn't overflow */
  .number-display { overflow: hidden; }
}

/* ================================================================
   MOBILE GLOBAL PADDING FIX
   ================================================================ */
@media (max-width: 640px) {
  /* Ensure all cards / wrappers never touch screen edges */
  .card,
  .pain-card,
  .testimonial,
  .pricing-card,
  .number-card,
  .step-flow__item,
  .conn-step,
  .faq-item,
  .routing-dest {
    border-radius: var(--radius);
  }

  /* Section container padding bump */
  .section { padding: 72px 0; }

  /* Pain-solution: mobile remove double border */
  .pain-card__problem { border-right: none; border-bottom: 1px solid var(--border); }
}
