/* ==========================================================================
   AURAMATION LANDING PAGE DESIGN SYSTEM & STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800;900&family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
  /* Color Palette */
  --bg-dark-primary: #0A0D14;
  --bg-dark-card: #121621;
  --bg-dark-card-hover: #181E2C;
  --bg-light-primary: #F4F5F8;
  --bg-light-card: #FFFFFF;
  --bg-blue-section: #1A56FF;

  /* Accent Colors */
  --coral-primary: #FF5745;
  --coral-hover: #E04433;
  --coral-gradient: linear-gradient(135deg, #FF6B50 0%, #FF3B2D 100%);
  --badge-gradient: linear-gradient(90deg, #2563EB 0%, #3B82F6 25%, #8B5CF6 60%, #FF5745 100%);
  --blue-accent: #387BFF;
  --blue-light: #5B94FF;
  --purple-glow: rgba(139, 92, 246, 0.25);
  
  /* Text Colors */
  --text-white: #FFFFFF;
  --text-dark: #0D1017;
  --text-muted-dark: #8E96A4;
  --text-muted-light: #64748B;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-strong: rgba(255, 255, 255, 0.15);
  --border-light: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Manrope', 'Montserrat', 'Inter', sans-serif;

  /* Layout */
  --container-width: 1120px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions & Shadows */
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-coral-glow: 0 8px 24px rgba(255, 87, 69, 0.35);
  --shadow-blue-glow: 0 8px 24px rgba(26, 86, 255, 0.35);
}

/* Reset & Core Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-dark-primary);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
.h1-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.h2-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-muted-dark);
  margin-top: 12px;
  line-height: 1.6;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #7C3AED, #FF5745);
  border-radius: 2px;
}

/* Coral CTA Button */
.btn-coral {
  font-family: 'Manrope', 'Inter', sans-serif;
  background: var(--coral-gradient);
  color: var(--text-white);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-coral-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 87, 69, 0.5);
  filter: brightness(1.06);
}

/* ==========================================================================
   HERO SECTION 1: WITH HERO-BACKGROUND.WEBP
   ========================================================================== */
.hero-img-bg {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #0A0D14 url('../hero_tech_pc_1784998577.webp') no-repeat center right / cover;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-img-bg .container {
  position: relative;
  z-index: 2;
}

.hero-img-bg-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge for Code Copy comparison header */
.copy-badge-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #A0AEC0;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-heading-main {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-white);
  line-height: 1.08;
  margin-bottom: 16px;
}

/* Exact Badge Gradient: Blue -> Purple -> Coral Red */
.hero-price-badge {
  background: linear-gradient(90deg, #2563EB 0%, #3B82F6 25%, #8B5CF6 60%, #FF5745 100%);
  padding: 10px 32px;
  border-radius: 14px;
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: 2.875rem;
  font-weight: 800;
  color: var(--text-white);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: #CBD5E1;
  margin-bottom: 36px;
  max-width: 440px;
  line-height: 1.45;
  font-weight: 400;
}

.hero-cta-btn {
  font-family: 'Manrope', 'Inter', sans-serif;
  background: var(--coral-gradient);
  color: var(--text-white);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-coral-glow);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 87, 69, 0.55);
}

/* Hero Right Visuals Container */
.hero-visual-stage {
  position: relative;
  width: 100%;
  height: 440px;
}

/* Mockup Windows Stack */
.hero-stage-relative {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Window 1 (Back Right Window) */
.win-back {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 270px;
  height: 330px;
  background: #0E121B;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Window 2 (Middle Window with Gradient Header & Vertical Slider) */
.win-middle {
  position: absolute;
  top: 75px;
  right: 70px;
  width: 250px;
  height: 290px;
  background: #0E121B;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  z-index: 2;
  overflow: hidden;
}

.win-middle-header {
  height: 28px;
  background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 50%, #EC4899 100%);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
}

/* Window 3 (Front Left Window) */
.win-front {
  position: absolute;
  top: 150px;
  right: 150px;
  width: 240px;
  height: 250px;
  background: #0B0E17;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.7);
  z-index: 3;
}

.win-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   SECTION 2: LIGHT SECTION ("Без сайта бизнес теряет заявки") - WITH 2 БЛОК.WEBP
   ========================================================================== */
.section-loss-bg {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: #F4F5F8 url('../block2_tech_pc_1785000436.webp') no-repeat center center / cover;
  color: #0D1017;
  overflow: hidden;
}

.loss-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-left: 100px;
  padding-right: 20px;
}

.loss-title {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  color: #0D1017;
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.loss-text {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.55;
  max-width: 480px;
}

@media (max-width: 1024px) {
  .loss-grid {
    padding-left: 40px;
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SECTION 3: DARK SECTION ("Сначала смотрите сайт — потом решаете")
   ========================================================================== */
.sec3-section {
  position: relative;
  width: 100%;
  background: #0A0D14;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.sec3-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.sec3-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header Text Overlay */
.sec3-text-header {
  position: absolute;
  top: 4.5%;
  left: 7.5%;
  width: 70%;
  z-index: 10;
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
}

.sec3-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.sec3-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem) !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  max-width: 620px !important;
}

/* Card Labels */
.sec3-label {
  position: absolute;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.75rem, 1.15vw, 1rem);
  font-weight: 600;
  color: #FFFFFF;
  z-index: 10;
  pointer-events: auto;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

.sec3-label-card1 {
  top: 36.8%;
  left: 9.4%;
}

.sec3-label-card2 {
  top: 36.8%;
  left: 36.8%;
}

.sec3-label-card3 {
  top: 36.8%;
  left: 71.1%;
}

/* Red Overlay Button */
.sec3-overlay-btn {
  position: absolute;
  top: 69.5%;
  left: 9.6%;
  width: 17.6%;
  height: 7.6%;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(0.65rem, 1.05vw, 0.9375rem);
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.sec3-overlay-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.15);
}

.sec3-bg-traces {
  display: none;
}

.sec3-deco-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.sec3-container {
  position: relative;
  z-index: 2;
}

.sec3-header {
  text-align: left !important;
  max-width: 720px !important;
  margin: 0 0 45px 0 !important;
}

.sec3-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.sec3-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem) !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  max-width: 620px !important;
}

/* Cards Grid Row */
.sec3-cards-row {
  display: grid;
  grid-template-columns: 1fr auto 1.4fr auto 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
}

.sec3-card {
  background: rgba(18, 22, 33, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 280px;
}

.sec3-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.sec3-card-header {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 14px;
  padding-left: 2px;
}

.sec3-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sec3-card-body-centered {
  align-items: center;
  justify-content: center;
}

/* Window Mockups */
.sec3-window-mockup {
  width: 100%;
  background: #1A1F2E;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sec3-win-bar {
  height: 20px;
  background: #232939;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}

.win-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-white {
  background-color: rgba(255, 255, 255, 0.4);
}

/* Screen 1 (Card 1) — white chat area */
.sec3-screen-1 {
  background: #C8CCD4;
  height: 120px;
}

/* CTA Button Card 1 */
.sec3-cta-btn {
  width: 100%;
  margin-top: 14px;
  background: var(--coral-gradient);
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 16px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 4px 16px rgba(255, 87, 69, 0.4);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.sec3-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 87, 69, 0.55);
  filter: brightness(1.05);
}

/* Screen 2 (Card 2 Layout Wireframe) */
.sec3-screen-2 {
  background: #E8ECF2;
  padding: 10px;
  height: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wf-hero-banner {
  height: 70px;
  background: #D0D6E0;
  border-radius: 3px;
  width: 100%;
}

.wf-main-grid {
  display: flex;
  gap: 8px;
  flex: 1;
}

.wf-hero-box {
  flex: 1;
  background: #D0D6E0;
  border-radius: 3px;
}

.wf-content-box {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 2px;
}

.wf-line {
  background: #BCC4D0;
  height: 6px;
  border-radius: 3px;
}

.wf-line-1 { width: 95%; }
.wf-line-2 { width: 80%; }
.wf-line-3 { width: 65%; }

.wf-footer-grid {
  display: flex;
  gap: 8px;
  height: 32px;
}

.wf-foot-box {
  flex: 1;
  background: #D0D6E0;
  border-radius: 3px;
}

/* Connecting Arrows */
.sec3-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* Target Indicator Card 3 */
.sec3-target-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.ring-outer {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 87, 69, 0.08);
  border: 1px solid rgba(255, 87, 69, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-mid {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 87, 69, 0.18);
  border: 1px solid rgba(255, 87, 69, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.target-core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FF7A66 0%, #FF3B2D 70%, #D92B1D 100%);
  box-shadow: 0 0 24px rgba(255, 87, 69, 0.85), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  animation: sec3TargetPulse 3s infinite ease-in-out;
}

@keyframes sec3TargetPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 24px rgba(255, 87, 69, 0.85), inset 0 2px 4px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 36px rgba(255, 87, 69, 1), inset 0 2px 4px rgba(255, 255, 255, 0.7);
  }
}

/* Responsive Media Queries for Section 3 */
@media (max-width: 1024px) {
  .sec3-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

  .sec3-cards-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sec3-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .sec3-card {
    min-height: auto;
  }

}

/* ==========================================================================
   SECTION 4: DARK SECTION ("Как это работает")
   ========================================================================== */
.how-section {
  position: relative;
  width: 100%;
  background: #0A0D14;
  padding: 45px 0 65px;
  overflow: hidden;
  color: var(--text-white);
}

.how-title {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.how-flow-container {
  position: relative;
  width: 100%;
  min-height: 330px;
  margin-top: 10px;
}

.how-svg-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.how-steps-layout {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  z-index: 2;
}

.how-step-node {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.25s ease;
}

.how-step-node:hover {
  transform: translateY(-2px);
}

.how-num {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 0.85;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}

.how-text {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  padding-top: 4px;
}

/* Step 4 Special Styling (Coral / Orange Accent) */
.how-step-node.step-4 {
  align-items: center;
  gap: 8px;
}

.how-num-coral {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  font-weight: 800;
  color: #FF5745;
}

.how-text-coral {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  font-weight: 700;
  color: #FF5745;
  letter-spacing: -0.01em;
}

/* Desktop Node Positions - Full Width Distribution */
.how-step-node.step-1 {
  left: 0;
  top: 0;
}

.how-step-node.step-2 {
  left: 41%;
  top: 0;
}

.how-step-node.step-3 {
  left: 80%;
  top: 4px;
}

.how-step-node.step-4 {
  left: 80%;
  top: 114px;
}

.how-step-node.step-5 {
  left: 37%;
  top: 292px;
}

.how-step-node.step-6 {
  left: 80%;
  top: 260px;
}

/* ==========================================================================
   SUBTLE ANIMATED CIRCUIT GLOW FOR SECTION 4
   ========================================================================== */
@keyframes pathGlowFlow {
  0% {
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 6px rgba(139, 92, 246, 0.3));
  }
  50% {
    stroke-opacity: 1;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.7)) drop-shadow(0 0 16px rgba(255, 87, 69, 0.5));
  }
  100% {
    stroke-opacity: 0.8;
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 6px rgba(139, 92, 246, 0.3));
  }
}

