/* ==========================================================================
   ЮГ ПРОДАКШН (SOUTH PRODUCTION ALLIANCE)
   Design System: Party.Rent Global Edition (Bright, Crisp & Editorial)
   Typography: Montserrat & Anek Devanagari
   ========================================================================== */

:root {
  --background: #ffffff;
  --foreground: #050505;
  --surface: #ffffff;
  --on-surface: #050505;
  --card: #ffffff;
  --card-foreground: #050505;
  
  --primary: #0d6efd;
  --primary-hover: #0b5ed7;
  --primary-foreground: #ffffff;
  
  --accent-red: #c11616;
  --accent-red-hover: #a11212;
  
  --secondary: #050505;
  --secondary-foreground: #ffffff;
  
  --muted: #f8fafc;
  --muted-surface: #f1f5f9;
  --muted-foreground: #64748b;
  
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --input: #ffffff;
  --ring: #0d6efd;
  
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-headline: 'Anek Devanagari', 'Montserrat', sans-serif;
  
  --radius-none: 0px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  
  --shadow-subtle: 0px 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-overlay: 0px 20px 48px rgba(0, 0, 0, 0.16);
  --shadow-float: 0px 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-card: 0px 1px 3px rgba(0, 0, 0, 0.05), 0px 10px 25px -5px rgba(0, 0, 0, 0.04);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
*, *::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-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ==========================================================================
   0. TOP UTILITY BAR & HEADER
   ========================================================================== */

.top-utility-bar {
  background-color: #0c0c0e;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
}

.utility-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e4e4e7;
  font-weight: 500;
}

.location-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10b981;
  display: inline-block;
  box-shadow: 0 0 8px #10b981;
}

.utility-divider {
  color: rgba(255, 255, 255, 0.2);
}

.utility-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-link {
  color: #e4e4e7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.utility-link:hover {
  color: #ffffff;
}

.utility-link.tg-link svg {
  color: #38bdf8;
}

/* Main Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: #050505;
}

.logo-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #71717a;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Menu */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #27272a;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: #050505;
}

.nav-link:hover::after {
  width: 100%;
}

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

.btn-header-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #050505;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-none);
  border: 1px solid #050505;
  transition: all var(--transition-fast);
}

.btn-header-action:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.mobile-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #050505;
  transition: all var(--transition-fast);
}

.mobile-menu {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-list a {
  font-size: 16px;
  font-weight: 500;
  color: #050505;
  display: block;
}

.mobile-menu-contacts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   1. HERO SECTION (Bright Cinematic Mountain & Luxury Marquee Presentation)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  background-color: #0f172a;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  /* Soft, bright gradient that lets the daylight mountain view shine through */
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.40) 0%,
    rgba(15, 23, 42, 0.20) 45%,
    rgba(15, 23, 42, 0.65) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(1.02) contrast(1.04);
  transform: scale(1.0);
  animation: subtleZoom 25s infinite alternate ease-in-out;
}

