    :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;
    }
    
    /* === Подключение шрифтов BYN === */
@font-face {
    font-family: "nbrb";
    src: url("/fonts/nbrb.woff2") format("woff2"),
         url("/fonts/nbrb.ttf") format("truetype"),
         url("/fonts/nbrb.woff") format("woff");
    /* Убираем unicode-range, чтобы шрифт работал для всех символов */
}

.nbrb-icon {
    font-family: "nbrb";
    font-style: inherit;        /* ← Наследует italic/normal от родителя */
    font-weight: inherit;       /* ← Наследует bold/normal от родителя */
    font-size: inherit;         /* ← Наследует размер от родителя */
    line-height: inherit;       /* ← Наследует высоту строки */
    color: inherit;             /* ← Наследует цвет текста */
    speak: never;               /* ← современная замена для "none" */
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: normal;
    font-feature-settings: "liga";
    font-variant-ligatures: discretionary-ligatures;
}

.nbrb-icon-byn::before {
    content: "\e901";
}
    
    /* === Подключение шрифтов Dudka === */
    @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;
    }
    /* === Подключение Leotaro Cyrillic === */
    @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;
    }
    /* === Leotaro только для декоративных элементов === */
    .logo-main,
    .logo-sub,
    .hero-title .gradient-text,
    .hero-title > .hero-subtitle {
      font-family: 'LeotaroCyrillic', serif;
      font-weight: normal;
      letter-spacing: 0.02em;
    }
    
    /* ==================== ПРЕЛОАДЕР ==================== */

/* Скроллбар всегда виден, чтобы не было сдвига контента */
html {
    overflow-y: scroll;
}

/* При активном прелоадере скролл остаётся, но не работает */
html.preloader-active {
    overflow-y: scroll;
    overflow-x: hidden;
}

html.preloader-active body {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.forge-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.forge-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

/* Логотип - 220px */
.logo-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7)) brightness(1.2);
    animation: logoGlow 1.8s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.7)) brightness(1.2); transform: scale(1); }
    50% { filter: drop-shadow(0 0 40px rgba(255, 215, 0, 1)) brightness(1.4); transform: scale(1.02); }
}

/* Искры */
.sparks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #FFD700;
    border-radius: 50%;
    box-shadow: 
        0 0 15px #FFD700,
        0 0 30px #FFA500,
        0 0 45px #FF8C00;
    opacity: 0;
}

.spark:nth-child(1) { animation: sparkFly 1s ease-out infinite; --angle: 0deg; --dist: 130px; }
.spark:nth-child(2) { animation: sparkFly 1s ease-out infinite 0.08s; --angle: 30deg; --dist: 150px; }
.spark:nth-child(3) { animation: sparkFly 1s ease-out infinite 0.16s; --angle: 60deg; --dist: 120px; }
.spark:nth-child(4) { animation: sparkFly 1s ease-out infinite 0.24s; --angle: 90deg; --dist: 140px; }
.spark:nth-child(5) { animation: sparkFly 1s ease-out infinite 0.32s; --angle: 120deg; --dist: 110px; }
.spark:nth-child(6) { animation: sparkFly 1s ease-out infinite 0.4s; --angle: 150deg; --dist: 135px; }
.spark:nth-child(7) { animation: sparkFly 1s ease-out infinite 0.48s; --angle: 180deg; --dist: 125px; }
.spark:nth-child(8) { animation: sparkFly 1s ease-out infinite 0.56s; --angle: 210deg; --dist: 145px; }
.spark:nth-child(9) { animation: sparkFly 1s ease-out infinite 0.64s; --angle: 240deg; --dist: 115px; }
.spark:nth-child(10) { animation: sparkFly 1s ease-out infinite 0.72s; --angle: 270deg; --dist: 130px; }
.spark:nth-child(11) { animation: sparkFly 1s ease-out infinite 0.8s; --angle: 300deg; --dist: 140px; }
.spark:nth-child(12) { animation: sparkFly 1s ease-out infinite 0.88s; --angle: 330deg; --dist: 120px; }

@keyframes sparkFly {
    0% {
        transform: rotate(var(--angle)) translateX(50px) scale(0);
        opacity: 1;
    }
    15% {
        opacity: 1;
        transform: rotate(var(--angle)) translateX(80px) scale(1.8);
    }
    100% {
        transform: rotate(var(--angle)) translateX(var(--dist)) scale(0.2);
        opacity: 0;
    }
}

/* Текст */
.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.word {
    font-family: 'LeotaroCyrillic', serif;
    letter-spacing: 0.3em;
}

.word.black {
    font-size: 1.3rem;
    color: #bbb;
}

.word.gold {
    font-size: 2.2rem;
    color: #FFD700;
    text-shadow: 
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 35px rgba(218, 165, 32, 0.7);
}

/* Полоса загрузки */
.loading-line {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    overflow: hidden;
}

.line-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #B8860B, #FFD700, #FFA500);
    animation: lineFill 1s ease-out forwards;
    border-radius: 3px;
    box-shadow: 0 0 12px #FFD700;
}

@keyframes lineFill {
    to { width: 100%; }
}

/* Адаптивность */
@media (max-width: 576px) {
    .logo-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .spark {
        width: 8px;
        height: 8px;
    }
    
    .word.gold {
        font-size: 1.8rem;
    }
    
    .loading-line {
        width: 180px;
    }
}
    
    
    /* === Размеры логотипа === */
    .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;
}