@keyframes nodePulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
}

.how-svg-flow path {
  animation: pathGlowFlow 4s ease-in-out infinite;
}

.how-svg-flow circle {
  transform-origin: center;
  transform-box: fill-box;
  animation: nodePulseGlow 3s ease-in-out infinite;
}

.how-svg-flow circle:nth-of-type(1) { animation-delay: 0s; }
.how-svg-flow circle:nth-of-type(2) { animation-delay: 0.6s; }
.how-svg-flow circle:nth-of-type(3) { animation-delay: 1.2s; }
.how-svg-flow circle:nth-of-type(4) { animation-delay: 1.8s; }

.how-svg-flow polygon {
  transform-origin: center;
  transform-box: fill-box;
  animation: nodePulseGlow 3s ease-in-out infinite;
  animation-delay: 2.4s;
}

/* Mobile & Tablet Responsive Layout */
@media (max-width: 992px) {
  .how-section {
    padding: 60px 0 80px;
  }

  .how-title {
    margin-bottom: 36px;
  }

  .how-flow-container {
    min-height: auto;
  }

  .how-svg-flow {
    display: none;
  }

  .how-steps-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    min-height: auto;
  }

  .how-step-node {
    position: static;
  }

  .how-step-node.step-4 {
    grid-column: span 2;
    padding: 12px 20px;
    background: rgba(255, 87, 69, 0.08);
    border: 1px dashed rgba(255, 87, 69, 0.4);
    border-radius: 10px;
    justify-content: center;
    margin: 8px 0;
  }
}

@media (max-width: 640px) {
  .how-steps-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .how-step-node.step-4 {
    grid-column: span 1;
  }
}

/* ==========================================================================
   SECTION 5: LIGHT SECTION ("Что входит в сайт")
   ========================================================================== */
.features-section {
  position: relative;
  background-color: #F4F5F8;
  color: var(--text-dark);
  padding: 95px 0 105px;
  overflow: hidden;
}

.features-header-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.features-title {
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-dark) !important;
}

.features-subtitle {
  font-size: 1.25rem !important;
  font-weight: 500;
  margin-top: 14px;
  color: #4A5568 !important;
}

.features-schematic-deco {
  position: absolute;
  top: 10px;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.feature-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
}

.feature-num {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: 2.875rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 0.85;
  letter-spacing: -0.025em;
}

.feature-desc {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1A202C;
  line-height: 1.38;
  padding-top: 4px;
}

/* Gradient Bottom Accent Lines */
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.feature-card.accent-blue::after {
  background: linear-gradient(90deg, #2563EB 0%, #3B82F6 100%);
}

.feature-card.accent-blue-purple::after {
  background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
}

.feature-card.accent-purple::after {
  background: linear-gradient(90deg, #8B5CF6 0%, #C084FC 100%);
}

.feature-card.accent-coral::after {
  background: linear-gradient(90deg, #FF6B50 0%, #FF3B2D 100%);
}

/* ==========================================================================
   SECTION 6: DARK SECTION ("Ведение сайта") - FULL WIDTH BALANCED SPLIT
   ========================================================================== */
.maintenance-section {
  padding: 85px 0 40px;
  background: #0A0D14;
  color: #FFFFFF;
}

.portfolio-section {
  padding: 55px 0 100px;
  background: var(--bg-dark-primary);
}

.maintenance-master-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 56px;
  align-items: center;
}

.m-left-box {
  display: flex;
  flex-direction: column;
}

.maintenance-title {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 12px;
}

.maintenance-price-tag {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(1.85rem, 2.5vw, 2.5rem);
  font-weight: 800;
  color: #387BFF;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}

.m-sub-price {
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  color: #387BFF;
  display: block;
  margin-top: 4px;
}

.maintenance-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  font-weight: 400;
  max-width: 380px;
}

.m-right-box {
  width: 100%;
}

.m-services-columns {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 36px;
  align-items: stretch;
}

.m-col {
  display: flex;
  flex-direction: column;
}

.m-col-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.m-col-title.blue {
  color: #387BFF;
}

.m-col-title.orange {
  color: #FF5745;
}

.maintenance-divider {
  width: 2px;
  background: linear-gradient(180deg, #7C3AED 0%, #387BFF 100%);
  border-radius: 2px;
  height: 100%;
  min-height: 190px;
  box-shadow: 0 0 14px rgba(124, 58, 237, 0.45);
}

.m-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-list li {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.45;
}

/* ==========================================================================
   SECTION 7: DARK SECTION ("Примеры завершённых проектов")
   ========================================================================== */
.portfolio-section {
  padding: 55px 0 100px;
  background: var(--bg-dark-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

.portfolio-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.portfolio-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.portfolio-img-box {
  width: 100%;
  aspect-ratio: 16 / 9.8;
  background: #111522;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.02);
}

.portfolio-content {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.portfolio-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-white);
  margin-bottom: 6px;
}

.portfolio-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #387BFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
  width: fit-content;
}

.portfolio-link:hover {
  color: #60A5FA;
  gap: 9px;
}

/* ==========================================================================
   SECTION 8: DARK SECTION ("Демо-концепты для других направлений")
   ========================================================================== */
.demos-section {
  padding: 80px 0 100px;
  background: var(--bg-dark-primary);
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.demo-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.demo-card:hover {
  transform: translateY(-4px);
  border-color: var(--coral-primary);
}

.demo-card-title {
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
}

.demo-img-box {
  width: 100%;
  height: 180px;
  background: #181D29;
  position: relative;
}

.demo-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--coral-primary);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 9: ELECTRIC BLUE SECTION ("Дополнительные услуги") - MICRO BLOCKS
   ========================================================================== */
.services-section {
  background: linear-gradient(135deg, #1E56FF 0%, #003ADB 100%);
  color: #FFFFFF;
  padding: 85px 0 95px;
  position: relative;
  overflow: hidden;
}

.services-schematic-deco {
  position: absolute;
  top: 15px;
  right: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.85;
}

.services-header {
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.services-title {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 10px;
}

.services-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.services-highlight {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 820px;
  line-height: 1.45;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
}

.services-micro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.micro-block {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.micro-block:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.micro-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 8px #FFFFFF;
  flex-shrink: 0;
}

.micro-text {
  font-family: 'Manrope', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* ==========================================================================
   SECTION 10: LIGHT CONTACTS & DARK FOOTER BAR - FOUNDER CARDS CONCEPT
   ========================================================================== */
.contacts-section {
  background-color: #F4F5F8;
  color: var(--text-dark);
  padding: 90px 0 100px;
}

.contacts-header-wrap {
  margin-bottom: 40px;
}

.contacts-founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
}

.founder-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.founder-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #387BFF;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}

.founder-name {
  font-family: 'Manrope', 'Montserrat', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.founder-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.founder-link-btn {
  background: #F4F5F8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.2s ease;
}

.founder-link-btn:hover {
  background: #FFFFFF;
  border-color: rgba(56, 123, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.footer-bar {
  background: #07090E;
  color: var(--text-muted-dark);
  padding: 24px 0;
  text-align: center;
  font-size: 0.9375rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   MODAL POPUP ("Обсудить проект")
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-muted-dark);
  font-size: 1.5rem;
  line-height: 1;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.9375rem;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-dark-strong);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text-white);
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--coral-primary);
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive queries */
@media (max-width: 992px) {
  .hero-grid,
  .loss-grid {
    grid-template-columns: 1fr;
  }

  .decision-flow-grid {
    grid-template-columns: 1fr;
  }

  .steps-timeline,
  .features-grid,
  .demos-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .maintenance-master-grid,
  .maintenance-columns {
    grid-template-columns: 1fr;
  }

  .maintenance-divider {
    display: none;
  }

}

@media (max-width: 640px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .price-badge {
    font-size: 1.75rem;
  }

  .steps-timeline,
  .features-grid,
  .portfolio-grid,
  .demos-grid,
  .services-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .sec3-label-card2 {
    left: 36.8% !important;
    width: auto !important;
    height: auto !important;
  }

  .sec3-label-card3 {
    left: auto;
    right: 6%;
  }

  .m-services-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .maintenance-divider {
    display: none;
  }

  .services-micro-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .micro-block {
    width: 100%;
    max-width: 100%;
  }

  .micro-text {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}


/* ==========================================================================
   SECTION 3: PURE HTML/CSS INTERACTIVE CARDS & FLOW SCHEME
   ========================================================================== */
.sec3-section {
  position: relative;
  width: 100%;
  background: #060910 !important;
  padding: 80px 0 100px 0 !important;
  color: #FFFFFF !important;
  overflow: hidden;
}

.sec3-header {
  text-align: left !important;
  max-width: 720px !important;
  margin: 0 0 45px 0 !important;
}

.sec3-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.sec3-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem) !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  max-width: 620px !important;
}





.sec3-flow-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.flow-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.flow-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.placeholder-box {
  background: rgba(10, 14, 22, 0.8);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-size: 0.875rem;
  font-weight: 500;
}







@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.placeholder-wireframe {
  width: 85%;
  height: 80%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wf-hero-skeleton {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.wf-grid-skeleton {
  display: flex;
  gap: 10px;
  flex: 1;
}

.wf-grid-skeleton div {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.card-decision {
  padding-bottom: 24px;
}

.decision-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: 0;
}

.pulse-decision-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 90, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 30px rgba(255, 90, 95, 0.4);
}

.pulse-inner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FF5A5F;
  box-shadow: 0 0 20px #FF5A5F;
}


/* ==========================================================================
   SECTION 3: CARDS ROW LAYOUT (FORCED 3 IN A ROW ON DESKTOP v=1784989279)
   ========================================================================== */
.sec3-section {
  position: relative !important;
  width: 100% !important;
  background: #060910 !important;
  padding: 80px 0 100px 0 !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

.sec3-header {
  text-align: left !important;
  max-width: 720px !important;
  margin: 0 0 45px 0 !important;
}

.sec3-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2rem, 3.8vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  color: #FFFFFF !important;
  margin-bottom: 16px !important;
  text-align: left !important;
}

.sec3-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(0.95rem, 1.3vw, 1.125rem) !important;
  color: #94A3B8 !important;
  line-height: 1.6 !important;
  text-align: left !important;
  max-width: 620px !important;
}

/* DESKTOP LAYOUT: 3 CARDS IN A HORIZONTAL ROW */
.sec3-flow-container {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
}

.sec3-flow-card {
  flex: 1 1 0 !important;
  width: 32% !important;
  min-width: 220px !important;
  background: rgba(18, 24, 38, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  padding: 20px 16px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  transition: transform 0.3s, border-color 0.3s !important;
}

.sec3-flow-card:hover {
  border-color: rgba(255, 255, 255, 0.25) !important;
  transform: translateY(-4px) !important;
}

.flow-card-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
}

.flow-card-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

.browser-dots {
  display: flex !important;
  gap: 6px !important;
}

.browser-dots span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.25) !important;
}

.placeholder-box {
  background: rgba(10, 14, 22, 0.8) !important;
  border: 1px dashed rgba(255, 255, 255, 0.18) !important;
  border-radius: 12px !important;
  height: 160px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  margin-bottom: 14px !important;
  flex: 1 !important;
}

.placeholder-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  color: #64748B !important;
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  text-align: center !important;
  padding: 8px !important;
}





