/* ============================================================
   PQN.ROSTIGAR.RU | Warm Obsidian Design System v3.1 — PQN Landing
   Palette: Charcoal + Cyan + Amber + Purple
   Forked from ai.rostigar.ru — identical visual language
   ============================================================ */

/* --- Google Fonts --- */
/* Google Fonts imported via HTML <link> tags for parallelized loading */

/* --- Variables --- */
:root {
  --bg-primary: #0f1419;
  --bg-secondary: #1a2332;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);

  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-border-bright: rgba(255, 255, 255, 0.16);
  --glass-top: rgba(245, 166, 35, 0.06);

  --cyan: #00b4d8;
  --cyan-dim: rgba(0, 180, 216, 0.12);
  --amber: #f5a623;
  --amber-dim: rgba(245, 166, 35, 0.12);
  --purple: #8b5cf6;
  --purple-dim: rgba(139, 92, 246, 0.12);
  --green: #22c55e;
  --red: #f43f5e;
  --b2b-accent: hsl(190, 80%, 65%);

  --text-primary: #e8edf4;
  --text-secondary: rgba(232, 237, 244, 0.55);
  --text-muted: rgba(232, 237, 244, 0.28);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-brand: 'Cormorant Garamond', serif;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 25px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 15px;
}

html:not(.keyboard-navigation),
html:not(.keyboard-navigation) *,
body:not(.keyboard-navigation),
body:not(.keyboard-navigation) * {
  cursor: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=') 0 0, none !important;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: #80e8ff;
}

img { max-width: 100%; height: auto; }

/* ============================================================
   Custom Cursor
   ============================================================ */
#cursor-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
}

#cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 1.5px solid rgba(52, 211, 153, 0.65);
  border-radius: 50%;
  transform: scale(0.636);
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.2), background 0.2s ease, border-color 0.2s ease;
  pointer-events: none;
  will-change: transform, background, border-color;
}

#cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  background: #34d399;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  will-change: transform;
  top: 0;
  left: 0;
}

body.cursor-hover #cursor-ring {
  transform: scale(1);
  background: rgba(52, 211, 153, 0.10);
  border-color: rgba(52, 211, 153, 0.90);
}

body.cursor-click #cursor-ring {
  transform: scale(0.4);
  background: rgba(52, 211, 153, 0.50);
}

/* ============================================================
   Canvas Background
   ============================================================ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  display: none;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: linear-gradient(135deg, rgba(30, 25, 45, 0.75) 0%, rgba(15, 20, 25, 0.88) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  width: 95%;
  max-width: 1280px;
  height: auto;
  min-height: 60px;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-brand {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  justify-self: start;
}

.nav-links {
  grid-column: 2;
  justify-self: center;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  justify-self: end;
}

.nav-brand:hover {
  opacity: 0.85;
}

.nav-logo {
  display: inline-block;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: -2px;
  font-family: var(--font-serif);
  background: linear-gradient(135deg, #f5a623, #8b5cf6, #00b4d8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.35));
}

.nav-tag {
  color: rgba(0, 180, 216, 0.7);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--font-mono);
  margin-top: 1px;
  text-shadow: 0 0 8px rgba(0, 180, 216, 0.2);
  line-height: 1.1;
  max-width: 80px;
}

/* ── Compact Legal Navigation Bar ── */
.nav--legal {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 90% !important;
  max-width: 900px !important;
  padding: 10px 24px !important;
  min-height: 52px !important;
  height: 52px !important;
  top: 16px !important;
  grid-template-columns: none !important;
}
.nav--legal .nav-brand {
  gap: 8px !important;
}
.nav--legal .nav-logo {
  font-size: 20px !important;
  text-shadow: 0 0 10px rgba(0, 180, 216, 0.25) !important;
  filter: drop-shadow(0 0 8px rgba(0, 180, 216, 0.2)) !important;
}
.nav--legal .nav-tag {
  font-size: 9px !important;
  margin-top: 1px !important;
  max-width: 120px !important;
}
.nav--legal .nav-links--legal {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.nav--legal .nav-link {
  font-size: 12px !important;
  padding: 6px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: 8px !important;
}
.nav--legal .nav-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--text-primary) !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.15) !important;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 4px;
  flex-shrink: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: var(--b2b-accent);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
  border-radius: 8px;
}

.nav-cta {
  display: none;
}

/* Nav action buttons */
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font-main);
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.nav-btn + .nav-btn {
  margin-left: 6px;
}

.nav-btn--primary {
  position: relative;
  background: var(--amber);
  color: var(--bg-primary);
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.2);
  overflow: hidden;
  min-width: 130px;
}

.nav-btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  animation: nav-shine 2.5s ease-in-out infinite;
}

@keyframes nav-shine {
  0% { left: -100%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

.nav-btn--primary:hover {
  box-shadow: 0 0 28px rgba(245, 166, 35, 0.4);
  transform: translateY(-1px);
  color: var(--bg-primary);
}

.nav-btn--secondary {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.25);
  color: var(--cyan);
}

.nav-btn--secondary:hover {
  background: rgba(0, 180, 216, 0.16);
  border-color: rgba(0, 180, 216, 0.45);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 3px 0;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 78px);
  font-variation-settings: 'wght' var(--font-weight, 900);
  font-weight: var(--font-weight, 900);
  transition: font-weight 0.1s ease, font-variation-settings 0.1s ease;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--cyan), #80e8ff, var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease-in-out infinite;
}

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

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.85;
}

.hero-actions-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--cyan), #00f2fe);
  color: #0f1419;
  font-weight: 800;
  font-size: 17px;
  padding: 0 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(0, 242, 254, 0.35);
  height: 72px;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0, 242, 254, 0.50);
  color: #0f1419;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 17px;
  padding: 0 36px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--transition);
  height: 72px;
  backdrop-filter: blur(12px);
}

.hero-cta-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--cyan);
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: 120px 0;
  border-top: none;
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(70%, 600px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #f5a623, #00b4d8, transparent);
  background-size: 200% 100%;
  animation: divider-glow 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.3), 0 0 24px rgba(0, 180, 216, 0.15);
}

@keyframes divider-glow {
  0%, 100% { background-position: 0% center; opacity: 0.7; }
  50% { background-position: 100% center; opacity: 1; }
}