.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));
}
    @keyframes shine { to { transform: rotate(360deg); } }
    .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-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);
    }
    .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: 1rem 2rem;
      font-size: 1.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);
    }
    .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;
      transition: max-height 0.3s ease;
      margin-left: 2rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--border-radius);
    }
    .mobile-dropdown-content.show {
      max-height: 1000px;
      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;
    }
    .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 {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 7rem 0 2rem;
      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: 2rem;
    }
    @media (max-width: 1200px) {
      .hero-section { padding-top: 95px; }
    }
    @media (max-width: 992px) {
      .hero-section { padding-top: 85px; }
      .hero-text { margin-top: 15px; min-height: 50px; }
    }
    @media (max-width: 768px) {
      .hero-section { padding-top: 90px; }
      .hero-text { margin-top: 20px; min-height: 60px; }
      .hero-title { margin-top: 0; padding-top: 10px; }
      .hero-description { margin-top: 15px; }
    }
    @media (max-width: 576px) {
      .hero-section { padding-top: 95px; }
      .hero-text { margin-top: 25px; min-height: 70px; padding-top: 10px; }
      .hero-title { padding-top: 15px; }
    }
    @media (max-width: 400px) {
      .hero-section { padding-top: 100px; }
      .hero-text { margin-top: 30px; min-height: 80px; padding-top: 15px; }
    }
    .hero-title {
      font-size: 3.5rem;
      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.5rem;
      color: var(--steel-light);
      margin-bottom: 1.5rem;
      text-align: center;
    }
    .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;
    }
    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: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .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;
    }
    .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);
    }
    Стрелка статистики
    .scroll-indicator {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      cursor: pointer;
    }
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
      40% { transform: translateY(-10px) translateX(-50%); }
      60% { transform: translateY(-5px) translateX(-50%); }
    }
    .scroll-indicator i {
      font-size: 2rem;
      color: var(--gold-light);
    } 
    .main-content {
      padding: 1.5rem 0;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
    }
    .section {
      width: 100%;
      padding: 2rem 0;
      max-width: 1400px;
      margin: 0 auto;
    }
    .section-header {
      text-align: center;
      margin-bottom: 1.5rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 2rem;
      width: 100%;
    }
    .section-title {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }
    .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: 600px;
      margin: 0 auto;
    }
    .directions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin: 1.5rem auto;
      max-width: 1400px;
      padding: 0 2rem;
      width: 100%;
    }
    .direction-card {
      background: var(--metal-gradient);
      border-radius: var(--border-radius-lg);
      padding: 1.5rem;
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .direction-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
    }
    .commercial-card::before {
      background: var(--steel-gradient);
    }
    .artistic-card::before {
      background: var(--gold-gradient);
    }
    .direction-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: var(--bronze-medium);
    }
    .card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .card-icon {
      font-size: 2rem;
      background: linear-gradient(135deg, currentColor, transparent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .commercial-card .card-icon {
      color: var(--steel-light);
    }
    .artistic-card .card-icon {
      color: var(--gold-light);
    }
    .card-title {
      font-size: 1.3rem;
      font-weight: 600;
    }
    .card-content {
      flex: 1;
      margin-bottom: 1rem;
    }
    .card-description {
      color: #ccc;
      margin-bottom: 1rem;
      line-height: 1.6;
      text-align: left;
    }
    .card-features {
      list-style: none;
    }
    .card-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
      color: #ddd;
    }
    .card-features li i {
      color: var(--gold-light);
    }
    .card-footer {
      margin-top: auto;
    }
    .featured-section {
      margin: 2rem 0;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 1.5rem auto;
      max-width: 1400px;
      padding: 0 2rem;
      width: 100%;
    }
    .product-card {
      background: var(--metal-gradient);
      border-radius: var(--border-radius);
      overflow: hidden;
      transition: var(--transition);
      border: 1px solid rgba(218, 165, 32, 0.1);
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-glow);
    }
    .product-image {
      position: relative;
      height: 180px;
      overflow: hidden;
      background: linear-gradient(45deg, #2d2d2d, #3d3d3d);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .product-image i {
      font-size: 3.5rem;
      color: rgba(255, 255, 255, 0.1);
    }
    .product-badge {
      position: absolute;
      top: 0.8rem;
      right: 0.8rem;
      background: var(--bronze-gradient);
      color: white;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
    }
    .product-content {
      padding: 1.2rem;
    }
    .product-category {
      color: var(--steel-light);
      font-size: 0.85rem;
      margin-bottom: 0.4rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .product-name {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: var(--gold-light);
    }
    .product-description {
      color: #ccc;
      font-size: 0.9rem;
      margin-bottom: 0.8rem;
      line-height: 1.5;
    }
    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 0.8rem;
    }
    .product-price {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--gold-light);
    }
    .product-detail {
      background: transparent;
      color: var(--gold-light);
      border: 1px solid var(--bronze-medium);
      padding: 0.4rem 0.8rem;
      border-radius: var(--border-radius);
      cursor: pointer;
      transition: var(--transition);
      font-weight: 600;
      font-size: 0.9rem;
    }
    .product-detail:hover {
      background: rgba(218, 165, 32, 0.1);
    }
    .section-footer {
      text-align: center;
      margin-top: 1.5rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 2rem;
      width: 100%;
    }
    .advantages-section {
      margin: 2rem 0;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .advantages-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    .advantage-item {
      text-align: center;
      padding: 1.5rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: var(--border-radius);
      border: 1px solid rgba(218, 165, 32, 0.1);
      transition: var(--transition);
    }
    .advantage-item:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-5px);
      box-shadow: var(--shadow-glow);
    }
    .advantage-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .advantage-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: var(--gold-light);
    }
    .advantage-text {
      color: #ccc;
      line-height: 1.5;
      font-size: 0.95rem;
    }
    .technologies-section {
      margin: 2rem 0;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    .tech-item {
      text-align: center;
      padding: 1.5rem;
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(45, 45, 45, 0.8));
      border-radius: var(--border-radius);
      border: 1px solid rgba(218, 165, 32, 0.2);
      transition: var(--transition);
    }
    .tech-item:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-5px);
      box-shadow: var(--shadow-glow);
    }
    .tech-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
      color: var(--gold-light);
    }
    .tech-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      color: var(--gold-light);
    }
    .tech-text {
      color: #ccc;
      line-height: 1.5;
      font-size: 0.95rem;
    }
    .faq-section {
      margin: 2rem 0;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .faq-container {
      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: 0.8rem;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item:hover {
      border-color: var(--bronze-medium);
    }
    .faq-question {
      padding: 1.2rem;
      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 1.2rem;
      max-height: 0;
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item.active .faq-answer {
      padding: 1.2rem;
      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;
    }
    .reviews-section {
      margin: 2rem 0;
      width: 100%;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
    }
    .reviews-container {
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
      padding: 0;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
      width: 100%;
      padding: 0 2rem;
    }
    .review-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(218, 165, 32, 0.2);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      transition: var(--transition);
    }
    .review-card:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-5px);
      box-shadow: var(--shadow-glow);
    }
    .review-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .review-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bronze-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: white;
    }
    .review-author {
      flex: 1;
    }
    .review-author h4,