.flow-arrow {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 2px !important;
  flex-shrink: 0 !important;
}

.flow-arrow svg {
  transform: rotate(-90deg) !important;
  width: 20px !important;
  height: 28px !important;
}

.placeholder-wireframe {
  width: 85% !important;
  height: 80% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.wf-hero-skeleton {
  width: 100% !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
}

.wf-grid-skeleton {
  display: flex !important;
  gap: 8px !important;
  flex: 1 !important;
}

.wf-grid-skeleton div {
  flex: 1 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
}

.decision-body {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 160px !important;
  margin-bottom: 0 !important;
}

.pulse-decision-btn {
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: rgba(255, 90, 95, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  box-shadow: 0 0 30px rgba(255, 90, 95, 0.4) !important;
}

.pulse-inner {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: #FF5A5F !important;
  box-shadow: 0 0 20px #FF5A5F !important;
}

/* MOBILE OVERRIDE ONLY BELOW 768px */
@media (max-width: 768px) {
  .sec3-flow-container {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 540px !important;
  }

  .sec3-flow-card {
    width: 100% !important;
    min-width: auto !important;
  }

  .flow-arrow svg {
    transform: rotate(0deg) !important;
  }
}


/* EXACT HERO CTA BUTTON STYLES FOR CARD 1 */
.flow-card-btn {
  font-family: 'Manrope', 'Inter', sans-serif !important;
  background: linear-gradient(135deg, #FF5745 0%, #FF3546 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.0625rem !important;
  padding: 14px 34px !important;
  border-radius: 9999px !important;
  box-shadow: 0 10px 25px rgba(255, 87, 69, 0.4) !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  margin-top: auto !important;
}

.flow-card-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 28px rgba(255, 87, 69, 0.55) !important;
}


/* ==========================================================================
   MOBILE ONLY BACKGROUND IMAGES (BLOCK 1 & BLOCK 2 - v=1784990743)
   ========================================================================== */
@media (max-width: 768px) {
  /* Block 1 (Hero) Mobile Image: ChatGPT Image 25 июл. 2026 г., 17_05_05.png */
  .hero-img-bg {
    background-color: #060910 !important;
    background-image: linear-gradient(180deg, rgba(10, 13, 20, 0.05) 0%, rgba(6, 9, 16, 0.65) 50%, #060910 95%), url('../hero-new-mobile_1784984784.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    min-height: 680px !important;
    padding: 50px 0 160px 0 !important;
    margin-bottom: 0 !important;
  }

  /* Block 2 Mobile Image: ChatGPT Image 25 июл. 2026 г., 17_25_12.png */
  .section-loss-bg {
    background-image: url('../block2-mobile-cropped_1785001157.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    padding: 60px 0 80px 0 !important;
  }
}


/* ==========================================================================
   SECTION 4: MOBILE VERTICAL TIMELINE SCHEME (v=1784991075)
   ========================================================================== */
@media (max-width: 992px) {
  .how-flow-container {
    position: relative !important;
    padding-left: 10px !important;
  }

  .how-steps-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    position: relative !important;
    padding-left: 30px !important;
  }

  /* Vertical Glowing Line Scheme */
  .how-steps-layout::before {
    content: '' !important;
    position: absolute !important;
    top: 15px !important;
    bottom: 25px !important;
    left: 9px !important;
    width: 3px !important;
    background: linear-gradient(180deg, #3B82F6 0%, #8B5CF6 35%, #C084FC 65%, #387BFF 100%) !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6) !important;
    border-radius: 2px !important;
    z-index: 1 !important;
  }

  .how-step-node {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    z-index: 2 !important;
  }

  /* Glowing Node Dot at each step */
  .how-step-node::before {
    content: '' !important;
    position: absolute !important;
    left: -26px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #8B5CF6 !important;
    border: 2px solid #0A0D14 !important;
    box-shadow: 0 0 10px #8B5CF6, 0 0 18px rgba(139, 92, 246, 0.8) !important;
    z-index: 3 !important;
  }

  .how-step-node.step-4 {
    grid-column: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    justify-content: flex-start !important;
    margin: 0 !important;
  }

  .how-num {
    font-size: 2.2rem !important;
    min-width: 38px !important;
  }

  .how-text {
    font-size: 1rem !important;
  }
}


/* ==========================================================================
   SECTION 4: MOBILE STRAIGHT VERTICAL COLUMN SCHEME (v=1785008816)
   ========================================================================== */
@media (max-width: 992px) {
  .how-flow-container {
    position: relative !important;
    padding-left: 0 !important;
    width: 100% !important;
  }

  .how-steps-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 28px !important;
    position: relative !important;
    padding-left: 54px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Reset all desktop offsets to force a perfectly straight vertical column */
  .how-step-node,
  .how-step-node.step-1,
  .how-step-node.step-2,
  .how-step-node.step-3,
  .how-step-node.step-4,
  .how-step-node.step-5,
  .how-step-node.step-6 {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    justify-content: flex-start !important;
    z-index: 2 !important;
  }

  /* Perfectly Straight Vertical Line Scheme (starts cleanly inside top circle) */
  .how-steps-layout::before {
    content: '' !important;
    position: absolute !important;
    top: 24px !important;
    bottom: 24px !important;
    left: 11px !important;
    width: 3px !important;
    background: linear-gradient(180deg, #3B82F6 0%, #8B5CF6 35%, #C084FC 65%, #387BFF 100%) !important;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.6) !important;
    border-radius: 2px !important;
    z-index: 1 !important;
  }

  /* Perfectly Straight Node Dots */
  .how-step-node::before {
    content: '' !important;
    position: absolute !important;
    left: -48px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 13px !important;
    height: 13px !important;
    border-radius: 50% !important;
    background: #8B5CF6 !important;
    border: 2px solid #0A0D14 !important;
    box-shadow: 0 0 10px #8B5CF6, 0 0 18px rgba(139, 92, 246, 0.8) !important;
    z-index: 3 !important;
  }

  .how-num {
    font-size: 2.2rem !important;
    min-width: 40px !important;
  }

  .how-text {
    font-size: 1rem !important;
  }
}


/* SECTION 5 MOBILE TOP SPACING ADJUSTMENT (v=1784991437) */
@media (max-width: 768px) {
  .features-section {
    padding-top: 135px !important;
  }

  .features-header-wrap {
    margin-top: 25px !important;
  }
}


/* ==========================================================================
   GLOWING SECTION DIVIDER (BETWEEN MAINTENANCE & PORTFOLIO - v=1784991536)
   ========================================================================== */
.section-glowing-divider {
  position: relative !important;
  width: 100% !important;
  background: #060910 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 20px !important;
  overflow: hidden !important;
  z-index: 5 !important;
}

.divider-line-left,
.divider-line-right {
  flex: 1 !important;
  height: 1px !important;
  max-width: 450px !important;
}

.divider-line-left {
  background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.5) 50%, rgba(139, 92, 246, 0.8) 100%) !important;
}

.divider-line-right {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.8) 0%, rgba(255, 90, 95, 0.5) 50%, transparent 100%) !important;
}

.divider-center-badge {
  width: 24px !important;
  height: 24px !important;
  border-radius: 50% !important;
  background: rgba(139, 92, 246, 0.15) !important;
  border: 1px solid rgba(139, 92, 246, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 16px !important;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.5) !important;
  flex-shrink: 0 !important;
}

.divider-dot-inner {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #8B5CF6 !important;
  box-shadow: 0 0 8px #8B5CF6 !important;
}


/* ==========================================================================
   PORTFOLIO SECTION ELEGANT CONTRAST & TRANSITION (v=1784991630)
   ========================================================================== */
.section-glowing-divider {
  display: none !important;
}

#portfolio, .portfolio-section {
  background: #0B0E17 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 90px 0 100px 0 !important;
  position: relative !important;
}