.section--dark {
  background: rgba(26, 35, 50, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-badge {
  margin-bottom: 16px;
  display: inline-flex;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 36px;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   Badges
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.badge-cyan {
  background: var(--cyan-dim);
  color: var(--cyan);
  border: 1px solid rgba(0, 180, 216, 0.25);
}

.badge-amber {
  background: var(--amber-dim);
  color: var(--amber);
  border: 1px solid rgba(245, 166, 35, 0.25);
}

.badge-green {
  background: rgba(34, 197, 94, 0.10);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-purple {
  background: var(--purple-dim);
  color: var(--purple);
  border: 1px solid rgba(139, 92, 246, 0.25);
}

/* ============================================================
   Card Reveal Animation (CSS-driven, no JS opacity)
   ============================================================ */
.problem-grid > .card,
.advantages-grid > .card,
.advantages-grid > .advantage-card,
/* removed reliability-card from reveal */
.pricing-grid > .card,
.steps-grid > .card,
.steps-grid > .step-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.revealed > .card,
.revealed > .advantage-card,
.revealed > .step-card {
  opacity: 1;
  transform: translateY(0);
}

.revealed > :nth-child(2) { transition-delay: 0.08s; }
.revealed > :nth-child(3) { transition-delay: 0.16s; }
.revealed > :nth-child(4) { transition-delay: 0.24s; }
.revealed > :nth-child(5) { transition-delay: 0.32s; }
.revealed > :nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   Cards / Glass
   ============================================================ */
.card {
  background: linear-gradient(135deg, rgba(28, 28, 30, 0.88) 0%, rgba(18, 18, 20, 0.95) 100%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.15s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
  z-index: 1;
  background-clip: padding-box;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  container-type: inline-size;
  container-name: bento-card;
}

/* --- Spotlight Hover --- */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(400px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0, 180, 216, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0, 180, 216, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::before,
.card:hover::after {
  opacity: 1;
}

.card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 180, 216, 0.1);
  border-color: transparent;
}

/* ============================================================
   Problem Section
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.problem-card--wide {
  grid-column: 1 / -1;
}

.problem-card--danger {
  border-color: rgba(244, 63, 94, 0.25);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.06) 0%, var(--glass) 100%);
}

.problem-card--danger:hover {
  border-color: rgba(244, 63, 94, 0.45);
  box-shadow: 0 0 30px rgba(244, 63, 94, 0.08);
}

.problem-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}

.problem-heading svg {
  flex-shrink: 0;
  color: var(--red);
  filter: drop-shadow(0 0 6px rgba(244, 63, 94, 0.4));
}

.problem-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.problem-bottom-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 800px;
}

.problem-conclusion {
  margin-top: 8px;
  padding: 28px 32px;
  border-left: 3px solid var(--red);
  background: linear-gradient(90deg, rgba(244, 63, 94, 0.06) 0%, transparent 60%);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.problem-conclusion p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-primary);
  opacity: 0.9;
  font-weight: 400;
}

.badge-red {
  color: var(--red);
  border-color: rgba(244, 63, 94, 0.3);
  background: rgba(244, 63, 94, 0.08);
}

/* ============================================================
   Solution Section
   ============================================================ */
.solution-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.solution-card {
  height: 100%;
}

.solution-card--main {
  border-color: rgba(0, 180, 216, 0.25);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.06) 0%, var(--glass) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.solution-card--main:hover {
  border-color: rgba(0, 180, 216, 0.4);
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}

.solution-main {
  font-size: 21px;
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
}

.solution-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-card--accent,
.solution-card--note,
.solution-card--decree {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Карточка 1: cyan — эмоциональный акцент */
.solution-card--accent {
  border-color: rgba(0, 180, 216, 0.2);
  border-left: 3px solid var(--cyan);
}

.solution-accent {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cyan);
  font-weight: 400;
}

/* Карточка 2: amber — технологическая независимость */
.solution-card--note {
  border-color: rgba(245, 166, 35, 0.15);
  border-left: 3px solid var(--amber);
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.04) 0%, var(--glass) 100%);
}

.solution-note {
  font-size: 15px;
  line-height: 1.7;
  color: var(--amber);
  font-weight: 400;
}

/* Карточка 3: green — указ президента */
.solution-card--decree {
  border-color: rgba(34, 197, 94, 0.2);
  border-left: 3px solid var(--green);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.04) 0%, var(--glass) 100%);
}

.solution-decree {
  font-size: 15px;
  line-height: 1.7;
  color: var(--green);
  font-weight: 400;
}

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

.advantage-card {
  padding: 32px 28px;
}

.adv-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover .adv-icon {
  border-color: rgba(0, 180, 216, 0.2);
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.1), 0 0 8px rgba(245, 166, 35, 0.08);
}

.adv-icon svg {
  width: 40px;
  height: 40px;
}

.adv-svg-main {
  transition: filter 0.3s ease;
}

.advantage-card:hover .adv-svg-main {
  filter: drop-shadow(0 0 6px rgba(0, 180, 216, 0.4));
}

.adv-icon--shield svg {
  animation: adv-breathe 3s ease-in-out infinite;
}

.adv-icon--bolt svg {
  animation: adv-bolt-pulse 2s ease-in-out infinite;
}

.adv-icon--lock svg {
  animation: adv-breathe 4s ease-in-out infinite;
}

.adv-icon--grid .adv-svg-orbit {
  transform-origin: center;
  animation: adv-orbit 8s linear infinite;
}

.adv-icon--chat svg {
  animation: adv-breathe 3.5s ease-in-out infinite;
}

@keyframes adv-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes adv-bolt-pulse {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(245, 166, 35, 0.2)); }
  50% { filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.5)); }
}

@keyframes adv-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.adv-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.adv-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   AI Services (Pills)
   ============================================================ */
.services-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.services-category {
  width: 100%;
}

.services-category__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.services-category__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.service-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 8px 18px;
  transition: var(--transition);
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
}

.service-pill:hover {
  border-color: var(--cyan);
  background: var(--cyan-dim);
  transform: translateY(-2px);
}

.service-pill__main {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

.service-pill__sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.2;
  margin-top: 3px;
}

.services-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: center;
  max-width: 800px;
  margin: 32px auto 0;
  opacity: 0.6;
}

/* ============================================================
   Reliability (9 Channels)
   ============================================================ */
.reliability-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-color: rgba(0, 180, 216, 0.15);
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.03) 0%, rgba(28, 28, 30, 0.88) 40%, rgba(18, 18, 20, 0.95) 100%);
}

.reliability-hero {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding-bottom: 60px;
}

.reliability-number {
  font-family: var(--font-serif);
  font-size: clamp(160px, 18vw, 220px);
  font-weight: 900;
  line-height: 1;
  color: var(--cyan);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  text-align: center;
  padding-bottom: 15%;
  animation: number-neon-pulse 3s ease-in-out infinite;
}