.review-author h3 {
    color: var(--gold-light);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}
    .review-date {
      color: var(--steel-light);
      font-size: 0.8rem;
    }
    .review-rating {
      color: var(--gold-light);
      font-size: 0.9rem;
    }
    .review-content {
      color: #ddd;
      line-height: 1.6;
      font-style: italic;
      font-size: 0.95rem;
    }
    .review-project {
      margin-top: 0.8rem;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--steel-light);
      font-size: 0.85rem;
    }
    .seo-content-section {
      background: rgba(26, 26, 26, 0.7);
      border-radius: var(--border-radius-lg);
      padding: 1.5rem;
      margin: 2rem auto;
      max-width: 1400px;
      width: calc(100% - 2rem);
      border: 1px solid rgba(218, 165, 32, 0.2);
    }
    .seo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .seo-block {
      background: rgba(255, 255, 255, 0.05);
      padding: 1.2rem;
      border-radius: var(--border-radius);
      border: 1px solid rgba(218, 165, 32, 0.1);
      transition: var(--transition);
    }
    .seo-block:hover {
      border-color: var(--bronze-medium);
      transform: translateY(-5px);
    }
    .seo-title {
      color: var(--gold-light);
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .seo-text {
      color: #ddd;
      line-height: 1.7;
      margin-bottom: 0.8rem;
      text-align: left;
      font-size: 0.95rem;
    }
    .seo-rich-text {
      color: #ddd;
      line-height: 1.7;
      font-size: 0.95rem;
      text-align: left;
      margin-bottom: 1.5rem;
    }
    .seo-rich-text h3 {
      color: var(--gold-light);
      margin: 1rem 0 0.8rem 0;
      font-size: 1.1rem;
    }
    .seo-rich-text ul, .seo-rich-text ol {
      margin-left: 0;
      margin-bottom: 1rem;
      padding-left: 1.2rem;
    }
    .seo-rich-text li {
      margin-bottom: 0.4rem;
      position: relative;
      padding-left: 0;
    }
    .seo-rich-text ul {
      list-style: none;
    }
    .seo-rich-text ul li:before {
      content: '✓';
      color: var(--gold-light);
      font-weight: bold;
      margin-right: 0.5rem;
    }
    .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.8rem;
    }
    .master-section {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(45, 45, 45, 0.9));
      border-radius: var(--border-radius-lg);
      padding: 1.5rem;
      margin: 2rem auto;
      max-width: 1400px;
      width: calc(100% - 2rem);
      border: 2px solid rgba(218, 165, 32, 0.3);
      position: relative;
      overflow: hidden;
    }
    .master-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(218,165,32,0.05)"/></svg>');
      background-size: cover;
      z-index: 0;
    }
    .master-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 2rem;
      align-items: center;
    }
    .master-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.8rem;
    }
    .master-avatar {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--bronze-gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: white;
      border: 3px solid var(--gold-light);
      box-shadow: var(--shadow-lg);
    }
    .master-name {
      color: var(--gold-light);
      font-size: 1.3rem;
      font-weight: 700;
      text-align: center;
    }
    .master-title {
      color: var(--steel-light);
      font-size: 0.9rem;
      text-align: center;
    }
    .master-award-large {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(218, 165, 32, 0.15);
      border: 2px solid rgba(218, 165, 32, 0.3);
      border-radius: 30px;
      padding: 0.6rem 1.2rem;
      color: var(--gold-light);
      font-weight: 700;
      font-size: 1rem;
      margin-top: 0.8rem;
    }
    .master-award-large i {
      color: var(--gold-light);
    }
    .master-info h2 {
      color: var(--gold-light);
      font-size: 1.8rem;
      margin-bottom: 1rem;
    }
    .master-info p {
      color: #ddd;
      line-height: 1.7;
      margin-bottom: 1rem;
      font-size: 1rem;
    }
    .master-skills {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
      margin-top: 1.5rem;
    }
    .master-skill {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #ddd;
      font-size: 0.95rem;
    }
    .master-skill i {
      color: var(--gold-light);
    }
    .cta-section {
      background: var(--metal-gradient);
      border-radius: var(--border-radius-lg);
      margin: 2rem auto;
      padding: 1.5rem;
      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 1fr;
      gap: 2rem;
      align-items: center;
    }
    .cta-content {
      max-width: 600px;
    }
    .cta-title {
      font-size: 2rem;
      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-lg);
      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.2rem;
      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-lg);
      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.6rem;
      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.8rem;
    }
    .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: 500px;
      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: 3rem;
      color: var(--gold-light);
      margin-bottom: 0.8rem;
    }
    .map-placeholder h3 {
      color: var(--gold-light);
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
    }
    .map-placeholder p {
      color: #ddd;
      max-width: 600px;
      line-height: 1.6;
      margin-bottom: 0.8rem;
    }
    .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: 20px;
    }
    .scroll-top {
      position: fixed;
      bottom: 5rem;
      left: 1.5rem;
      background: var(--bronze-gradient);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      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: 45px;
        height: 45px;
        font-size: 1.2rem;
      }
      .float-contacts {
        bottom: 4rem;
        right: 1rem;
      }
    }
    .float-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--bronze-gradient);
      border: none;
      color: white;
      font-size: 1.3rem;
      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: 60px;
      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.6rem;
      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(-5px);
    }
    .contact-link i {
      font-size: 1.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 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      z-index: 3000;
      opacity: 0;
      transform: translateX(100%);
      transition: var(--transition);
      max-width: 350px;
      box-shadow: var(--shadow-md);
    }
    .notification.show {
      opacity: 1;
      transform: translateX(0);
    }
    .notification i {
      font-size: 1.3rem;
    }
    .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; }
    .seo-extra-content {
      background: rgba(26, 26, 26, 0.5);
      border-radius: var(--border-radius);
      padding: 1.5rem;
      margin: 1.5rem auto;
      max-width: 1400px;
      width: calc(100% - 2rem);
      border: 1px solid rgba(218, 165, 32, 0.2);
    }
    .seo-extra-title {
      color: var(--gold-light);
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
      text-align: center;
    }
    .seo-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.2rem;
    }
    .seo-column {
      background: rgba(255, 255, 255, 0.03);
      padding: 1.2rem;
      border-radius: var(--border-radius);
    }
    .form-agreement {
      margin: 1.5rem 0;
      padding: 0;
    }
    .checkbox-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      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;
    }
    @media (max-width: 1200px) {
      .hero-title { font-size: 3rem; }
      .cta-container { grid-template-columns: 1fr; gap: 1.5rem; }
      .cta-image { order: -1; min-height: 220px; }
      .seo-content-section { padding: 1.5rem; }
      .master-content { grid-template-columns: 1fr; gap: 1.5rem; }
      .master-image { order: -1; }
    }
    @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: 45px; height: 45px; font-size: 1.2rem; }
      .seo-content-section, .master-section, .cta-section { width: calc(100% - 2rem); margin-left: auto; margin-right: auto; }
      .mobile-contacts { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; padding: 1rem; background: rgba(255, 255, 255, 0.05); border-radius: var(--border-radius); }
    }
    @media (max-width: 768px) {
      .header-container { padding: 0 1rem; }
      .btn-large { display: flex; justify-content: center; margin-left: auto; margin-right: auto; width: 100%; max-width: 300px; }
      .master-section { padding: 1.2rem !important; }
      .master-info h2 { padding: 0 0.5rem; }
      .master-info p { padding: 0 0.5rem; }
      .master-skills { padding: 0 0.5rem; }
      .cta-section { padding: 1.2rem !important; }
      .cta-content { padding: 0 0.5rem; }
      .cta-title { padding: 0; }
      .cta-text { padding: 0; }
      .hero-title { font-size: 2.2rem; }
      .hero-subtitle { font-size: 1.1rem; }
      .hero-description { font-size: 1rem; padding: 0; }
      .section-title { font-size: 1.8rem; }
      .cta-section { padding: 1.2rem; }
      .cta-title { font-size: 1.8rem; }
      .hero-buttons { flex-direction: column; align-items: center; gap: 0.8rem; padding: 0.1rem 0; }
      .btn-large { width: 100%; max-width: 280px; justify-content: center; font-size: 1rem; padding: 0.8rem 1.5rem; }
      .form-row { flex-direction: column; }
      .footer-bottom { flex-direction: column; text-align: center; gap: 0.8rem; }
      .seo-content-section { padding: 1.2rem; }
      .seo-grid { grid-template-columns: 1fr; gap: 1.2rem; }
      .modal-content { padding: 1.2rem; margin: 1rem; }
      .float-contacts { bottom: 3.5rem; right: 0.8rem; }
      .contact-popup { min-width: 220px; right: -10px; }
      .master-section { padding: 1.2rem; }
      .master-avatar { width: 120px; height: 120px; font-size: 2.5rem; }
      .master-skills { grid-template-columns: 1fr; }
      .seo-extra-content { padding: 1.2rem; margin: 1.2rem auto; }
      .seo-extra-title { font-size: 1.5rem; }
      .map-modal .modal-content { padding: 0; }
      .map-container { height: 350px; }
      .hero-stats { gap: 1rem; }
      .stat-item { min-width: 100px; padding: 0.8rem; }
      .stat-number { font-size: 1.8rem; }
    }
    @media (max-width: 576px) {
      .master-section { padding: 1rem !important; }
      .master-info h2 { padding: 0 0.3rem; }
      .master-info p { padding: 0 0.3rem; }
      .master-skills { padding: 0 0.3rem; }
      .cta-section { padding: 1rem !important; }
      .cta-content { padding: 0 0.3rem; }
      .cta-title { padding: 0; }
      .cta-text { padding: 0; }
      .hero-title { font-size: 1.8rem; }
      .hero-section { padding: 5rem 0 1.5rem; }
      .main-content { padding: 1rem 0; }
      .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; }
      .directions-grid { grid-template-columns: 1fr; padding: 0 1rem; gap: 1rem; }
      .products-grid { grid-template-columns: 1fr; padding: 0 1rem; gap: 1rem; }
      .advantages-container { grid-template-columns: 1fr; padding: 0 1rem; gap: 1rem; }
      .tech-grid { grid-template-columns: 1fr; padding: 0 1rem; gap: 1rem; }
      .section-header { padding: 0 1rem; }
      .reviews-grid { grid-template-columns: 1fr; padding: 0 1rem; gap: 1rem; }
      .faq-container { padding: 0 1rem; }
      .seo-columns { grid-template-columns: 1fr; gap: 1rem; }
      .cta-image { min-height: 180px; }
      .section { padding: 1.5rem 0; }
    }
    @media (max-width: 400px) {
      .hero-stats { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
    }
    @media (max-width: 768px) {
      .checkbox-label { gap: 0.6rem; font-size: 0.9rem; }
      .checkbox-custom { width: 18px; height: 18px; min-width: 18px; }
      .checkbox-custom::after { width: 10px; height: 10px; }
    }
    @media (max-width: 576px) {
      .checkbox-label { gap: 0.5rem; font-size: 0.85rem; align-items: flex-start; }
      .checkbox-custom { margin-top: 0.1rem; }
    }
    /* Портфолио карусель */
    .portfolio-section {
      padding: 0.5rem 0 3rem 0;
      margin: 0 auto;
      max-width: 1400px;
      width: 100%;
    }
    .carousel-container {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .carousel-wrapper {
      width: 100%;
      overflow: hidden;
    }
    .carousel {
      display: flex;
      gap: 30px;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      padding: 30px 20px;
    }
    .carousel-slide {
      flex: 0 0 auto;
      cursor: pointer;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      border: 2px solid rgba(218, 165, 32, 0.15);
      box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
      background: linear-gradient(135deg,
        rgba(218, 165, 32, 0.1) 0%,
        transparent 50%,
        rgba(139, 69, 19, 0.1) 100%);
      width: 350px;
      height: 350px;
    }
    @media (max-width: 1400px) {
      .carousel-slide { width: 320px; height: 320px; }
    }
    @media (max-width: 1200px) {
      .carousel-slide { width: 280px; height: 280px; }
    }
    @media (max-width: 992px) {
      .carousel-slide { width: 250px; height: 250px; }
    }
    @media (max-width: 768px) {
      .carousel-slide { width: 220px; height: 220px; }
      .carousel { gap: 20px; padding: 20px 15px; }
    }
    @media (max-width: 576px) {
      .carousel-slide { width: 200px; height: 200px; }
    }
    @media (max-width: 480px) {
      .carousel-slide { width: 180px; height: 180px; }
      .carousel { gap: 15px; padding: 15px 10px; }
    }
    .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .carousel-slide:hover {
      transform: translateY(-10px) scale(1.05);
      z-index: 100;
      border: 2px solid var(--bronze-medium);
      box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(218, 165, 32, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
      background: linear-gradient(135deg,
        rgba(218, 165, 32, 0.2) 0%,
        transparent 50%,
        rgba(139, 69, 19, 0.2) 100%);
    }
    .carousel-slide:hover .carousel-image {
      transform: scale(1.12);
    }
    .carousel-slide::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(45deg,
        transparent,
        rgba(218, 165, 32, 0.1),
        rgba(255, 215, 0, 0.1),
        transparent);
      border-radius: 14px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .carousel-slide:hover::before {
      opacity: 1;
      animation: glow-border 2s linear infinite;
    }
    @keyframes glow-border {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      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.5rem;
      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;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
    }
    .carousel-container:hover .carousel-arrow {
      opacity: 1;
    }
    .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);
    }
    .arrow-left {
      left: 30px;
    }
    .arrow-right {
      right: 30px;
    }
    @media (max-width: 768px) {
      .carousel-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        opacity: 0.8;
        background: rgba(26, 26, 26, 0.95);
      }
      .carousel-arrow:hover {
        opacity: 1;
      }
      .arrow-left {
        left: 15px;
      }
      .arrow-right {
        right: 15px;
      }
    }
    .portfolio-modal .modal-content {
      max-width: none;
      max-height: none;
      width: 100vw;
      height: 100vh;
      padding: 0;
      background: rgba(0, 0, 0, 0.98);
      border: none;
      box-shadow: none;
      border-radius: 0;
    }
    .modal-image-container {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    @media (max-width: 768px) {
      .modal-image-container { padding: 20px; }
    }
    #fullImage {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 8px;
      box-shadow: 0 0 80px rgba(0, 0, 0, 0.8);
    }
    #fullImage.loaded {
      opacity: 1;
    }
    .loader {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      color: var(--gold-light);
      text-shadow: 0 0 10px rgba(218, 165, 32, 0.5);
    }
    .loader.hidden {
      display: none;
    }
    .modal-close {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.8);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1000;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }
    @media (max-width: 768px) {
      .modal-close {
        position: fixed;
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        background: rgba(0, 0, 0, 0.9);
      }
    }
    @media (max-width: 480px) {
      .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
    }
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    /* Стили для формы Telegram подписки */
    .input-group {
      display: flex;
      gap: 0.5rem;
    }
    .input-group 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;
    }
    .input-group input:focus {
      outline: none;
      border-color: var(--bronze-medium);
    }
    /* Стили для статуса подписки */
    .subscription-status {
      margin-top: 0.8rem;
      padding: 0.7rem;
      border-radius: var(--border-radius);
      text-align: center;
      font-size: 0.85rem;
      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.pending {
      background: rgba(255, 193, 7, 0.15);
      border: 1px solid rgba(255, 193, 7, 0.3);
      color: #ffc107;
    }
    .subscription-status.success::before {
      content: '✅';
      margin-right: 0.5rem;
    }
    .subscription-status.error::before {
      content: '❌';
      margin-right: 0.5rem;
    }
    .subscription-status.pending::before {
      content: '⏳';
      margin-right: 0.5rem;
    }
    .subscription-status.fade-out {
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.5s ease;
    }
    .carousel-slide {
      cursor: pointer;
    }
   /*Невидимость текста*/ 
    .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;
}