.portfolio-tag-pill {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #38BDF8;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 20px;
}


/* ==========================================================================
   PORTFOLIO SECTION CLEAN SEPARATOR & SPACING (v=1784991686)
   ========================================================================== */
.section-glowing-divider, .portfolio-tag-pill {
  display: none !important;
}

#portfolio, .portfolio-section {
  background: #060910 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding-top: 120px !important;
  position: relative !important;
}

#portfolio::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80% !important;
  max-width: 900px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 90, 95, 0.4) 50%, transparent 100%) !important;
}


/* ==========================================================================
   PORTFOLIO SECTION LIGHT CONTRAST THEME (v=1784991754)
   ========================================================================== */
.section-glowing-divider, .portfolio-tag-pill {
  display: none !important;
}

#portfolio, .portfolio-section {
  background: #F4F5F8 !important;
  color: #0D1017 !important;
  padding: 90px 0 100px 0 !important;
  position: relative !important;
  border: none !important;
}

#portfolio::before {
  display: none !important;
}

#portfolio .section-title,
#portfolio .portfolio-title,
#portfolio h2 {
  color: #0D1017 !important;
}

#portfolio .section-subtitle,
#portfolio .portfolio-subtitle,
#portfolio p {
  color: #4A5568 !important;
}

#portfolio .portfolio-card,
#portfolio .project-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  color: #0D1017 !important;
}

#portfolio .portfolio-card h3,
#portfolio .project-card h3,
#portfolio .portfolio-card-title {
  color: #0D1017 !important;
}

#portfolio .portfolio-card p,
#portfolio .project-card p {
  color: #4A5568 !important;
}


/* ==========================================================================
   SECTION 6 LIGHT & SECTION 7 DARK CONTRAST THEME (v=1784991847)
   ========================================================================== */
.section-glowing-divider, .portfolio-tag-pill {
  display: none !important;
}

/* SECTION 6: ВЕДЕНИЕ САЙТА - LIGHT THEME */
#maintenance-section, .maintenance-section {
  background: #F4F5F8 !important;
  color: #0D1017 !important;
  padding: 90px 0 100px 0 !important;
  position: relative !important;
  border: none !important;
}

#maintenance-section .section-title,
#maintenance-section .maintenance-title,
#maintenance-section h2,
#maintenance-section h3 {
  color: #0D1017 !important;
}

#maintenance-section .section-subtitle,
#maintenance-section .maintenance-subtitle,
#maintenance-section p,
#maintenance-section li {
  color: #4A5568 !important;
}

#maintenance-section .maintenance-card,
#maintenance-section .maintenance-column,
#maintenance-section .maintenance-box {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  color: #0D1017 !important;
}

/* SECTION 7: ЗАВЕРШЕННЫЕ ПРОЕКТЫ - DARK THEME */
#portfolio, .portfolio-section {
  background: #060910 !important;
  color: #FFFFFF !important;
  padding: 95px 0 105px 0 !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#portfolio .section-title,
#portfolio .portfolio-title,
#portfolio h2 {
  color: #FFFFFF !important;
}

#portfolio .section-subtitle,
#portfolio .portfolio-subtitle,
#portfolio p {
  color: #94A3B8 !important;
}

#portfolio .portfolio-card,
#portfolio .project-card {
  background: rgba(18, 24, 38, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
  color: #FFFFFF !important;
}

#portfolio .portfolio-card h3,
#portfolio .project-card h3,
#portfolio .portfolio-card-title {
  color: #FFFFFF !important;
}

#portfolio .portfolio-card p,
#portfolio .project-card p {
  color: #94A3B8 !important;
}


/* ==========================================================================
   SECTION 6 LIGHT & SECTION 7 DARK CONTRAST THEME (v=1784991929)
   ========================================================================== */
.section-glowing-divider, .portfolio-tag-pill {
  display: none !important;
}

/* SECTION 6: ВЕДЕНИЕ САЙТА - LIGHT THEME (FORCED READABLE DARK TEXT) */
#maintenance-section, .maintenance-section {
  background: #F4F5F8 !important;
  color: #0D1017 !important;
  padding: 90px 0 100px 0 !important;
  position: relative !important;
  border: none !important;
}

#maintenance-section *,
.maintenance-section * {
  color: #1E293B !important;
}

#maintenance-section h1,
#maintenance-section h2,
#maintenance-section h3,
#maintenance-section h4,
#maintenance-section .maintenance-title,
#maintenance-section .maintenance-price-tag,
#maintenance-section .m-col-title,
#maintenance-section .m-card-title,
#maintenance-section strong,
#maintenance-section b,
.maintenance-section h1,
.maintenance-section h2,
.maintenance-section h3,
.maintenance-section h4,
.maintenance-section .maintenance-title,
.maintenance-section .maintenance-price-tag {
  color: #0D1017 !important;
}

#maintenance-section p,
#maintenance-section span.maintenance-desc,
#maintenance-section li,
#maintenance-section div,
.maintenance-section p,
.maintenance-section li {
  color: #4A5568 !important;
}

#maintenance-section .maintenance-card,
#maintenance-section .maintenance-column,
#maintenance-section .maintenance-box,
#maintenance-section .m-column,
.maintenance-section .m-column {
  background: #FFFFFF !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* SECTION 7: ЗАВЕРШЕННЫЕ ПРОЕКТЫ - DARK THEME */
#portfolio, .portfolio-section {
  background: #060910 !important;
  color: #FFFFFF !important;
  padding: 95px 0 105px 0 !important;
  position: relative !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

#portfolio *, .portfolio-section * {
  color: #FFFFFF !important;
}

#portfolio p, #portfolio span, #portfolio .portfolio-subtitle {
  color: #94A3B8 !important;
}

#portfolio .portfolio-card,
#portfolio .project-card {
  background: rgba(18, 24, 38, 0.85) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}


/* ==========================================================================
   MOVE SECTION 6 HIGHER (CLOSER TO SECTION 5 - v=1784991988)
   ========================================================================== */
.features-section {
  padding-bottom: 40px !important;
}

#maintenance-section, .maintenance-section {
  padding-top: 45px !important;
}

@media (max-width: 768px) {
  .features-section {
    padding-bottom: 30px !important;
  }

  #maintenance-section, .maintenance-section {
    padding-top: 35px !important;
  }
}


/* ==========================================================================
   MOVE SECTION 8 (DEMOS) HIGHER CLOSER TO SECTION 7 (PORTFOLIO) (v=1784992228)
   ========================================================================== */
#portfolio, .portfolio-section {
  padding-bottom: 40px !important;
}