@keyframes subtleZoom {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.05); }
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-glass-card {
  max-width: 900px;
  background: rgba(10, 15, 29, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 24px;
  border-radius: var(--radius-full);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #38bdf8;
  display: inline-block;
  box-shadow: 0 0 10px #38bdf8;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #f1f5f9;
  max-width: 760px;
  margin-bottom: 36px;
}

/* Outlined Signature Party.Rent Buttons */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px 12px 24px;
  border-radius: var(--radius-none);
  border: 1px solid transparent;
  min-height: 48px;
  min-width: 250px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-hero-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-hero-primary:hover {
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-hero-secondary:hover {
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
}

.btn-primary-black {
  background-color: #050505;
  color: #ffffff;
  border-color: #050505;
  min-width: 220px;
}

.btn-primary-black:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-arrow {
  margin-left: 14px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #e2e8f0;
}

.proof-pill .check-icon {
  color: #34d399;
  font-weight: 700;
}

/* ==========================================================================
   2. METRICS & CAPACITIES SECTION
   ========================================================================== */

.metrics-section {
  padding: 80px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-tag-gold {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #38bdf8;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #050505;
  margin-bottom: 14px;
}

.section-title-sub {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 600;
  color: #18181b;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--muted-foreground);
  max-width: 720px;
  margin-bottom: 36px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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

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

.metric-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 28px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.metric-card-highlight {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1.5px solid #0284c7;
  position: relative;
}

.metric-card-highlight .metric-suffix {
  color: #0284c7;
}

.metric-card-highlight .metric-divider {
  background-color: #0284c7;
}

.metric-card:hover {
  border-color: #94a3b8;
  box-shadow: var(--shadow-float);
  transform: translateY(-3px);
}

.metric-head {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.metric-prefix {
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
  margin-right: 4px;
}

.metric-number {
  font-family: var(--font-sans);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: #050505;
  letter-spacing: -1px;
}

.metric-suffix {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
}

.metric-divider {
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 16px;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: #050505;
  margin-bottom: 10px;
}

.metric-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* ==========================================================================
   3. CATALOG & PROMINENT GUEST SCALE CONTROL PANEL
   ========================================================================== */

.catalog-section {
  padding: 96px 0;
  background-color: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.catalog-header-wrap {
  margin-bottom: 32px;
}

/* Prominent Guest Scale Panel */
.guest-scale-panel {
  background: #ffffff;
  border: 2px solid #0d6efd;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.08);
}

.scale-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.scale-step-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: #eff6ff;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.scale-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.scale-desc {
  font-size: 14px;
  color: #64748b;
}

.scale-counter-box {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 2px solid #cbd5e1;
  border-radius: var(--radius-md);
  padding: 4px;
}

.btn-guest-step {
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.btn-guest-step:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.scale-number-wrap {
  display: flex;
  align-items: baseline;
  padding: 0 16px;
  gap: 6px;
}

.scale-number-wrap input {
  width: 70px;
  border: none;
  background: transparent;
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  outline: none;
}

.scale-unit {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
}

/* Range Slider */
.scale-slider-wrap {
  margin-bottom: 24px;
}

.guest-range-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--primary);
  cursor: pointer;
}

.scale-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 8px;
}

/* Preset Chips */
.scale-presets-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f1f5f9;
}

.preset-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}

.preset-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preset-chip {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  transition: all var(--transition-fast);
}

.preset-chip:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
}

.preset-chip.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Directions Grid (6 cards) */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.direction-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  position: relative;
  box-shadow: var(--shadow-subtle);
}

.direction-card:hover {
  border-color: #94a3b8;
  box-shadow: var(--shadow-float);
  transform: translateY(-4px);
}

.direction-card.card-disabled {
  opacity: 0.45;
  filter: grayscale(0.3);
  box-shadow: none;
}

.direction-card.card-disabled:hover {
  transform: none;
  border-color: var(--border);
  box-shadow: none;
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #000;
}

.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.direction-card:hover .card-thumb {
  transform: scale(1.05);
}

.partner-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.82);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.custom-checkbox-container {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  z-index: 10;
}

.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border: 2px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.custom-checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.custom-checkbox-container input:checked ~ .checkmark::after {
  content: '✓';
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  line-height: 1.3;
}

.partner-link-icon {
  color: #71717a;
  padding: 4px;
  transition: color var(--transition-fast);
}

.partner-link-icon:hover {
  color: var(--primary);
}

.card-lead {
  font-size: 13px;
  color: #52525b;
  margin-bottom: 18px;
  line-height: 1.5;
}

.service-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.option-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.option-pill:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.option-pill input {
  accent-color: var(--primary);
  cursor: pointer;
}

.card-footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.param-tag {
  font-size: 11px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 3px 8px;
  border-radius: 4px;
}

.contact-sublink {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  margin-left: auto;
  text-decoration: underline;
}

/* Configurator Summary Bar */
.config-summary-bar {
  background: #0f172a;
  color: #ffffff;
  padding: 24px 32px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: var(--shadow-overlay);
}

.summary-left {
  max-width: 600px;
}

