
    /* ============================================
       ОСНОВНЫЕ СТИЛИ ИЗ ГЛАВНОЙ СТРАНИЦЫ
       ============================================ */
    :root {
      --primary-black: #0a0a0a;  
      --metal-dark: #1a1a1a;
      --metal-medium: #2d2d2d;
      --metal-light: #3d3d3d;
      --bronze-dark: #8B4513;
      --bronze-medium: #D2691E;
      --bronze-light: #F4A460;
      --gold-dark: #B8860B;
      --gold-medium: #DAA520;
      --gold-light: #FFD700;
      --steel-dark: #4682B4;
      --steel-medium: #5F9EA0;
      --steel-light: #B0C4DE;
      --metal-gradient: linear-gradient(135deg, var(--metal-dark) 0%, var(--metal-medium) 50%, var(--metal-light) 100%);
      --bronze-gradient: linear-gradient(135deg, var(--bronze-dark) 0%, var(--bronze-medium) 50%, var(--bronze-light) 100%);
      --gold-gradient: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-medium) 50%, var(--gold-light) 100%);
      --steel-gradient: linear-gradient(135deg, var(--steel-dark) 0%, var(--steel-medium) 50%, var(--steel-light) 100%);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
      --shadow-glow: 0 0 20px rgba(218, 165, 32, 0.5);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --border-radius: 12px;
      --border-radius-lg: 20px;
    }
    
    *, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }
    
    body {
      font-family: 'Dudka', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
      color: #fff;
      background-color: var(--primary-black);
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
    }
    
    @font-face {
      font-family: 'Dudka';
      src: url('../fonts/Dudka Thin.ttf') format('truetype');
      font-weight: 100;
      font-style: normal;
    }
    
    @font-face {
      font-family: 'Dudka';
      src: url('../fonts/Dudka Thin Italic.ttf') format('truetype');
      font-weight: 100;
      font-style: italic;
    }
    
    @font-face {
      font-family: 'Dudka';
      src: url('../fonts/Dudka Regular.ttf') format('truetype');
      font-weight: 400;
      font-style: normal;
    }
    
    @font-face {
      font-family: 'Dudka';
      src: url('../fonts/Dudka Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
    }
    
    @font-face {
      font-family: 'LeotaroCyrillic';
      src: url('../fonts/Leotaro-Regular_0.otf') format('opentype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    
    body,
    p,
    li,
    a,
    span,
    div,
    input,
    textarea,
    select,
    button {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
    
    .logo-main,
    .logo-sub,
    .hero-title .gradient-text,
    .hero-title > .hero-subtitle {
      font-family: 'LeotaroCyrillic', serif;
      font-weight: normal;
      letter-spacing: 0.02em;
    }
    
    .logo-main {
      font-size: 1.5rem !important;
      letter-spacing: 0.18em !important;
    }
    
    .logo-sub {
      font-size: 0.85rem !important;
    }
    
    @media (min-width: 992px) {
      .hero-title .gradient-text {
        letter-spacing: -0.03em !important;
      }
    }
    
    #particles-js {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none;
    }
    
    .main-container {
      position: relative; z-index: 2; background: rgba(10, 10, 10, 0.9); min-height: 100vh; max-width: 1400px; margin: 0 auto; width: 100%;
    }
    
    /* ============================================
       ХЕДЕР И НАВИГАЦИЯ
       ============================================ */
    .main-header {
      background: rgba(26, 26, 26, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid rgba(218, 165, 32, 0.3);
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 0;
      width: 100%;
    }
    
    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      text-decoration: none;
      color: #fff;
      transition: var(--transition);
    }
    
    .logo:hover {
      transform: scale(1.05);
    }
    
    .logo-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      background: 
        radial-gradient(circle at 30% 30%, 
          rgba(255, 215, 0, 0.3) 0%, 
          rgba(218, 165, 32, 0.1) 40%, 
          transparent 70%),
        linear-gradient(135deg, 
          rgba(26, 26, 26, 0.8) 0%, 
          rgba(45, 45, 45, 0.8) 100%);
      border-radius: 50%;
      padding: 8px;
      border: 2px solid rgba(218, 165, 32, 0.3);
      position: relative;
      overflow: hidden;
    }
    
    .logo-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: 
        radial-gradient(circle at 70% 70%, 
          rgba(255, 215, 0, 0.2) 0%, 
          transparent 60%);
      animation: shine 4s infinite linear;
    }
    
    @keyframes shine { to { transform: rotate(360deg); } }
    
    .logo-image {
      width: 80%;
      height: 80%;
      object-fit: contain;
      transition: var(--transition);
      position: relative;
      z-index: 2;
      filter: 
        drop-shadow(0 0 12px rgba(255, 255, 255, 0.4))
        drop-shadow(0 0 25px rgba(218, 165, 32, 0.4));
    }
    
    .logo-text { display: flex; flex-direction: column; }
    
    .logo-main {
      font-weight: 700;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
    }
    
    .logo-sub { color: var(--steel-light); opacity: 0.9; }
    
    .main-nav {
      flex: 1;
      display: flex;
      justify-content: flex-start;
      margin-left: 2rem;
    }
    
    .main-nav .nav-list {
      display: flex;
      list-style: none;
      gap: 1.5rem;
      margin: 0;
      padding: 0;
    }
    
    .nav-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #fff;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: var(--border-radius);
      transition: var(--transition);
      position: relative;
      white-space: nowrap;
      font-size: 0.95rem;
      font-weight: 500;
    }
    
    .nav-link:hover,
    .nav-link.active {
      background: rgba(218, 165, 32, 0.15);
      color: var(--gold-light);
    }
    
    .dropdown {
      position: relative;
    }
    
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--metal-dark);
      border: 1px solid rgba(218, 165, 32, 0.4);
      border-radius: var(--border-radius);
      padding: 1rem;
      min-width: 400px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      z-index: 1000;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      box-shadow: var(--shadow-lg);
    }
    
    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .dropdown-arrow {
      font-size: 0.7rem;
      margin-left: 0.25rem;
      transition: var(--transition);
    }
    
    .dropdown:hover .dropdown-arrow {
      transform: rotate(180deg);
    }
    
    .dropdown-column {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .dropdown-title {
      color: var(--gold-light);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(218, 165, 32, 0.3);
    }
    
    .dropdown-title a {
      color: inherit;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    
    .dropdown-title a:hover {
      color: var(--bronze-light);
    }
    
    .dropdown-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #fff;
      text-decoration: none;
      padding: 0.4rem;
      border-radius: 6px;
      transition: var(--transition);
      font-size: 0.85rem;
    }
    
    .dropdown-item:hover {
      background: rgba(218, 165, 32, 0.1);
      color: var(--gold-light);
      transform: translateX(5px);
    }
    
    .header-contacts {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.5rem;
      margin-left: auto;
    }
    
    .contact-phone {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--gold-light);
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: var(--transition);
      white-space: nowrap;
    }
    
    .contact-phone:hover {
      color: var(--bronze-light);
      transform: scale(1.05);
    }
    
    .contact-phone i {
      color: var(--gold-light);
    }
    
    .work-area {
      color: var(--steel-light);
      text-decoration: none;
      font-size: 0.85rem;
      transition: var(--transition);
      cursor: pointer;
      text-align: right;
      border-bottom: 1px dashed rgba(176, 196, 222, 0.3);
      padding-bottom: 2px;
    }
    
    .work-area:hover {
      color: var(--gold-light);
      border-bottom-color: var(--gold-light);
    }
    
    /* МОБИЛЬНОЕ МЕНЮ */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 1002;
    }
    
    .menu-line {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--gold-light);
      margin: 3px 0;
      transition: var(--transition);
      border-radius: 1px;
    }
    
    .mobile-menu-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.9);
      z-index: 999;
    }
    
    .mobile-menu-container {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--metal-dark);
      z-index: 1000;
      overflow-y: auto;
      padding: 1rem;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }
    
    .mobile-menu-container.active {
      transform: translateX(0);
    }
    
    .mobile-menu-container.show {
      display: block;
    }
    
    .mobile-menu-overlay.show {
      display: block;
    }
    
    .mobile-nav-list {
      list-style: none;
    }
    
    .mobile-nav-item {
      margin-bottom: 0.5rem;
    }
    
    .mobile-nav-link {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #fff;
      text-decoration: none;
      padding: 1rem;
      border-radius: var(--border-radius);
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.05);
    }
    
    .mobile-nav-link:hover,
    .mobile-nav-link.active {
      background: rgba(218, 165, 32, 0.15);
      color: var(--gold-light);
    }
    
    .mobile-nav-link i {
      width: 20px;
      text-align: center;
    }
    
    .mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity, transform;
    margin-left: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
}