#demos-grid, .demos-section {
  padding-top: 35px !important;
}

@media (max-width: 768px) {
  #portfolio, .portfolio-section {
    padding-bottom: 30px !important;
  }

  #demos-grid, .demos-section {
    padding-top: 25px !important;
  }
}


/* ==========================================================================
   MOVE PORTFOLIO SECTION HEADING HIGHER ON MOBILE (v=1784992373)
   ========================================================================== */
@media (max-width: 768px) {
  #portfolio, .portfolio-section {
    padding-top: 45px !important;
  }
}

.modal-overlay, .modal, #modal-overlay { display: none !important; opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }


/* ==========================================================================
   PERMANENT FIXED HEADER NAVBAR FOR PC & MOBILE (v=1784993511)
   ========================================================================== */
.header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(10, 13, 20, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body {
  padding-top: 75px !important;
}



/* =====================================================================
   SEC6 MOBILE ACCORDION - FINAL (v=1784995156)
   ===================================================================== */
.sec6-mobile-reference-container {
  display: none;
}

@media (max-width: 768px) {
  .maintenance-section .maintenance-master-grid { display: none !important; }

  .sec6-mobile-reference-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    box-sizing: border-box;
  }

  .m-ref-header-card {
    background: #fff;
    border-radius: 24px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    border: 1px solid #E2E8F0;
    box-sizing: border-box;
  }

  .m-ref-top-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }

  .m-ref-icon-box {
    width: 68px; height: 68px;
    background: linear-gradient(135deg,#FF4500,#FF2500);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px rgba(255,69,0,.35);
    flex-shrink: 0;
  }

  .m-ref-title-box { display: flex; flex-direction: column; gap: 6px; }

  .m-ref-title {
    font-size: 1.65rem; font-weight: 800; color: #0F172A;
    margin: 0; line-height: 1.2;
    font-family: 'Manrope', sans-serif;
  }

  .m-ref-price {
    font-size: 1.8rem; font-weight: 800; color: #0F172A;
    font-family: 'Manrope', sans-serif;
  }

  .m-ref-per { font-size: 1.05rem; font-weight: 500; color: #64748B; }

  .m-ref-pills-row {
    display: flex; align-items: center; gap: 12px;
    padding-top: 14px; border-top: 1px solid #F1F5F9;
    font-size: 0.95rem; color: #334155; font-weight: 600;
  }

  .m-ref-pill { display: flex; align-items: center; gap: 8px; }

  .pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #FF4500; display: inline-block; flex-shrink: 0;
  }

  .m-ref-divider { color: #CBD5E1; }

  /* Accordion card */
  .m-ref-accordion {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
  }

  /* Header - must be button for reliable mobile click */
  .m-ref-acc-header.light {
    width: 100%;
    background: #F8FAFC;
    color: #0F172A;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 22px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800; font-size: 1.22rem;
    cursor: pointer;
    border: none; outline: none;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
  }

  .m-ref-chevron {
    transition: transform 0.35s ease;
    flex-shrink: 0;
  }

  .m-ref-accordion.open .m-ref-chevron {
    transform: rotate(180deg);
  }

  /* Body wrapper - JS controls max-height via inline style */
  .m-ref-acc-wrapper {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, opacity 0.3s ease;
  }

  .m-ref-acc-body { display: flex; flex-direction: column; }

  .m-ref-item {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid #F1F5F9;
    font-size: 1.05rem; color: #1E293B; font-weight: 600;
    line-height: 1.4;
  }

  .m-ref-item:last-child { border-bottom: none; }

  .strict-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #0F172A; display: inline-block; flex-shrink: 0;
  }

  .strict-dot.muted { background: #94A3B8; }
}


/* ==========================================================================
   SECTION 9: UNIFIED FULL-WIDTH ACCORDION ROWS (v=1785007918)
   ========================================================================== */
.services-micro-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  width: 100% !important;
  margin-top: 28px !important;
  box-sizing: border-box !important;
}

.micro-block {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 18px !important;
  padding: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  user-select: none !important;
  overflow: hidden !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.micro-block:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.30) !important;
}

.micro-block.open {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  border-radius: 18px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.micro-header {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 16px !important;
  padding: 18px 24px !important;
  box-sizing: border-box !important;
  background: transparent !important;
}

.micro-title-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.micro-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6) !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}

.micro-text {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: #FFFFFF !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.micro-chevron {
  display: block !important;
  stroke: #FFFFFF !important;
  transition: transform 0.35s ease !important;
  flex-shrink: 0 !important;
  opacity: 0.9 !important;
}

.micro-block.open .micro-chevron {
  transform: rotate(180deg) !important;
  opacity: 1 !important;
}

.micro-expand-wrapper {
  display: block !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden !important;
  transition: max-height 0.38s ease, opacity 0.3s ease !important;
  width: 100% !important;
}

.micro-desc {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.55 !important;
  padding: 0 24px 20px 24px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

.micro-desc-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
  padding-top: 14px !important;
}

@media (max-width: 768px) {
  .micro-block {
    border-radius: 16px !important;
  }

  .micro-block.open {
    border-radius: 16px !important;
  }

  .micro-header {
    padding: 16px 20px !important;
  }

  .micro-text {
    font-size: 0.95rem !important;
  }

  .micro-desc {
    font-size: 0.875rem !important;
    padding: 0 20px 18px 20px !important;
  }
}


/* ==========================================================================
   SECTION 10: PREMIUM ANONYMOUS CONTACT HUB (v=1784997102)
   ========================================================================== */
.contacts-hub-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
  gap: 24px !important;
  margin-top: 36px !important;
}

.contact-hub-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 24px !important;
  padding: 28px 24px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.contact-hub-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07) !important;
}

.hub-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #F1F5F9 !important;
}

.hub-icon-badge {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.hub-icon-badge.bg-telegram {
  background: rgba(37, 99, 235, 0.1) !important;
}

.hub-icon-badge.bg-phone {
  background: rgba(255, 87, 69, 0.1) !important;
}

.hub-card-title-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.hub-card-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  margin: 0 !important;
}

.hub-card-sub {
  font-size: 0.85rem !important;
  color: #64748B !important;
  font-weight: 500 !important;
}

.hub-buttons-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.hub-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 20px !important;
  border-radius: 14px !important;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  color: #0F172A !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.hub-btn:hover {
  background: #0F172A !important;
  color: #FFFFFF !important;
  border-color: #0F172A !important;
}

.hub-btn:hover svg {
  stroke: #FFFFFF !important;
}

.hub-arrow {
  transition: transform 0.25s ease !important;
  color: #94A3B8 !important;
}

.hub-btn:hover .hub-arrow {
  transform: translate(3px, -3px) !important;
  color: #FFFFFF !important;
}

@media (max-width: 768px) {
  .contacts-hub-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .contact-hub-card {
    padding: 22px 18px !important;
  }
}


/* ==========================================================================
   SECTION 10: CLEAN ANONYMOUS CONTACTS (ORIGINAL COLORS) (v=1784997231)
   ========================================================================== */
.contacts-grid-clean {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  margin-top: 32px !important;
}

.contact-card-clean {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #E2E8F0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.contact-card-label {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #64748B !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.contact-buttons-wrap {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.contact-btn-clean {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 18px !important;
  background: #F1F5F9 !important;
  border-radius: 12px !important;
  color: #0F172A !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.contact-btn-clean:hover {
  background: #E2E8F0 !important;
  transform: translateY(-1px) !important;
}


/* ==========================================================================
   SECTION 10: SINGLE UNIFIED CONTACT CARD (NO DIVISIONS) (v=1784997303)
   ========================================================================== */
.contacts-single-card {
  background: #FFFFFF !important;
  border-radius: 20px !important;
  padding: 24px 28px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #E2E8F0 !important;
  margin-top: 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.contacts-buttons-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
}

.contact-btn-clean {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 20px !important;
  background: #F1F5F9 !important;
  border-radius: 12px !important;
  color: #0F172A !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.contact-btn-clean:hover {
  background: #E2E8F0 !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 768px) {
  .contacts-single-card {
    padding: 20px 18px !important;
  }

  .contacts-buttons-row {
    gap: 10px !important;
  }
}


/* ==========================================================================
   SECTION 10: VERTICAL CONTACT COLUMN (v=1784997531)
   ========================================================================== */
