/* =========================================================
   BAD RUSSIAN // CLEAN MODERN EXPANSIVE DESIGN SYSTEM
   ========================================================= */

:root {
  --bg-dark: #09090c;
  --bg-surface: #101014;
  --bg-card: #14141c;
  --text-pure: #ffffff;
  --text-body: #cfcfe2;
  --text-muted: #88889e;
  
  /* Brand Accents */
  --accent-pink: #ff2a6d;
  --accent-pink-glow: rgba(255, 42, 109, 0.45);
  --accent-pink-subtle: rgba(255, 42, 109, 0.12);
  --accent-pink-border: rgba(255, 42, 109, 0.35);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 255, 255, 0.22);
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100%;
  background-color: var(--bg-dark);
  color: var(--text-pure);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  margin: 0;
}

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

/* Base Section Screen Definition */
.slide-screen {
  width: 100%;
  box-sizing: border-box;
}

/* =========================================================
   1. HERO FULLSCREEN FRAME (100vw / 100vh Full Immersion)
   ========================================================= */
.hero-fullscreen {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #09090c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

/* Fullscreen Hero Background Slider (5 Cities) */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 6s cubic-bezier(0.1, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-fullscreen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 9, 12, 0.42) 0%,
    rgba(9, 9, 12, 0.08) 32%,
    rgba(9, 9, 12, 0.6) 70%,
    #09090c 100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-top-row {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 40px) clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

/* Top-Left: Clean Vertical Auto-Cycling Service Slider (No podlozhka) */
.services-ticker {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: 48px;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-width: 220px;
  max-width: 320px;
}

.ticker-viewport {
  overflow: hidden;
  height: 36px;
  width: 100%;
}

.ticker-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ticker-item {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  flex-shrink: 0;
}

.ticker-logo {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticker-logo svg {
  display: block;
}

.ticker-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  min-width: 0;
}

.ticker-brand {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.ticker-sub {
  font-family: var(--font-main);
  font-size: 11px;
  color: #a2a2b8;
  font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* Top-Right: Language Switcher with Flags (RU & EU) */
.hero-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(13, 13, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.hero-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 5px 12px;
  cursor: pointer;
  color: #8a8a9c;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.45;
}

.hero-lang-btn:hover {
  color: #ffffff;
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.06);
}

.hero-lang-btn.is-active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  opacity: 1;
  font-weight: 800;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-lang-btn.is-active::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pink);
  box-shadow: 0 0 8px var(--accent-pink);
  margin-left: 2px;
}

.hero-lang-btn--eu .flag-svg {
  filter: saturate(1.4) brightness(1.2);
}

.flag-svg {
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

/* Hero Bottom Content: Slogan & Two Defined Buttons */
.hero-bottom-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px) clamp(44px, 6vh, 80px);
  box-sizing: border-box;
}

/* Slogan Rotator: One kinetic line at a time with smooth slide/fade */
.hero-slogan-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 clamp(24px, 3.5vh, 38px);
}

.hero-slogan {
  position: relative;
  height: clamp(38px, 5.8vw, 70px);
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
}

.hero-slogan-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(28px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(22px, 4.2vw, 54px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.42s ease,
              filter 0.42s ease;
  filter: blur(2px);
  cursor: default;
}

.hero-slogan-line.is-active {
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: auto;
  filter: blur(0);
}

.hero-slogan-line--accent {
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

.hero-slogan-line--accent.is-active {
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.85);
}

/* Floating 3D Comic Badges on Hero */
.hero-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}

.hero-float-icon {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #111119;
  border: 2.5px solid #000000;
  box-shadow: 4px 4px 0px #000000, 0 10px 24px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
  will-change: transform;
}

.hero-float-icon:hover {
  border-color: var(--accent-pink);
  box-shadow: 6px 6px 0px #000000, 0 0 22px rgba(255, 42, 109, 0.45);
}