@keyframes number-neon-pulse {
  0% {
    text-shadow:
      0 0 8px rgba(0, 180, 216, 0.5),
      0 0 20px rgba(0, 180, 216, 0.3),
      0 0 50px rgba(0, 180, 216, 0.15),
      0 0 100px rgba(0, 180, 216, 0.08);
    filter: brightness(1.0) drop-shadow(0 0 30px rgba(0, 180, 216, 0.2));
    color: hsl(193, 100%, 42%);
  }
  25% {
    text-shadow:
      0 0 12px rgba(0, 220, 255, 0.9),
      0 0 35px rgba(0, 200, 240, 0.7),
      0 0 70px rgba(0, 180, 216, 0.5),
      0 0 140px rgba(0, 180, 216, 0.3),
      0 0 220px rgba(0, 160, 220, 0.15);
    filter: brightness(1.15) drop-shadow(0 0 50px rgba(0, 200, 240, 0.35));
    color: hsl(193, 100%, 50%);
  }
  50% {
    text-shadow:
      0 0 20px rgba(0, 240, 255, 1),
      0 0 50px rgba(0, 220, 255, 0.9),
      0 0 100px rgba(0, 200, 240, 0.6),
      0 0 180px rgba(0, 180, 216, 0.4),
      0 0 300px rgba(0, 160, 220, 0.2),
      0 0 450px rgba(0, 140, 200, 0.08);
    filter: brightness(1.3) drop-shadow(0 0 80px rgba(0, 220, 255, 0.5));
    color: hsl(190, 100%, 60%);
  }
  75% {
    text-shadow:
      0 0 12px rgba(0, 220, 255, 0.9),
      0 0 35px rgba(0, 200, 240, 0.7),
      0 0 70px rgba(0, 180, 216, 0.5),
      0 0 140px rgba(0, 180, 216, 0.3),
      0 0 220px rgba(0, 160, 220, 0.15);
    filter: brightness(1.15) drop-shadow(0 0 50px rgba(0, 200, 240, 0.35));
    color: hsl(193, 100%, 50%);
  }
  100% {
    text-shadow:
      0 0 8px rgba(0, 180, 216, 0.5),
      0 0 20px rgba(0, 180, 216, 0.3),
      0 0 50px rgba(0, 180, 216, 0.15),
      0 0 100px rgba(0, 180, 216, 0.08);
    filter: brightness(1.0) drop-shadow(0 0 30px rgba(0, 180, 216, 0.2));
    color: hsl(193, 100%, 42%);
  }
}

.reliability-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: -1;
}

.reliability-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.1;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
  animation: dot-neon 3s infinite ease-in-out;
}

/* 9 точек по кругу, радиус 180px, шаг 40deg (360/9) */
.reliability-dots span:nth-child(1) { transform: rotate(0deg)   translateY(-180px); animation-delay: 0s; }
.reliability-dots span:nth-child(2) { transform: rotate(40deg)  translateY(-180px); animation-delay: 0.33s; }
.reliability-dots span:nth-child(3) { transform: rotate(80deg)  translateY(-180px); animation-delay: 0.66s; }
.reliability-dots span:nth-child(4) { transform: rotate(120deg) translateY(-180px); animation-delay: 1s; }
.reliability-dots span:nth-child(5) { transform: rotate(160deg) translateY(-180px); animation-delay: 1.33s; }
.reliability-dots span:nth-child(6) { transform: rotate(200deg) translateY(-180px); animation-delay: 1.66s; }
.reliability-dots span:nth-child(7) { transform: rotate(240deg) translateY(-180px); animation-delay: 2s; }
.reliability-dots span:nth-child(8) { transform: rotate(280deg) translateY(-180px); animation-delay: 2.33s; }
.reliability-dots span:nth-child(9) { transform: rotate(320deg) translateY(-180px); animation-delay: 2.66s; }

@keyframes dot-neon {
  0%, 100% {
    opacity: 0.08;
    box-shadow: 0 0 4px rgba(0, 180, 216, 0.2);
    width: 6px;
    height: 6px;
  }
  50% {
    opacity: 0.6;
    box-shadow: 0 0 16px rgba(0, 220, 255, 0.8), 0 0 35px rgba(0, 180, 216, 0.4);
    width: 9px;
    height: 9px;
  }
}

.reliability-main {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 640px;
  margin: 0 auto 20px;
}

.reliability-accent {
  font-size: 19px;
  line-height: 1.6;
  color: var(--cyan);
  font-weight: 600;
  margin: 32px auto;
  max-width: 600px;
}

.reliability-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
  text-align: left;
}

/* 9 каналов = ровная сетка 3×3 на десктопе, 2 на планшете, 1 на мобильном */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.channel-tile {
  padding: 1.5rem;
  height: 100%;
}

@media (max-width: 900px) {
  .channels-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .channels-grid {
    grid-template-columns: 1fr;
  }
}

.reliability-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: var(--transition);
}

.reliability-benefit:hover {
  border-color: var(--cyan);
  background: var(--cyan-dim);
}

.rb-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.reliability-benefit span {
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 500;
}

.reliability-final {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  text-align: center;
  padding: 68px 32px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card--popular {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(0, 180, 216, 0.08);
}

.pricing-card--best {
  border-color: var(--amber);
  box-shadow: 0 0 40px rgba(245, 166, 35, 0.06);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-badge--popular {
  background: var(--cyan);
  color: var(--bg-primary);
}

.pricing-badge--best {
  background: var(--amber);
  color: var(--bg-primary);
}

.pricing-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 8px;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  margin-bottom: 16px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.pricing-price {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1;
}

.pricing-price span {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-price--old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1.8rem;
  font-weight: 500;
}

.pricing-price--new {
  color: #ff4a4a;
}

.pricing-total {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 24px;
  min-height: 60px;
}

.pricing-total--old {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: 6px;
}

.pricing-total--new {
  color: #ff4a4a;
  font-weight: 700;
  margin-right: 8px;
}

.pricing-savings-inline {
  color: var(--accent-amber);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(245, 166, 35, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
  display: block;
  width: fit-content;
  margin: 8px auto 0 auto;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-feature {
  font-size: 14px;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pricing-feature::before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-savings {
  display: block;
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  margin-top: 4px;
}

.pricing-limit {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 820px;
  margin: 72px auto 0;
  background: var(--bg-card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  text-align: left;
}

.pricing-disclaimer p {
  margin-bottom: 14px;
}

.pricing-disclaimer p:last-child {
  margin-bottom: 0;
}

.pricing-disclaimer a {
  color: var(--cyan);
}

.pricing-disclaimer a:hover {
  text-decoration: underline;
}

.pricing-disclaimer-date {
  display: block;
  text-align: right;
  opacity: 0.6;
  margin-top: 24px;
  font-size: 12px;
}

/* ============================================================
   B2B / Corporate
   ============================================================ */

.b2b-card {
  padding: 64px 52px;
  text-align: center;
}

.b2b-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 48px;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-bottom: 56px;
  text-align: left;
}

.b2b-feature {
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.b2b-feature:hover {
  border-color: var(--amber);
  background: var(--amber-dim);
}

.b2b-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--amber);
  flex-shrink: 0;
  animation: b2b-icon-pulse 3s ease-in-out infinite;
}

.b2b-feature:nth-child(2) .b2b-feature-icon { animation-delay: 0.4s; }
.b2b-feature:nth-child(3) .b2b-feature-icon { animation-delay: 0.8s; }
.b2b-feature:nth-child(4) .b2b-feature-icon { animation-delay: 1.2s; }
.b2b-feature:nth-child(5) .b2b-feature-icon { animation-delay: 1.6s; }

@keyframes b2b-icon-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.15));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(245, 166, 35, 0.4));
    transform: translateY(-4px);
  }
}