.contacts-single-card {
  background: #FFFFFF !important;
  border-radius: 24px !important;
  padding: 28px !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid #E2E8F0 !important;
  margin-top: 32px !important;
  max-width: 600px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.contacts-buttons-column {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.contact-btn-column {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 22px !important;
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px !important;
  color: #0F172A !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: all 0.2s ease !important;
}

.contact-btn-column:hover {
  background: #F1F5F9 !important;
  border-color: #CBD5E1 !important;
  transform: translateY(-1px) !important;
}

.contact-arrow {
  transition: transform 0.2s ease !important;
}

.contact-btn-column:hover .contact-arrow {
  transform: translate(3px, -3px) !important;
  stroke: #0F172A !important;
}

@media (max-width: 768px) {
  .contacts-single-card {
    padding: 20px 16px !important;
    border-radius: 20px !important;
  }

  .contact-btn-column {
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
  }
}


/* ==========================================================================
   SECTION 10: COMPACT CLASSIC CONTACT BAR (v=1784998148)
   ========================================================================== */
.compact-contacts-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px !important;
  padding: 18px 28px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  margin-top: 32px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 20px !important;
}

.compact-contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.phone-icon-circle {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #F1F5F9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.compact-phones {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.phone-link {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: #0F172A !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.phone-link:hover {
  color: #FF5745 !important;
}

.phone-sep {
  color: #CBD5E1 !important;
  font-weight: 300 !important;
}

.compact-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.social-icon-btn {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

.social-icon-btn:hover {
  background: #E2E8F0 !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 768px) {
  .compact-contacts-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 20px 18px !important;
    gap: 16px !important;
  }
  
  .compact-phones {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  .phone-sep {
    display: none !important;
  }
}


/* ==========================================================================
   PC HERO INTERACTIVE & AMBIENT ANIMATIONS (v=1784998765)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-img-bg {
    perspective: 1000px !important;
    will-change: background-position !important;
    transition: background-position 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .hero-ambient-glows {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: 1 !important;
  }

  .hero-orb {
    position: absolute !important;
    border-radius: 50% !important;
    filter: blur(65px) !important;
    opacity: 0.4 !important;
    will-change: transform, opacity !important;
  }

  .hero-orb.orb-1 {
    top: 10% !important;
    right: 12% !important;
    width: 380px !important;
    height: 380px !important;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45) 0%, rgba(139, 92, 246, 0.2) 70%, transparent 100%) !important;
    animation: floatOrb1 14s ease-in-out infinite alternate !important;
  }

  .hero-orb.orb-2 {
    bottom: 12% !important;
    right: 32% !important;
    width: 300px !important;
    height: 300px !important;
    background: radial-gradient(circle, rgba(255, 87, 69, 0.4) 0%, rgba(139, 92, 246, 0.15) 70%, transparent 100%) !important;
    animation: floatOrb2 18s ease-in-out infinite alternate !important;
  }

  .hero-orb.orb-3 {
    top: 35% !important;
    right: 5% !important;
    width: 240px !important;
    height: 240px !important;
    background: radial-gradient(circle, rgba(56, 123, 255, 0.35) 0%, rgba(192, 132, 252, 0.2) 70%, transparent 100%) !important;
    animation: floatOrb3 11s ease-in-out infinite alternate !important;
  }

  .hero-img-bg-content {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
  }
}

@keyframes floatOrb1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.35; }
  50% { transform: translate(-30px, 25px) scale(1.12); opacity: 0.55; }
  100% { transform: translate(25px, -20px) scale(0.95); opacity: 0.4; }
}

@keyframes floatOrb2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(35px, -30px) scale(1.15); opacity: 0.6; }
  100% { transform: translate(-20px, 25px) scale(0.9); opacity: 0.35; }
}

@keyframes floatOrb3 {
  0% { transform: translate(0, 0) scale(0.9); opacity: 0.3; }
  50% { transform: translate(-25px, -25px) scale(1.1); opacity: 0.5; }
  100% { transform: translate(20px, 15px) scale(1); opacity: 0.35; }
}


/* ==========================================================================
   PC HERO TEXT-ONLY ANIMATION (v=1784998883)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-img-bg-content {
    perspective: 1000px !important;
    animation: floatHeroText 6s ease-in-out infinite alternate !important;
    will-change: transform !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
}

@keyframes floatHeroText {
  0% {
    transform: translate3d(0, 0px, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(0, 4px, 0);
  }
}


/* ==========================================================================
   PC HERO HOVER-ONLY TEXT ANIMATION (v=1784998983)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-img-bg-content {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
  }

  .hero-img-bg-content:hover {
    transform: translateY(-4px) scale(1.012) !important;
  }
}


/* ==========================================================================
   PC HERO STRICT HOVER-ONLY TEXT ANIMATION (ZERO SELF MOVEMENT) (v=1784999629)
   ========================================================================== */
@media (min-width: 769px) {
  .hero-img-bg-content {
    animation: none !important; /* ABSOLUTELY ZERO SELF MOVEMENT */
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform !important;
  }

  .hero-img-bg-content:hover {
    transform: translateY(-5px) scale(1.015) !important;
  }
}


/* ==========================================================================
   SECTION 2 POSITION & TYPOGRAPHY FIXES (v=1785000762)
   ========================================================================== */
.section-loss-bg {
  padding: 60px 0 95px 0 !important;
}

.loss-grid {
  display: grid !important;
  grid-template-columns: 1.25fr 0.75fr !important;
  gap: 40px !important;
  align-items: center !important;
}

.loss-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
}

.loss-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  color: #334155 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .section-loss-bg {
    padding: 50px 0 70px 0 !important;
  }

  .loss-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .loss-title {
    font-size: 1.65rem !important;
  }
}


/* ==========================================================================
   FIX BLOCK 2 BACKGROUND IMAGE ASPECT RATIO (v=1785000819)
   ========================================================================== */
.section-loss-bg {
  background-size: cover !important;
  background-position: center center !important;
}


/* ==========================================================================
   STRICT DEVICE-ISOLATED SECTION 2 STYLES (v=1785000974)
   ========================================================================== */

/* DESKTOP ONLY (PC) */
@media (min-width: 769px) {
  .section-loss-bg {
    background-image: url('../block2_tech_pc_1785000436.webp') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    padding: 70px 0 95px 0 !important;
  }

  .loss-grid {
    display: grid !important;
    grid-template-columns: 1.25fr 0.75fr !important;
    gap: 40px !important;
    align-items: center !important;
  }

  .loss-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.22 !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
  }

  .loss-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.1rem !important;
    color: #334155 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
}

/* MOBILE ONLY (PHONE) */
@media (max-width: 768px) {
  .section-loss-bg {
    background-image: url('../block2-new-mobile_1784985941.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    min-height: 580px !important;
    padding: 85px 0 105px 0 !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .loss-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    padding: 0 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .loss-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 2.1rem !important; /* MATCHING OTHER MOBILE BLOCKS H2 SIZE */
    font-weight: 800 !important;
    color: #0F172A !important;
    line-height: 1.16 !important;
    margin: 0 !important;
    letter-spacing: -0.025em !important;
  }

  .loss-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.18rem !important; /* MATCHING OTHER MOBILE BLOCKS SUBTITLE SIZE */
    color: #334155 !important;
    line-height: 1.52 !important;
    margin: 0 !important;
    font-weight: 400 !important;
  }
}


/* ==========================================================================
   BLOCK 2 TYPOGRAPHY EXACT MATCH TO "ЧТО ВХОДИТ В САЙТ" (v=1785003069)
   ========================================================================== */
.loss-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  color: var(--text-dark) !important;
  margin: 0 !important;
}

.loss-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #4A5568 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .section-loss-bg {
    padding: 85px 0 100px 0 !important;
  }

  .loss-title {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
  }

  .loss-text {
    font-size: 1.2rem !important;
    line-height: 1.45 !important;
  }
}


/* ==========================================================================
   BLOCK 2 TYPOGRAPHY EXACT MATCH TO "ЧТО ВХОДИТ В САЙТ" (v=1785003162)
   ========================================================================== */
.loss-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  color: var(--text-dark) !important;
  margin: 0 !important;
}

.loss-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 500 !important;
  color: #4A5568 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .section-loss-bg {
    padding: 85px 0 100px 0 !important;
  }

  .loss-title {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
  }

  .loss-text {
    font-size: 1.2rem !important;
    line-height: 1.45 !important;
  }
}

/* ==========================================================================
   INFINITE CONTINUOUS DEMOS MARQUEE CAROUSEL (PC & MOBILE) (v=1785003162)
   ========================================================================== */
.demos-marquee-container:hover .demos-marquee-track { animation-play-state: paused !important; }

.demos-marquee-track .demo-card {
  cursor: pointer !important;
}

@media (min-width: 769px) {
  .demos-marquee-container {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    margin-top: 32px !important;
    padding: 22px 0 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    box-sizing: border-box !important;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.3) 0%, black 2.5%, black 97.5%, rgba(0,0,0,0.3) 100%) !important;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.3) 0%, black 2.5%, black 97.5%, rgba(0,0,0,0.3) 100%) !important;
  }

  .demos-marquee-track {
    display: flex !important;
    gap: 20px !important;
    width: max-content !important;
    /* Animation controlled via JS for wheel scrubbing */
    will-change: transform !important;
  }

  .demos-marquee-track .demo-card {
    width: 270px !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 16px !important;
    padding: 16px !important;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
    box-sizing: border-box !important;
  }

  .demos-marquee-track .demo-card:hover {
    transform: translateY(-3px) scale(1.02) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.1) !important;
  }
}

@media (max-width: 768px) {
  .demos-marquee-container {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    margin-top: 20px !important;
    overflow: hidden !important;
    position: relative !important;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.3) 0%, black 2.5%, black 97.5%, rgba(0,0,0,0.3) 100%) !important;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.3) 0%, black 2.5%, black 97.5%, rgba(0,0,0,0.3) 100%) !important;
  }

  .demos-marquee-track {
    display: flex !important;
    gap: 12px !important;
    width: max-content !important;
    /* Animation controlled via JS for wheel scrubbing */
    will-change: transform !important;
  }

  .demos-marquee-track .demo-card {
    width: 210px !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 14px !important;
    padding: 12px !important;
    box-sizing: border-box !important;
  }
}