.hero-float-icon--tl {
  top: 18%;
  left: clamp(20px, 7vw, 110px);
  transform: rotate(-10deg);
}

.hero-float-icon--ml {
  top: 40%;
  left: clamp(14px, 3.8vw, 65px);
  transform: rotate(8deg);
}

.hero-float-icon--bl {
  top: 62%;
  left: clamp(24px, 8.5vw, 130px);
  transform: rotate(-6deg);
}

.hero-float-icon--tr {
  top: 16%;
  right: clamp(20px, 8vw, 120px);
  transform: rotate(14deg);
}

.hero-float-icon--mr {
  top: 38%;
  right: clamp(14px, 3.8vw, 65px);
  transform: rotate(-12deg);
}

.hero-float-icon--br {
  top: 60%;
  right: clamp(24px, 7.5vw, 115px);
  transform: rotate(16deg);
}

/* Hero Bottom Row: Left Action Buttons & Right City Slider Bar */
.hero-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Slider City Indicator & Progress Dashes (Right side opposite CTA buttons) */
.hero-slider-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 10px 18px 10px 16px;
  background: rgba(18, 18, 26, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: fit-content;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.hero-slider-city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.hero-city-icon {
  flex-shrink: 0;
  color: var(--accent-pink);
  animation: cityPulse 2.2s ease-in-out infinite alternate;
}

@keyframes cityPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(255, 0, 122, 0.4)); }
  100% { transform: scale(1.18); filter: drop-shadow(0 0 8px rgba(255, 0, 122, 0.9)); }
}

.hero-slider-dashes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-slider-dash {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.hero-slider-dash:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-slider-dash.is-active {
  width: 38px;
  background: linear-gradient(90deg, #ff007a, #ff5e36);
  box-shadow: 0 0 10px rgba(255, 0, 122, 0.7);
}

/* Action Buttons: Premium Rounded Pills (AliPanel Style) */
.hero-rect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Left Button: Vibrant Magenta-to-Orange Gradient Pill (AliPanel Fast Order) */
.hero-rect-btn--neon-pink {
  background: linear-gradient(90deg, #ff007a 0%, #ff5e36 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 28px -6px rgba(255, 0, 122, 0.48), 0 4px 14px rgba(255, 94, 54, 0.32);
}

.hero-rect-btn--neon-pink:hover {
  box-shadow: 0 14px 34px -4px rgba(255, 0, 122, 0.65), 0 6px 20px rgba(255, 94, 54, 0.45);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-rect-btn--neon-pink:active {
  transform: translateY(0);
}

/* Right Button: Dark Translucent Glass Pill (AliPanel Services) */
.hero-rect-btn--outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-rect-btn--outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-rect-btn--outline:active {
  transform: translateY(0);
}

/* =========================================================
   2. SCENARIOS SECTION (Три режима // Один шлюз)
   ========================================================= */
.scenarios-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(120px, 9.5em, 180px) clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

/* Split 2-Column Container (Screenshot 5 Style) */
.scenarios-split-container {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  width: 100%;
}

/* Left Column: Stacked Cards (Fan Deck with Overlap & Angles) */
.scenarios-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 12px 0;
}

.scenario-stack-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(18, 18, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.65);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.28s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* Fan Stacking with Overlap & Subtle Angles */
.scenario-stack-card:nth-child(1) {
  transform: rotate(-1.8deg);
  margin-bottom: -16px;
  z-index: 1;
}

.scenario-stack-card:nth-child(2) {
  transform: rotate(1.4deg);
  margin-bottom: -16px;
  z-index: 2;
}

.scenario-stack-card:nth-child(3) {
  transform: rotate(-1deg);
  z-index: 3;
}

.scenario-stack-card:hover {
  transform: rotate(0deg) translateY(-8px) scale(1.02) !important;
  z-index: 10;
  background: rgba(26, 26, 38, 0.95);
}

.scenario-stack-card--amber:hover {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.85), 0 0 28px rgba(245, 158, 11, 0.22);
}

.scenario-stack-card--cyan:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.85), 0 0 28px rgba(56, 189, 248, 0.22);
}