.summary-count {
  font-size: 16px;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.summary-count strong {
  color: #38bdf8;
  font-size: 18px;
}

.summary-details {
  font-size: 13px;
  color: #94a3b8;
}

.summary-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.summary-estimate {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.estimate-caption {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.estimate-val {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.estimate-note {
  font-size: 11px;
  color: #34d399;
}

.summary-right .btn-primary-black {
  background-color: var(--primary);
  border-color: var(--primary);
}

.summary-right .btn-primary-black:hover {
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
}

/* ==========================================================================
   4. WHY US COMPARISON TABLE & INTERACTIVE TRUST CARDS
   ========================================================================== */

/* ==========================================================================
   4. WHY US COMPARISON TABLE & INTERACTIVE TRUST CARDS
   ========================================================================== */

.why-us-section {
  padding: 96px 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border);
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background-color: #ffffff;
}

.comparison-table th {
  padding: 20px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--border);
}

.col-criterion {
  width: 25%;
  background-color: #f8fafc;
  color: #475569;
}

.col-agency {
  width: 37.5%;
  background-color: #f8fafc;
  color: #64748b;
}

.col-alliance {
  width: 37.5%;
  background-color: #eff6ff;
  color: #0284c7;
  border-left: 2px solid var(--primary);
}

.comparison-table td {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.cell-criterion {
  background-color: #f8fafc;
}

.crit-title {
  font-size: 16px;
  font-weight: 700;
  color: #050505;
}

.crit-sub {
  font-size: 12px;
  color: #64748b;
}

.cell-agency p, .cell-alliance p {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

.cell-agency p {
  color: #64748b;
}

.cell-alliance p {
  color: #0f172a;
  font-weight: 500;
}

.highlight-cell {
  background-color: #f0f9ff;
  border-left: 2px solid var(--primary);
}

.badge-negative {
  display: inline-block;
  background-color: #fee2e2;
  color: #991b1b;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.badge-positive {
  display: inline-block;
  background-color: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

/* Responsive Desktop vs Mobile Comparison */
.comparison-desktop-view {
  display: block;
}

.comparison-mobile-cards {
  display: none;
}

@media (max-width: 768px) {
  .comparison-desktop-view {
    display: none !important;
  }

  .comparison-mobile-cards {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
  }

  .comp-mobile-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 18px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  }

  .comp-mobile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  .comp-mobile-num {
    font-size: 14px;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .comp-mobile-title-wrap {
    display: flex;
    flex-direction: column;
  }

  .comp-mobile-title {
    font-size: 16px;
    font-weight: 700;
    color: #050505;
    margin: 0;
    line-height: 1.25;
  }

  .comp-mobile-sub {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
  }

  .comp-mobile-blocks {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .comp-block {
    border-radius: var(--radius-sm);
    padding: 12px 14px;
  }

  .comp-block-agency {
    background: #fef2f2;
    border: 1px solid #fee2e2;
  }

  .comp-block-agency p {
    font-size: 13px;
    color: #7f1d1d;
    margin: 6px 0 0;
    line-height: 1.45;
  }

  .comp-block-alliance {
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
  }

  .comp-block-alliance p {
    font-size: 13.5px;
    color: #14532d;
    font-weight: 500;
    margin: 6px 0 0;
    line-height: 1.45;
  }

  .comp-block-badge {
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
  }
}

/* Interactive Trust Cards Row */
.trust-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius-md);
  background: #ffffff;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

.interactive-trust-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  user-select: none;
}

.interactive-trust-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.14);
  transform: translateY(-4px);
}

.trust-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.trust-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.trust-badge-action {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.interactive-trust-card:hover .trust-badge-action {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.trust-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
  flex-grow: 1;
}

.trust-card-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.trust-link-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

/* ==========================================================================
   4.5 PARTNERS & ALLIANCE POOL
   ========================================================================== */

.partners-section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  background-color: #0f172a;
  border-bottom: 1px solid var(--border);
}

/* Background Crossfade Slideshow */
.partners-bg-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.partners-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 9s ease-out;
  transform: scale(1.0);
  will-change: opacity, transform;
}

.partners-bg-slide.active {
  opacity: 1;
  transform: scale(1.04);
}

.partners-bg-overlay {
  position: absolute;
  inset: 0;
  /* Crystal clear contrast overlay without blur to keep photos sharp and vivid */
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.58) 0%, rgba(15, 23, 42, 0.38) 45%, rgba(15, 23, 42, 0.65) 100%);
}