@keyframes marqueeInfinite {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}


/* ==========================================================================
   DEMO INTERACTIVE MODAL & CONTINUOUS MARQUEE (v=1785003473)
   ========================================================================== */
/* Keep carousel moving even when hovered on PC & mobile */
.demos-marquee-container:hover .demos-marquee-track { animation-play-state: paused !important; }

.demos-marquee-track .demo-card {
  cursor: pointer !important;
}

.demo-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(6, 9, 16, 0.65) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease !important;
}

.demo-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.demo-modal-card {
  background: #111622 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 24px !important;
  padding: 28px 24px !important;
  max-width: 480px !important;
  width: 100% !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 130, 246, 0.15) !important;
  position: relative !important;
  transform: scale(0.85) translateY(20px) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  color: #FFFFFF !important;
}

.demo-modal-overlay.active .demo-modal-card {
  transform: scale(1) translateY(0) !important;
}

.demo-modal-close-btn {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  font-size: 1.3rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease !important;
  line-height: 1 !important;
}

.demo-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.demo-modal-badge {
  display: inline-block !important;
  padding: 4px 12px !important;
  background: rgba(59, 130, 246, 0.2) !important;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  border-radius: 8px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #60A5FA !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 12px !important;
}

.demo-modal-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 0 16px 0 !important;
}

.demo-modal-preview {
  width: 100% !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.demo-modal-text {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.925rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1.5 !important;
  margin-bottom: 22px !important;
}

.demo-modal-actions {
  display: flex !important;
  width: 100% !important;
}

.demo-modal-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 14px 20px !important;
  background: linear-gradient(90deg, #FF5745 0%, #F97316 100%) !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(255, 87, 69, 0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.demo-modal-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(255, 87, 69, 0.5) !important;
}


/* ==========================================================================
   HIGH FPS FLOATING 3-DOTS MENU DRAWER (v=1785004693)
   ========================================================================== */
.floating-dots-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .floating-dots-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: fixed !important;
    top: 88px !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(17, 22, 34, 0.92) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px !important;
    color: #FFFFFF !important;
    z-index: 9998 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
    transform: translateZ(0) !important;
    cursor: pointer !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .floating-dots-btn:active {
    transform: scale(0.92) translateZ(0) !important;
    background: rgba(17, 22, 34, 0.98) !important;
  }
}

/* HIGH FPS MOBILE DRAWER OVERLAY (NO BLUR OVERHEAD) */
.mobile-menu-drawer {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(10, 14, 23, 0.88) !important;
  z-index: 99999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateZ(0) !important;
  transition: opacity 0.25s ease, visibility 0.25s ease !important;
  will-change: opacity, visibility !important;
}

.mobile-menu-drawer.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.mobile-menu-content {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  left: 14px !important;
  background: #131826 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-12px) scale(0.96) translateZ(0) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  will-change: transform !important;
}

.mobile-menu-drawer.active .mobile-menu-content {
  transform: translateY(0) scale(1) translateZ(0) !important;
}

.mobile-menu-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 10px !important;
}

.mobile-menu-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 1.2rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.mobile-menu-nav {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  margin-bottom: 14px !important;
}

.mobile-nav-link {
  display: block !important;
  padding: 9px 12px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none !important;
  border-radius: 10px !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.mobile-nav-link:active,
.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #FFFFFF !important;
}

.mobile-nav-link.highlight {
  color: #60A5FA !important;
  font-weight: 600 !important;
}

.mobile-menu-footer {
  padding-top: 10px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.mobile-menu-cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 12px 18px !important;
  background: linear-gradient(90deg, #FF5745 0%, #F97316 100%) !important;
  border-radius: 12px !important;
  color: #FFFFFF !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(255, 87, 69, 0.35) !important;
}


/* ==========================================================================
   MOBILE HEADER BUTTON SHIFT RIGHT (v=1785004997)
   ========================================================================== */
@media (max-width: 768px) {
  .header .btn-coral,
  .header .open-modal-btn {
    margin-right: -6px !important;
  }
  
  .floating-dots-btn {
    right: 14px !important;
  }
}


/* ==========================================================================
   SECTION 3 ("СНАЧАЛА СМОТРИТЕ САЙТ") HIGH FPS GPU OPTIMIZATION (v=1785005128)
   ========================================================================== */
.sec3-flow-card {
  background: #111622 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  padding: 20px 16px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
  transition: transform 0.25s ease, border-color 0.25s ease !important;
}

.sec3-flow-card:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) translateZ(0) !important;
}

@media (max-width: 768px) {
  .sec3-flow-container {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 540px !important;
    gap: 20px !important;
  }

  .sec3-flow-card {
    width: 100% !important;
    min-width: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}


/* ==========================================================================
   SMOOTH HIGH-FPS GRADIENT DIVIDER BETWEEN SEC 3 AND SEC 4 (v=1785005222)
   ========================================================================== */
.sec3-section {
  position: relative !important;
  padding-bottom: 120px !important;
}

.features-section {
  padding-top: 60px !important;
  position: relative !important;
  z-index: 6 !important;
}

@media (max-width: 768px) {
  .sec3-section {
    padding-bottom: 90px !important;
  }

  .features-section {
    padding-top: 45px !important;
  }
}


/* ==========================================================================
   SECTION 3 ("СНАЧАЛА СМОТРИТЕ САЙТ") CLEAN STYLES - ZERO GRADIENTS (v=1785005536)
   ========================================================================== */
.sec3-section {
  position: relative !important;
  width: 100% !important;
  background: #060910 !important;
  padding: 80px 0 95px 0 !important;
  color: #FFFFFF !important;
  overflow: hidden !important;
}

.sec3-section::after,
.sec3-section::before {
  display: none !important;
  content: none !important;
}

.sec3-flow-card {
  background: #111622 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 18px !important;
  padding: 20px 16px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
  transition: transform 0.25s ease, border-color 0.25s ease !important;
}

.sec3-flow-card:hover {
  border-color: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) translateZ(0) !important;
}

@media (max-width: 768px) {
  .sec3-section {
    padding: 60px 0 75px 0 !important;
  }

  .sec3-flow-container {
    flex-direction: column !important;
    align-items: center !important;
    max-width: 540px !important;
    gap: 20px !important;
  }

  .sec3-flow-card {
    width: 100% !important;
    min-width: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}


/* ==========================================================================
   SECTION 9 ("ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ") HIGH FPS GPU OPTIMIZATION (v=1785005676)
   ========================================================================== */
.sec9-accordion-card,
.service-card {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: translateZ(0) !important;
  will-change: transform !important;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease !important;
}

.sec9-accordion-card:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-2px) translateZ(0) !important;
}

@media (max-width: 768px) {
  .micro-block,
  .sec9-accordion-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}


/* ==========================================================================
   LOWER SECTION 5 ("ЧТО ВХОДИТ В САЙТ") TITLE & CONTENT (v=1785006005)
   ========================================================================== */
.features-section {
  padding-top: 115px !important;
  padding-bottom: 105px !important;
  position: relative !important;
}

@media (max-width: 768px) {
  .features-section {
    padding-top: 85px !important;
    padding-bottom: 75px !important;
  }
}


/* ==========================================================================
   FIXED HEADER SCROLL MARGIN OFFSETS FOR PC & MOBILE (v=1785006260)
   ========================================================================== */
section,
#offer,
#loss,
#decision,
#how-it-works,
#features,
#maintenance,
#portfolio,
#demos,
#services,
#contacts {
  scroll-margin-top: 95px !important;
}

@media (max-width: 768px) {
  section,
  #offer,
  #loss,
  #decision,
  #how-it-works,
  #features,
  #maintenance,
  #portfolio,
  #demos,
  #services,
  #contacts {
    scroll-margin-top: 85px !important;
  }
}


/* ==========================================================================
   PORTFOLIO ("ПРОЕКТЫ") LOWER SCROLL STOP OFFSET (v=1785006412)
   ========================================================================== */
#portfolio {
  scroll-margin-top: 45px !important;
}

@media (max-width: 768px) {
  #portfolio {
    scroll-margin-top: 35px !important;
  }
}


/* ==========================================================================
   FLOATING PHONE CTA BUTTON (v=1785006614)
   ========================================================================== */
.floating-phone-btn {
  position: fixed !important;
  bottom: 26px !important;
  right: 26px !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FF5745 0%, #F97316 100%) !important;
  color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(255, 87, 69, 0.45) !important;
  z-index: 9990 !important;
  text-decoration: none !important;
  transform: translateZ(0) !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
}

.floating-phone-btn:hover {
  transform: scale(1.08) translateZ(0) !important;
  box-shadow: 0 14px 38px rgba(255, 87, 69, 0.6) !important;
}

100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .floating-phone-btn {
    bottom: 20px !important;
    right: 18px !important;
    width: 48px !important;
    height: 48px !important;
  }
}


/* ==========================================================================
   SYMMETRICAL ULTRA-PREMIUM SERVICES GRID (v=1785006920)
   ========================================================================== */