.mobile-dropdown-content.show {
    max-height: 2000px; /* Большое значение для плавности */
    opacity: 1;
    transform: translateY(0);
    padding: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
    
    .mobile-dropdown-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #fff;
      text-decoration: none;
      padding: 0.75rem;
      border-radius: var(--border-radius);
      transition: var(--transition);
    }
    
    .mobile-dropdown-item:hover {
      background: rgba(218, 165, 32, 0.1);
      color: var(--gold-light);
      transform: translateX(-5px);
    }
    
    .mobile-dropdown-item i {
      width: 20px;
      text-align: center;
      font-size: 0.9rem;
    }
    
    .mobile-dropdown-title {
      color: var(--gold-light);
      font-size: 0.9rem;
      margin: 1rem 0 0.5rem 0;
      padding-left: 1rem;
      font-weight: 600;
      display: block;
      text-decoration: none !important;
      cursor: pointer;
      transition: color 0.3s ease, background-color 0.3s ease;
    }
    
    .mobile-dropdown-title:hover,
    .mobile-dropdown-title:focus,
    .mobile-dropdown-title:active {
      text-decoration: none !important;
      color: var(--bronze-light);
      background-color: rgba(218, 165, 32, 0.1);
      outline: none;
    }
    
    .mobile-dropdown-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    
    .mobile-dropdown-toggle i:last-child {
      transition: transform 0.3s ease;
    }
    
    .mobile-dropdown-toggle.active i:last-child {
      transform: rotate(180deg);
    }
    
    /* ============================================
       ГЛАВНАЯ СЕКЦИЯ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .hero-section {
      padding: 120px 0 1rem 0;
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 30% 50%, rgba(218, 165, 32, 0.15) 0%, transparent 50%);
      z-index: -1;
    }
    
    .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
      text-align: center;
    }
    
    .hero-text {
      margin-bottom: 1.5rem;
    }
    
    .hero-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      line-height: 1.2;
      text-align: center;
    }
    
    .gradient-text {
      background: linear-gradient(135deg, var(--gold-light), var(--bronze-medium), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 30px rgba(218, 165, 32, 0.3);
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      color: var(--steel-light);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .hero-description {
      font-size: 1.2rem;
      margin: 0 auto 2rem;
      color: #ddd;
      line-height: 1.7;
      text-align: left;
      text-justify: inter-word;
      width: 100%;
      padding: 0 2rem;
    }
    
    @media (max-width: 992px) {
      .hero-description { padding: 0 0; }
    }
    
    @media (max-width: 768px) {
      .hero-description { text-align: left; text-justify: auto; padding: 0 0; font-size: 1rem; }
    }
    
    .hero-description strong {
      color: var(--gold-light);
      font-weight: 700;
    }
    
    a.content-link {
      color: inherit;
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
      padding: 2px 4px;
      border-radius: 3px;
      background: transparent;
      font-weight: inherit;
      font-style: inherit;
    }
    
    a.content-link:hover {
      background: rgba(218, 165, 32, 0.15);
      box-shadow: 0 0 0 1px rgba(218, 165, 32, 0.3),
                  0 0 15px rgba(218, 165, 32, 0.2);
      transform: translateY(-1px);
    }
    
    a.content-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
      opacity: 0.5;
      transition: opacity 0.3s ease;
    }
    
    a.content-link:hover::after {
      opacity: 1;
      height: 2px;
      background: var(--gold-gradient);
    }
    
    p a.content-link,
    .card-description a.content-link,
    .hero-description a.content-link {
      text-decoration: none;
      border-bottom: none;
    }
    
    .hero-buttons {
      display: flex;
      gap: 0.8rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin: 1.5rem auto 0;
      max-width: 1400px;
      padding: 0 2rem;
      width: 100%;
    }
    
    .stat-item {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      padding: 1.2rem;
      transition: var(--transition);
      text-align: center;
      width: 100%;
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--steel-light);
    }
    
    .master-award {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(218, 165, 32, 0.1);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: 20px;
      padding: 0.5rem 1rem;
      margin-top: 1rem;
      color: var(--gold-light);
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    .master-award i {
      color: var(--gold-light);
    }
    
    /* ============================================
       КНОПКИ
       ============================================ */
    .btn-primary {
      background: var(--bronze-gradient);
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      box-shadow: var(--shadow-md);
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--gold-light);
      border: 2px solid var(--bronze-medium);
      padding: 0.75rem 1.5rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    
    .btn-secondary:hover {
      background: rgba(218, 165, 32, 0.1);
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow);
    }
    
    .btn-large {
      padding: 0.9rem 1.8rem;
      font-size: 1rem;
    }
    
    .btn-outline {
      background: transparent;
      color: var(--gold-light);
      border: 2px solid var(--bronze-medium);
      padding: 0.5rem 1rem;
      border-radius: var(--border-radius);
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
    }
    
    .btn-outline:hover {
      background: rgba(218, 165, 32, 0.1);
      transform: translateY(-2px);
    }
    
    /* ============================================
       ОСНОВНОЙ КОНТЕНТ (УВЕЛИЧЕННЫЕ ОТСТУПЫ)
       ============================================ */
    .main-content {
      padding: 0rem 0;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }
    
    .section {
      width: 100%;
      padding: 3rem 0;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 2.5rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 2rem;
      width: 100%;
    }
    
    .section-title {
      font-size: 2.2rem;
      margin-bottom: 1rem;
    }
    
    .title-accent {
      color: var(--gold-light);
      text-shadow: 0 0 15px rgba(218, 165, 32, 0.3);
    }
    
    .section-subtitle {
      color: var(--steel-light);
      font-size: 1.1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* ============================================
       ХЛЕБНЫЕ КРОШКИ
       ============================================ */
    .breadcrumbs {
      background: rgba(26, 26, 26, 0.7);
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(218, 165, 32, 0.2);
      margin: 0;
      position: relative;
      z-index: 10;
    }
    
    .breadcrumbs-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    
    .breadcrumb-link {
      color: var(--steel-light);
      text-decoration: none;
      font-size: 0.9rem;
      transition: var(--transition);
    }
    
    .breadcrumb-link:hover {
      color: var(--gold-light);
    }
    
    .breadcrumb-separator {
      color: var(--steel-light);
      opacity: 0.6;
      font-size: 0.9rem;
    }
    
    .breadcrumb-current {
      color: var(--gold-light);
      font-size: 0.9rem;
      font-weight: 600;
    }
    
    /* ============================================
       КАРУСЕЛЬ КАТЕГОРИЙ - ОБНОВЛЕННЫЕ РАЗМЕРЫ
       ============================================ */
    .category-carousel-section {
      padding: 1rem 0;
      background: rgba(10, 10, 10, 0.9);
    }
    
    .simple-carousel-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .simple-carousel {
      display: flex;
      overflow-x: auto;
      gap: 1rem;
      padding: 0.5rem 0;
      scrollbar-width: thin;
      scrollbar-color: var(--bronze-medium) var(--metal-dark);
    }
    
    .simple-carousel::-webkit-scrollbar {
      height: 6px;
    }
    
    .simple-carousel::-webkit-scrollbar-track {
      background: var(--metal-dark);
      border-radius: 3px;
    }
    
    .simple-carousel::-webkit-scrollbar-thumb {
      background: var(--bronze-medium);
      border-radius: 3px;
    }
    
    .simple-carousel-item {
      flex: 0 0 auto;
      width: 300px;
      height: 340px;
      border-radius: var(--border-radius);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: var(--transition);
      border: 2px solid rgba(218, 165, 32, 0.1);
    }
    
    @media (max-width: 768px) {
      .simple-carousel-item {
        width: 260px;
        height: 300px;
      }
    }
    
    @media (max-width: 480px) {
      .simple-carousel-item {
        width: 240px;
        height: 280px;
      }
    }
    
    .simple-carousel-item:hover {
      transform: translateY(-5px);
      border-color: var(--bronze-medium);
      box-shadow: var(--shadow-glow);
    }
    
    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .simple-carousel-item:hover .carousel-image {
      transform: scale(1.05);
    }
    
    .carousel-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(10, 10, 10, 0.7) 50%, 
        transparent 100%);
      padding: 1.5rem;
    }
    
    .carousel-title {
      color: var(--gold-light);
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    
    .carousel-description {
      color: #ddd;
      font-size: 0.95rem;
      margin-bottom: 0.8rem;
    }
    
    .carousel-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      color: var(--gold-light);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
    }
    
    /* ============================================
       КАТЕГОРИИ - ОБНОВЛЕННЫЕ РАЗМЕРЫ
       ============================================ */
    .category-detail-section {
      padding: 2rem 0;
    }
    
    .category-detail-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 0 auto;
      max-width: 1400px;
      padding: 0 2rem;
    }
    
    .category-detail-card {
      background: var(--metal-gradient);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      border: 1px solid rgba(218, 165, 32, 0.2);
      transition: var(--transition);
      height: 100%;
    }
    
    .category-detail-card:hover {
      transform: translateY(-5px);
      border-color: var(--bronze-medium);
      box-shadow: var(--shadow-glow);
    }
    
    .category-detail-icon {
      font-size: 2.5rem;
      color: var(--steel-light);
      margin-bottom: 1rem;
      text-align: center;
    }
    
    .category-detail-title {
      color: var(--gold-light);
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      text-align: center;
    }
    
    .seo-text {
      color: #ddd;
      line-height: 1.7;
      margin-bottom: 1.2rem;
      text-align: left;
      font-size: 1rem;
    }
    
    .category-detail-features {
      list-style: none;
      margin: 1rem 0;
    }
    
    .category-detail-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.6rem;
      color: #ddd;
      font-size: 0.95rem;
    }
    
    .category-detail-features li i {
      color: var(--gold-light);
      font-size: 0.9rem;
    }
    
    .category-tech-specs {
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--border-radius);
      padding: 1rem;
      margin-top: 1.2rem;
    }
    
    .tech-specs-title {
      color: var(--gold-light);
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
    }
    
    .tech-specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 0.8rem;
    }
    
    .tech-spec-item {
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    
    .tech-spec-label {
      color: var(--steel-light);
      font-size: 0.85rem;
    }
    
    .tech-spec-value {
      color: var(--gold-light);
      font-weight: 600;
      font-size: 0.95rem;
    }
    
    /* ============================================
       ПРИМЕРЫ РАБОТ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .works-gallery {
      padding: 2rem 0;
    }
    
    .works-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 0 auto;
      max-width: 1400px;
      padding: 0 2rem;
    }
    
    .work-item {
      position: relative;
      border-radius: var(--border-radius);
      overflow: hidden;
      height: 250px;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .work-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-glow);
    }
    
    .work-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .work-item:hover .work-image {
      transform: scale(1.1);
    }
    
    .work-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, 
        rgba(10, 10, 10, 0.95) 0%, 
        transparent 100%);
      padding: 1.2rem;
      transform: translateY(100%);
      transition: transform 0.5s ease;
    }
    
    .work-item:hover .work-overlay {
      transform: translateY(0);
    }
    
    .work-title {
      color: var(--gold-light);
      font-size: 1.1rem;
      margin-bottom: 0.4rem;
    }
    
    .work-location {
      color: var(--steel-light);
      font-size: 0.9rem;
    }
    
    /* ============================================
       ПРОЦЕСС РАБОТЫ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .process-section {
      padding: 2rem 0;
    }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .process-step-simple {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(218, 165, 32, 0.2);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      text-align: center;
      transition: var(--transition);
    }
    
    .process-step-simple:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow);
    }
    
    .process-step-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--bronze-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      margin: 0 auto 1rem;
    }
    
    .process-step-title {
      color: var(--gold-light);
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
    }
    
    .process-step-description {
      color: #ddd;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    
    /* ============================================
       FAQ ДЛЯ КОММЕРЧЕСКОЙ КОВКИ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .faq-section {
      padding: 2rem 0;
    }
    
    .faq-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .faq-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(218, 165, 32, 0.2);
      border-radius: var(--border-radius);
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .faq-item:hover {
      border-color: var(--bronze-medium);
    }
    
    .faq-question {
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      background: rgba(26, 26, 26, 0.5);
    }
    
    .faq-question h3 {
      color: var(--gold-light);
      font-size: 1rem;
      margin: 0;
      font-weight: 600;
    }
    
    .faq-icon {
      color: var(--gold-light);
      transition: var(--transition);
    }
    
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .faq-item.active .faq-answer {
      padding: 1rem;
      max-height: 1000px;
    }
    
    .faq-answer p {
      color: #ddd;
      line-height: 1.6;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }
    
    .faq-answer p:last-child {
      margin-bottom: 0;
    }
    
    .seo-list {
      list-style: none;
      margin-top: 0.8rem;
      padding-left: 0;
    }
    
    .seo-list li {
      padding: 0.4rem 0;
      color: #ccc;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
    }
    
    .seo-list li i {
      color: var(--gold-light);
      font-size: 0.9rem;
    }
    
    /* ============================================
       SEO КОНТЕНТ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .seo-article {
      background: rgba(26, 26, 26, 0.5);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      margin: 2rem auto;
      max-width: 1400px;
      width: calc(100% - 2rem);
      border: 1px solid rgba(218, 165, 32, 0.2);
    }
    
    .seo-article-title {
      color: var(--gold-light);
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
    }
    
    .seo-article-content {
      color: #ddd;
      line-height: 1.6;
    }
    
    .seo-article-content h3 {
      color: var(--gold-light);
      margin: 1.2rem 0 0.8rem 0;
      font-size: 1.3rem;
    }
    
    .seo-article-content h4 {
      color: var(--bronze-light);
      margin: 1rem 0 0.6rem 0;
      font-size: 1.15rem;
    }
    
    .seo-article-content ul, .seo-article-content ol {
      margin-left: 1.5rem;
      margin-bottom: 1rem;
    }
    
    .seo-article-content li {
      margin-bottom: 0.4rem;
    }
    
    .seo-article-content blockquote {
      border-left: 3px solid var(--bronze-medium);
      padding-left: 1rem;
      margin: 1.2rem 0;
      color: var(--steel-light);
      font-style: italic;
    }
    
    /* ============================================
       СЕРТИФИКАТЫ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .certificates-section {
      padding: 2rem 0;
    }
    
    .certificates-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin: 0 auto;
      max-width: 1400px;
      padding: 0 2rem;
    }
    
    .certificate-item {
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      text-align: center;
      border: 1px solid rgba(218, 165, 32, 0.1);
      transition: var(--transition);
    }
    
    .certificate-item:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow);
    }
    
    .certificate-icon {
      font-size: 2.5rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }
    
    .certificate-title {
      color: var(--gold-light);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    
    .certificate-description {
      color: #ddd;
      font-size: 0.9rem;
    }
    
    /* ============================================
       CTA СЕКЦИЯ (ОБНОВЛЕННЫЕ РАЗМЕРЫ)
       ============================================ */
    .cta-section {
      background: var(--metal-gradient);
      border-radius: var(--border-radius);
      margin: 2rem auto;
      padding: 2rem;
      position: relative;
      overflow: hidden;
      max-width: 1400px;
      width: calc(100% - 2rem);
    }
    
    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(218, 165, 32, 0.2) 0%, transparent 50%);
      z-index: 0;
    }
    
    .cta-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }
    
    @media (min-width: 768px) {
      .cta-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }
    
    .cta-content {
      max-width: 600px;
    }
    
    .cta-title {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--gold-light);
    }
    
    .cta-text {
      color: #ddd;
      font-size: 1rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    
    .cta-image {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
      min-height: 250px;
    }
    
    .cta-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--border-radius);
      border: 2px solid rgba(218, 165, 32, 0.3);
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
    }
    
    .cta-image img:hover {
      transform: scale(1.02);
      box-shadow: var(--shadow-glow);
    }
    
    /* ============================================
       ФУТЕР
       ============================================ */
    .main-footer {
      background: var(--metal-dark);
      border-top: 2px solid rgba(218, 165, 32, 0.3);
      padding: 2rem 0 1.5rem;
      margin-top: 2rem;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }
    
    .footer-title {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--gold-light);
    }
    
    .footer-description {
      color: #ddd;
      line-height: 1.6;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    
    .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 0.8rem;
    }
    
    .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: var(--gold-light);
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.9rem;
    }
    
    .social-link:hover {
      background: var(--bronze-gradient);
      transform: translateY(-3px);
      box-shadow: var(--shadow-glow);
    }
    
    .footer-nav {
      list-style: none;
    }
    
    .footer-nav li {
      margin-bottom: 0.5rem;
    }
    
    .footer-nav a {
      color: #ccc;
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
    }
    
    .footer-nav a:hover {
      color: var(--gold-light);
      padding-left: 5px;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      color: #ddd;
      font-size: 0.95rem;
    }
    
    .contact-item i {
      color: var(--gold-light);
      margin-top: 0.2rem;
    }
    
    .contact-item a {
      color: #ddd;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-item a:hover {
      color: var(--gold-light);
    }
    
    .newsletter-text {
      color: #ddd;
      margin-bottom: 1rem;
      line-height: 1.6;
      font-size: 0.95rem;
    }
    
    .newsletter-form {
      display: flex;
      gap: 0.5rem;
    }
    
    .newsletter-form input {
      flex: 1;
      padding: 0.6rem 0.8rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      color: white;
      font-family: inherit;
      font-size: 0.9rem;
    }
    
    .newsletter-form input:focus {
      outline: none;
      border-color: var(--bronze-medium);
    }
    
    .btn-subscribe {
      background: var(--bronze-gradient);
      color: white;
      border: none;
      padding: 0.6rem;
      border-radius: var(--border-radius);
      cursor: pointer;
      transition: var(--transition);
      font-size: 0.9rem;
      aspect-ratio: 1 / 1;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.8rem;
      width: clamp(40px, 3vw, 50px);
      height: clamp(40px, 3vw, 50px);
    }
    
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      flex-wrap: wrap;
      gap: 1rem;
    }
    
    .copyright {
      color: #aaa;
      font-size: 0.85rem;
    }
    
    .footer-links {
      display: flex;
      gap: 1rem;
    }
    
    .footer-links a {
      color: #aaa;
      text-decoration: none;
      font-size: 0.85rem;
      transition: var(--transition);
    }
    
    .footer-links a:hover {
      color: var(--gold-light);
    }
    
    .developer {
      color: #aaa;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .developer i {
      color: #ff6b6b;
    }
    
    /* ============================================
       МОДАЛЬНЫЕ ОКНА
       ============================================ */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 1rem;
    }
    
    .modal.open {
      display: flex;
    }
    
    .modal-content {
      background: var(--metal-gradient);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      max-width: 800px;
      width: 100%;
      position: relative;
      border: 2px solid rgba(218, 165, 32, 0.4);
      box-shadow: var(--shadow-lg);
      max-height: 90vh;
      overflow-y: auto;
    }
    
    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: none;
      color: #ccc;
      cursor: pointer;
      font-size: 1.5rem;
      transition: var(--transition);
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      z-index: 2;
    }
    
    .modal-close:hover {
      color: var(--gold-light);
      background: rgba(255, 255, 255, 0.1);
    }
    
    .modal-title {
      font-size: 1.5rem;
      color: var(--gold-light);
      margin-bottom: 1.2rem;
      text-align: center;
    }
    
    .modal-form .form-group {
      margin-bottom: 1.2rem;
    }
    
    .modal-form label {
      display: block;
      margin-bottom: 0.4rem;
      color: #ddd;
      font-weight: 500;
      font-size: 0.95rem;
    }
    
    .modal-form input,
    .modal-form textarea,
    .modal-form select {
      width: 100%;
      padding: 0.7rem 0.9rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      color: white;
      font-family: inherit;
      font-size: 0.95rem;
    }
    
    .modal-form input:focus,
    .modal-form textarea:focus,
    .modal-form select:focus {
      outline: none;
      border-color: var(--bronze-medium);
      box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.2);
    }
    
    .file-upload {
      position: relative;
      margin-top: 0.5rem;
    }
    
    .file-upload input[type="file"] {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 10;
    }
    
    .file-upload-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.05);
      border: 2px dashed rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      color: #aaa;
      text-align: center;
      cursor: pointer;
      transition: var(--transition);
      font-size: 0.9rem;
      position: relative;
    }
    
    .file-upload-label:hover {
      border-color: var(--bronze-medium);
      background: rgba(255, 255, 255, 0.1);
      color: var(--gold-light);
    }
    
    .file-name {
      color: var(--gold-light);
      font-size: 0.85rem;
      margin-top: 0.5rem;
      display: none;
    }
    
    .file-name.show {
      display: block;
    }
    
    .map-modal .modal-content {
      max-width: 1000px;
      padding: 0;
      overflow: hidden;
      background: var(--metal-dark);
    }
    
    .map-container {
      position: relative;
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    
    .map-iframe {
      width: 100%;
      height: 100%;
      border: none;
    }
    
    .map-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      text-align: center;
      background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    }
    
    .map-placeholder i {
      font-size: 2.5rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }
    
    .map-placeholder h3 {
      color: var(--gold-light);
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
    }
    
    .map-placeholder p {
      color: #ddd;
      max-width: 600px;
      line-height: 1.6;
      margin-bottom: 0.8rem;
      font-size: 0.95rem;
    }
    
    .map-point {
      position: absolute;
      width: 15px;
      height: 15px;
      background: var(--gold-gradient);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 15px rgba(218, 165, 32, 0.8);
      animation: pulse-map 2s infinite;
    }
    
    @keyframes pulse-map {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -50%) scale(1.2); }
    }
    
    .map-label {
      position: absolute;
      background: rgba(26, 26, 26, 0.9);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      padding: 0.4rem 0.8rem;
      color: var(--gold-light);
      font-size: 0.85rem;
      white-space: nowrap;
      transform: translateX(-50%);
      margin-top: 15px;
    }
    
    /* ============================================
       ПЛАВАЮЩИЕ КНОПКИ
       ============================================ */
    .scroll-top {
      position: fixed;
      bottom: 5rem;
      left: 1.5rem;
      background: var(--bronze-gradient);
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      z-index: 1000;
      transition: var(--transition);
      opacity: 0;
      transform: translateY(20px);
      box-shadow: var(--shadow-md);
    }
    
    .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--shadow-glow);
    }
    
    .scroll-top.visible {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }
    
    .float-contacts {
      position: fixed;
      bottom: 5rem;
      right: 1.5rem;
      z-index: 1000;
    }
    
    @media (max-width: 768px) {
      .scroll-top {
        bottom: 3.5rem;
        left: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
      }
      .float-contacts {
        bottom: 4rem;
        right: 1rem;
      }
    }
    
    .float-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: var(--bronze-gradient);
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
    }
    
    .float-btn:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: var(--shadow-glow);
    }
    
    .contact-popup {
      position: absolute;
      bottom: 50px;
      right: 0;
      background: var(--metal-dark);
      border: 1px solid rgba(218, 165, 32, 0.4);
      border-radius: var(--border-radius);
      padding: 1.2rem;
      min-width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: var(--transition);
      box-shadow: var(--shadow-lg);
    }
    
    .contact-popup.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .contact-popup-title {
      color: var(--gold-light);
      font-size: 1rem;
      margin-bottom: 0.8rem;
      text-align: center;
    }
    
    .contact-popup-links {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    
    .contact-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #ddd;
      text-decoration: none;
      padding: 0.4rem;
      border-radius: var(--border-radius);
      transition: var(--transition);
      font-size: 0.9rem;
    }
    
    .contact-link:hover {
      background: rgba(218, 165, 32, 0.1);
      color: var(--gold-light);
      transform: translateX(-3px);
    }
    
    .contact-link i {
      font-size: 1rem;
      width: 20px;
      text-align: center;
    }
    
    .notification {
      position: fixed;
      top: 100px;
      right: 1.5rem;
      background: var(--metal-dark);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      padding: 0.8rem 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      z-index: 3000;
      opacity: 0;
      transform: translateX(100%);
      transition: var(--transition);
      max-width: 300px;
      box-shadow: var(--shadow-md);
    }
    
    .notification.show {
      opacity: 1;
      transform: translateX(0);
    }
    
    .notification i {
      font-size: 1.2rem;
    }
    
    .notification-success {
      border-left: 4px solid #28a745;
    }
    
    .notification-success i {
      color: #28a745;
    }
    
    .notification-error {
      border-left: 4px solid #dc3545;
    }
    
    .notification-error i {
      color: #dc3545;
    }
    
    /* ============================================
       ДОПОЛНИТЕЛЬНЫЕ СТИЛИ
       ============================================ */
    .animated {
      animation: fadeInUp 0.6s ease forwards;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .tm-form-group {
      margin-bottom: 1.2rem;
    }
    
    .tm-form-control {
      width: 100%;
      padding: 0.7rem 0.9rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(218, 165, 32, 0.3);
      border-radius: var(--border-radius);
      color: white;
      font-family: inherit;
      font-size: 0.95rem;
    }
    
    .tm-form-control:focus {
      outline: none;
      border-color: var(--bronze-medium);
      box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.2);
    }
    
    .tm-mb-20 {
      margin-bottom: 20px;
    }
    
    .tm-align-right {
      text-align: right;
    }
    
    .text-center {
      text-align: center;
    }
    
    .mt-3 { margin-top: 1.5rem; }
    .mb-3 { margin-bottom: 1.5rem; }
    .pt-3 { padding-top: 1.5rem; }
    .pb-3 { padding-bottom: 1.5rem; }
    
    .form-agreement {
      margin: 1.5rem 0;
      padding: 0;
    }
    
    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      cursor: pointer;
      color: #ddd;
      font-size: 0.95rem;
      line-height: 1.4;
      margin: 0;
      padding: 0;
      user-select: none;
      width: 100%;
    }
    
    .checkbox-label input[type="checkbox"] {
      display: none;
    }
    
    .checkbox-custom {
      display: inline-block;
      width: 20px;
      height: 20px;
      min-width: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(218, 165, 32, 0.3);
      border-radius: 4px;
      position: relative;
      transition: var(--transition);
      flex-shrink: 0;
    }
    
    .checkbox-custom::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      width: 12px;
      height: 12px;
      background: var(--bronze-gradient);
      border-radius: 2px;
      transition: var(--transition);
      opacity: 0;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
      border-color: var(--bronze-medium);
      background: rgba(218, 165, 32, 0.1);
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
    
    .checkbox-label:hover .checkbox-custom {
      border-color: var(--bronze-medium);
      box-shadow: 0 0 0 2px rgba(218, 165, 32, 0.1);
    }
    
    .checkbox-text {
      flex: 1;
      line-height: 1.4;
    }
    
    select,
    select option {
      background-color: var(--metal-dark) !important;
      color: white !important;
    }
    
    #consultationType,
    #consultationType option {
      background-color: var(--metal-dark) !important;
      color: white !important;
    }
    
    select option:hover {
      background-color: rgba(218, 165, 32, 0.2) !important;
      color: white !important;
    }
    
    select option:checked {
      background-color: var(--bronze-medium) !important;
      color: var(--gold-light) !important;
    }
    
    select:focus {
      color: var(--gold-light) !important;
    }
    
    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }
    
    /* ============================================
       МЕДИА-ЗАПРОСЫ (ОБНОВЛЕННЫЕ)
       ============================================ */
    @media (max-width: 1200px) {
      .hero-title { font-size: 2.5rem; }
      .section-title { font-size: 2rem; }
      .simple-carousel-item { width: 280px; height: 320px; }
    }
    
    @media (max-width: 1400px) {
      .main-nav { display: none; }
      .mobile-menu-btn { display: flex; }
      .header-contacts { display: none; }
      .dropdown-menu { display: none; }
      .float-contacts { bottom: 4rem; right: 1rem; }
      .float-btn { width: 40px; height: 40px; font-size: 1.1rem; }
      .mobile-contacts { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; padding: 0.8rem; background: rgba(255, 255, 255, 0.05); border-radius: var(--border-radius); }
      .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .hero-title { font-size: 2.2rem; }
      .hero-subtitle { font-size: 1.2rem; }
      .hero-description { font-size: 1rem; padding: 0 0; }
      .section-title { font-size: 1.8rem; }
      .section-subtitle { font-size: 1rem; }
    }
    
    @media (max-width: 768px) {
      .header-container { padding: 0 1rem; }
      .btn-large { width: 100%; max-width: 280px; justify-content: center; font-size: 0.95rem; padding: 0.7rem 1.2rem; }
      .hero-section { padding-top: 100px; }
      .hero-title { font-size: 1.8rem; margin-bottom: 1.2rem; }
      .hero-subtitle { font-size: 1.1rem; margin-bottom: 1.2rem; }
      .hero-description { font-size: 0.95rem; padding: 0 0; margin-bottom: 1.5rem; }
      .section-title { font-size: 1.6rem; }
      .cta-title { font-size: 1.6rem; }
      .hero-buttons { flex-direction: column; align-items: center; gap: 0.8rem; }
      .section-header { padding: 0 1rem; }
      .breadcrumbs-container { padding: 0 1rem; }
      .simple-carousel-container { padding: 0 1rem; }
      .category-detail-grid { padding: 0 1rem; }
      .works-grid { padding: 0 1rem; }
      .process-steps { padding: 0 1rem; }
      .faq-container { padding: 0 1rem; }
      .certificates-grid { padding: 0 1rem; }
      .footer-container { padding: 0 1rem; }
      .modal-content { padding: 1.2rem; margin: 0.5rem; }
      .float-contacts { bottom: 3.5rem; right: 0.8rem; }
      .contact-popup { min-width: 180px; right: -10px; }
      .map-container { height: 300px; }
      .section { padding: 2rem 0; }
      .simple-carousel-item { width: 260px; height: 300px; }
      .category-detail-card { padding: 1.2rem; }
      
      /* ИСПРАВЛЕНИЯ ДЛЯ CTA СЕКЦИИ НА МОБИЛЬНЫХ */
      .cta-section {
          margin: 1.5rem 1rem !important;
          padding: 1.5rem !important;
          width: calc(100% - 2rem) !important;
          border-radius: 16px;
          max-width: 100%;
          overflow: hidden;
          box-sizing: border-box;
      }
      
      .cta-container {
          grid-template-columns: 1fr !important;
          gap: 1.5rem !important;
          max-width: 100% !important;
          padding: 0 !important;
      }
      
      .cta-content {
          max-width: 100% !important;
          text-align: center;
          padding: 0;
      }
      
      .cta-title {
          font-size: 1.4rem !important;
          line-height: 1.3 !important;
          margin-bottom: 1rem !important;
      }
      
      .cta-text {
          font-size: 0.95rem !important;
          margin-bottom: 1rem !important;
          text-align: center;
          padding: 0 0.5rem;
      }
      
      #ctaConsultationBtn {
          width: 100% !important;
          max-width: 280px !important;
          margin: 0 auto !important;
          justify-content: center;
      }
      
      .cta-image {
          min-height: 200px !important;
          margin-top: 1rem;
      }
      
      .cta-image img {
          max-height: 200px !important;
          object-fit: cover !important;
          border-width: 1px !important;
      }
      
      /* ИСПРАВЛЕНИЯ ДЛЯ ФУТЕРА НА МОБИЛЬНЫХ */
      .main-footer {
          padding: 1.5rem 0 1rem 0 !important;
          margin-top: 1rem !important;
          width: 100% !important;
          max-width: 100% !important;
          overflow: hidden;
          box-sizing: border-box;
      }
      
      .footer-container {
          padding: 0 1rem !important;
          width: 100% !important;
          max-width: 100% !important;
          margin: 0 auto !important;
      }
      
      .footer-grid {
          grid-template-columns: 1fr !important;
          gap: 1.5rem !important;
          margin-bottom: 1.5rem !important;
          padding: 0 !important;
          width: 100% !important;
      }
      
      .footer-column {
          width: 100% !important;
          padding: 0 !important;
          margin: 0 !important;
      }
      
      .footer-title,
      .footer-description,
      .footer-nav,
      .contact-info,
      .newsletter-text {
          padding-left: 0 !important;
          padding-right: 0 !important;
      }
      
      .footer-title {
          font-size: 1.1rem !important;
          margin-bottom: 0.8rem !important;
      }
      
      .footer-description {
          font-size: 0.9rem !important;
          line-height: 1.5 !important;
      }
      
      .footer-nav li {
          margin-bottom: 0.4rem !important;
      }
      
      .footer-nav a {
          font-size: 0.9rem !important;
      }
      
      .contact-item {
          font-size: 0.9rem !important;
          gap: 0.4rem !important;
      }
      
      .contact-item i {
          margin-top: 0.1rem !important;
      }
      
      .footer-bottom {
          flex-direction: column !important;
          gap: 0.8rem !important;
          padding: 1rem 0 0 0 !important;
          margin: 0 !important;
          text-align: center !important;
          width: 100% !important;
      }
      
      .footer-links {
          flex-direction: column !important;
          gap: 0.5rem !important;
          margin: 0.5rem 0 !important;
      }
      
      /* Форма подписки в футере */
      .newsletter-form {
          padding: 0 !important;
          width: 100% !important;
          max-width: 100% !important;
          box-sizing: border-box;
          display: flex !important;
          flex-direction: row !important;
      }
      
      .newsletter-form .input-group {
          display: flex !important;
          flex: 1 !important;
          width: 100% !important;
      }
      
      .newsletter-form input {
          min-height: 44px !important;
          width: 100% !important;
          max-width: 100% !important;
          font-size: 0.9rem !important;
          padding: 0.65rem 0.8rem !important;
          flex: 1 !important;
      }
      
      .btn-subscribe {
          min-width: 44px !important;
          height: 44px !important;
          width: 44px !important;
          font-size: 0.9rem !important;
          flex-shrink: 0;
      }
      
      /* ИСПРАВЛЕНИЯ ДЛЯ КАРУСЕЛИ НА МОБИЛЬНЫХ */
      .simple-carousel-container {
          padding: 0 1rem !important;
      }
      
      .carousel-arrow {
          width: 40px !important;
          height: 40px !important;
          font-size: 1rem !important;
          opacity: 0.7 !important;
      }
      
      .carousel-arrow-left {
          left: 0.25rem !important;
      }
      
      .carousel-arrow-right {
          right: 0.25rem !important;
      }
      
      .simple-carousel-item {
          width: 260px !important;
          height: 300px !important;
          margin: 0 0.5rem 0 0 !important;
      }
    }
    
    @media (max-width: 576px) {
      .hero-section { padding-top: 90px; }
      .hero-title { font-size: 1.6rem; }
      .hero-stats { grid-template-columns: repeat(2, 1fr); padding: 0 1rem; gap: 1rem; }
      .category-detail-grid { grid-template-columns: 1fr; }
      .works-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .certificates-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item { padding: 1rem; }
      .stat-number { font-size: 1.8rem; }
      .stat-label { font-size: 0.85rem; }
      .simple-carousel-item { width: 240px; height: 280px; }
      .cta-title { font-size: 1.4rem; }
    }
    
    @media (max-width: 480px) {
      .hero-stats { grid-template-columns: 1fr; max-width: 280px; }
      .certificates-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
      .simple-carousel-item { width: 220px; height: 260px; }
      
      /* ДОПОЛНИТЕЛЬНЫЕ ИСПРАВЛЕНИЯ ДЛЯ МОБИЛЬНЫХ */
      .cta-section {
          margin: 1rem 0.5rem !important;
          padding: 1rem !important;
          width: calc(100% - 1rem) !important;
          border-radius: 12px;
      }
      
      .cta-title {
          font-size: 1.2rem !important;
          padding: 0 !important;
      }
      
      .cta-text {
          font-size: 0.9rem !important;
          padding: 0 !important;
      }
      
      .cta-image {
          min-height: 160px !important;
      }
      
      .cta-image img {
          max-height: 160px !important;
      }
      
      .main-footer {
          padding: 1rem 0 0.5rem 0 !important;
      }
      
      .footer-container {
          padding: 0 0.5rem !important;
      }
      
      .footer-column {
          padding: 0 !important;
      }
      
      .footer-title {
          font-size: 1rem !important;
      }
      
      .footer-description {
          font-size: 0.85rem !important;
      }
      
      .contact-item {
          font-size: 0.85rem !important;
      }
      
      /* Форма подписки в футере - исправленная версия */
.newsletter-form {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.newsletter-form .input-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
}

.newsletter-form input {
    min-height: 44px !important;
    flex: 1 !important;
    font-size: 0.9rem !important;
    padding: 0.65rem 0.8rem !important;
    width: auto !important;
}

.btn-subscribe {
    min-height: 44px !important;
    height: 44px !important;
    font-size: 0.9rem !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem;
    padding: 0 0.8rem !important;
    min-width: auto !important;
    width: auto !important;
}

/* Скрываем текст кнопки на очень маленьких экранах */
.btn-subscribe .btn-text {
    display: inline;
}

@media (max-width: 380px) {
    .btn-subscribe .btn-text {
        display: none;
    }
    
    .btn-subscribe {
        padding: 0 0.5rem !important;
    }
}

/* Для экранов меньше 480px немного уменьшаем отступы */
@media (max-width: 480px) {
    .newsletter-form {
        gap: 0.4rem;
    }
    
    .newsletter-form input {
        min-height: 42px !important;
        padding: 0.6rem 0.7rem !important;
    }
    
    .btn-subscribe {
        min-height: 42px !important;
        padding: 0 0.7rem !important;
    }
}
      
      .simple-carousel-container {
          padding: 0 0.5rem !important;
      }
      
      .simple-carousel-item {
          width: 240px !important;
          height: 280px !important;
          margin: 0 0.5rem 0 0 !important;
      }
    }
    
    /* ============================================
   СТИЛИ ДЛЯ ФОРМЫ ПОДПИСКИ (равная высота)
   ============================================ */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    align-items: stretch; /* Растягиваем элементы по высоте */
}