.b2b-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  min-height: 5.6em; /* Резервирует место под 4 строки для выравнивания описаний */
  margin-bottom: 8px;
}

.b2b-feature-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .b2b-grid { grid-template-columns: repeat(3, 1fr); }
}

.b2b-legal {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
}

.b2b-cta {
  display: flex;
  justify-content: center;
}

.b2b-btn {
  font-size: 16px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--amber), #e09520);
  border: none;
  color: var(--bg-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 30px rgba(245, 166, 35, 0.15);
  transition: var(--transition);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  flex: 1;
  max-width: 380px;
  width: 100%;
}

.b2b-btn:hover {
  box-shadow: 0 0 55px rgba(245, 166, 35, 0.38);
}

/* «Полное предложение» — голубой outline (не золото); b2b-btn даёт только размер */
.b2b-btn.btn-secondary {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--cyan);
  box-shadow: none;
}
.b2b-btn.btn-secondary:hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(0, 180, 216, 0.18);
  filter: none;
}

@media (max-width: 768px) {
  .b2b-card { padding: 40px 24px; }
  .b2b-grid { grid-template-columns: 1fr; margin-bottom: 36px; }
  .b2b-cta { flex-direction: column; align-items: stretch; max-width: 400px; margin: 0 auto; width: 100%; }
  .b2b-btn { width: 100%; max-width: 100%; text-align: center; box-sizing: border-box; }
}

/* ============================================================
   Steps
   ============================================================ */
.steps-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.step-card {
  flex: 1;
  max-width: 340px;
  padding: 40px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  font-size: 64px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 242, 254, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
  user-select: none;
}

/* Нарастающая яркость 01 → 02 → 03 */
.step-card:nth-child(1) .step-num { -webkit-text-stroke: 1.5px rgba(0, 242, 254, 0.25); }
.step-card:nth-child(3) .step-num { -webkit-text-stroke: 1.5px rgba(0, 242, 254, 0.45); }
.step-card:nth-child(5) .step-num { -webkit-text-stroke: 1.5px rgba(0, 242, 254, 0.7); text-shadow: 0 0 20px rgba(0, 242, 254, 0.15); }

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  width: 44px;
  height: 44px;
  animation: icon-float 3s ease-in-out infinite;
}

.step-card:nth-child(3) .step-icon svg { animation-delay: 0.5s; }
.step-card:nth-child(5) .step-icon svg { animation-delay: 1s; }

@keyframes icon-float {
  0%, 100% {
    transform: translateY(0);
    filter: drop-shadow(0 0 4px rgba(0, 180, 216, 0.2));
  }
  50% {
    transform: translateY(-6px);
    filter: drop-shadow(0 0 12px rgba(0, 180, 216, 0.5));
  }
}

.step-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-arrow {
  flex-shrink: 0;
  opacity: 0.3;
  align-self: center;
}

/* ============================================================
   FAQ
   ============================================================ */
/* ============================================================
   Partner Teaser
   ============================================================ */

.partner-teaser {
  padding: 48px 40px;
  text-align: center;
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 0 0 60px rgba(139, 92, 246, 0.04);
}

.partner-levels {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.partner-level {
  background: var(--glass);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 160px;
  transition: var(--transition);
}

.partner-level:hover {
  border-color: var(--purple);
  background: var(--purple-dim);
  transform: translateY(-4px);
}

.partner-level-badge {
  background: var(--purple);
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  min-height: 28px;
  white-space: nowrap;
}

.partner-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  max-width: 820px;
  margin: 24px auto 0 auto;
  line-height: 1.6;
}

.partner-level-percent {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--purple);
}

.partner-level-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.partner-note {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 32px;
}

.partner-cta {
  display: flex;
  justify-content: center;
}

.partner-btn {
  font-size: 16px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--purple), #7c3aed);
  border: none;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
}

.partner-btn:hover {
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .partner-teaser { padding: 28px 20px; }
  .partner-levels { gap: 16px; flex-direction: column; align-items: stretch; }
  .partner-level { width: 100%; min-width: 0; padding: 16px 20px; }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--glass-border-bright);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
  gap: 16px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer-inner strong {
  color: var(--text-primary);
  font-weight: 600;
}

.faq-item.active .faq-answer {
  max-height: 1200px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: none !important;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), #00e0ff);
  color: #0f1419;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 180, 216, 0.25);
}

.btn-primary:not([disabled]):hover {
  background: #00e0ff;
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.35);
  color: #0f1419;
}

.btn:disabled {
  opacity: 0.5;
  filter: grayscale(1);
  cursor: none !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  border-top: none;
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(26, 35, 50, 0.2) 30%, rgba(15, 20, 25, 0.6));
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, #f5a623, #00b4d8, transparent);
  background-size: 200% 100%;
  animation: divider-glow 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(245, 166, 35, 0.3), 0 0 24px rgba(0, 180, 216, 0.15);
}

.footer-top {
  margin-bottom: 32px;
  text-align: center;
}

.footer-top .footer-heading {
  margin-bottom: 24px;
}

.footer-top .section-badge {
  margin-bottom: 24px;
}

.footer-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}