/* Стили для вложенных пунктов меню в футере */
/* Стили для подпунктов в футере */
.submenu-item {
  margin-left: 1.2rem;
}

.submenu-item a {
  font-size: 0.9rem;
  color: var(--steel-light);
  opacity: 0.9;
}

.submenu-item a:hover {
  color: var(--gold-light);
  margin-left: 0.3rem;
}

/* Убираем стрелочку у основного пункта "О мастере" в футере */
.footer-nav .dropdown-arrow {
  display: none;
}


/* ============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ БЛОГА
   Добавить в конец вашего файла style.css
   ============================================ */

/* Хлебные крошки */
.breadcrumbs {
  background: rgba(26, 26, 26, 0.7);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
  margin-bottom: 2rem;
}

.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;
}

/* Основной контент блога */
.blog-main-content {
  padding-top: 1rem;
}

/* Статистика блога */
.blog-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}

.blog-stat {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  border: 1px solid rgba(218, 165, 32, 0.1);
  transition: var(--transition);
}

.blog-stat:hover {
  border-color: var(--bronze-medium);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.blog-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;
}

.blog-stat-label {
  color: var(--steel-light);
  font-size: 0.9rem;
}

/* Фильтр категорий */
.blog-filter-section {
  background: rgba(26, 26, 26, 0.5);
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(218, 165, 32, 0.1);
  border-bottom: 1px solid rgba(218, 165, 32, 0.1);
}