.newsletter-form .input-group {
    display: flex;
    flex: 1;
    align-items: stretch; /* Растягиваем дочерние элементы */
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem; /* Увеличили padding для большей высоты */
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: var(--border-radius);
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    height: auto; /* Автоматическая высота */
    min-height: 48px; /* Минимальная высота как у кнопки */
    box-sizing: border-box; /* Учитываем padding в высоте */
}

.btn-subscribe {
    background: var(--bronze-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; /* Фиксированная ширина */
    min-width: 48px; /* Минимальная ширина */
    height: 48px; /* Фиксированная высота */
    padding: 0; /* Убираем внутренние отступы */
    flex-shrink: 0; /* Не даем сжиматься */
}

.btn-subscribe:hover {
    background: var(--gold-gradient);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Стили для статуса подписки */
.subscription-status {
    margin-top: 0.8rem;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-size: 0.9rem;
    animation: slideDown 0.3s ease-out;
    position: relative;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subscription-status.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
}

.subscription-status.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #dc3545;
}

.subscription-status.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

/* ============================================
   ИСПРАВЛЕНИЕ МОБИЛЬНОГО СКРОЛЛА
   ============================================ */

/* Исправление для body */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* Предотвращаем горизонтальный скролл */
body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Исправление для модальных окон на мобильных */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Исправление для фиксированного хедера на мобильных */
.main-header {
    width: 100%;
    max-width: 100vw;
    left: 0;
    right: 0;
}

/* Исправление для карусели на мобильных */
.simple-carousel {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.simple-carousel::-webkit-scrollbar {
    display: none;
}

/* Исправление для футера на мобильных */
.main-footer {
    width: 100%;
    max-width: 100vw;
}

/* Исправление для контента на мобильных */
.main-container {
    width: 100%;
    overflow: hidden;
}

/* Исправление для мобильного меню */
.mobile-menu-container {
    width: 100vw;
    left: 0;
    right: 0;
}

/* Предотвращаем скролл при открытом модальном окне или меню */
body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Исправление для картинок */
img {
    max-width: 100%;
    height: auto;
}

/* Исправление для секций */
.section {
    width: 100%;
    max-width: 100%;
}

/* Исправление для iOS Safari */
@supports (-webkit-touch-callout: none) {
    body {
        height: -webkit-fill-available;
    }
    
    .main-container {
        min-height: -webkit-fill-available;
    }
}

/* ============================================
   СТИЛИ ДЛЯ СВОРАЧИВАЕМЫХ ТЕХНИЧЕСКИХ ХАРАКТЕРИСТИК
   ============================================ */
.tech-specs-header {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    margin-bottom: 0;
}

.tech-specs-header:hover {
    background: rgba(218, 165, 32, 0.05);
}

.tech-specs-title {
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.tech-specs-title span {
    flex: 1;
}

.tech-specs-toggle {
    color: var(--gold-light);
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
}

.tech-specs-header.active .tech-specs-toggle {
    transform: rotate(180deg);
}

/* ИСПРАВЛЕННАЯ АНИМАЦИЯ */
.tech-specs-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity, transform;
}

.tech-specs-content.open {
    max-height: 500px; /* Достаточно для контента */
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   СТРЕЛКИ ДЛЯ КАРУСЕЛИ КАТЕГОРИЙ
   ============================================ */
.simple-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem; /* Увеличиваем padding для стрелок */
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.85);
    border: 2px solid rgba(218, 165, 32, 0.6);
    color: var(--gold-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.8;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.carousel-arrow:hover {
    background: var(--bronze-gradient);
    color: white;
    border-color: var(--gold-light);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                0 0 20px rgba(218, 165, 32, 0.4);
    opacity: 1;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:focus {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

.carousel-arrow-left {
    left: 0.5rem;
}

.carousel-arrow-right {
    right: 0.5rem;
}

/* Стили для состояния disabled */
.carousel-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-arrow.disabled:hover {
    background: rgba(26, 26, 26, 0.85);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-50%);
    box-shadow: none;
}

/* ============================================
   ГЛАВНАЯ СЕКЦИЯ (HERO) - СТАТИСТИКА И ОПИСАНИЕ
   ============================================ */

/* --- Блок hero-description --- */
.hero-description {
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
    color: #ddd;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    width: 100%;
    padding: 0 2rem;
}

@media (max-width: 992px) {
    .hero-description {
        padding: 0 0;
    }
}

@media (max-width: 768px) {
    .hero-description {
        text-align: left;
        text-justify: auto;
        padding: 0 0;
        font-size: 1rem;
    }
}

.hero-description strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* --- Блок hero-stats --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    width: 100%;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Адаптивность для hero-stats */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    .stat-item {
        min-width: 100px;
        padding: 0.8rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    .stat-item {
        min-width: auto;
        width: 100%;
        padding: 1rem;
        margin: 0;
    }
}

@media (max-width: 400px) {
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Сетка карточек */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  margin: clamp(1.5rem, 4vw, 2.5rem) 0;
}

/* Карточка */
.audience-card {
  position: relative;
  background: linear-gradient(160deg, #151520 0%, #1a1a2a 40%, #0f1018 100%);
  border: 2px solid transparent;
  border-radius: clamp(10px, 2vw, 14px);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  background-clip: padding-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(201, 160, 61, 0.08);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}

/* Анимированная бронзовая рамка */
.audience-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(
    135deg,
    #8c6239 0%,
    #c9a03d 25%,
    #e8d5a3 50%,
    #b87333 75%,
    #8c6239 100%
  );
  background-size: 300% 300%;
  border-radius: inherit;
  animation: bronzeShimmer 7s linear infinite;
  will-change: background-position;
}

@keyframes bronzeShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.audience-card:hover {
  transform: translateY(-clamp(3px, 0.5vw, 5px));
  box-shadow: 0 8px 30px rgba(201, 160, 61, 0.12), inset 0 0 0 1px rgba(201, 160, 61, 0.25);
}

/* Заголовок карточки: иконка + текст в строку */
.audience-header {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

/* Иконка */
.audience-icon {
  flex-shrink: 0;
  width: clamp(40px, 6vw, 56px);
  height: clamp(40px, 6vw, 56px);
  background: linear-gradient(135deg, #b87333, #c9a03d, #e8d5a3, #b87333);
  background-size: 300% 300%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a14;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  animation: bronzeShimmer 4s linear infinite;
  box-shadow: 0 2px 10px rgba(201, 160, 61, 0.25);
  will-change: background-position;
}

/* Заголовок с переливающимся текстом */
.audience-title {
  font-size: clamp(1.15rem, 2vw + 0.5rem, 1.45rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  background: linear-gradient(90deg, #d4af37, #f5e6c8, #c9a03d, #f5e6c8, #d4af37);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
  to { background-position: 200% center; }
}

/* Описание и список */
.audience-desc {
  color: #b0a89a;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.55;
  margin: 0 0 clamp(0.75rem, 2vw, 1rem) 0;
}

.audience-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.4rem, 1vw, 0.6rem);
}

.audience-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: #ccc;
  font-size: clamp(0.8rem, 1.4vw, 0.9rem);
  line-height: 1.4;
}

.audience-features li i {
  color: #c9a03d;
  margin-top: 3px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(201, 160, 61, 0.35));
}

/* Минимальная адаптация для старых браузеров / узких экранов */
@media (max-width: 480px) {
  .audience-grid { grid-template-columns: 1fr; }
}