.footer-divider-middle {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 40px 0;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 900;
  display: inline-block;
  background: linear-gradient(135deg, #f5a623, #8b5cf6, #00b4d8);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footer-brand-glow 5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.35)) drop-shadow(0 0 20px rgba(245, 166, 35, 0.15));
  margin-bottom: 16px;
}

@keyframes footer-brand-glow {
  0%, 100% { background-position: 0% center; filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.35)) drop-shadow(0 0 20px rgba(245, 166, 35, 0.15)); }
  50% { background-position: 100% center; filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.5)) drop-shadow(0 0 24px rgba(245, 166, 35, 0.25)); }
}

.footer-legal {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-family: var(--font-main);
  opacity: 0.85;
}

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* Document Links with Slide Transition */
.footer-doc-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
  padding: 4px 0;
  transition: var(--transition);
}

.footer-doc-link::before {
  content: '→';
  font-family: var(--font-mono);
  margin-right: 8px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
  color: var(--cyan);
  display: inline-block;
}

.footer-doc-link:hover {
  color: var(--text-primary);
  transform: translateX(4px);
}

.footer-doc-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Links & Items */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-link:hover {
  color: var(--text-primary);
}

.footer-contact-icon {
  color: var(--cyan);
  opacity: 0.65;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-link:hover .footer-contact-icon {
  opacity: 1;
  color: #80e8ff;
  transform: scale(1.1);
}

/* Support Hours Card */
.footer-support-card {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(245, 166, 35, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.footer-support-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.06);
  border-left-color: var(--amber);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.04);
}

.support-title-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.support-title-icon {
  color: var(--amber);
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.support-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  font-weight: 700;
}

.support-time {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Delivery & Security Info List */
.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-left: 3px solid rgba(0, 180, 216, 0.2);
  border-radius: 8px;
  transition: var(--transition);
}

.footer-info-item:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.06);
  border-left-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.04);
}

.info-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.info-label-icon {
  color: var(--cyan);
  opacity: 0.8;
  display: flex;
  align-items: center;
}

.info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cyan);
  font-weight: 700;
}

.info-value {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-logo-item {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.payment-logo-item:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.payment-logo-item img {
  width: auto;
  object-fit: contain;
}

/* Individual logo heights to balance their visual weight and padding */
.payment-logo-item img[src*="robokassa"] {
  height: 18px;
}
.payment-logo-item img[src*="yandexpay"] {
  height: 21px;
}
.payment-logo-item img[src*="sberpay"] {
  height: 21px;
}
.payment-logo-item img[src*="tpay"] {
  height: 19px;
}
.payment-logo-item img[src*="sbp"] {
  height: 19px;
}
.payment-logo-item img[src*="mir"] {
  height: 32px;
}

.footer-sovereignty {
  padding: 24px;
  margin-top: 40px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.65;
  backdrop-filter: blur(4px);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ============================================================
   Telegram FAB
   ============================================================ */
/* Telegram FAB */
.tg-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(15, 20, 25, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 180, 216, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.25);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.tg-fab:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--accent-cyan, #00b4d8);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.5);
}

.tg-fab:active {
  transform: translateY(2px) scale(0.95);
  box-shadow: 0 2px 10px rgba(0, 180, 216, 0.25);
}

.tg-fab svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 4px var(--accent-cyan, #00b4d8));
}

.tg-fab:hover svg {
  transform: rotate(-10deg) scale(1.1);
  filter: drop-shadow(0 0 8px var(--accent-cyan, #00b4d8));
}

.tg-fab::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 50%;
  border: 1px solid var(--accent-cyan, #00b4d8);
  z-index: 1;
  animation: tg-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

@keyframes tg-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
}

/* ============================================================
   Premium Effects
   ============================================================ */
.shimmer-text {
  background: linear-gradient(-60deg, #fff 40%, rgba(255, 255, 255, 0.4) 50%, #fff 60%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer-swipe 8s infinite linear;
}

@keyframes shimmer-swipe {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.glow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--b2b-accent);
  box-shadow: 0 0 10px var(--b2b-accent);
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 1px;
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--b2b-accent); opacity: 0.7; }
  50% { box-shadow: 0 0 14px var(--b2b-accent), 0 0 20px rgba(0, 242, 254, 0.3); opacity: 1; }
}

/* ============================================================
   Accessibility (WCAG 2.2)
   ============================================================ */
body.keyboard-navigation,
body.keyboard-navigation *,
body.keyboard-navigation *:hover {
  cursor: auto !important;
}

body.keyboard-navigation #cursor-wrapper,
body.keyboard-navigation #cursor-dot,
body.keyboard-navigation #cursor-ring {
  display: none !important;
}

body.keyboard-navigation :focus-visible {
  outline: 3px solid var(--cyan) !important;
  outline-offset: 4px;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
  transition: outline-offset 0.2s ease;
  z-index: 10;
  border-radius: inherit;
}

/* ============================================================
   Motion Toggle
   ============================================================ */
.squish-shadow-active {
  box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.8), 0 0 0 rgba(0, 0, 0, 0) !important;
  transition: box-shadow 0.1s ease !important;
}