.blog-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.blog-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 165, 32, 0.2);
  border-radius: 30px;
  padding: 0.6rem 1.2rem;
  color: #ddd;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.blog-filter-btn:hover {
  background: rgba(218, 165, 32, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.blog-filter-btn.active {
  background: var(--bronze-gradient);
  color: white;
  border-color: var(--bronze-medium);
  box-shadow: var(--shadow-sm);
}

/* Сетка статей блога */
.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1400px;
  padding: 0 2rem;
}

.blog-article-card {
  background: var(--metal-gradient);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(218, 165, 32, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--bronze-medium);
}

.article-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--bronze-gradient);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.article-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  color: var(--steel-light);
  font-size: 0.85rem;
}

.article-date, .article-read-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-title-link {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition);
}

.article-title-link:hover {
  color: var(--bronze-light);
  text-decoration: underline;
}

.article-excerpt {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  flex: 1;
  font-size: 0.95rem;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.keyword-tag {
  background: rgba(218, 165, 32, 0.1);
  color: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid rgba(218, 165, 32, 0.3);
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.article-read-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--bronze-medium);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.article-read-btn:hover {
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-2px);
}

.article-views {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--steel-light);
  font-size: 0.85rem;
}

/* Кнопка "Загрузить еще" */
.blog-load-more {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

/* SEO блок блога */
.blog-seo-section {
  margin: 3rem 0;
}

/* CTA блок для блога */
.blog-cta-section {
  margin: 3rem 0;
}

/* Модальное окно статьи */
.article-modal .modal-content {
  max-width: 900px;
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
}

.article-modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-modal-header {
  padding: 1.5rem 2rem;
  background: rgba(26, 26, 26, 0.9);
  border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.article-modal-category {
  display: inline-block;
  background: var(--bronze-gradient);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.article-modal-title {
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.article-modal-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--steel-light);
  font-size: 0.9rem;
}

.article-modal-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.article-modal-image {
  height: 400px;
  overflow: hidden;
}

.article-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
  background: rgba(10, 10, 10, 0.95);
}

.article-loading {
  text-align: center;
  padding: 3rem;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.article-content-loaded {
  color: #ddd;
  line-height: 1.7;
  font-size: 1.05rem;
}

.article-content-loaded h3 {
  color: var(--gold-light);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.4rem;
}

.article-content-loaded h4 {
  color: var(--bronze-light);
  margin: 1.2rem 0 0.8rem 0;
  font-size: 1.2rem;
}

.article-content-loaded p {
  margin-bottom: 1.2rem;
}

.article-content-loaded ul, .article-content-loaded ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.article-content-loaded li {
  margin-bottom: 0.5rem;
}

.article-content-loaded blockquote {
  border-left: 3px solid var(--bronze-medium);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--steel-light);
  font-style: italic;
}

.article-content-loaded img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  margin: 1.5rem 0;
  border: 1px solid rgba(218, 165, 32, 0.2);
}