.partners-pill-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(56, 189, 248, 0.45);
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.partners-section .section-title {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.partners-section .section-subtitle {
  color: #f1f5f9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Slideshow Status & Navigation Bar */
.slideshow-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 132, 199, 0.3);
  padding: 8px 18px;
  border-radius: 9999px;
  margin-top: 14px;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 100%;
}

.slideshow-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0284c7;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(2, 132, 199, 0); }
  100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.slideshow-status-label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slideshow-nav-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  flex-shrink: 0;
}

.slide-pill {
  width: 18px;
  height: 6px;
  border-radius: 3px;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slide-pill.active {
  width: 30px;
  background: #0284c7;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-box {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-subtle);
  transition: all var(--transition-fast);
}

/* Semi-Transparent Frosted Glassmorphism for Partner Cards */
.partner-box-glass {
  background: rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(18px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(190%) !important;
  border: 1px solid rgba(255, 255, 255, 0.65) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer;
}

.partner-box-glass:hover {
  background: rgba(255, 255, 255, 0.90) !important;
  border-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38) !important;
  transform: translateY(-5px) !important;
}

.partner-box-glass .partner-name {
  color: #0f172a;
  font-weight: 800;
}

.partner-box-glass .partner-role {
  color: #1e293b;
  font-weight: 500;
}

.partner-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.partner-name {
  font-size: 18px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 8px;
}

.partner-role {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.partner-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
}

.partner-btn-link {
  font-weight: 600;
  color: #050505;
  text-decoration: underline;
}

.partner-btn-tg {
  color: #0284c7;
  font-weight: 600;
}

/* ==========================================================================
   4.7 TRUST & COMPLIANCE MEDALLIONS (Signitic Minimalist French SaaS)
   ========================================================================== */

.compliance-medallions-section {
  padding: 90px 0;
  background-color: #0b0c10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

.compliance-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(99, 102, 241, 0.18) 0%, rgba(59, 130, 246, 0.08) 45%, transparent 100%);
  pointer-events: none;
}

.relative-z {
  position: relative;
  z-index: 10;
}

.compliance-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}

.compliance-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a8aebe;
  margin-bottom: 16px;
}

.compliance-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a8aebe;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(168, 174, 190, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(168, 174, 190, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(168, 174, 190, 0); }
}

.compliance-title {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.compliance-subtitle {
  font-size: 15px;
  color: #b6bbc8;
  line-height: 1.6;
}

.compliance-medallions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
}

.medallion-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.medallion-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.medallion-hover-wash {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.medallion-card:hover .medallion-hover-wash {
  opacity: 1;
}

.medallion-wrap {
  position: relative;
  width: 168px;
  height: 168px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medallion-rotating-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotateRing 28s linear infinite;
  pointer-events: none;
}

@keyframes rotateRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.medallion-svg {
  width: 100%;
  height: 100%;
}

.medallion-text-path {
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: #9ca1ae;
}

.medallion-inner-disc {
  position: relative;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(180deg, #14161c 0%, #1d2029 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.medallion-card:hover .medallion-inner-disc {
  transform: scale(1.05);
}

.medallion-inner-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 35%, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
}

.medallion-center-icon {
  position: relative;
  z-index: 10;
}

.medallion-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca1ae;
  margin-bottom: 8px;
  display: block;
}

.medallion-card-title {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.medallion-card-desc {
  font-size: 13px;
  color: #b6bbc8;
  line-height: 1.5;
  margin-bottom: 24px;
}

.medallion-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  transition: color var(--transition-fast);
}

.medallion-link .arrow {
  transition: transform 0.2s ease;
}