.scenario-stack-card--pink:hover {
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.85), 0 0 28px rgba(236, 72, 153, 0.22);
}

/* Icon Squircle with AliPanel Palettes */
.scenario-stack-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.scenario-stack-card:hover .scenario-stack-icon {
  transform: scale(1.06);
}

.scenario-stack-icon--amber {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #f59e0b;
}

.scenario-stack-icon--cyan {
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.scenario-stack-icon--pink {
  background: rgba(236, 72, 153, 0.14);
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #ec4899;
}

.scenario-stack-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.scenario-stack-title {
  font-family: var(--font-main);
  font-size: 17.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.scenario-stack-desc {
  font-family: var(--font-main);
  font-size: 13.5px;
  color: #9d9db5;
  margin: 0;
  line-height: 1.45;
}

/* Right Metric / Value Badges (like +$15 on Screenshot 5) */
.scenario-stack-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.scenario-stack-badge--amber {
  background: rgba(245, 158, 11, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.28);
}

.scenario-stack-badge--cyan {
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border: 1px solid rgba(56, 189, 248, 0.28);
}

.scenario-stack-badge--pink {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
  border: 1px solid rgba(236, 72, 153, 0.28);
}

/* Right Column: Title, Our Benefits Tag, Explanatory Paragraph */
.scenarios-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Shared Tag Rows & Clean Tags (Our Benefits Style: Screenshot 2) */
.scenarios-tag-row,
.how-tag-row,
.author-tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.scenarios-tag,
.how-it-works-tag {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ff2a6d;
  text-transform: uppercase;
  margin-bottom: 0;
  display: inline-block;
}

.author-quote-tag {
  font-family: var(--font-main);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 0;
  display: inline-block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

/* Comic Style Graphic Accents (Spider-Verse / Street-Punk Vibe) */
.comic-pill-sticker {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ffe600;
  color: #0b0b12;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 2px solid #000000;
  box-shadow: 2.5px 2.5px 0px #000000;
  transform: rotate(-2.5deg);
  transition: transform 0.2s ease;
}

.comic-pill-sticker:hover {
  transform: rotate(0deg) scale(1.06);
}

.comic-burst-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff0055;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  border: 2px solid #000000;
  box-shadow: 2.5px 2.5px 0px #000000, 0 0 16px rgba(255, 0, 85, 0.4);
  transform: rotate(3deg);
  transition: transform 0.2s ease;
}

.comic-burst-badge:hover {
  transform: rotate(0deg) scale(1.06);
}

.comic-tape-sticker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00f0ff;
  color: #000000;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 2px solid #000000;
  box-shadow: 2.5px 2.5px 0px #000000;
  transform: rotate(-1.8deg);
  transition: transform 0.2s ease;
}

.comic-tape-sticker:hover {
  transform: rotate(0deg) scale(1.06);
}

.scenarios-title {
  font-family: var(--font-main);
  font-size: clamp(22px, 2.35vw, 36px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 16px;
  white-space: nowrap;
}

.scenarios-subtitle {
  font-family: var(--font-main);
  font-size: 15.5px;
  color: #9d9db5;
  line-height: 1.65;
  margin: 0 0 24px;
}

.scenarios-benefits-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.scenarios-benefit-pill {
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  color: #cfcfe2;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* =========================================================
   3. HOW IT WORKS SECTION (Быстрый старт за 30 секунд)
   ========================================================= */
.how-it-works-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(120px, 9.5em, 180px) clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

.how-it-works-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4.5vh, 48px);
  width: 100%;
}

.how-it-works-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.how-it-works-header .how-tag-row {
  justify-content: center;
}

.how-it-works-title {
  font-family: var(--font-main);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.2;
}

.how-it-works-subtitle {
  font-family: var(--font-main);
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.8vw, 38px);
  width: 100%;
}