.article-modal-footer {
  padding: 1.5rem 2rem;
  background: rgba(26, 26, 26, 0.9);
  border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.article-modal-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.article-modal-navigation {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.article-modal-share {
  text-align: center;
}

.article-modal-share h4 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(218, 165, 32, 0.3);
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  color: #ddd;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  background: rgba(218, 165, 32, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.copy-link-btn.success {
  background: rgba(40, 167, 69, 0.2);
  border-color: #28a745;
  color: #28a745;
}

/* Адаптивность для блога */
@media (max-width: 992px) {
  .blog-articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
  
  .article-modal-title {
    font-size: 1.5rem;
  }
  
  .article-modal-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs-container {
    padding: 0 1rem;
  }
  
  .blog-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
    gap: 1rem;
  }
  
  .blog-filter-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }
  
  .blog-filter-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .blog-articles-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .article-modal-header,
  .article-modal-body,
  .article-modal-footer {
    padding: 1.2rem;
  }
  
  .article-modal-title {
    font-size: 1.3rem;
  }
  
  .article-modal-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .article-modal-image {
    height: 250px;
  }
  
  .article-modal-navigation {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .article-modal-navigation button {
    width: 100%;
  }
  
  .share-buttons {
    gap: 0.5rem;
  }
  
  .share-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .blog-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  
  .blog-filter-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .blog-filter-btn {
    justify-content: center;
  }
  
  .article-modal-image {
    height: 200px;
  }
}
/* Ссылка для Худ. и ком. ковка*/
.dropdown-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-title a:hover {
    color: var(--gold-light);
}
 .mobile-dropdown-title {
    /* существующие стили */
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 0.8rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    
    /* новые стили для ссылки */
    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; /* Убираем контур при фокусе */
}

