/* Documatica Home Page Styles v12.0 */

:root {
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0d1117;
  --text-dark: #1a1a2e;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --accent-blue: #3b82f6;
  --accent-blue-hover: #2563eb;
  --accent-yellow: #fbbf24;
  --border-color: #e5e7eb;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   Main Header v12.0 (Global Navigation)
   ======================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

.main-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.main-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.main-header__logo-icon {
  width: 36px;
  height: 36px;
}

.main-header__logo-text {
  font-size: 1.375rem;
  text-transform: lowercase;
}

.main-header__logo-bold {
  font-weight: 700;
  color: #0f172a;
}

.main-header__logo-light {
  font-weight: 300;
  color: #94a3b8;
}

/* Navigation */
.main-header__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 1024px) {
  .main-header__nav {
    display: none;
  }
}

.main-header__link {
  padding: 0.625rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.625rem;
  transition: all 0.2s ease;
}

.main-header__link:hover {
  color: #0f172a;
  background: #f1f5f9;
}

/* Dropdown */
.main-header__dropdown {
  position: relative;
}

.main-header__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.625rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  background: none;
  border: none;
  border-radius: 0.625rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.main-header__dropdown-toggle:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.main-header__dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.main-header__dropdown.is-open .main-header__dropdown-arrow {
  transform: rotate(180deg);
}

/* Simple Dropdown Menu */
.main-header__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: 0 20px 40px -12px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.main-header__dropdown.is-open .main-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.625rem;
  transition: all 0.15s ease;
}

.dropdown-menu__item:hover {
  color: #0f172a;
  background: #f8fafc;
}

.dropdown-menu__item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Mega Menu */
.main-header__mega-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #f1f5f9;
  box-shadow: 0 20px 60px -12px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  z-index: 99;
}

.main-header__dropdown.is-open .main-header__mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 2rem;
}

/* Mega Menu Sections */
.mega-menu__section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-menu__section-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  padding: 0 0.75rem;
  margin-bottom: 0.5rem;
}

.mega-menu__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
  border-radius: 1rem;
  transition: all 0.2s ease;
}

.mega-menu__item:hover {
  background: #f8fafc;
}

.mega-menu__item--featured {
  background: #eff6ff;
  border: 1px solid #dbeafe;
}

.mega-menu__item--featured:hover {
  background: #dbeafe;
  border-color: #bfdbfe;
}

.mega-menu__item--link {
  color: #3b82f6;
  font-weight: 600;
  margin-top: 0.5rem;
}

.mega-menu__item--link svg {
  width: 16px;
  height: 16px;
  margin-left: auto;
}

.mega-menu__item-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.mega-menu__item-icon svg {
  width: 20px;
  height: 20px;
  stroke: #64748b;
}

.mega-menu__item-icon--blue {
  background: #3b82f6;
}

.mega-menu__item-icon--blue svg {
  stroke: white;
}

.mega-menu__item-content {
  flex: 1;
  min-width: 0;
}

.mega-menu__item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.125rem;
}

.mega-menu__item-desc {
  font-size: 0.8125rem;
  color: #64748b;
}

.mega-menu__badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #3b82f6;
  background: #dbeafe;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.mega-menu__badge--muted {
  color: #94a3b8;
  background: #f1f5f9;
}

/* Disabled menu items (Coming Soon) */
.mega-menu__item--disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.mobile-menu__item--disabled {
  opacity: 0.6;
  pointer-events: none;
}

.mobile-menu__soon {
  font-size: 10px;
  color: #94a3b8;
  margin-left: 8px;
}

/* Mega Menu Promo */
.mega-menu__promo {
  background: #0f172a;
  border-radius: 1.5rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.mega-menu__promo-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mega-menu__promo-badge {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FBBF24;
  margin-bottom: 1rem;
}

.mega-menu__promo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.mega-menu__promo-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.mega-menu__promo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  background: #3b82f6;
  color: white;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.mega-menu__promo-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* Auth Buttons */
.main-header__auth {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 1024px) {
  .main-header__auth {
    display: none;
  }
}

.main-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.main-header__btn--outline {
  color: #64748b;
  background: transparent;
}

.main-header__btn--outline:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.main-header__btn--primary {
  color: white;
  background: #3b82f6;
}

.main-header__btn--primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Mobile Toggle */
.main-header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s ease;
}

.main-header__mobile-toggle:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.main-header__mobile-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  .main-header__mobile-toggle {
    display: flex;
  }
}

/* Mobile Menu */
.main-header__mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 98;
  overflow-y: auto;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.main-header__mobile.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1025px) {
  .main-header__mobile {
    display: none !important;
  }
}

.mobile-menu__inner {
  padding: 1.5rem;
}

.mobile-menu__section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu__section:last-of-type {
  border-bottom: none;
}