.motion-toggle {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(40, 40, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.motion-toggle:hover {
  background: rgba(60, 60, 64, 0.8);
  transform: scale(1.1);
}

.motion-toggle.disabled {
  color: #ff4b4b;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 1101px) {
  .nav-links {
    display: flex !important;
  }
}

/* Mobile-CTA дубликаты ("Подключить" / "Кабинет") внутри dropdown.
   Скрыты везде, кроме открытого hamburger-меню на узких экранах. */
.nav-link--mobile-cta {
  display: none;
}

/* Hamburger включается раньше, чем кнопки "Подключить"/"Кабинет" начнут
   вылезать за пределы вьюпорта. На 1100 как раз помещаются brand + 5 nav-links
   без CTA; CTA уезжают в dropdown. */
/* Dynamic Navbar Progressive Collapse Helper Classes */
.is-collapsed {
  display: none !important;
}

.is-visible {
  display: flex !important;
}

.nav-links.is-collapsed {
  display: none !important;
}

/* Glassmorphism Dropdown Menu */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 20px;
  margin-top: 12px;
  padding: 20px;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.nav-dropdown.active {
  display: flex;
}

.nav-dropdown-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active,
.nav-dropdown-link.nav-link--active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-dropdown-link.active,
.nav-dropdown-link.nav-link--active {
  border-left: 3px solid var(--cyan);
  padding-left: 15px;
}

.nav-dropdown-btn {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: var(--transition);
  margin-top: 4px;
}

.nav-dropdown-btn--primary {
  background: var(--amber);
  color: var(--bg-primary);
  box-shadow: 0 0 16px rgba(245, 166, 35, 0.2);
}

.nav-dropdown-btn--primary:hover {
  box-shadow: 0 0 24px rgba(245, 166, 35, 0.35);
}

.nav-dropdown-btn--secondary {
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.25);
  color: var(--cyan);
}

.nav-dropdown-btn--secondary:hover {
  background: rgba(0, 180, 216, 0.16);
  border-color: rgba(0, 180, 216, 0.45);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 1024px) {
  .nav {
    padding: 0 20px;
  }

  .container {
    padding: 0 20px;
  }

  .section { padding: 80px 0; }

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

  .footer-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 28px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-header { margin-bottom: 40px; }
  .card { padding: 24px; }
  .pricing-card.card { padding: 64px 24px 32px; }
  .step-card { padding: 28px 20px; }

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

  .problem-card--wide {
    grid-column: span 1;
  }

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

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-card {
    width: 100%;
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
  }

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

  .reliability-benefits {
    grid-template-columns: 1fr;
  }

  .reliability-card {
    padding: 36px 24px;
  }

  .unused-removed {
    grid-column: span 1;
  }

  .hero-actions-wrapper {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-delivery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 160px 0 40px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }

  #cursor-wrapper,
  #cursor-dot {
    display: none !important;
  }

  *,
  *::before,
  *::after {
    cursor: auto !important;
  }

  body {
    cursor: auto !important;
  }

  .tg-fab {
    bottom: 24px !important;
    right: 24px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .nav-lk, .nav-btn {
    display: none;
  }
}

/* ============================================================
   Login Modal
   ============================================================ */
.login-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.login-modal-content {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border-bright);
  border-radius: var(--radius);
  padding: 40px 32px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.login-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.login-modal-close:hover {
  color: var(--text-primary);
}

.login-modal-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.login-modal-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ============================================================
   Корпоративная экономика: цены, калькулятор, value-delta, реферал
   ============================================================ */
.corp-pricing {
  margin: 56px auto;
  max-width: 760px;
}

.corp-pricing-head {
  text-align: center;
  margin-bottom: 24px;
}

.corp-anchor {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.corp-anchor-num {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), #80e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-anchor-unit {
  font-size: 15px;
  color: var(--text-secondary);
}

.corp-anchor-note {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

.corp-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .corp-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

.corp-tier {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.corp-tier:hover {
  border-color: rgba(0, 180, 216, 0.4);
  transform: translateY(-3px);
  background: rgba(0, 180, 216, 0.04);
}

.corp-tier.corp-tier--active {
  border-color: var(--cyan) !important;
  background: rgba(0, 180, 216, 0.12) !important;
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.25), inset 0 0 12px rgba(0, 180, 216, 0.15) !important;
  transform: translateY(-3px);
}

.corp-tier.corp-tier--active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 8px var(--cyan);
}

.corp-tier--best {
  border-color: rgba(0, 180, 216, 0.3);
}

.corp-tier-size {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.corp-tier-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
}

.corp-tier-price span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
}

.corp-calc {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 24px;
}

.corp-calc-label {
  display: block;
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.corp-calc-label b { color: var(--cyan); }

.corp-calc-range {
  width: 100%;
  accent-color: var(--cyan);
  margin-bottom: 20px;
  cursor: pointer;
}

.corp-calc-out {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.corp-calc-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px;
}

.corp-calc-k {
  font-size: 12.5px;
  color: var(--text-muted);
}

.corp-calc-v {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
}

.corp-calc-v--accent {
  background: linear-gradient(135deg, var(--cyan), #80e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.corp-calc-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
}

.corp-delta {
  max-width: 760px;
  margin: 56px auto 44px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: left; /* Overrides any inherited text-align: center */
}

.corp-delta-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-align: center; /* Centers only the header of the card */
}

.corp-delta-list {
  list-style: none;
  display: grid;
  gap: 11px;
}

.corp-delta-list li {
  position: relative;
  padding-left: 36px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  transition: color 0.25s ease;
  cursor: default;
}

.corp-delta-list li:hover {
  color: var(--text-primary);
}

.corp-delta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0, 180, 216, 0.08);
  border: 1.5px solid rgba(0, 180, 216, 0.4);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 rgba(0, 180, 216, 0);
}

.corp-delta-list li::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 5px;
  height: 8px;
  border: solid var(--cyan);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.corp-delta-list li:hover::before {
  border-color: var(--cyan);
  background: rgba(0, 180, 216, 0.18);
  box-shadow: 0 0 10px rgba(0, 180, 216, 0.35);
  transform: scale(1.1);
}

.corp-delta-list li:hover::after {
  border-color: #80e8ff;
  transform: rotate(45deg) scale(1.2);
}

.corp-referral {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(245, 166, 35, 0.05));
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 44px 32px;
  /* Ровные интервалы между элементами вне зависимости от их порядка */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.corp-referral-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}

.corp-referral-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 600px;
  margin: 0;
}

.corp-referral-note {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0;
}

.btn-secondary {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--cyan);
}

.btn-secondary:not([disabled]):hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: var(--cyan);
}

@media (max-width: 768px) {
  .corp-tiers { grid-template-columns: 1fr; }
  .corp-calc-out { grid-template-columns: 1fr; }
}

/* ============================================================
   Страница /business (business.html)
   ============================================================ */
.nav-link--active { color: var(--cyan); }

.biz-hero {
  padding: 150px 0 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.biz-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 18px auto 20px;
  max-width: 880px;
}

.biz-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 36px;
}

.biz-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.biz-hero-note {
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.biz-pain-grid,
.biz-trust-grid {
  display: grid;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.biz-pain { padding: 28px 24px; }

.biz-trust { padding: 32px 28px; }

.biz-trust-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.biz-trust-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.biz-faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.biz-faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 4px 22px;
  transition: var(--transition);
}

.biz-faq-item[open] { border-color: rgba(0, 180, 216, 0.35); }

.biz-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 18px 0;
  position: relative;
  padding-right: 32px;
}

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

.biz-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.25s ease;
}

.biz-faq-item[open] summary::after { content: '−'; }

.biz-faq-item p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 0 0 20px;
}

@media (max-width: 768px) {
  .biz-pain-grid,
  .biz-trust-grid { grid-template-columns: 1fr; }
  .biz-hero { padding: 120px 0 40px; }
}