.how-step-card {
  background: #ffffff;
  color: #0b0b12;
  border: 2.5px solid #000000;
  border-radius: 22px;
  padding: clamp(28px, 2.6vw, 36px) clamp(22px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 5px 5px 0px #000000;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s ease;
}

.how-step-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px #000000, 0 0 24px rgba(255, 42, 109, 0.25);
}

.how-step-card--highlight {
  border-color: #000000;
  box-shadow: 5px 5px 0px #000000, 0 0 24px rgba(255, 42, 109, 0.22);
}

.how-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.how-step-num {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: 900;
  color: #0d0d14;
  letter-spacing: -0.04em;
  line-height: 1;
}

.how-step-badge {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  background: #ffe600;
  color: #000000;
  padding: 4px 10px;
  border-radius: 4px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

#how-step2-badge {
  background: #00f0ff;
  color: #000000;
  transform: rotate(2deg);
}

#how-step3-badge {
  background: #ff0055;
  color: #ffffff;
  transform: rotate(-1.5deg);
}

.how-step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111118;
  border: 2px solid #000000;
  box-shadow: 2.5px 2.5px 0px #000000;
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step-title {
  font-family: var(--font-main);
  font-size: 18.5px;
  font-weight: 800;
  color: #0d0d14;
  margin: 0;
}

.how-step-desc {
  font-family: var(--font-main);
  font-size: 13.5px;
  line-height: 1.55;
  color: #444458;
  margin: 0;
}

.how-footer-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: 6px;
}

.how-assurance {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 8px 0;
  text-align: center;
  max-width: 820px;
  box-shadow: none;
  line-height: 1.5;
}

.how-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================================
   3. SCROLLYTELLING BLOCK (Everything You Need)
   ========================================================= */
.scrolly-section {
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(120px, 9.5em, 180px) clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

.scrolly-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.scrolly-title {
  font-family: var(--font-main);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
  line-height: 1.2;
}

.scrolly-subtitle {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.scrolly-track-wrap {
  position: relative;
  overflow: visible;
}

.scrolly-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 16px 6px 28px;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrolly-track::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.scrolly-track.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.scrolly-card {
  flex: 0 0 310px;
  max-width: 310px;
  min-height: 260px;
  box-sizing: border-box;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  box-shadow: none;
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.22s ease, 
              background-color 0.22s ease,
              box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrolly-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 42, 109, 0.45);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 42, 109, 0.15);
}

.scrolly-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.scrolly-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scrolly-card:hover .scrolly-card__icon {
  background: rgba(255, 42, 109, 0.15);
  border-color: rgba(255, 42, 109, 0.4);
  color: #ffffff;
}

.scrolly-card__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scrolly-card__title {
  font-family: var(--font-main);
  font-size: 17.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

.scrolly-card__desc {
  font-family: var(--font-main);
  font-size: 13.5px;
  line-height: 1.55;
  color: #9d9db5;
  margin: 0;
  font-weight: 400;
}

/* Scrolly Progress Bar Track & Neon Pink Pill Indicator */
.scrolly-progress-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.scrolly-progress-bar {
  width: 160px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.4);
}

.scrolly-progress-pill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 48px;
  background: var(--accent-pink);
  border-radius: 9999px;
  transition: transform 0.08s ease-out;
  box-shadow: 0 0 12px rgba(255, 42, 109, 0.85);
}

/* =========================================================
   4. SLIDE 4: TEAM NOTE & FULL-WIDTH FOOTER
   ========================================================= */
.slide-story-footer {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(120px, 9.5em, 180px);
  gap: clamp(60px, 7em, 110px);
  box-sizing: border-box;
  overflow: hidden;
}