.mobile-menu__section-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.mobile-menu__item {
  display: block;
  padding: 0.875rem 0;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #f8fafc;
}

.mobile-menu__item:last-child {
  border-bottom: none;
}

.mobile-menu__auth {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}

.mobile-menu__auth .main-header__btn {
  width: 100%;
  padding: 1rem;
  justify-content: center;
}


/* ========================================
   Legacy Header Styles (for backwards compat)
   ======================================== */
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
}

.logo-text {
  font-size: 1.375rem;
  text-transform: lowercase;
}

.docu-logo-bold {
  font-weight: 700;
  color: #0f172a;
}

.docu-logo-light {
  font-weight: 300;
  color: #94a3b8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.nav-links a.active {
  background: #f1f5f9;
  color: #3b82f6;
}

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

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.15s ease;
}

.header-icon:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background: #2563eb;
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

/* ========================================
   Hero Section v12.0 
   ======================================== */
.hero-section {
  position: relative;
  background: #0f172a;
  padding: 200px 0 180px;
  min-height: 780px;
  overflow: visible;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.85) 60%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 1;
}

.hero-content {
  padding-right: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.hero-accent {
  color: #3b82f6;
}

.hero-subtitle {
  color: #94a3b8;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 32rem;
  font-weight: 500;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3b82f6;
  color: white;
  padding: 1.25rem 3rem;
  border-radius: 1.5rem;
  font-weight: 900;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
  color: white;
}

.hero-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.8);
}

.hero-note-accent {
  color: #FBBF24;
  font-weight: 700;
}

/* Preloader */
.preloader-logo {
  position: relative;
  margin-bottom: 1.5rem;
}

.preloader-text {
  color: white;
  font-weight: bold;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 10px;
  opacity: 0.4;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  padding: 0 1.5rem;
  text-align: center;
}

/* Legacy Hero (backwards compat) */
.hero {
  position: relative;
  overflow: hidden;
}

/* Pattern Dark - точно как в брендбуке */
.pattern-dark {
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Features Section v12.0 */
.section {
  padding: 120px 0;
  position: relative;
}

.section-light {
  background: #f1f5f9; /* slate-100 */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Section Label */
.section-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #94a3b8;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  background: #FBBF24;
  border-radius: 50%;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

/* Feature Cards v12.0 */
.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.feature-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 3rem;
  padding: 48px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
  background: #2563eb;
  color: white;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #f1f5f9;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  color: #2563eb;
  transition: all 0.3s ease;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin-bottom: 16px;
}

.feature-text {
  font-size: 15px;
  font-weight: 500;
  color: #64748b;
  line-height: 1.7;
}

/* Document Types */
.doc-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.doc-type-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.doc-type-card:hover {
  background: rgba(66, 133, 244, 0.1);
  border-color: var(--accent-blue);
  color: var(--text-primary);
}

.doc-type-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(66, 133, 244, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.doc-type-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

.doc-type-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 40px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-blue);
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.1) 0%, var(--bg-card) 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--accent-blue);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-price {
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
}

.pricing-period {
  color: var(--text-secondary);
  font-size: 16px;
}

.pricing-desc {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 15px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
}

.pricing-features li svg {
  color: #34d399;
  flex-shrink: 0;
}

.btn-block {
  width: 100%;
}

/* CTA Section */
.cta-section {
  background: var(--accent-blue);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .dot-pattern {
  opacity: 0.1;
}

.cta-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.btn-white {
  background: white;
  color: var(--accent-blue);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* Preview Card */
.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 48px;
}

.preview-header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.preview-body {
  background: #fff;
  min-height: 400px;
  overflow: hidden;
}

#sidebar-preview-iframe {
  width: 1150px;
  height: 850px;
  border: none;
  transform-origin: top left;
  background: white;
}

.preview-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

/* Прелоадер */
#preloader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease-in-out, visibility 0.6s;
}

#preloader.hidden-loader { 
  opacity: 0; 
  visibility: hidden; 
}

/* Анимация отрисовки логотипа */
.logo-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw 1.5s ease-out forwards;
}

.logo-path-1 { animation-delay: 0.2s; }
.logo-path-2 { animation-delay: 0.4s; }
.logo-path-3 { animation-delay: 0.6s; }

.ai-dot-anim {
  opacity: 0;
  transform: scale(0);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 1.8s;
}

@keyframes draw { 
  to { stroke-dashoffset: 0; } 
}

@keyframes popIn { 
  to { opacity: 1; transform: scale(1); } 
}