/* Стили для изображений ВИП товаров */
.product-card .product-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card .product-image img:hover {
    transform: scale(1.05);
}

.product-card .product-image i {
    font-size: 64px;
    color: var(--gold-light);
    opacity: 0.5;
}

.product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: #1a1a1a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}
/* ============================================
   АДАПТАЦИЯ ХЕДЕРА: от 1400px и ниже 25.05.2026
   ============================================ */

@media (max-width: 1400px) {
    
    /* --- 1. Уменьшаем отступы контейнера --- */
    .header-container {
        gap: 1rem;           /* было 2rem → 16px */
        padding: 0 1rem;       /* было 2rem → 16px с каждой стороны */
    }
    
    /* --- 2. Уменьшаем логотип --- */
    .logo-icon {
        width: 48px;           /* было 64px */
        height: 48px;
        padding: 6px;
    }
    
    .logo-main {
        font-size: 1.25rem !important;    /* было 1.5rem */
        letter-spacing: 0.12em !important; /* было 0.18em */
    }
    
    .logo-sub {
        font-size: 0.75rem !important;    /* было 0.85rem */
    }
    
    /* --- 3. Уменьшаем навигацию --- */
    .main-nav {
        margin-left: 0.5rem;   /* было 2rem */
    }
    
    .main-nav .nav-list {
        gap: 0.4rem;           /* было 1.5rem */
    }
    
    .nav-link {
        padding: 0.4rem 0.6rem; /* было 0.5rem 1rem */
        font-size: 0.85rem;    /* было 0.95rem */
        gap: 0.3rem;           /* было 0.5rem */
    }
    
    /* --- 4. Уменьшаем контакты --- */
    .contact-phone {
        font-size: 0.95rem;    /* было 1.1rem */
        gap: 0.3rem;           /* было 0.5rem */
    }
    
    .work-area {
        font-size: 0.75rem;    /* было 0.85rem */
    }
    
    /* --- 5. Разрешаем сжатие --- */
    .logo,
    .header-contacts {
        flex-shrink: 1;        /* было 0 — теперь могут ужиматься */
    }
    
    /* --- 6. Выпадающее меню компактнее --- */
    .dropdown-menu {
        min-width: 320px;      /* было 400px */
        gap: 1rem;             /* было 1.5rem */
        padding: 0.75rem;      /* было 1rem */
    }
}


/* ============================================
   ПЛАНШЕТЫ + МАЛЕНЬКИЕ НОУТБУКИ: 1024px — 1200px
   ============================================ */

@media (max-width: 1200px) {
    
    .header-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    
    /* Ещё меньше логотип */
    .logo-main {
        font-size: 1.1rem !important;
        letter-spacing: 0.08em !important;
    }
    
    .logo-sub {
        font-size: 0.7rem !important;
    }
    
    .logo-icon {
        width: 42px;
        height: 42px;
    }
    
    /* Навигация — минимальная */
    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0.4rem;
    }
    
    .main-nav .nav-list {
        gap: 0.2rem;
    }
    
    /* Контакты — только телефон, без региона */
    .work-area {
        display: none;
    }
    
    .contact-phone {
        font-size: 0.9rem;
    }
}