.services-section {
  background: linear-gradient(135deg, #1E56FF 0%, #003ADB 100%) !important;
  color: #FFFFFF !important;
  padding: 85px 0 95px !important;
  position: relative !important;
}

.services-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 10px !important;
}

.services-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1875rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.services-symmetrical-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 20px !important;
  margin-top: 36px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.service-sym-card {
  background: rgba(255, 255, 255, 0.09) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 20px !important;
  padding: 24px 26px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
  transform: translateZ(0) !important;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.service-sym-card.wide-card {
  grid-column: span 2 !important;
}

.service-sym-card:hover {
  transform: translateY(-3px) translateZ(0) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.service-card-top {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 12px !important;
}

.service-card-icon {
  font-size: 1.6rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.service-card-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.service-card-desc {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .services-section {
    padding: 65px 0 75px 0 !important;
  }

  .services-symmetrical-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 24px !important;
  }

  .service-sym-card.wide-card {
    grid-column: span 1 !important;
  }

  .service-sym-card {
    padding: 20px 20px !important;
    border-radius: 16px !important;
  }

  .service-card-title {
    font-size: 1.1rem !important;
  }
}


/* ==========================================================================
   SECTION 9 INTERACTIVE ACCORDIONS (MATCHING SECTION 6 FORM & BLUE COLOR) (v=1785007222)
   ========================================================================== */
.services-section {
  background: linear-gradient(135deg, #1E56FF 0%, #003ADB 100%) !important;
  color: #FFFFFF !important;
  padding: 85px 0 95px !important;
  position: relative !important;
}

.services-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 10px !important;
}

.services-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1875rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.services-accordion-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin-top: 36px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.sec9-accordion {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}

.sec9-accordion:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

.sec9-acc-header {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 22px !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  text-align: left !important;
  -webkit-tap-highlight-color: transparent !important;
}

.sec9-acc-left {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.sec9-acc-icon {
  font-size: 1.4rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.sec9-acc-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.sec9-chevron {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
  margin-left: 12px !important;
}

.sec9-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
  will-change: max-height;
}

.sec9-acc-inner {
  padding: 14px 22px 20px 22px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.55 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin-top: 2px !important;
}

@media (max-width: 768px) {
  .services-section {
    padding: 65px 0 75px 0 !important;
  }

  .sec9-acc-header {
    padding: 16px 18px !important;
  }

  .sec9-acc-title {
    font-size: 1.05rem !important;
  }

  .sec9-acc-inner {
    padding: 14px 18px 18px 18px !important;
    font-size: 0.92rem !important;
  }
}


/* ==========================================================================
   SECTION 9 ACCORDION STYLES (EXACT SECTION 6 MARKUP & ACCORDION MECHANIC) (v=1785007396)
   ========================================================================== */
.services-section {
  background: linear-gradient(135deg, #1E56FF 0%, #003ADB 100%) !important;
  color: #FFFFFF !important;
  padding: 85px 0 95px !important;
  position: relative !important;
}

.services-title {
  font-family: 'Manrope', 'Montserrat', sans-serif !important;
  font-size: clamp(2.5rem, 3.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 10px !important;
}

.services-subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1875rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.sec9-m-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  margin-top: 36px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.sec9-blue-acc {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
  transition: background 0.25s ease, border-color 0.25s ease !important;
}

.sec9-blue-acc:hover,
.sec9-blue-acc.active {
  background: rgba(255, 255, 255, 0.16) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
}

.sec9-blue-header {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  background: transparent !important;
  border: none !important;
  color: #FFFFFF !important;
  cursor: pointer !important;
  text-align: left !important;
  box-sizing: border-box !important;
  -webkit-tap-highlight-color: transparent !important;
}

.sec9-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.sec9-icon {
  font-size: 1.35rem !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
}

.sec9-acc-title-text {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
}

.sec9-desc-text {
  padding: 12px 20px 18px 20px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.55 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
}

@media (max-width: 768px) {
  .services-section {
    padding: 65px 0 75px 0 !important;
  }

  .sec9-blue-header {
    padding: 15px 16px !important;
  }

  .sec9-acc-title-text {
    font-size: 1.02rem !important;
  }

  .sec9-desc-text {
    padding: 12px 16px 16px 16px !important;
    font-size: 0.92rem !important;
  }
}


/* ==========================================================================
   HIGH FPS MOBILE DEMO MODAL GPU OPTIMIZATIONS (v=1785008176)
   ========================================================================== */
@media (max-width: 768px) {
  .demo-modal-overlay {
    background: rgba(8, 12, 20, 0.90) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateZ(0) !important;
    will-change: opacity, visibility !important;
    transition: opacity 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.28s ease !important;
  }

  .demo-modal-card {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5) !important;
    transform: translate3d(0, 15px, 0) scale(0.93) !important;
    will-change: transform !important;
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    border-radius: 20px !important;
  }

  .demo-modal-overlay.active .demo-modal-card {
    transform: translate3d(0, 0, 0) scale(1) !important;
  }
}


/* ==========================================================================
   SECTION 10: CONTACTS REDESIGN (DESKTOP & MOBILE ADAPTED)
   ========================================================================== */
.contacts-section {
  background-color: #F4F5F8;
  color: var(--text-dark);
  padding: 100px 0;
}

/* Desktop Centered Symmetric Layout */
.contacts-layout-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.contacts-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  padding: 30px 30px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 350px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.card-contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  margin-bottom: 14px;
  transition: transform 0.2s ease;
}

.card-contact-row:last-child {
  margin-bottom: 0;
}

.card-contact-row:hover .card-row-text {
  color: #FF5745;
}

.card-contact-row:hover .card-icon-square {
  background: #E2E8F0;
}

.card-icon-square {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.card-row-text {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #0F172A;
  transition: color 0.2s ease;
}

.card-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 20px 0;
  width: 100%;
}

.contacts-right-content {
  max-width: 460px;
  text-align: left;
  flex-shrink: 0;
}

.contacts-right-content .h2-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.contacts-right-content .subtitle {
  font-size: 1.125rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

/* Perfect Mobile Adaptation (<= 860px) */
@media (max-width: 860px) {
  .contacts-section {
    padding: 60px 0 !important;
  }

  .contacts-layout-grid {
    flex-direction: column-reverse !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
  }

  .contacts-right-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    flex: none !important;
  }

  .contacts-right-content .h2-title {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }

  .contacts-right-content .subtitle {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 340px !important;
  }

  .contacts-card {
    width: 100% !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    padding: 22px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04) !important;
  }

  .card-contact-row {
    gap: 14px !important;
    margin-bottom: 12px !important;
  }

  .card-icon-square {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
  }

  .card-icon-square svg,
  .card-icon-square img {
    width: 18px !important;
    height: 18px !important;
  }

  .card-row-text {
    font-size: 0.95rem !important;
  }

  .card-divider {
    margin: 14px 0 !important;
  }
}


/* ==========================================================================
   ANIMATED HERO V4 BACKGROUND & POSITIONING STYLES
   ========================================================================== */
.hero-img-bg {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #070B14 !important;
  min-height: 620px !important;
  padding: 100px 0 60px 0 !important;
  display: flex !important;
  align-items: flex-start !important;
}

.hero-img-bg-content {
  margin-top: 15px !important;
}

.hero__background {
  position: absolute !important;
  inset: 0 !important;
  z-index: -2 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  pointer-events: none !important;
  user-select: none !important;
}

.hero-img-bg::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: -1 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(7, 11, 20, 0.94) 0%,
    rgba(7, 11, 20, 0.76) 38%,
    rgba(7, 11, 20, 0.10) 72%
  ) !important;
}

@media (max-width: 820px) {
  .hero-img-bg {
    min-height: 680px !important;
    align-items: flex-start !important;
    padding-top: 90px !important;
  }

  .hero-img-bg-content {
    margin-top: 0 !important;
  }

  .hero__background {
    width: 155% !important;
    max-width: none !important;
    object-position: 61% center !important;
  }

  .hero-img-bg::after {
    background: linear-gradient(
      180deg,
      rgba(7, 11, 20, 0.98) 0%,
      rgba(7, 11, 20, 0.76) 60%,
      rgba(7, 11, 20, 0.28) 100%
    ) !important;
  }
}

/* ==========================================================================
   ENHANCED SLOW DEMOS MARQUEE & MINIMALIST PROGRESS BAR
   ========================================================================== */

/* ==========================================================================
   PROGRESS INDICATOR - STRICTLY HIDDEN BY DEFAULT, VISIBLE ONLY ON CAROUSEL HOVER
   ========================================================================== */
.marquee-progress-track {
  position: relative !important;
  display: block !important;
  margin: 20px auto 0 auto !important;
  width: 200px !important;
  max-width: 80% !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 99px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease !important;
  pointer-events: none !important;
  z-index: 10 !important;
}

.marquee-progress-track.active,
.demos-marquee-container:hover + .marquee-progress-track,
.demos-marquee-container:hover ~ .marquee-progress-track {
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(255, 255, 255, 0.22) !important;
}

.marquee-progress-fill {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 50px !important;
  height: 100% !important;
  background: #FFFFFF !important;
  border-radius: 99px !important;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 4px rgba(255, 255, 255, 0.6) !important;
  will-change: transform !important;
}