/* Responsive hero adjustments */
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 80px !important;
  }
  
  .nav-links {
    display: none;
  }
  
  .features-grid,
  .doc-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 140px 0 100px !important;
  }
  
  .hero h1 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
  }
  
  .hero p {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
    max-width: 100% !important;
    line-height: 1.6 !important;
  }
  
  .hero a {
    padding: 1rem 2rem !important;
    font-size: 0.75rem !important;
    width: 100%;
    justify-content: center;
  }
  
  .hero .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  
  .features-grid,
  .doc-types-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 80px !important;
  }
  
  .hero h1 {
    font-size: 1.75rem !important;
    margin-bottom: 1.25rem !important;
    line-height: 1.2 !important;
  }
  
  .hero p {
    font-size: 0.9375rem !important;
    margin-bottom: 1.75rem !important;
  }
  
  .hero a {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
  }
  
  .hero .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* =====================================================
   HERO AI ANIMATION v12.0
   ===================================================== */

/* Основной контейнер анимации */
.hero-ai-animation {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 480px;
  background: white;
  border: 1px solid #f1f5f9;
  border-radius: 3rem;
  box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

/* Луч сканера */
.hero-scanner-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.2), transparent);
  border-top: 2px solid #3b82f6;
  z-index: 20;
  pointer-events: none;
  animation: hero-scan-loop 10s infinite;
}

@keyframes hero-scan-loop {
  0% { top: -10%; opacity: 0; }
  5%, 25% { opacity: 1; }
  30% { top: 110%; opacity: 0; }
  100% { top: 110%; opacity: 0; }
}

/* Header анимации */
.hero-ai-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
  text-align: left;
}

.hero-ai-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.hero-ai-dot {
  width: 10px;
  height: 10px;
  background: #FBBF24;
  border-radius: 50%;
  box-shadow: 0 0 10px #fbbf24;
  animation: pulse 2s infinite;
}

.hero-ai-label span {
  font-size: 10px;
  font-weight: 900;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}

.hero-ai-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: left;
}

.hero-ai-badge {
  background: #f8fafc;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
}

.hero-ai-badge span {
  font-size: 9px;
  font-weight: 900;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Ряды документа */
.hero-ai-rows {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}

.hero-ai-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
}

.hero-ai-row-ok {
  opacity: 0.4;
}

.hero-ai-row-lines {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  text-align: left;
}

.hero-ai-line {
  height: 8px;
  border-radius: 100px;
  background: #e2e8f0;
}