/* ============================================
   iPad / ПЛАНШЕТЫ: до 1024px — бургер-меню
   ============================================ */

@media (max-width: 1024px) {
    .main-nav { 
        display: none; 
    }
    .mobile-menu-btn { 
        display: flex; 
    }
    .header-contacts { 
        display: none; 
    }
    .dropdown-menu { 
        display: none; 
    }
    
    /* Возвращаем нормальные размеры логотипа, 
       т.к. места теперь много */
    .logo-main {
        font-size: 1.5rem !important;
        letter-spacing: 0.18em !important;
    }
    
    .logo-sub {
        font-size: 0.85rem !important;
    }
    
    .logo-icon {
        width: 64px;
        height: 64px;
    }
    
    .float-contacts { 
        bottom: 4rem; 
        right: 1rem; 
    }
    .float-btn { 
        width: 45px; 
        height: 45px; 
        font-size: 1.2rem; 
    }
    
    .seo-content-section, 
    .master-section, 
    .cta-section { 
        width: calc(100% - 2rem); 
        margin-left: auto; 
        margin-right: auto; 
    }
    
    .mobile-contacts { 
        display: flex; 
        flex-direction: column; 
        gap: 0.8rem; 
        margin-top: 1.5rem; 
        padding: 1rem; 
        background: rgba(255, 255, 255, 0.05); 
        border-radius: var(--border-radius); 
    }
}
/* ============================================
   НОВЫЕ КЛАССЫ ДЛЯ ПЕРЕНОСА БЛОКОВ
   Полностью аналогичны hero-description, но семантически чистые
   Адаптивность сохранена 1:1
   ============================================ */

/* --- Базовый стиль для описательных текстов (копия .hero-description) --- */
.directions-description,
.section-description--large {
    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;
}

/* Жирный текст внутри — золотой */
.directions-description strong,
.section-description--large strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* Ссылки внутри — как content-link */
.directions-description a,
.section-description--large a {
    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;
}

.directions-description a:hover,
.section-description--large a: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);
}

.directions-description a::after,
.section-description--large a::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;
}

.directions-description a:hover::after,
.section-description--large a:hover::after {
    opacity: 1;
    height: 2px;
    background: var(--gold-gradient);
}


/* ============================================
   АДАПТИВНОСТЬ (точная копия hero-description)
   ============================================ */

/* Планшеты: 992px */
@media (max-width: 992px) {
    .directions-description,
    .section-description--large {
        padding: 0 0;
    }
}

/* Мобильные: 768px */
@media (max-width: 768px) {
    .directions-description,
    .section-description--large {
        text-align: left;
        text-justify: auto;
        padding: 0 0;
        font-size: 1rem;
    }
}


/* ============================================
   SEO-БЛОКИ С УНИКАЛЬНЫМИ КЛАССАМИ
   Полностью аналогичны seo-extra-content
   ============================================ */

/* Базовая обёртка */
.seo-extra-content--traditions,
.seo-extra-content--infrastructure {
    background: rgba(26, 26, 26, 0.5);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 1400px;
    width: calc(100% - 2rem);
    border: 1px solid rgba(218, 165, 32, 0.2);
}

/* Заголовок */
.seo-extra-content--traditions .seo-extra-title,
.seo-extra-content--infrastructure .seo-extra-title {
    color: var(--gold-light);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-align: center;
}

/* Колонки */
.seo-extra-content--traditions .seo-columns,
.seo-extra-content--infrastructure .seo-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.2rem;
}

/* Отдельная колонка */
.seo-extra-content--traditions .seo-column,
.seo-extra-content--infrastructure .seo-column {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: var(--border-radius);
}

/* Текст внутри колонок */
.seo-extra-content--traditions .seo-column h3,
.seo-extra-content--infrastructure .seo-column h3 {
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.seo-extra-content--traditions .seo-column p,
.seo-extra-content--infrastructure .seo-column p {
    color: #ddd;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.seo-extra-content--traditions .seo-column ul,
.seo-extra-content--infrastructure .seo-column ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.seo-extra-content--traditions .seo-column ul li,
.seo-extra-content--infrastructure .seo-column ul li {
    padding: 0.4rem 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.seo-extra-content--traditions .seo-column ul li:before,
.seo-extra-content--infrastructure .seo-column ul li:before {
    content: '✓';
    color: var(--gold-light);
    font-weight: bold;
    margin-right: 0.5rem;
}


/* ============================================
   АДАПТИВНОСТЬ ДЛЯ SEO-БЛОКОВ
   ============================================ */

@media (max-width: 768px) {
    .seo-extra-content--traditions,
    .seo-extra-content--infrastructure {
        padding: 1.2rem;
        margin: 1.2rem auto;
    }
    
    .seo-extra-content--traditions .seo-extra-title,
    .seo-extra-content--infrastructure .seo-extra-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .seo-extra-content--traditions .seo-columns,
    .seo-extra-content--infrastructure .seo-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


/* ============================================
   ПОДПИСЬ АВТОРА ДЛЯ SEO-ТЕКСТОВ (EEAT)
   ============================================ */

.seo-author {
    font-size: 14px;
    opacity: 0.7;
    color: var(--steel-light);
    margin-bottom: 0.8rem;
    font-style: italic;
}