/* Кнопка-реферал «Получить ссылку»: голубая, hover-подъём + бегущая волна подсветки */
.b2b-btn--wave {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan), #00f2fe);
  color: #0f1419;
  box-shadow: 0 4px 24px rgba(0, 242, 254, 0.28);
}
.b2b-btn--wave::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  animation: wave-shine 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wave-shine {
  0%   { left: -120%; }
  55%  { left: 160%; }
  100% { left: 160%; }
}
.b2b-btn--wave:hover {
  background: linear-gradient(135deg, #00c4f0, #00f2fe);
  box-shadow: 0 8px 36px rgba(0, 242, 254, 0.5);
  color: #0f1419;
}
@media (prefers-reduced-motion: reduce) {
  .b2b-btn--wave::after { animation: none; display: none; }
}

/* Кнопка «Сохранить в PDF для руководителя» (экран) */
.biz-print-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.42);
  color: var(--cyan);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 100px;
  transition: var(--transition);
}
.biz-print-btn:hover {
  background: rgba(0, 180, 216, 0.18);
  border-color: var(--cyan);
  box-shadow: 0 0 22px rgba(0, 180, 216, 0.2);
  color: var(--cyan);
}
/* Воздух между кнопкой PDF и припиской про пилот */
.biz-page .biz-hero-note { margin-top: 24px; }
.print-only { display: none; }