.medallion-card:hover .medallion-link .arrow {
  transform: translateX(3px);
}

.medallion-bottom-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  height: 1.5px;
  width: 80%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  transition: transform 0.55s ease;
}

.medallion-card:hover .medallion-bottom-line {
  transform: translateX(-50%) scaleX(1);
}

/* ==========================================================================
   4.8 ФЕДЕРАЛЬНАЯ ГЕОГРАФИЯ И ВЫЕЗДНОЙ ПРОДАКШН ПО ВСЕЙ РОССИИ
   ========================================================================== */

.locations-section {
  padding: 96px 0;
  background-color: #0b0c10;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.locations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, rgba(14, 165, 233, 0.15) 0%, transparent 80%);
  pointer-events: none;
}

.locations-header-wrap {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 2;
}

.federal-badge-glow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 16px;
}

.federal-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.locations-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  line-height: 1.2;
}

.locations-subtitle {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}

.federal-hubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hub-card {
  background: #141722;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hub-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.hub-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.hub-region-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #38bdf8;
}

.hub-capacity-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.hub-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.hub-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.hub-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.city-pill {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: #cbd5e1;
}

.hub-footer-specs {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
}

.hub-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hub-spec-item span.icon {
  color: #38bdf8;
  font-weight: 700;
}

/* Federal Fleet & Scale Banner */
.federal-fleet-banner {
  background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: 16px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.fleet-info-left {
  max-width: 680px;
}

.fleet-headline {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fleet-sub {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

.fleet-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.btn-federal-cta {
  background: #0284c7;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid #38bdf8;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.4);
}

.btn-federal-cta:hover {
  background: #0369a1;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 132, 199, 0.6);
}

@media (max-width: 991px) {
  .federal-hubs-grid {
    grid-template-columns: 1fr;
  }
  .federal-fleet-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   4.9 TESTIMONIAL MARQUEE SECTION (Wall of Love)
   ========================================================================== */

.testimonial-marquee-section {
  width: 100%;
  min-height: 200px;
  background-color: #0a0a0a;
  padding: 56px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-container {
  max-width: 1280px;
  margin: 0 auto;
}

.marquee-header {
  text-align: center;
  margin-bottom: 40px;
}

.marquee-tag {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #666666;
  display: block;
  margin-bottom: 8px;
}

.marquee-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.marquee-fade-left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 96px;
  background: linear-gradient(90deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 96px;
  background: linear-gradient(270deg, #0a0a0a 0%, rgba(10, 10, 10, 0) 100%);
  z-index: 10;
  pointer-events: none;
}

.marquee-tracks-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-track-row {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.marquee-track-content {
  display: flex;
  width: max-content;
}

.track-row-left .marquee-track-content {
  animation: marqueeLeft 35s linear infinite;
}

.track-row-right .marquee-track-content {
  animation: marqueeRight 40s linear infinite;
}

.marquee-track-row:hover .marquee-track-content {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

/* Card Styling */
.t-card {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  width: 300px;
  flex-shrink: 0;
  margin: 0 8px;
  user-select: none;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.t-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.t-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.t-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.bg-blue { background-color: #2563eb; }
.bg-emerald { background-color: #059669; }
.bg-purple { background-color: #9333ea; }
.bg-amber { background-color: #d97706; }
.bg-rose { background-color: #e11d48; }
.bg-indigo { background-color: #4f46e5; }
.bg-cyan { background-color: #0891b2; }
.bg-teal { background-color: #0d9488; }
.bg-orange { background-color: #ea580c; }
.bg-pink { background-color: #db2777; }
.bg-violet { background-color: #7c3aed; }
.bg-sky { background-color: #0284c7; }

.t-author-wrap {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.t-name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-role {
  font-size: 11px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t-quote {
  font-size: 13px;
  color: #999999;
  line-height: 1.5;
}

/* ==========================================================================
   5. LEAD GEN & FORM (Cinematic Evening Gala Atmosphere with Frosted Glass)
   ========================================================================== */

.lead-section {
  position: relative;
  padding: 100px 0 110px;
  color: #ffffff;
  overflow: hidden;
  background-color: #0a0f1d;
}

.lead-media-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.lead-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(0.95) contrast(1.05);
  animation: subtleZoom 25s infinite alternate ease-in-out;
}

.lead-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 15, 29, 0.70) 0%,
    rgba(10, 15, 29, 0.55) 50%,
    rgba(10, 15, 29, 0.85) 100%
  );
  z-index: 2;
}

.lead-container-relative {
  position: relative;
  z-index: 3;
}

.lead-card-box {
  background: rgba(10, 15, 29, 0.76);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.lead-main-title {
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.lead-desc {
  font-size: 16px;
  color: #e2e8f0;
  margin-bottom: 36px;
  line-height: 1.6;
}

.lead-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 2px;
}

.benefit-item p {
  font-size: 13px;
  color: #cbd5e1;
}

.lead-direct-contacts {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #94a3b8;
}

.contact-row a {
  color: #38bdf8;
  font-weight: 600;
}

/* Form Styles (Frosted Glass Container with high contrast inputs) */
.lead-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  color: #0f172a;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
  background: #ffffff;
}

.selected-services-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.selected-pill-chip {
  font-size: 11px;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #38bdf8;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

/* Drag and Drop Zone */
.drop-zone {
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drop-zone:hover, .drop-zone.dragover {
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.file-input-hidden {
  display: none;
}

.drop-zone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 13px;
}

.drop-zone-content svg {
  color: #38bdf8;
}

.drop-zone-content small {
  font-size: 11px;
  color: #94a3b8;
}

.file-preview-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #0369a1;
  font-weight: 500;
}

.btn-remove-file {
  color: #ef4444;
  font-size: 14px;
  font-weight: 700;
  padding: 2px 6px;
}

.btn-submit-lead {
  width: 100%;
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  margin-top: 8px;
}

.btn-submit-lead:hover {
  background-color: #ffffff;
  color: #050505;
  border-color: #ffffff;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.form-policy {
  font-size: 11px;
  color: #cbd5e1;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* ==========================================================================
   6. FOOTER (Light Clean Theme)
   ========================================================================== */

.site-footer {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
  color: #64748b;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #050505;
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 13px;
  color: #64748b;
  max-width: 360px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 12px;
  color: #94a3b8;
}

.footer-creator {
  margin-top: 8px;
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.2px;
}

.footer-creator-name {
  color: #475569;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.footer-creator-name:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.footer-col-nav h4,
.footer-col-contacts h4 {
  font-size: 14px;
  font-weight: 700;
  color: #050505;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-nav a {
  font-size: 13px;
  color: #475569;
  transition: color var(--transition-fast);
}

.footer-col-nav a:hover {
  color: var(--primary);
}

.footer-col-contacts p {
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col-contacts a {
  color: #050505;
  font-weight: 500;
}

.footer-col-contacts a:hover {
  color: var(--primary);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-btn {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ==========================================================================
   MODALS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  color: #050505;
  border-radius: var(--radius-md);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-overlay);
  animation: modalEnter 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-card-large {
  max-width: 680px;
  padding: 40px;
}

@keyframes modalEnter {
  from { opacity: 0; transform: translateY(15px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  color: #71717a;
  padding: 4px 8px;
}

.modal-close-btn:hover {
  color: #050505;
}

.modal-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #050505;
  margin: 6px 0 8px;
}

.modal-subtitle {
  font-size: 13px;
  color: #52525b;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Trust Modal Content Breakdown */
.trust-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.trust-detail-item {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.trust-item-content h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.trust-item-content p {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

.trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.trust-badge-pill {
  font-size: 11px;
  font-weight: 600;
  background: #e0f2fe;
  color: #0369a1;
  padding: 3px 8px;
  border-radius: 4px;
}

.modal-form .form-group label {
  color: #3f3f46;
}

.modal-form input {
  background: #f8fafc;
  border: 1px solid var(--border);
  color: #050505;
}

.drop-zone-mini {
  border: 2px dashed #cbd5e1;
  background: #f8fafc;
  padding: 16px;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: #475569;
}

.modal-card-success {
  text-align: center;
}

.success-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* Floating Sticky Estimate Pill */
.floating-estimate-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 10px 8px 18px;
  display: none;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-float);
  animation: slideUp 0.3s ease-out;
}

.floating-estimate-pill.visible {
  display: flex;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.pill-info {
  display: flex;
  flex-direction: column;
}

.pill-badge {
  font-size: 10px;
  font-weight: 600;
  color: #38bdf8;
  text-transform: uppercase;
}

.pill-price {
  font-size: 14px;
  font-weight: 700;
}

.pill-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  transition: background var(--transition-fast);
}

/* ==========================================================================
   EXIT-INTENT BONUS MODAL & FLOATING BONUS BUTTON ("Догонялка с бонусом")
   ========================================================================== */

.modal-card-bonus {
  max-width: 560px;
  border: 2px solid #38bdf8;
  box-shadow: 0 25px 65px rgba(56, 189, 248, 0.25);
  padding: 36px;
  position: relative;
  background: #ffffff;
}

.bonus-ribbon {
  display: inline-block;
  background: linear-gradient(135deg, #0d6efd 0%, #0284c7 100%);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.bonus-title {
  font-size: 23px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.bonus-subtitle {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 20px;
}

.bonus-subtitle strong {
  color: #0f172a;
}

.bonus-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.bonus-feat-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bonus-icon {
  font-size: 20px;
  line-height: 1.2;
  flex-shrink: 0;
}

.bonus-feat-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.bonus-feat-item p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.45;
}

.bonus-form .form-group {
  margin-bottom: 14px;
}

.bonus-form input {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  color: #0f172a;
  font-weight: 500;
  padding: 13px 14px;
}

.bonus-form input:focus {
  border-color: #0d6efd;
  background: #ffffff;
}

.btn-bonus-cta {
  width: 100%;
  background: linear-gradient(135deg, #0d6efd 0%, #0284c7 100%);
  color: #ffffff;
  border: none;
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-sm);
  justify-content: center;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.35);
  transition: all var(--transition-fast);
}

.btn-bonus-cta:hover {
  background: linear-gradient(135deg, #0b5ed7 0%, #0369a1 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.45);
}

.bonus-dismiss-link {
  font-size: 11px;
  color: #94a3b8;
  text-align: center;
  margin-top: 12px;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.bonus-dismiss-link:hover {
  color: #64748b;
}

/* Floating Gift Bonus Button (Bottom-Left) */
.floating-bonus-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 900;
  background: #0f172a;
  color: #ffffff;
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: var(--radius-full);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  animation: pulseBonus 3s infinite alternate ease-in-out;
}

@keyframes pulseBonus {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2); }
  100% { transform: scale(1.03); box-shadow: 0 8px 30px rgba(56, 189, 248, 0.45); border-color: #38bdf8; }
}

.floating-bonus-btn:hover {
  background: #0284c7;
  transform: scale(1.06);
}

.gift-icon {
  font-size: 16px;
}

.gift-text {
  font-size: 12px;
  font-weight: 600;
  color: #f8fafc;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1200px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .directions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-burger {
    display: flex;
  }
  .lead-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lead-card-box {
    padding: 36px 24px;
  }
  .trust-cards-row {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-glass-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .top-utility-bar {
    display: none;
  }
  .header-container {
    height: 64px;
  }
  .directions-grid {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    min-width: unset;
  }
  .config-summary-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }
  .summary-right {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .summary-estimate {
    text-align: left;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .guest-scale-panel {
    padding: 24px 18px;
  }
  .scale-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==========================================================================
   ENHANCED ULTRA-PREMIUM MOBILE OPTIMIZATION (< 768px & < 480px)
   ========================================================================== */

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  -webkit-text-size-adjust: 100%;
}

* {
  box-sizing: border-box;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .container {
    padding: 0 18px !important;
  }
  .compliance-medallions-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .directions-grid, .partners-grid, .trust-cards-row {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .top-utility-bar {
    display: none !important;
  }
  
  .header-container {
    height: 60px !important;
    padding: 0 16px !important;
  }

  .site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo-text {
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
  }

  .logo-subtext {
    display: none !important;
  }

  .btn-header-action {
    padding: 7px 12px !important;
    font-size: 12.5px !important;
    min-height: 36px !important;
  }
  .btn-header-action span {
    display: none;
  }
  .btn-header-action::after {
    content: "ТЗ";
    font-weight: 700;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto !important;
    padding: 40px 0 50px 0 !important;
  }

  .hero-glass-card {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .hero-location-tag {
    font-size: 11.5px !important;
    padding: 6px 12px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 14px !important;
  }

  .hero-subtitle {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }

  .hero-cta-group {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-cta-group .btn {
    width: 100% !important;
    min-width: 100% !important;
    justify-content: center !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
  }

  .hero-trust-indicators {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  }

  .hero-trust-item {
    font-size: 13px !important;
  }

  /* Metrics Grid */
  .metrics-section {
    padding: 40px 0 !important;
  }

  .metrics-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .metric-card {
    padding: 20px 18px !important;
  }

  .metric-number {
    font-size: 32px !important;
  }

  .metric-label {
    font-size: 14px !important;
  }

  /* Section Titles */
  .section-title {
    font-size: 24px !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
  }

  .section-subtitle {
    font-size: 14.5px !important;
    margin-bottom: 28px !important;
  }

  /* Catalog & Configurator */
  .catalog-section, .calculator-section {
    padding: 40px 0 !important;
  }

  .guest-scale-panel {
    padding: 20px 16px !important;
    border-radius: 16px !important;
  }

  .scale-presets {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 12px !important;
  }

  .scale-preset-btn {
    width: 100% !important;
    text-align: center !important;
    padding: 10px 8px !important;
    font-size: 13.5px !important;
  }

  .config-tabs {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 8px !important;
    padding-bottom: 10px !important;
    margin-bottom: 20px !important;
  }

  .config-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    padding: 10px 16px !important;
    font-size: 13.5px !important;
  }

  .direction-card, .partner-card, .trust-card {
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .direction-card-body, .partner-card-body {
    padding: 20px 16px !important;
  }

  .direction-card h3, .partner-card h3 {
    font-size: 18px !important;
  }

  /* Config Summary Bar */
  .config-summary-bar {
    padding: 18px 16px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }

  .summary-left h4 {
    font-size: 16px !important;
  }

  .summary-right {
    width: 100% !important;
  }

  .summary-estimate {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  /* Compliance & Trust */
  .compliance-section {
    padding: 40px 0 !important;
  }

  .compliance-medallion-card {
    padding: 24px 18px !important;
    border-radius: 16px !important;
  }

  .compliance-medallion-card h4 {
    font-size: 17px !important;
  }

  .compliance-medallion-card p {
    font-size: 13.5px !important;
  }

  /* Lead Capture Form */
  .lead-section {
    padding: 40px 0 !important;
  }

  .lead-card-box {
    padding: 24px 16px !important;
    border-radius: 16px !important;
  }

  .custom-input, select.custom-input, textarea.custom-input {
    font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
    padding: 14px 14px !important;
    border-radius: 8px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .form-submit-row .btn {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 15px !important;
  }

  /* Footer */
  .site-footer {
    padding: 40px 0 24px 0 !important;
  }

  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Floating Bonus Button */
  .floating-bonus-btn {
    bottom: 14px !important;
    right: 14px !important;
    padding: 10px 14px !important;
    border-radius: 30px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  }

  .floating-bonus-btn .gift-text {
    font-size: 11.5px !important;
  }

  /* Mobile Navigation Drawer */
  .mobile-menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #0f172a !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 24px 18px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    z-index: 1000;
  }

  .mobile-nav-list a {
    color: #ffffff !important;
    font-size: 16px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .mobile-menu-contacts a {
    color: #38bdf8 !important;
    border-color: #38bdf8 !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    padding: 12px !important;
    margin-top: 14px !important;
  }
}