.clean-author-section {
  max-width: 1360px;
  width: 100%;
  margin: auto auto 0;
  padding: 0 clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

/* Quote Card with Deep Wine/Magenta Radial Glow (Screenshots 3 & 4 Style) */
.author-quote-wrap {
  background: radial-gradient(circle at 85% 30%, #580d38 0%, #28061a 45%, #0c0812 100%);
  border: 1px solid rgba(255, 42, 109, 0.24);
  box-shadow: 0 24px 60px -15px rgba(0, 0, 0, 0.85), 0 0 45px rgba(88, 13, 56, 0.28);
  border-radius: clamp(24px, 3.2vw, 36px);
  padding: clamp(36px, 5.5vw, 68px);
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.author-quote-body {
  font-family: var(--font-main);
  font-size: clamp(19px, 2.2vw, 29px);
  font-weight: 500;
  line-height: 1.55;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: none;
  padding: 0;
}

.author-quote-body p {
  margin: 0;
}

.author-quote-highlight {
  color: #ffffff;
  font-weight: 800;
}

/* =========================================================
   5. CLEAN FOOTER (Full-Width Policies & 100vw BAD RUSSIAN)
   ========================================================= */
.clean-footer {
  width: 100%;
  margin-top: auto;
  padding: clamp(60px, 7em, 110px) 0 0 0;
  border: none;
  border-top: none;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 7em, 110px);
  box-sizing: border-box;
}

.clean-footer-links {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px 24px;
  box-sizing: border-box;
}

.clean-footer-btn {
  background: none;
  border: none;
  color: #727284;
  font-family: var(--font-main);
  font-size: clamp(11px, 1.05vw, 13px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 6px 0;
  text-decoration: none;
  transition: color 0.18s ease;
}

.clean-footer-btn:hover {
  color: #ffffff;
}

.clean-footer-watermark-wrap {
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  user-select: none;
  line-height: 0;
}

.clean-footer-watermark-wrap svg {
  width: 100vw;
  max-width: 100vw;
  height: clamp(60px, 9vw, 135px);
  display: block;
}

/* =========================================================
   6. MODALS (Email and Working Legal Modal)
   ========================================================= */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  background: #14141c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 36px 30px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.modal-backdrop.is-open .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0b2;
  width: 34px;
  height: 34px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.modal-close:hover {
  background: #ffffff;
  color: #000000;
}

/* Email Form in Modal */
.modal-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(255, 42, 109, 0.12);
  border: 1px solid rgba(255, 42, 109, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.modal-icon {
  font-size: 24px;
}

.modal-header h3 {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px;
  color: #ffffff;
}

.modal-subtitle {
  color: #8c8c9e;
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0 0 22px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.honey-trap {
  display: none;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8c8c9e;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  background: #0b0b10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 13px 16px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 2px rgba(255, 42, 109, 0.25);
}

.form-alert {
  padding: 10px 14px;
  border-radius: 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.form-alert--error {
  background: rgba(255, 42, 109, 0.12);
  border: 1px solid rgba(255, 42, 109, 0.35);
  color: #ff6688;
}

.modal-submit-btn {
  background: var(--accent-pink);
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 14px 20px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.15s ease;
}

.modal-submit-btn:hover {
  background: #ff3c78;
}

.modal-footnote {
  font-size: 11.5px;
  color: #6a6a7c;
  line-height: 1.45;
  margin-top: 4px;
}

/* Success Card */
.modal-success-box {
  padding: 10px 0;
}

.success-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0, 221, 119, 0.12);
  border: 1px solid rgba(0, 221, 119, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.success-icon {
  color: #00dd77;
  font-size: 24px;
  font-weight: 800;
}

.success-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.success-lead {
  font-size: 13px;
  color: #8c8c9e;
  line-height: 1.5;
  margin-bottom: 10px;
}

.success-email-badge {
  display: inline-block;
  background: #0b0b10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 14px;
}

.success-tips {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  font-size: 12px;
  color: #b0b0c2;
  line-height: 1.45;
  text-align: left;
}

/* Legal Modal */
.legal-modal-card {
  max-width: 640px;
  text-align: left;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 30px 28px 24px;
}

.legal-header {
  text-align: center;
  margin-bottom: 18px;
}

.legal-header h3 {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 6px;
}

.legal-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px;
}

.legal-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #8c8c9e;
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  padding: 9px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  text-align: center;
}

.legal-tab-btn:hover {
  color: #ffffff;
}

.legal-tab-btn.is-active {
  background: rgba(255, 42, 109, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 42, 109, 0.35);
}

.legal-body {
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 18px;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: #c4c4d4;
}

.legal-body::-webkit-scrollbar {
  width: 5px;
}

.legal-body::-webkit-scrollbar-track {
  background: transparent;
}

.legal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
}

.legal-section {
  margin-bottom: 18px;
}

.legal-heading {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.legal-modal-footer {
  margin-top: auto;
}

/* =========================================================
   7. RESPONSIVE MEDIA QUERIES (Consistent Grid Across Viewports)
   ========================================================= */
@media (max-width: 900px), (max-height: 720px) {
  .slide-screen {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-fullscreen {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .slide-story-footer {
    min-height: auto;
    padding-top: 40px;
    gap: 40px;
  }
}

@media (max-width: 880px) {
  .hero-top-row {
    padding: 20px 20px;
  }

  .hero-bottom-content {
    padding: 0 20px 48px;
  }

  .scenarios-section {
    padding: 40px 20px;
  }

  .scenarios-split-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scenarios-text-col {
    order: -1;
  }

  .scenarios-title {
    white-space: normal;
  }

  .scenario-stack-card:nth-child(1),
  .scenario-stack-card:nth-child(2),
  .scenario-stack-card:nth-child(3) {
    transform: none;
    margin-bottom: 0;
  }

  .scenarios-stack {
    gap: 14px;
    padding: 0;
  }

  .hero-floating-icons {
    display: none;
  }

  .hero-bg-slide {
    background-position: 40% bottom;
  }

  .scrolly-section {
    padding: 60px 20px;
  }

  .scrolly-card {
    flex: 0 0 76vw;
    max-width: 76vw;
    min-height: 230px;
    padding: 24px 20px;
  }

  .how-it-works-section {
    padding: 60px 20px;
  }

  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .clean-author-section {
    padding: 0 20px;
  }

  .clean-footer {
    padding: 24px 20px;
  }

  .services-ticker {
    min-width: 180px;
  }

  .ticker-brand {
    font-size: 13px;
  }
  
  .ticker-sub {
    font-size: 10px;
  }
}

@media (max-width: 540px) {
  .hero-top-row {
    align-items: flex-start;
    padding: 16px 16px;
  }

  .hero-bottom-content {
    padding: 0 16px 40px;
  }

  .hero-slogan-line {
    font-size: clamp(13px, 3.8vw, 18px);
    letter-spacing: -0.01em;
  }

  .hero-bottom-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-slider-bar {
    gap: 10px;
    padding: 6px 12px 6px 10px;
    margin-bottom: 0;
  }

  .hero-slider-city {
    font-size: 11.5px;
  }

  .hero-slider-dash {
    width: 14px;
    height: 3.5px;
  }

  .hero-slider-dash.is-active {
    width: 26px;
  }

  .hero-rect-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .scenarios-section {
    padding: 48px 16px;
  }

  .how-it-works-section {
    padding: 48px 16px;
  }

  .how-step-card {
    padding: 22px 18px;
  }

  .how-assurance {
    font-size: 13.5px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 6px 0;
    color: #ffffff;
  }

  .scrolly-section {
    padding: 48px 16px;
  }

  .scrolly-header {
    margin-bottom: 28px;
  }

  .scrolly-card {
    flex: 0 0 84vw;
    max-width: 84vw;
  }

  .clean-author-section {
    padding: 0 16px;
  }

  .author-quote-body {
    font-size: 18px;
    line-height: 1.5;
  }

  .clean-footer {
    padding: 20px 16px 16px;
  }

  .clean-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