/* Анти-мерцание корп-кнопок: стабилизируем композитный слой (фикс hover-flicker) */
.b2b-btn {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ============================================================
   Печатная версия /business — чистый светлый одностраничник
   ============================================================ */
@media print {
  .nav, .footer, .tg-fab, #motion-toggle, #bg-canvas, .bg-noise,
  #cursor-wrapper, #cursor-dot, .biz-hero-actions, .biz-print-btn,
  .corp-referral, .corp-calc, .biz-faq, .b2b-cta { display: none !important; }
  .print-only { display: block !important; }

  html, body { background: #fff !important; color: #14181d !important; }
  * {
    color: #14181d !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .section, .biz-hero { padding: 12px 0 !important; }
  .container { max-width: 100% !important; padding: 0 28px !important; }
  .section-header { margin-bottom: 12px !important; }

  .card, .b2b-card, .biz-pain, .biz-trust, .corp-pricing, .corp-delta, .corp-tier {
    background: #fff !important;
    border: 1px solid #d4d9e0 !important;
    border-radius: 8px !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .corp-tier--best { border: 1.5px solid #0a7ea4 !important; }
  .gradient-text, .corp-anchor-num {
    -webkit-text-fill-color: #0a7ea4 !important;
    color: #0a7ea4 !important;
    background: none !important;
  }
  .section-badge, .badge {
    background: #eef4f8 !important;
    border: 1px solid #c4ccd6 !important;
    color: #0a7ea4 !important;
  }
  .section-desc, .biz-hero-sub, .b2b-feature-desc, .biz-trust-text,
  .corp-delta-list li, .corp-anchor-note, .corp-calc-note { color: #3a414a !important; }
  .corp-tiers { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; }
  .b2b-grid { display: flex !important; flex-wrap: wrap; justify-content: center; gap: 12px !important; }
  .b2b-grid .b2b-feature { flex: 0 1 30% !important; }
  .biz-pain-grid { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; }
  .biz-trust-grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; }
  section, .card, .corp-pricing, .corp-delta { page-break-inside: avoid; }
  .section-header { page-break-after: avoid; break-after: avoid; }
  .b2b-card { page-break-inside: avoid; }
  a { text-decoration: none !important; }
  .print-contact {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid #d4d9e0;
    font-size: 11.5px;
    line-height: 1.6;
    color: #3a414a !important;
    text-align: center;
  }
}

/* Корп-primary «Запросить корпоративное предложение»: амбер-градиент.
   ПРИЧИНА МИГАНИЯ была в .btn-primary:hover (фон градиент→сплошной #00e0ff):
   background-image не анимируется → мгновенное исчезновение градиента = вспышка.
   Здесь default И hover — оба градиенты (тип фона не меняется) → мигания нет.
   2 класса (.b2b-btn.btn-primary) перебивают одиночный .btn-primary. */
.b2b-btn.btn-primary {
  background: linear-gradient(135deg, var(--amber), #e09520);
  color: var(--bg-primary);
}
.b2b-btn.btn-primary:hover {
  background: linear-gradient(135deg, #ffbf45, #e9a52a);
  box-shadow: 0 0 55px rgba(245, 166, 35, 0.45);
  color: var(--bg-primary);
}

/* ============================================================
   /business — улучшенная типографика, ритм и воздух (scoped .biz-page;
   главную не затрагивает)
   ============================================================ */
/* Межсекционный ритм: 120px рвал поток подстраницы → 96px, заголовок ближе к контенту */
.biz-page .section { padding: 96px 0; }
.biz-page .section-header { margin-bottom: 52px; }
.biz-page .section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  margin-bottom: 24px;
}
.biz-page .section-desc { line-height: 1.75; max-width: 680px; }

/* Hero: воздух под подзаголовком */
.biz-page .biz-hero { padding: 140px 0 64px; }
.biz-page .biz-hero-sub { line-height: 1.72; margin-bottom: 30px; }

/* Решение: фичи — иерархия title↔desc, убран гигантский min-height (4.8em → 2.6em) */
.biz-page .b2b-card { padding: 44px 38px; }
.biz-page .b2b-grid { gap: 22px; margin-bottom: 0; }
.biz-page .b2b-feature { padding: 28px 26px; }
.biz-page .b2b-feature-title {
  min-height: 5.6em; /* Резервирует место под 4 строки для выравнивания описаний */
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 12px;
}
.biz-page .b2b-feature-desc { font-size: 15px; line-height: 1.7; }

/* Боли */
.biz-page .biz-pain-grid,
.biz-page .biz-trust-grid { gap: 24px; }
.biz-page .biz-pain { padding: 32px 28px; }

/* Доверие */
.biz-page .biz-trust { padding: 36px 32px; }
.biz-page .biz-trust-title { margin-bottom: 14px; }
.biz-page .biz-trust-text { font-size: 15.5px; line-height: 1.72; }

/* Что входит (value-delta) */
.biz-page .corp-delta { padding: 36px 40px; }
.biz-page .corp-delta-title { margin-bottom: 18px; }
.biz-page .corp-delta-list { gap: 13px; }
.biz-page .corp-delta-list li { font-size: 15px; }

/* FAQ: воздух + читаемость */
.biz-page .biz-faq { gap: 14px; }
.biz-page .biz-faq-item { padding: 6px 24px; }
.biz-page .biz-faq-item summary { font-size: 16.5px; padding-top: 20px; padding-bottom: 20px; }
.biz-page .biz-faq-item p { font-size: 15px; line-height: 1.75; padding-bottom: 22px; }

/* /business — крупнее мелкий текст в ценах/калькуляторе/«что входит» + воздух в реферале */
.biz-page .corp-anchor-unit { font-size: 16px; }
.biz-page .corp-anchor-note { font-size: 15px; }
.biz-page .corp-tier-size { font-size: 14px; }
.biz-page .corp-tier-price { font-size: 21px; }
.biz-page .corp-tier-price span { font-size: 12.5px; }
.biz-page .corp-calc-label { font-size: 16px; }
.biz-page .corp-calc-k { font-size: 14px; }
.biz-page .corp-calc-v { font-size: 23px; }
.biz-page .corp-calc-note { font-size: 13.5px; }
.biz-page .corp-delta-title { font-size: 18.5px; }
.biz-page .corp-delta-list li { font-size: 15.5px; }
.biz-page .corp-referral .b2b-cta { margin-top: 12px; }

/* /business — больше воздуха в CTA-блоках (.corp-referral: финальный CTA + реф-хук) */
.biz-page .corp-referral { gap: 26px; padding: 52px 38px; }
.biz-page .corp-referral-text { font-size: 15.5px; line-height: 1.7; }

/* /business — 5 фич решения: на планшете 3 в ряд, нижние 2 по центру (а не 3+2 слева) */
@media (min-width: 769px) and (max-width: 1024px) {
  .biz-page .b2b-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
  .biz-page .b2b-grid .b2b-feature { flex: 0 1 30%; }
}


/* ============================================================
   5. COOKIE CONSENT BANNER (UI/UX Compliance)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  width: calc(100% - 32px);
  max-width: 580px;
  background: rgba(15, 20, 25, 0.93);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
              0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  z-index: 10000;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.4s;
  will-change: transform, opacity;
}

.cookie-banner.cookie-banner--hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(30px);
}

.cookie-banner-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner-text {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  text-align: left;
}

.cookie-banner-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.cookie-banner-link:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1 1 0%;
  min-width: 140px;
  padding: 12px 20px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  box-sizing: border-box;
}

/* Equal visual priority style - both are dark glass button layouts */
.cookie-btn--primary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border-bright);
  color: var(--text-primary);
}

.cookie-btn--primary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--cyan);
  box-shadow: 0 0 14px rgba(0, 180, 216, 0.25);
}

.cookie-btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.cookie-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    padding: 16px;
  }
  .cookie-banner-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
  .cookie-banner-content {
    gap: 12px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .cookie-btn {
    width: 100%;
    flex: none;
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* ============================================================
   B2B GRID CAROUSEL OVERRIDES
   ============================================================ */
@media (max-width: 1200px) {
  .b2b-grid,
  .biz-page .b2b-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 16px !important;
    padding: 10px 40px !important;
    margin-left: -40px !important;
    margin-right: -40px !important;
    margin-bottom: 40px !important;
    justify-content: flex-start !important;
    cursor: grab;
    user-select: none;
  }

  .b2b-grid::-webkit-scrollbar,
  .biz-page .b2b-grid::-webkit-scrollbar {
    display: none !important;
  }

  .b2b-grid .b2b-feature,
  .biz-page .b2b-grid .b2b-feature {
    flex: 0 0 290px !important;
    width: 290px !important;
    max-width: 290px !important;
    scroll-snap-align: center !important;
    box-sizing: border-box !important;
  }

  /* Disable scroll snapping and change cursor during active mouse dragging */
  .b2b-grid.is-dragging,
  .biz-page .b2b-grid.is-dragging {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    cursor: grabbing !important;
  }
}

/* ==========================================================================
   B2B Login Modal (Warm Obsidian Glassmorphic Style)
   ========================================================================== */
.b2b-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.b2b-modal--active {
  opacity: 1;
  pointer-events: auto;
}

.b2b-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 25, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.b2b-modal-content {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(15, 20, 25, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
  font-family: 'Inter', sans-serif;
  color: #e8e6e3;
}

.b2b-modal--active .b2b-modal-content {
  transform: translateY(0) scale(1);
}

.b2b-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 0;
  color: rgba(232, 230, 227, 0.5);
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.b2b-modal-close:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #e8e6e3;
}

.b2b-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.b2b-modal-header h2 {
  font-family: 'Cormorant', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #e8e6e3;
}

.b2b-modal-header p {
  font-size: 14px;
  color: rgba(232, 230, 227, 0.5);
}

.b2b-form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.b2b-form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(232, 230, 227, 0.6);
}

.b2b-form-group input[type="text"],
.b2b-form-group input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #e8e6e3;
  font-size: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.b2b-form-group input:focus {
  border-color: #00b4d8;
  background: rgba(0, 180, 216, 0.03);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
  outline: none;
}

.captcha-group {
  margin-top: 24px;
}

.math-question-text {
  font-size: 14px;
  color: rgba(232, 230, 227, 0.85);
  margin-bottom: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  font-weight: 500;
}

.math-answer-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: #e8e6e3;
  font-size: 14px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.math-answer-input:focus {
  border-color: #00b4d8;
  outline: none;
  background: rgba(0, 180, 216, 0.03);
}

.b2b-error-message {
  color: #f43f5e;
  font-size: 13px;
  margin-bottom: 16px;
  background: rgba(244, 63, 94, 0.08);
  border: 1px solid rgba(244, 63, 94, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
}

.b2b-success-message {
  color: #22c55e;
  font-size: 13px;
  margin-bottom: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  padding: 8px 12px;
  border-radius: 6px;
}

.b2b-btn {
  width: 100%;
  padding: 14px;
  background: #00b4d8;
  border: 0;
  border-radius: 8px;
  color: #0f1419;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.b2b-btn:hover {
  background: #0096b4;
  box-shadow: 0 0 16px rgba(0, 180, 216, 0.35);
}

.b2b-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.b2b-btn--loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #0f1419;
  border-radius: 50%;
  border-top-color: transparent;
  animation: b2b-spin 0.8s linear infinite;
}

@keyframes b2b-spin {
  to { transform: rotate(360deg); }
}

.biz-bot-consent-note {
  font-size: 11px;
  opacity: 0.6;
  color: var(--text-secondary);
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.45;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.dot-separator {
  color: var(--accent-cyan);
  display: inline-block;
  margin: 0 8px;
  font-weight: bold;
  animation: dot-pulse 2.2s infinite ease-in-out;
}

@keyframes dot-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(0.95);
    text-shadow: 0 0 2px rgba(0, 180, 216, 0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
    text-shadow: 0 0 8px rgba(0, 180, 216, 0.85), 0 0 14px rgba(0, 180, 216, 0.5);
  }
}