.hero-ai-line-1 { width: 33%; }
.hero-ai-line-2 { width: 66%; height: 6px; background: #f1f5f9; }
.hero-ai-line-3 { width: 25%; }
.hero-ai-line-4 { width: 50%; height: 6px; background: #f1f5f9; }
.hero-ai-line-active-1 { width: 50%; background: #0f172a; height: 10px; }
.hero-ai-line-active-2 { width: 75%; background: #cbd5e1; }

.hero-ai-check {
  width: 20px;
  height: 20px;
  color: #10b981;
  margin-left: 1rem;
  flex-shrink: 0;
}

/* Динамический ряд с анимацией */
.hero-ai-row-dynamic {
  padding: 1.25rem;
  border-radius: 1.5rem;
  border-width: 2px;
  animation: hero-row-state 10s infinite;
  opacity: 1;
}

@keyframes hero-row-state {
  0%, 25% { background-color: #f8fafc; border-color: #f1f5f9; }
  30%, 55% { background-color: rgba(239, 68, 68, 0.1); border-color: #ef4444; }
  60%, 80% { background-color: rgba(59, 130, 246, 0.1); border-color: #3b82f6; }
  85%, 100% { background-color: rgba(16, 185, 129, 0.1); border-color: #10b981; }
}

/* Динамическая иконка */
.hero-dynamic-icon {
  width: 24px;
  height: 24px;
  margin-left: 1rem;
  flex-shrink: 0;
}

.hero-dynamic-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  animation: hero-icon-switch 10s infinite;
}

@keyframes hero-icon-switch {
  0%, 29% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23cbd5e1" stroke-width="3"><path d="M5 13l4 4L19 7"/></svg>'); }
  30%, 59% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ef4444" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>'); }
  60%, 84% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%233b82f6" stroke-width="3"><path d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/></svg>'); }
  85%, 100% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%2310b981" stroke-width="4"><path d="M5 13l4 4L19 7"/></svg>'); }
}

/* Footer анимации */
.hero-ai-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  position: relative;
  height: 80px;
  text-align: left;
}

.hero-msg {
  position: absolute;
  inset: 0;
  padding-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.hero-msg-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-msg-icon svg {
  width: 20px;
  height: 20px;
}

.hero-msg-icon-error {
  background: #fef2f2;
  color: #ef4444;
}

.hero-msg-icon-fixing {
  background: #eff6ff;
  color: #3b82f6;
}

.hero-msg-icon-success {
  background: #ecfdf5;
  color: #10b981;
}

.hero-msg-title {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}

.hero-msg-title-error { color: #ef4444; }
.hero-msg-title-fixing { color: #3b82f6; }
.hero-msg-title-success { color: #10b981; }

.hero-msg-text {
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Видимость сообщений */
.hero-msg-error { animation: hero-show-error-msg 10s infinite; }
.hero-msg-fixing { animation: hero-show-fixing-msg 10s infinite; }
.hero-msg-success { animation: hero-show-success-msg 10s infinite; }

@keyframes hero-show-error-msg { 
  0%, 29% { opacity: 0; visibility: hidden; } 
  30%, 59% { opacity: 1; visibility: visible; } 
  60%, 100% { opacity: 0; visibility: hidden; } 
}

@keyframes hero-show-fixing-msg { 
  0%, 59% { opacity: 0; visibility: hidden; } 
  60%, 84% { opacity: 1; visibility: visible; } 
  85%, 100% { opacity: 0; visibility: hidden; } 
}

@keyframes hero-show-success-msg { 
  0%, 84% { opacity: 0; visibility: hidden; } 
  85%, 100% { opacity: 1; visibility: visible; } 
}

/* Динамическая строка - состояния */
.hero-ai-row-dynamic {
  animation: hero-row-state 10s infinite;
}

@keyframes hero-row-state {
  0%, 25% { background-color: #f8fafc; border-color: #f1f5f9; }
  30%, 55% { background-color: rgba(239, 68, 68, 0.1); border-color: #ef4444; }
  60%, 80% { background-color: rgba(59, 130, 246, 0.1); border-color: #3b82f6; }
  85%, 100% { background-color: rgba(16, 185, 129, 0.1); border-color: #10b981; }
}

/* Динамическая иконка */
.hero-dynamic-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  animation: hero-icon-switch 10s infinite;
}

@keyframes hero-icon-switch {
  0%, 29% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23cbd5e1" stroke-width="3"><path d="M5 13l4 4L19 7"/></svg>'); }
  30%, 59% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ef4444" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"/></svg>'); }
  60%, 84% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%233b82f6" stroke-width="3"><path d="M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"/></svg>'); }
  85%, 100% { content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%2310b981" stroke-width="4"><path d="M5 13l4 4L19 7"/></svg>'); }
}

/* Спиннер при исправлении */
.hero-fixing-spinner {
  animation: hero-spin-slow 1s linear infinite;
}

@keyframes hero-spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Пульсация */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ========================================
   About Page Styles
   ======================================== */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.15;
}

.about-hero__content {
  position: relative;
  z-index: 1;
}

.about-hero .docu-h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: #0f172a;
  margin: 1rem 0;
  letter-spacing: -0.03em;
}

.about-hero .docu-lead {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* About Sections */
.about-section {
  padding: 80px 0;
}

.about-section--gray {
  background: #f8fafc;
}

.about-section--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

/* About Card (Mission) */
.about-card {
  background: white;
  border-radius: 3rem;
  padding: 4rem;
  text-align: center;
  box-shadow: 0 25px 80px -20px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
}

.about-card--wide {
  max-width: 800px;
  margin: 0 auto;
}

.about-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: #3b82f6;
}

.about-card .docu-h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
}

.about-card .docu-body {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #64748b;
}

/* Features Grid */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.about-feature {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
}

.about-feature__icon {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.about-feature:hover .about-feature__icon {
  background: #3b82f6;
  color: white;
}

.about-feature__icon--gold {
  color: #f59e0b;
}

.about-feature:hover .about-feature__icon--gold {
  background: #f59e0b;
  color: white;
}

.about-feature .docu-h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.about-feature .docu-body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Stats Section */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-stat {
  padding: 2rem;
}

.about-stat__number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #3b82f6;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.about-stat__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Advantages Section */
.about-advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .about-advantages {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .about-advantages {
    grid-template-columns: 1fr;
  }
}

.about-advantage {
  text-align: center;
  padding: 2rem;
}

.about-advantage__number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}

.about-advantage__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.about-advantage__text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* CTA Section */
.about-cta {
  background: white;
  border-radius: 3rem;
  padding: 5rem;
  text-align: center;
  box-shadow: 0 25px 80px -20px rgba(15, 23, 42, 0.1);
  border: 1px solid #e2e8f0;
  max-width: 800px;
  margin: 0 auto;
}

.about-cta .docu-h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.about-cta .docu-lead {
  color: #64748b;
  margin-bottom: 2.5rem;
}

.about-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons for About page */
.btn-primary-massive {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: #3b82f6;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary-massive:hover {
  background: #2563eb;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
}

.btn-outline-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  background: transparent;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid #e2e8f0;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-large:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: #cbd5e1;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mb-16 {
  margin-bottom: 4rem;
}

/* Container for about page */
.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   News Section Styles
   ======================================== */

/* Hero Section */
.news-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 120px 0 80px;
}

.news-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.news-hero__desc {
  color: #94a3b8;
  font-size: 1.125rem;
  max-width: 600px;
}

/* Breadcrumbs */
.news-breadcrumbs {
  margin-bottom: 32px;
}

.news-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-breadcrumbs__separator {
  color: #64748b;
}

.news-breadcrumbs__link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.news-breadcrumbs__link:hover {
  color: #e2e8f0;
}

.news-breadcrumbs__current {
  color: #3b82f6;
  font-size: 14px;
  font-weight: 600;
}

/* Filter Section */
.news-filter {
  background: white;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 80px;
  z-index: 100;
}

.news-filter__list {
  display: flex;
  gap: 8px;
  padding: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.news-filter__btn {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  background: #f1f5f9;
  color: #64748b;
}

.news-filter__btn:hover {
  background: #e2e8f0;
  color: #475569;
}

.news-filter__btn--active {
  background: #3b82f6;
  color: white;
}

.news-filter__btn--active:hover {
  background: #2563eb;
  color: white;
}

/* Grid Section */
.news-grid-section {
  padding: 60px 0;
  background: #f8fafc;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

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

/* Card */
.news-card {
  background: white;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.news-card__image {
  display: block;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%);
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__body {
  padding: 28px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news-card__category {
  padding: 6px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card__date {
  font-size: 12px;
  color: #94a3b8;
}

.news-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.news-card__title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s;
}

.news-card__title a:hover {
  color: #3b82f6;
}

.news-card__excerpt {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3b82f6;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}

.news-card__link:hover {
  gap: 12px;
}

/* Pagination */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.news-pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  background: white;
  border: 1px solid #e2e8f0;
  color: #64748b;
  transition: all 0.2s;
}

.news-pagination__btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.news-pagination__btn--active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.news-pagination__btn--arrow {
  padding: 0;
  width: 44px;
}

/* Empty State */
.news-empty {
  text-align: center;
  padding: 80px 40px;
  background: white;
  border-radius: 2rem;
}

.news-empty svg {
  margin-bottom: 24px;
}

.news-empty h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.news-empty p {
  color: #64748b;
}

/* CTA Section */
.news-cta {
  padding: 80px 0;
  background: white;
}

.news-cta__card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 3rem;
  padding: 60px;
  text-align: center;
}

.news-cta__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.news-cta__desc {
  color: #94a3b8;
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.news-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #3b82f6;
  color: white;
  padding: 18px 40px;
  border-radius: 1.5rem;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-cta__btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
/* ========================================
   MOBILE RESPONSIVE STYLES v12.0
   Комплексные улучшения для мобильных
   ======================================== */

/* === TABLET (до 1024px) === */
@media (max-width: 1024px) {
  /* Header */
  .main-header__container {
    padding: 0 1.5rem;
    height: 64px;
  }
  
  /* Hero */
  .hero-section {
    padding: 140px 0 100px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  /* Sections */
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  /* UPD Types */
  .upd-types-section {
    padding: 80px 0;
  }
  
  .upd-types-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  
  /* Features Grid */
  .feature-card {
    padding: 32px;
    border-radius: 2rem;
  }
  
  .feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }
}

/* === MOBILE (до 768px) === */
@media (max-width: 768px) {
  /* Hide AI Animation on mobile */
  .hero-section .col-lg-6:last-child {
    display: none !important;
  }
  
  /* Container */
  .container {
    padding: 0 20px;
  }
  
  /* Header */
  .main-header__container {
    padding: 0 1rem;
    height: 60px;
  }
  
  .main-header__logo-icon {
    width: 32px;
    height: 32px;
  }
  
  .main-header__logo-text {
    font-size: 1.125rem;
  }
  
  /* Mobile Menu */
  .main-header__mobile {
    top: 60px;
    padding-top: 0;
  }
  
  .main-header__mobile.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu__inner {
    padding: 1rem;
  }
  
  .mobile-menu__item {
    padding: 1rem 0;
    font-size: 1.0625rem;
  }
  
  .mobile-menu__auth .main-header__btn {
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 700;
  }
  
  /* Hero Section */
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 1.875rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  
  .hero-cta-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    border-radius: 1.25rem;
  }
  
  .hero-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
  
  /* Sections */
  .section {
    padding: 60px 0;
  }
  
  .section-light {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .section-title {
    font-size: 1.625rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  /* Features Grid */
  .features-grid {
    gap: 16px;
  }
  
  .feature-card {
    padding: 28px;
    border-radius: 1.75rem;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 1rem;
    margin-bottom: 20px;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .feature-title {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .feature-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  /* UPD Types Section */
  .upd-types-section {
    padding: 60px 0;
  }
  
  .upd-types-header {
    margin-bottom: 32px;
    text-align: center;
  }
  
  .upd-types-label {
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .upd-types-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  
  .upd-types-grid {
    gap: 12px;
  }
  
  .upd-type-card {
    padding: 20px;
    border-radius: 1.25rem;
    min-height: 160px;
  }
  
  .upd-type-card-header {
    margin-bottom: 16px;
  }
  
  .upd-type-card-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
  }
  
  .upd-type-card-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .upd-type-card-tag {
    font-size: 9px;
    letter-spacing: 0.25em;
    margin-bottom: 6px;
  }
  
  .upd-type-card-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .upd-type-card-desc {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Pricing Section */
  .pricing-section-v12 {
    padding: 60px 0;
  }
  
  .pricing-header-v12 {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .pricing-label-v12 {
    justify-content: center;
  }
  
  .pricing-title-v12 {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  
  .pricing-grid-v12 {
    gap: 16px;
  }
  
  .pricing-card-v12 {
    padding: 32px 24px;
    border-radius: 2rem;
  }
  
  .pricing-card-v12.featured {
    padding: 36px 24px;
    border-radius: 2.25rem;
    border-width: 3px;
  }
  
  .pricing-amount-v12 {
    font-size: 3rem;
  }
  
  .pricing-features-v12 li {
    font-size: 0.8125rem;
    padding: 8px 0;
    gap: 10px;
  }
  
  .pricing-features-v12 svg {
    width: 18px;
    height: 18px;
  }
  
  .pricing-btn-v12 {
    padding: 14px 20px;
    font-size: 10px;
    border-radius: 1rem;
  }
  
  /* Knowledge Hub / News */
  .knowledge-hub-section {
    padding: 60px 0;
  }
  
  .knowledge-hub-header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .knowledge-hub-label {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .knowledge-hub-title {
    font-size: 1.5rem;
    line-height: 1.1;
  }
  
  .knowledge-hub-grid {
    gap: 1rem;
  }
  
  .article-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .article-card--featured {
    padding: 1.5rem;
    min-height: 280px;
    border-radius: 2rem;
  }
  
  .article-card-title--large {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .article-card-title--small {
    font-size: 1rem;
  }
  
  .article-card-excerpt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  
  .article-card--small {
    min-height: 180px;
  }
  
  .knowledge-hub-bottom-row {
    gap: 1rem;
  }
  
  .article-card-cta {
    padding: 1.5rem;
    border-radius: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .article-card-cta-content {
    text-align: center;
  }
  
  .article-card-cta-title {
    font-size: 1.125rem;
    margin-bottom: 0.375rem;
  }
  
  .article-card-cta-desc {
    font-size: 0.8125rem;
  }
  
  .article-card-cta-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.875rem;
  }
  
  /* CTA Section */
  .cta-section-v12 {
    padding: 60px 0;
  }
  
  .cta-card-v12 {
    padding: 40px 24px;
    border-radius: 2.5rem;
  }
  
  .cta-title-v12 {
    font-size: 1.625rem;
    margin-bottom: 16px;
  }
  
  .cta-desc-v12 {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  
  .cta-btn-v12 {
    width: 100%;
    padding: 18px 24px;
    font-size: 11px;
    border-radius: 1.5rem;
  }
  
  /* Footer - 2 columns layout */
  .footer-v12 {
    padding: 48px 0 32px;
  }
  
  .footer-container-v12 {
    padding: 0 20px;
  }
  
  .footer-grid-v12 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-bottom: 32px;
  }
  
  .footer-brand-v12 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .footer-logo-v12 {
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .footer-desc-v12 {
    max-width: 100%;
    text-align: center;
  }
  
  .footer-nav-v12 {
    text-align: left;
  }
  
  .footer-nav-v12 h4 {
    margin-bottom: 12px !important;
  }
  
  .footer-nav-v12 li {
    margin-bottom: 8px !important;
  }
  
  .footer-bottom-v12 {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-legal-v12 {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-status-v12 {
    margin: 0 auto;
  }
  
  .footer-signature-v12 {
    padding-top: 20px;
  }
  
  .footer-signature-v12 p {
    font-size: 8px;
    letter-spacing: 0.3em;
  }
  
  /* News page */
  .news-hero {
    padding: 100px 0 60px;
  }
  
  .news-hero__title {
    font-size: 1.75rem;
  }
  
  .news-filter {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
    border-radius: 1.5rem;
  }
  
  .news-filter__btn {
    padding: 0.75rem 1rem;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .news-grid {
    gap: 1rem;
  }
  
  .news-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
  
  .news-card__title {
    font-size: 1rem;
  }
  
  .news-cta__card {
    padding: 40px 24px;
    border-radius: 2rem;
  }
  
  .news-cta__title {
    font-size: 1.25rem;
  }
  
  .news-cta__desc {
    font-size: 1rem;
  }
  
  .news-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 12px;
  }
}

/* === SMALL MOBILE (до 480px) === */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Header */
  .main-header__container {
    padding: 0 12px;
    height: 56px;
  }
  
  .main-header__logo-icon {
    width: 28px;
    height: 28px;
  }
  
  .main-header__logo-text {
    font-size: 1rem;
  }
  
  /* Mobile Menu */
  .main-header__mobile {
    top: 56px;
  }
  
  .main-header__mobile.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  /* Hero */
  .hero-section {
    padding: 80px 0 48px;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }
  
  .hero-subtitle {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-cta-btn {
    padding: 1rem 1.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }
  
  .hero-note {
    font-size: 0.75rem;
  }
  
  /* Sections */
  .section {
    padding: 48px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
  }
  
  .section-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 0.9375rem;
  }
  
  /* Features */
  .feature-card {
    padding: 24px;
    border-radius: 1.5rem;
  }
  
  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-title {
    font-size: 0.9375rem;
    margin-bottom: 8px;
  }
  
  .feature-text {
    font-size: 0.8125rem;
  }
  
  /* UPD Types */
  .upd-types-section {
    padding: 48px 0;
  }
  
  .upd-types-header {
    margin-bottom: 24px;
  }
  
  .upd-types-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    gap: 8px;
  }
  
  .upd-types-label .ai-node {
    width: 8px;
    height: 8px;
  }
  
  .upd-types-title {
    font-size: 1.25rem;
  }
  
  .upd-type-card {
    padding: 16px;
    border-radius: 1rem;
    min-height: 140px;
  }
  
  .upd-type-card-header {
    margin-bottom: 12px;
  }
  
  .upd-type-card-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
  
  .upd-type-card-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .upd-type-card-arrow {
    width: 20px;
    height: 20px;
  }
  
  .upd-type-card-tag {
    font-size: 8px;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
  }
  
  .upd-type-card-title {
    font-size: 0.9375rem;
  }
  
  .upd-type-card-desc {
    font-size: 0.6875rem;
  }
  
  /* Pricing */
  .pricing-section-v12 {
    padding: 48px 0;
  }
  
  .pricing-header-v12 {
    margin-bottom: 32px;
  }
  
  .pricing-label-v12 {
    font-size: 9px;
    letter-spacing: 0.3em;
  }
  
  .pricing-title-v12 {
    font-size: 1.25rem;
  }
  
  .pricing-card-v12 {
    padding: 28px 20px;
    border-radius: 1.75rem;
  }
  
  .pricing-card-v12.featured {
    padding: 32px 20px;
    border-radius: 2rem;
  }
  
  .pricing-badge-v12 {
    font-size: 8px;
    padding: 6px 14px;
  }
  
  .pricing-plan-v12 {
    font-size: 9px;
    margin-bottom: 16px;
  }
  
  .pricing-amount-v12 {
    font-size: 2.5rem;
  }
  
  .pricing-period-v12 {
    font-size: 9px;
    margin-bottom: 24px;
  }
  
  .pricing-features-v12 {
    margin-bottom: 24px;
  }
  
  .pricing-features-v12 li {
    font-size: 0.75rem;
    padding: 6px 0;
    gap: 8px;
  }
  
  .pricing-features-v12 svg {
    width: 16px;
    height: 16px;
  }
  
  .pricing-btn-v12 {
    padding: 12px 16px;
    font-size: 9px;
    border-radius: 0.875rem;
  }
  
  /* Knowledge Hub */
  .knowledge-hub-section {
    padding: 48px 0;
  }
  
  .knowledge-hub-header {
    margin-bottom: 1.5rem;
  }
  
  .knowledge-hub-label {
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
  }
  
  .knowledge-hub-title {
    font-size: 1.25rem;
  }
  
  .article-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  
  .article-card--featured {
    padding: 1.25rem;
    min-height: 240px;
    border-radius: 1.75rem;
  }
  
  .article-card-badge {
    font-size: 8px;
    padding: 0.375rem 1rem;
    border-radius: 0.625rem;
  }
  
  .article-card-title--large {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .article-card-title--small {
    font-size: 0.9375rem;
  }
  
  .article-card-excerpt {
    font-size: 0.8125rem;
  }
  
  .article-card-meta {
    font-size: 10px;
  }
  
  .article-card--small {
    min-height: 160px;
  }
  
  .article-card-cta {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  
  .article-card-cta-title {
    font-size: 1rem;
  }
  
  .article-card-cta-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
  }
  
  /* CTA */
  .cta-section-v12 {
    padding: 48px 0;
  }
  
  .cta-card-v12 {
    padding: 32px 20px;
    border-radius: 2rem;
  }
  
  .cta-label-v12 {
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-bottom: 16px;
  }
  
  .cta-title-v12 {
    font-size: 1.375rem;
    margin-bottom: 12px;
  }
  
  .cta-desc-v12 {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
  
  .cta-btn-v12 {
    padding: 16px 20px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }
  
  .cta-btn-v12 svg {
    width: 16px;
    height: 16px;
  }
  
  /* Footer - 2 columns on small mobile */
  .footer-v12 {
    padding: 40px 0 24px;
  }
  
  .footer-container-v12 {
    padding: 0 16px;
  }
  
  .footer-grid-v12 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    margin-bottom: 24px;
  }
  
  .footer-brand-v12 {
    grid-column: 1 / -1;
    margin-bottom: 4px;
  }
  
  .footer-logo-v12 svg {
    width: 28px;
    height: 28px;
  }
  
  .footer-logo-v12 .logo-text {
    font-size: 1.125rem;
  }
  
  .footer-desc-v12 {
    font-size: 0.8125rem;
  }
  
  .footer-nav-v12 {
    text-align: left;
  }
  
  .footer-nav-v12 h4 {
    font-size: 8px !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 10px !important;
  }
  
  .footer-nav-v12 a {
    font-size: 12px !important;
  }
  
  .footer-nav-v12 li {
    margin-bottom: 6px !important;
  }
  
  .footer-bottom-v12 {
    gap: 16px;
    padding-top: 24px;
  }
  
  .footer-copyright-v12 {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  
  .footer-legal-v12 a {
    font-size: 9px;
  }
  
  .footer-status-v12 {
    padding: 6px 12px;
  }
  
  .footer-status-v12 .status-dot {
    width: 6px;
    height: 6px;
  }
  
  .footer-status-v12 .status-text {
    font-size: 8px;
  }
  
  .footer-signature-v12 {
    padding-top: 20px;
  }
  
  .footer-signature-v12 p {
    font-size: 7px;
    letter-spacing: 0.25em;
  }
  
  /* News page */
  .news-hero {
    padding: 80px 0 48px;
  }
  
  .news-hero__label {
    font-size: 9px;
  }
  
  .news-hero__title {
    font-size: 1.5rem;
  }
  
  .news-hero__subtitle {
    font-size: 0.9375rem;
  }
  
  .news-filter {
    padding: 0.75rem;
    gap: 0.5rem;
    border-radius: 1.25rem;
  }
  
  .news-filter__btn {
    padding: 0.625rem 0.75rem;
    font-size: 11px;
    border-radius: 0.625rem;
  }
  
  .news-card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  
  .news-card__category {
    font-size: 9px;
  }
  
  .news-card__title {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }
  
  .news-card__excerpt {
    font-size: 0.8125rem;
  }
  
  .news-card__date {
    font-size: 10px;
  }
  
  .news-pagination {
    gap: 6px;
    margin-top: 32px;
  }
  
  .news-pagination__btn {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    border-radius: 10px;
  }
  
  .news-cta__card {
    padding: 32px 20px;
    border-radius: 1.75rem;
  }
  
  .news-cta__title {
    font-size: 1.125rem;
  }
  
  .news-cta__desc {
    font-size: 0.9375rem;
    margin-bottom: 24px;
  }
  
  .news-cta__btn {
    padding: 14px 20px;
    font-size: 11px;
    border-radius: 1rem;
  }
}

/* === TOUCH IMPROVEMENTS === */
@media (hover: none) and (pointer: coarse) {
  /* Увеличенные touch targets */
  .main-header__link,
  .main-header__dropdown-toggle {
    padding: 0.75rem 1.25rem;
    min-height: 44px;
  }
  
  .main-header__btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
  }
  
  .main-header__mobile-toggle {
    min-width: 48px;
    min-height: 48px;
  }
  
  .mobile-menu__item {
    min-height: 48px;
    padding: 1rem 0;
  }
  
  /* Убираем hover эффекты на touch устройствах */
  .feature-card:hover,
  .upd-type-card:hover,
  .pricing-card-v12:hover,
  .article-card:hover {
    transform: none;
  }
  
  /* Но оставляем active эффекты */
  .feature-card:active,
  .upd-type-card:active,
  .pricing-card-v12:active,
  .article-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }
  
  .hero-cta-btn:active,
  .cta-btn-v12:active,
  .pricing-btn-v12:active,
  .news-cta__btn:active {
    transform: scale(0.97);
  }
}

/* === SAFE AREA для iPhone с notch === */
@supports (padding: env(safe-area-inset-top)) {
  .main-header {
    padding-top: env(safe-area-inset-top);
  }
  
  .main-header__mobile {
    padding-bottom: env(safe-area-inset-bottom);
  }
  
  .footer-v12 {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* === Landscape на мобильных === */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding: 80px 0 40px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .hero-cta-btn {
    padding: 0.875rem 1.5rem;
  }
}