/* ── Универсальный контейнер ── */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    @media (max-width: 768px) {
      .container { padding: 0 24px; }
    }

:root {
      --bg:        #080e1a;
      --bg2:       #0d1528;
      --lime:      #aaff00;
      --cyan:      #00d4ff;
      --yellow:    #ffd000;
      --blue-dark: #0a1a3a;
      --text:      #e8f4ff;
      --text-dim:  #7a9bbf;
      --grad:      linear-gradient(135deg, var(--lime), var(--cyan));
      --grad2:     linear-gradient(135deg, var(--cyan), var(--lime));
      --glow-lime: 0 0 40px rgba(170,255,0,0.25);
      --glow-cyan: 0 0 40px rgba(0,212,255,0.25);
      --radius:    16px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Golos Text', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ───── NOISE TEXTURE OVERLAY ───── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.4;
    }

    /* ───── HEADER ───── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 110px;
      background: rgba(8,14,26,0.80);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,212,255,0.12);
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
    }
    @media (max-width: 768px) {
      .header-inner { padding: 0 24px; }
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 32px;
      justify-content: flex-end;
    }

    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .logo img {
      height: 100px;
      width: auto;
      filter: drop-shadow(0 0 14px rgba(0,212,255,0.45));
      transition: filter 0.3s, transform 0.3s;
    }
    .logo:hover img {
      filter: drop-shadow(0 0 24px rgba(170,255,0,0.6));
      transform: scale(1.05);
    }

    nav a {
      font-family: 'Golos Text', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dim);
      text-decoration: none;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      position: relative;
      transition: color 0.2s;
      white-space: nowrap;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0; right: 0;
      height: 2px;
      background: var(--grad);
      transform: scaleX(0);
      transition: transform 0.3s;
      border-radius: 2px;
    }
    nav a:hover { color: var(--text); }
    nav a:hover::after { transform: scaleX(1); }

    .btn-contact {
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.06em;
      color: var(--bg);
      background: var(--grad);
      border: none;
      border-radius: 50px;
      padding: 10px 20px;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: var(--glow-lime);
      white-space: nowrap;
    }
    .btn-contact:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 60px rgba(170,255,0,0.45);
    }


    /* ───── HEADER SCROLL SHRINK ───── */
    header {
      transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    }
    header.scrolled {
      height: 68px;
      background: rgba(8,14,26,0.97);
      box-shadow: 0 4px 30px rgba(0,0,0,0.4);
    }
    header.scrolled .logo img {
      height: 54px;
      transition: height 0.4s ease;
    }
    header .logo img {
      transition: height 0.4s ease;
    }

    /* ───── HERO ───── */
    .hero {
      min-height: 100vh;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 150px 48px 80px;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    @media (max-width: 900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 24px 80px;
        gap: 48px;
      }
    }

    /* Background glow blobs */
    .hero::before {
      content: '';
      position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(170,255,0,0.12) 0%, transparent 70%);
      top: -100px; left: -200px;
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
      bottom: -50px; right: -100px;
      pointer-events: none;
    }

    /* Grid lines decoration */
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 580px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(170,255,0,0.1);
      border: 1px solid rgba(170,255,0,0.3);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--lime);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.6s ease both;
    }
    .hero-badge::before {
      content: '';
      width: 8px; height: 8px;
      background: var(--lime);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--lime);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.8); }
    }

    h1 {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(36px, 4.5vw, 64px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      animation: fadeUp 0.6s 0.1s ease both;
    }

    h1 .brand {
      display: block;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 30px rgba(170,255,0,0.4));
    }

    h1 .brand-2 {
      display: block;
      background: var(--grad2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: clamp(16px, 1.5vw, 20px);
      color: var(--text-dim);
      font-weight: 500;
      margin-bottom: 16px;
      animation: fadeUp 0.6s 0.15s ease both;
    }

    .hero-slogan {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(14px, 1.4vw, 18px);
      font-weight: 700;
      color: var(--text);
      margin-bottom: 40px;
      animation: fadeUp 0.6s 0.2s ease both;
      line-height: 1.4;
    }

    .hero-slogan span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.6s 0.3s ease both;
    }

    .btn-primary {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--bg);
      background: var(--grad);
      border: none;
      border-radius: 50px;
      padding: 16px 36px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 30px rgba(170,255,0,0.3);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
      opacity: 0;
      transition: opacity 0.2s;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 50px rgba(170,255,0,0.45);
    }
    .btn-primary:hover::before { opacity: 1; }

    .btn-secondary {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--cyan);
      background: transparent;
      border: 2px solid rgba(0,212,255,0.4);
      border-radius: 50px;
      padding: 14px 32px;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      border-color: var(--cyan);
      background: rgba(0,212,255,0.1);
      transform: translateY(-3px);
      box-shadow: var(--glow-cyan);
    }

    /* Hero stats */
    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 52px;
      animation: fadeUp 0.6s 0.4s ease both;
    }

    .stat {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .stat-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 28px;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
    }
    .stat-label {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    .stat-divider {
      width: 1px;
      background: rgba(0,212,255,0.2);
      align-self: stretch;
    }

    /* ───── HERO VISUAL ───── */
    .hero-visual {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.8s 0.2s ease both;
    }

    /* Slider wrapper */
    .hero-slider {
      position: relative;
      width: 480px;
      height: 520px;
    }


    /* Rotating rings */
    .ring {
      position: absolute;
      border-radius: 50%;
      border: 2px solid transparent;
      pointer-events: none;
    }
    .ring-1 {
      inset: -20px;
      border-color: rgba(170,255,0,0.15);
      border-top-color: var(--lime);
      animation: spin 8s linear infinite;
    }
    .ring-2 {
      inset: 10px;
      border-color: rgba(0,212,255,0.12);
      border-bottom-color: var(--cyan);
      animation: spin 12s linear infinite reverse;
    }
    .ring-3 {
      inset: 40px;
      border-color: rgba(170,255,0,0.08);
      border-left-color: rgba(170,255,0,0.4);
      animation: spin 6s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Each slide */
    .hero-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 1s ease;
      animation: float 4s ease-in-out infinite;
    }
    .hero-slide.active { opacity: 1; }

    .hero-slide img {
      max-width: 100%;
      max-height: 480px;
      object-fit: contain;
      filter:
        drop-shadow(0 0 30px rgba(170,255,0,0.45))
        drop-shadow(0 0 70px rgba(0,212,255,0.3))
        drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    }

    /* Glow platform under model */
    .hero-slider::after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 50%;
      transform: translateX(-50%);
      width: 220px;
      height: 30px;
      background: radial-gradient(ellipse, rgba(170,255,0,0.4) 0%, rgba(0,212,255,0.2) 40%, transparent 70%);
      filter: blur(10px);
      border-radius: 50%;
      z-index: 0;
    }

    /* Slider dots */
    .slider-dots {
      position: absolute;
      bottom: -32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      border: 1px solid rgba(0,212,255,0.3);
      cursor: pointer;
      transition: all 0.3s;
    }
    .slider-dot.active {
      background: var(--lime);
      box-shadow: 0 0 8px var(--lime);
      width: 24px;
      border-radius: 4px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-14px); }
    }

    /* Floating tech badges — поверх изображения */
    .tech-badge {
      position: absolute;
      background: rgba(8,14,26,0.88);
      border: 1px solid rgba(0,212,255,0.3);
      border-radius: 12px;
      padding: 10px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
      backdrop-filter: blur(12px);
      white-space: nowrap;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
      z-index: 10;
    }
    .tech-badge .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .tech-badge-1 { top: 30px;  right: 10px;  animation: float 5s 0.5s ease-in-out infinite; }
    .tech-badge-2 { bottom: 100px; left: 10px;  animation: float 4s 1s ease-in-out infinite; }
    .tech-badge-3 { bottom: 40px;  right: 10px; animation: float 6s 0.2s ease-in-out infinite; }

    /* ───── ANIMATIONS ───── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* ───── MODAL ───── */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal {
      background: var(--bg2);
      border: 1px solid rgba(0,212,255,0.2);
      border-radius: 24px;
      padding: 36px;
      width: 360px;
      max-width: 90vw;
      box-shadow: 0 0 80px rgba(0,212,255,0.15), 0 0 40px rgba(170,255,0,0.1);
      transform: scale(0.9) translateY(20px);
      transition: transform 0.3s;
      position: relative;
    }
    .modal-overlay.open .modal {
      transform: scale(1) translateY(0);
    }

    .modal-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .modal-sub {
      font-size: 13px;
      color: var(--text-dim);
      margin-bottom: 24px;
    }

    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: none;
      color: var(--text-dim);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
      line-height: 1;
    }
    .modal-close:hover { background: rgba(255,255,255,0.15); color: var(--text); }

    .messenger-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .messenger-btn {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
      cursor: pointer;
    }
    .messenger-btn:hover {
      background: rgba(255,255,255,0.09);
      border-color: rgba(0,212,255,0.3);
      transform: translateX(4px);
    }
    .messenger-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }
    .messenger-note {
      font-size: 11px;
      color: var(--text-dim);
      text-align: center;
      margin-top: 16px;
    }

    /* ───── SCROLL INDICATOR ───── */
    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: var(--text-dim);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      animation: fadeIn 1s 1s both;
      z-index: 2;
    }
    .scroll-mouse {
      width: 22px; height: 34px;
      border: 2px solid rgba(0,212,255,0.3);
      border-radius: 11px;
      position: relative;
      display: flex;
      justify-content: center;
      padding-top: 6px;
    }
    .scroll-mouse::before {
      content: '';
      width: 4px; height: 8px;
      background: var(--grad);
      border-radius: 2px;
      animation: scrollDown 1.5s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0% { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(10px); opacity: 0; }
    }

    /* ───── RESPONSIVE ───── */
    @media (max-width: 900px) {
      .nav-left, .nav-right { display: none; }
      .hero-content { max-width: 100%; }
      .hero-buttons { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual-ring { width: 300px; height: 300px; }
      .hero-logo-display { width: 180px; height: 180px; }
      .hero-logo-display img { width: 140px; }
      .tech-badge { display: none; }
    }

    /* ═══════════════════════════════
       СЕКЦИЯ УСЛУГИ
    ═══════════════════════════════ */
    .services {
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .services::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
      top: 0; right: -100px;
      pointer-events: none;
    }

    .services-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 24px; height: 2px;
      background: var(--grad);
      border-radius: 2px;
    }

    .section-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .grad-text {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-sub {
      font-size: 16px;
      color: var(--text-dim);
      margin-bottom: 60px;
      max-width: 520px;
    }

    /* Grid карточек */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      align-items: start;
    }

    /* Карточка */
    .service-card {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.12);
      border-radius: 24px;
      padding: 36px 28px;
      position: relative;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(170,255,0,0.04), rgba(0,212,255,0.04));
      opacity: 0;
      transition: opacity 0.3s;
      border-radius: 24px;
    }
    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0,212,255,0.35);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(0,212,255,0.08);
    }
    .service-card:hover::before { opacity: 1; }

    /* Выделенная карточка */
    .service-card--featured {
      border-color: rgba(170,255,0,0.3);
      background: rgba(13,21,40,0.9);
      box-shadow: 0 0 60px rgba(170,255,0,0.08);
    }
    .service-card--featured:hover {
      border-color: rgba(170,255,0,0.6);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 60px rgba(170,255,0,0.15);
    }

    .service-featured-label {
      position: absolute;
      top: 20px; right: 20px;
      font-family: 'Unbounded', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: var(--grad);
      color: var(--bg);
      padding: 4px 12px;
      border-radius: 50px;
    }

    /* Иконка */
    .service-icon {
      width: 64px; height: 64px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .service-icon svg { width: 100%; height: 100%; }

    .service-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 14px;
      position: relative; z-index: 1;
    }

    .service-desc {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 20px;
      position: relative; z-index: 1;
    }

    /* Список */
    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px;
      position: relative; z-index: 1;
    }
    .service-list li {
      font-size: 13px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .service-list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
      box-shadow: 0 0 6px rgba(170,255,0,0.6);
    }

    /* Кнопка карточки */
    .service-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--cyan);
      text-decoration: none;
      border: 1.5px solid rgba(0,212,255,0.35);
      border-radius: 50px;
      padding: 11px 22px;
      transition: all 0.2s;
      position: relative; z-index: 1;
    }
    .service-btn::after {
      content: '→';
      transition: transform 0.2s;
    }
    .service-btn:hover {
      border-color: var(--cyan);
      background: rgba(0,212,255,0.1);
      box-shadow: 0 0 20px rgba(0,212,255,0.15);
    }
    .service-btn:hover::after { transform: translateX(4px); }

    .service-btn--primary {
      color: var(--bg);
      background: var(--grad);
      border-color: transparent;
      box-shadow: 0 4px 20px rgba(170,255,0,0.25);
    }
    .service-btn--primary:hover {
      background: var(--grad);
      box-shadow: 0 8px 40px rgba(170,255,0,0.4);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .services { padding: 60px 24px; }
      .services-grid { grid-template-columns: 1fr; }
    }


    /* ═══════════════════════════════
       СЕКЦИЯ КАТАЛОГ
    ═══════════════════════════════ */
    .catalog {
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .catalog::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(170,255,0,0.06) 0%, transparent 70%);
      bottom: 0; left: -100px;
      pointer-events: none;
    }

    .catalog-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Tabs */
    .catalog-tabs {
      display: flex;
      gap: 8px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .catalog-tab {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--text-dim);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 50px;
      padding: 10px 22px;
      cursor: pointer;
      transition: all 0.25s;
      white-space: nowrap;
    }
    .catalog-tab:hover {
      color: var(--text);
      border-color: rgba(0,212,255,0.3);
      background: rgba(0,212,255,0.06);
    }
    .catalog-tab.active {
      color: var(--bg);
      background: var(--grad);
      border-color: transparent;
      box-shadow: 0 4px 20px rgba(170,255,0,0.25);
    }

    /* Grid */
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    /* Карточка товара */
    .product-card {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 20px;
      overflow: hidden;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
      cursor: pointer;
      display: none;
    }
    .product-card.visible {
      display: block;
      animation: cardIn 0.35s ease both;
    }
    @keyframes cardIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .product-card:hover {
      transform: translateY(-5px);
      border-color: rgba(170,255,0,0.3);
      box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 30px rgba(170,255,0,0.07);
    }

    /* Фото товара */
    .product-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: rgba(8,14,26,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .product-card:hover .product-img img {
      transform: scale(1.06);
    }

    /* Плейсхолдер если нет фото */
    .product-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: linear-gradient(135deg, rgba(170,255,0,0.05), rgba(0,212,255,0.05));
    }
    .product-img-placeholder svg {
      width: 48px; height: 48px;
      opacity: 0.3;
    }
    .product-img-placeholder span {
      font-size: 11px;
      color: var(--text-dim);
      opacity: 0.5;
    }

    /* Бейдж материала */
    .product-material-badge {
      position: absolute;
      top: 10px; left: 10px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      background: rgba(8,14,26,0.85);
      border: 1px solid rgba(0,212,255,0.25);
      color: var(--cyan);
      padding: 3px 10px;
      border-radius: 50px;
      backdrop-filter: blur(8px);
    }

    /* Кнопка заказать (появляется при ховере) */
    .product-order-btn {
      position: absolute;
      bottom: 12px; left: 12px; right: 12px;
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--bg);
      background: var(--grad);
      border: none;
      border-radius: 50px;
      padding: 10px;
      text-align: center;
      cursor: pointer;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.25s, transform 0.25s;
    }
    .product-card:hover .product-order-btn {
      opacity: 1;
      transform: translateY(0);
    }

    /* Инфо */
    .product-info {
      padding: 14px 16px 16px;
    }
    .product-name {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 6px;
      color: var(--text);
    }
    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }
    .product-material {
      font-size: 11px;
      color: var(--text-dim);
      font-weight: 500;
    }
    .product-price {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      white-space: nowrap;
    }
    .product-price.on-request {
      font-size: 11px;
      font-weight: 600;
      color: var(--text-dim);
      background: none;
      -webkit-text-fill-color: var(--text-dim);
    }

    /* Показать ещё */
    .catalog-more {
      text-align: center;
      margin-top: 40px;
    }
    .catalog-more-btn {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--cyan);
      background: transparent;
      border: 1.5px solid rgba(0,212,255,0.3);
      border-radius: 50px;
      padding: 14px 36px;
      cursor: pointer;
      transition: all 0.25s;
    }
    .catalog-more-btn:hover {
      border-color: var(--cyan);
      background: rgba(0,212,255,0.08);
      box-shadow: 0 0 30px rgba(0,212,255,0.15);
    }

    @media (max-width: 1100px) {
      .catalog-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 900px) {
      .catalog { padding: 60px 24px; }
      .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 500px) {
      .catalog-grid { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════
       СЕКЦИЯ ГАЛЕРЕЯ
    ═══════════════════════════════ */
    .gallery {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    .gallery::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(170,255,0,0.06) 0%, transparent 70%);
      top: 50px; right: -100px;
      pointer-events: none;
    }
    .gallery-header {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }
    @media (max-width: 768px) {
      .gallery-header { padding: 0 24px; }
    }

    /* Горизонтальный скролл */
    .gallery-scroll-wrap {
      position: relative;
      margin-top: 40px;
    }

    /* Fade-маски — позиционируются через JS по границам контейнера */
    .gallery-fade {
      position: absolute;
      top: 0;
      bottom: 16px;
      width: 200px;
      z-index: 3;
      pointer-events: none;
    }
    .gallery-fade-left {
      left: 0;
      background: linear-gradient(to right, var(--bg) 30%, transparent 100%);
    }
    .gallery-fade-right {
      right: 0;
      background: linear-gradient(to left, var(--bg) 30%, transparent 100%);
    }



    .gallery-grid {
      display: grid;
      grid-template-rows: repeat(2, 180px);
      grid-auto-flow: column;
      grid-auto-columns: 180px;
      gap: 12px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 0 120px 16px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(0,212,255,0.3) transparent;
      cursor: grab;
    }
    .gallery-grid:active { cursor: grabbing; }
    .gallery-grid::-webkit-scrollbar { height: 4px; }
    .gallery-grid::-webkit-scrollbar-track { background: transparent; }
    .gallery-grid::-webkit-scrollbar-thumb {
      background: rgba(0,212,255,0.3);
      border-radius: 2px;
    }

    /* Широкая карточка — занимает 2 строки */
    .g-item {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border: 1px solid rgba(0,212,255,0.08);
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
      background: rgba(13,21,40,0.8);
    }
    .g-item:hover {
      border-color: rgba(170,255,0,0.35);
      box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 20px rgba(170,255,0,0.08);
      transform: scale(1.03);
      z-index: 1;
    }
    .g-item.tall { grid-row: span 2; }
    .g-item.wide { grid-column: span 2; }

    /* Плейсхолдер */
    .g-ph {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 8px;
      background: linear-gradient(135deg, rgba(13,21,40,0.95), rgba(8,14,26,0.98));
    }
    .g-ph::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(170,255,0,0.03), rgba(0,212,255,0.03));
    }
    .g-ph svg { width: 28px; height: 28px; opacity: 0.18; position: relative; z-index:1; }
    .g-ph span { font-size: 9px; color: var(--text-dim); opacity: 0.35; position: relative; z-index:1; }

    .g-item img { width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s; display: block; }
    .g-item:hover img { transform: scale(1.08); }

    /* Оверлей */
    .g-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,14,26,0.9) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.25s;
      display: flex; align-items: flex-end; padding: 10px;
    }
    .g-item:hover .g-overlay { opacity: 1; }
    .g-title {
      font-family: "Unbounded", sans-serif;
      font-size: 9px; font-weight: 700;
      color: var(--text); line-height: 1.3;
    }

    /* Кнопки прокрутки */
    .gallery-controls {
      max-width: 1200px;
      margin: 20px auto 0;
      padding: 0 48px;
      display: flex;
      gap: 10px;
    }
    @media (max-width: 768px) {
      .gallery-controls { padding: 0 24px; }
    }
    .gallery-arrow {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(13,21,40,0.9);
      border: 1px solid rgba(0,212,255,0.25);
      color: var(--cyan); font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .gallery-arrow:hover {
      background: rgba(0,212,255,0.12);
      border-color: var(--cyan);
      box-shadow: 0 0 20px rgba(0,212,255,0.2);
    }

    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed; inset: 0; z-index: 1000;
      background: rgba(0,0,0,0.93); backdrop-filter: blur(18px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }
    .lightbox-inner {
      position: relative; max-width: 90vw; max-height: 90vh;
      display: flex; flex-direction: column; align-items: center; gap: 14px;
    }
    .lightbox-placeholder {
      width: 700px; height: 460px; max-width: 88vw;
      background: rgba(13,21,40,0.95); border-radius: 16px;
      border: 1px solid rgba(0,212,255,0.2);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 16px;
      transform: scale(0.92); transition: transform 0.3s;
    }
    .lightbox.open .lightbox-placeholder { transform: scale(1); }
    .lightbox-caption {
      font-family: "Unbounded", sans-serif; font-size: 13px;
      font-weight: 700; color: var(--text); text-align: center;
    }
    .lightbox-counter { font-size: 12px; color: var(--text-dim); }
    .lightbox-close {
      position: absolute; top: -48px; right: 0;
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      color: var(--text); font-size: 18px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s; line-height: 1;
    }
    .lightbox-close:hover { background: rgba(255,255,255,0.2); }
    .lightbox-nav {
      position: fixed; top: 50%; transform: translateY(-50%);
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(13,21,40,0.9); border: 1px solid rgba(0,212,255,0.25);
      color: var(--cyan); font-size: 20px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s; z-index: 1001;
    }
    .lightbox-nav:hover { background: rgba(0,212,255,0.15); border-color: var(--cyan); }
    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    @media (max-width: 768px) {
      .gallery { padding: 60px 0 60px 24px; }
      .gallery-grid { grid-template-rows: repeat(2, 140px); grid-auto-columns: 140px; }
    }

    /* ═══════════════════════════════
       СЕКЦИЯ О НАС
    ═══════════════════════════════ */
    .about {
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .about::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
      bottom: -100px; left: -150px;
      pointer-events: none;
    }

    .about-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Левая колонка — текст */
    .about-text {}

    .about-desc {
      font-size: 16px;
      color: var(--text-dim);
      line-height: 1.85;
      margin-bottom: 36px;
    }
    .about-desc strong {
      color: var(--text);
      font-weight: 600;
    }

    /* Список преимуществ */
    .about-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 40px;
    }
    .about-feature {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(13,21,40,0.6);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 14px;
      transition: border-color 0.3s, background 0.3s;
    }
    .about-feature:hover {
      border-color: rgba(170,255,0,0.25);
      background: rgba(13,21,40,0.9);
    }
    .about-feature-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(170,255,0,0.15), rgba(0,212,255,0.1));
      border: 1px solid rgba(170,255,0,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 18px; flex-shrink: 0;
    }
    .about-feature-text {}
    .about-feature-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px; font-weight: 700;
      margin-bottom: 4px; color: var(--text);
    }
    .about-feature-desc {
      font-size: 13px; color: var(--text-dim); line-height: 1.5;
    }

    /* Правая колонка — статы */
    .about-right {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* Большая карточка со счётчиком */
    .about-stat-card {
      background: rgba(13,21,40,0.8);
      border: 1px solid rgba(0,212,255,0.12);
      border-radius: 24px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .about-stat-card:hover {
      border-color: rgba(170,255,0,0.25);
      box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    }
    .about-stat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(170,255,0,0.04), rgba(0,212,255,0.03));
      border-radius: 24px;
    }
    .about-stat-card--main {
      border-color: rgba(170,255,0,0.2);
      box-shadow: 0 0 40px rgba(170,255,0,0.06);
    }

    .about-stat-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 64px; font-weight: 900;
      line-height: 1;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative; z-index: 1;
      margin-bottom: 8px;
    }
    .about-stat-label {
      font-size: 15px; color: var(--text);
      font-weight: 600; position: relative; z-index: 1;
      margin-bottom: 6px;
    }
    .about-stat-sub {
      font-size: 13px; color: var(--text-dim);
      position: relative; z-index: 1;
    }

    /* Маленькие карточки в ряд */
    .about-stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .about-stat-small {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 18px;
      padding: 22px 18px;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s;
      position: relative; overflow: hidden;
    }
    .about-stat-small:hover {
      border-color: rgba(0,212,255,0.3);
      transform: translateY(-3px);
    }
    .about-stat-small-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 28px; font-weight: 900;
      background: var(--grad2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1; margin-bottom: 8px;
    }
    .about-stat-small-label {
      font-size: 11px; color: var(--text-dim);
      font-weight: 500; line-height: 1.4;
    }

    /* CTA в О нас */
    .about-cta {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    @media (max-width: 900px) {
      .about { padding: 60px 24px; }
      .about-inner { grid-template-columns: 1fr; gap: 48px; }
      .about-stat-num { font-size: 48px; }
    }

    /* ═══════════════════════════════
       СЕКЦИЯ КОНТАКТЫ
    ═══════════════════════════════ */
    .contacts {
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .contacts::before {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(170,255,0,0.06) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }
    .contacts-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    /* ── Левая: форма ── */
    .contacts-form-wrap {}

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 32px;
    }

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .form-input, .form-textarea {
      font-family: 'Golos Text', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: rgba(13,21,40,0.8);
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: 12px;
      padding: 13px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      width: 100%;
    }
    .form-input::placeholder, .form-textarea::placeholder {
      color: rgba(122,155,191,0.5);
    }
    .form-input:focus, .form-textarea:focus {
      border-color: rgba(170,255,0,0.5);
      background: rgba(13,21,40,0.95);
      box-shadow: 0 0 0 3px rgba(170,255,0,0.08);
    }
    .form-textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }

    /* Загрузка файла */
    .form-file-label {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      background: rgba(13,21,40,0.8);
      border: 1px dashed rgba(0,212,255,0.25);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      font-size: 14px;
      color: var(--text-dim);
    }
    .form-file-label:hover {
      border-color: rgba(170,255,0,0.4);
      background: rgba(13,21,40,0.95);
      color: var(--text);
    }
    .form-file-label svg { flex-shrink: 0; opacity: 0.6; }
    .form-file-input { display: none; }
    .form-file-name {
      font-size: 12px;
      color: var(--lime);
      margin-top: 4px;
      padding-left: 4px;
    }

    /* Кнопка отправки */
    .form-submit {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--bg);
      background: var(--grad);
      border: none;
      border-radius: 50px;
      padding: 16px 36px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(170,255,0,0.25);
      display: flex;
      align-items: center;
      gap: 10px;
      align-self: flex-start;
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(170,255,0,0.4);
    }
    .form-note {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 4px;
    }

    /* Успешная отправка */
    .form-success {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 16px;
      padding: 48px 32px;
      background: rgba(13,21,40,0.8);
      border: 1px solid rgba(170,255,0,0.25);
      border-radius: 20px;
      margin-top: 32px;
    }
    .form-success.visible { display: flex; }
    .form-success-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(170,255,0,0.2), rgba(0,212,255,0.1));
      border: 2px solid rgba(170,255,0,0.4);
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
    }
    .form-success-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 16px; font-weight: 700;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .form-success-sub { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

    /* ── Правая: мессенджеры + инфо ── */
    .contacts-right { padding-top: 32px; }

    .contacts-messengers-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 15px; font-weight: 700;
      margin-bottom: 6px;
    }
    .contacts-messengers-sub {
      font-size: 13px; color: var(--text-dim);
      margin-bottom: 24px; line-height: 1.6;
    }

    .messenger-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 40px;
    }
    .messenger-link {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 20px;
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      text-decoration: none;
      color: var(--text);
      font-size: 14px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .messenger-link:hover {
      background: rgba(13,21,40,0.95);
      border-color: rgba(0,212,255,0.3);
      transform: translateX(6px);
    }
    .messenger-link-icon {
      width: 42px; height: 42px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .messenger-link-info { flex: 1; }
    .messenger-link-name { font-weight: 700; margin-bottom: 2px; }
    .messenger-link-handle { font-size: 12px; color: var(--text-dim); }
    .messenger-link-arrow {
      color: var(--text-dim); font-size: 16px;
      transition: transform 0.2s, color 0.2s;
    }
    .messenger-link:hover .messenger-link-arrow {
      transform: translateX(4px);
      color: var(--cyan);
    }

    /* Время работы */
    .contacts-info-card {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 18px;
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .contacts-info-row {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
    }
    .contacts-info-icon {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(170,255,0,0.12), rgba(0,212,255,0.08));
      border: 1px solid rgba(170,255,0,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; flex-shrink: 0;
    }
    .contacts-info-text { color: var(--text); line-height: 1.4; }
    .contacts-info-text span { color: var(--text-dim); font-size: 12px; display: block; }

    @media (max-width: 900px) {
      .contacts { padding: 60px 24px; }
      .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ═══════════════════════════════
       СЕКЦИЯ КОНТАКТЫ
    ═══════════════════════════════ */
    .contacts {
      padding: 100px 48px;
      position: relative;
      overflow: hidden;
    }
    .contacts::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(170,255,0,0.07) 0%, transparent 70%);
      top: 0; right: -100px;
      pointer-events: none;
    }
    .contacts-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    /* ── Левая: форма ── */
    .contacts-form-wrap {}

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 36px;
    }

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

    .form-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .form-input, .form-textarea {
      font-family: 'Golos Text', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: 12px;
      padding: 13px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      width: 100%;
    }
    .form-input::placeholder, .form-textarea::placeholder {
      color: rgba(122,155,191,0.5);
    }
    .form-input:focus, .form-textarea:focus {
      border-color: rgba(170,255,0,0.5);
      background: rgba(13,21,40,0.95);
      box-shadow: 0 0 0 3px rgba(170,255,0,0.08);
    }
    .form-textarea {
      resize: vertical;
      min-height: 110px;
      line-height: 1.6;
    }

    /* Прикрепить файл */
    .form-file-label {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      background: rgba(13,21,40,0.7);
      border: 1px dashed rgba(0,212,255,0.25);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      font-size: 14px;
      color: var(--text-dim);
    }
    .form-file-label:hover {
      border-color: rgba(170,255,0,0.4);
      background: rgba(13,21,40,0.9);
      color: var(--text);
    }
    .form-file-label .file-icon {
      font-size: 20px; flex-shrink: 0;
    }
    .form-file-label .file-hint {
      font-size: 11px; color: var(--text-dim); opacity: 0.6; margin-top: 2px;
    }
    #fileInput { display: none; }
    #fileName {
      font-size: 12px; color: var(--lime);
      margin-top: 4px; display: none;
    }

    /* Кнопка отправить */
    .form-submit {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--bg);
      background: var(--grad);
      border: none; border-radius: 50px;
      padding: 16px 36px;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 24px rgba(170,255,0,0.25);
      display: flex; align-items: center; gap: 10px;
      align-self: flex-start;
    }
    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 40px rgba(170,255,0,0.4);
    }
    .form-submit:active { transform: translateY(0); }

    /* Успешная отправка */
    .form-success {
      display: none;
      text-align: center;
      padding: 40px;
      background: rgba(13,21,40,0.8);
      border: 1px solid rgba(170,255,0,0.25);
      border-radius: 20px;
      margin-top: 36px;
    }
    .form-success-icon { font-size: 48px; margin-bottom: 16px; }
    .form-success-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 18px; font-weight: 700;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }
    .form-success-sub { font-size: 14px; color: var(--text-dim); }

    /* ── Правая: мессенджеры + инфо ── */
    .contacts-right { padding-top: 36px; }

    .contacts-messengers {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 36px;
    }
    .contact-messenger {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 16px 20px;
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      text-decoration: none;
      color: var(--text);
      font-size: 15px;
      font-weight: 600;
      transition: all 0.2s;
    }
    .contact-messenger:hover {
      background: rgba(13,21,40,0.95);
      border-color: rgba(0,212,255,0.25);
      transform: translateX(6px);
    }
    .contact-messenger-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex; align-items: center;
      justify-content: center;
      font-size: 22px; flex-shrink: 0;
    }
    .contact-messenger-info { flex: 1; }
    .contact-messenger-name { font-weight: 700; font-size: 14px; }
    .contact-messenger-hint { font-size: 12px; color: var(--text-dim); margin-top: 2px; }
    .contact-messenger-arrow { color: var(--text-dim); font-size: 18px; transition: transform 0.2s; }
    .contact-messenger:hover .contact-messenger-arrow { transform: translateX(4px); color: var(--cyan); }

    /* Инфо карточки */
    .contacts-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .contact-info-card {
      background: rgba(13,21,40,0.6);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 14px;
      padding: 18px;
      transition: border-color 0.2s;
    }
    .contact-info-card:hover { border-color: rgba(170,255,0,0.2); }
    .contact-info-icon { font-size: 22px; margin-bottom: 8px; }
    .contact-info-label {
      font-size: 11px; color: var(--text-dim);
      font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 4px;
    }
    .contact-info-value {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px; font-weight: 700; color: var(--text);
      line-height: 1.4;
    }

    @media (max-width: 900px) {
      .contacts { padding: 60px 24px; }
      .contacts-inner { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
      .contacts-info { grid-template-columns: 1fr 1fr; }
    }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer {
      position: relative;
      overflow: hidden;
      background: rgba(5, 9, 18, 0.98);
      border-top: 1px solid rgba(0,212,255,0.1);
    }

    /* Градиентная линия сверху */
    footer::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--grad);
      opacity: 0.7;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 48px 40px;
    }

    /* Верхний блок */
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(0,212,255,0.08);
    }

    /* Колонка с логотипом */
    .footer-brand {}
    .footer-logo {
      display: inline-block;
      margin-bottom: 16px;
    }
    .footer-logo img {
      height: 72px;
      width: auto;
      filter: drop-shadow(0 0 12px rgba(0,212,255,0.3));
    }
    .footer-tagline {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 240px;
    }

    /* Соцсети в футере */
    .footer-socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .footer-social-btn {
      width: 38px; height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(0,212,255,0.15);
      background: rgba(13,21,40,0.8);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      color: var(--text);
    }
    .footer-social-btn:hover {
      border-color: rgba(170,255,0,0.4);
      background: rgba(170,255,0,0.08);
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(170,255,0,0.15);
    }

    /* Колонки навигации */
    .footer-col-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-links a {
      font-size: 14px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-links a::before {
      content: '';
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--grad);
      flex-shrink: 0;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .footer-links a:hover {
      color: var(--text);
    }
    .footer-links a:hover::before { opacity: 1; }

    /* Мессенджеры в футере */
    .footer-messengers {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-messenger {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-dim);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-messenger:hover { color: var(--text); }
    .footer-messenger-icon {
      width: 28px; height: 28px;
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; flex-shrink: 0;
    }

    /* Нижний блок */
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 13px;
      color: var(--text-dim);
    }
    .footer-copy span {
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }
    .footer-made {
      font-size: 12px;
      color: rgba(255,255,255,0.2);
    }

    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
      .footer-inner { padding: 48px 24px 32px; }
    }
    @media (max-width: 500px) {
      .footer-top { grid-template-columns: 1fr; }
    }
    /* ══════════════════════════════════════════
       БУРГЕР-МЕНЮ (мобильные)
    ══════════════════════════════════════════ */

    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      cursor: pointer;
      background: none;
      border: 1px solid rgba(0,212,255,0.2);
      border-radius: 10px;
      padding: 8px;
      z-index: 200;
      flex-shrink: 0;
      transition: border-color 0.2s, background 0.2s;
    }
    .burger:hover {
      border-color: rgba(170,255,0,0.4);
      background: rgba(170,255,0,0.06);
    }
    .burger-line {
      width: 100%;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }

    /* Оверлей затемнение */
    .mobile-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 149;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }
    .mobile-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    /* Меню — выезжает справа */
    .mobile-menu {
      display: flex;
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 300px;
      max-width: 85vw;
      background: rgba(8,14,26,0.99);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-left: 1px solid rgba(0,212,255,0.12);
      z-index: 150;
      padding: 0;
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-direction: column;
      overflow-y: auto;
    }
    .mobile-menu.open { transform: translateX(0); }

    /* Шапка меню — логотип + крестик */
    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      border-bottom: 1px solid rgba(0,212,255,0.08);
      flex-shrink: 0;
    }
    .mobile-menu-logo img {
      height: 60px;
      width: auto;
      filter: drop-shadow(0 0 10px rgba(0,212,255,0.35));
    }
    .mobile-menu-close {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text-dim);
      font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
      line-height: 1;
      flex-shrink: 0;
    }
    .mobile-menu-close:hover {
      background: rgba(255,255,255,0.12);
      color: var(--text);
      border-color: rgba(0,212,255,0.3);
    }

    /* Навигационные ссылки */
    .mobile-nav {
      padding: 16px 0;
      flex-shrink: 0;
    }
    .mobile-nav-link {
      font-family: 'Unbounded', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dim);
      text-decoration: none;
      padding: 14px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
      transition: color 0.2s, background 0.2s, padding-left 0.2s;
      position: relative;
    }
    .mobile-nav-link::before {
      content: '';
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--grad);
      opacity: 0;
      transition: opacity 0.2s;
      flex-shrink: 0;
    }
    .mobile-nav-link:hover,
    .mobile-nav-link.active-link {
      color: var(--text);
      background: rgba(255,255,255,0.03);
    }
    .mobile-nav-link.active-link { color: var(--lime); }
    .mobile-nav-link.active-link::before,
    .mobile-nav-link:hover::before { opacity: 1; }

    /* CTA кнопка */
    .mobile-menu-cta {
      padding: 8px 24px 16px;
      flex-shrink: 0;
    }
    .mobile-menu-cta .btn-contact {
      width: 100%;
      justify-content: center;
      font-size: 12px;
      padding: 13px 20px;
    }

    /* Соцсети */
    .mobile-menu-footer {
      padding: 16px 24px 32px;
      border-top: 1px solid rgba(0,212,255,0.08);
      margin-top: auto;
      flex-shrink: 0;
    }
    .mobile-menu-footer-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 12px;
    }
    .mobile-menu-socials {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .mobile-social {
      width: 42px; height: 42px;
      border-radius: 11px;
      border: 1px solid rgba(0,212,255,0.15);
      background: rgba(13,21,40,0.8);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; text-decoration: none;
      transition: all 0.2s;
    }
    .mobile-social:hover {
      border-color: rgba(170,255,0,0.4);
      background: rgba(170,255,0,0.08);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .burger { display: flex; }
      .mobile-overlay { display: block; }

      /* Шапка на мобильном */
      header { height: 56px; }
      header.scrolled { height: 50px; }

      .header-inner {
        grid-template-columns: 1fr auto;
        padding: 0 16px;
      }

      .logo { display: none; }
      .nav-left, .nav-right { display: none !important; }

      .header-inner::before {
        content: 'Пластик Фантастик';
        font-family: 'Unbounded', sans-serif;
        font-size: 12px;
        font-weight: 700;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        white-space: nowrap;
      }

      /* Hero — компактный, всё влезает на экран */
      .hero { min-height: 100svh; }
      .hero-inner {
        grid-template-columns: 1fr !important;
        padding: 72px 20px 24px !important;
        gap: 20px !important;
        text-align: center;
        align-items: center;
        min-height: 100svh;
        box-sizing: border-box;
      }
      .hero-content { max-width: 100%; }
      .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 10px; }
      .hero-stats   { justify-content: center; gap: 20px; margin-top: 20px; }
      .stat-num     { font-size: 20px; }

      /* Слайдер меньше */
      .hero-slider       { width: 240px !important; height: 260px !important; }
      .hero-visual-ring  { width: 240px !important; height: 240px !important; }
      .hero-logo-display { width: 160px !important; height: 160px !important; }
      .hero-logo-display img { width: 150px !important; }
      .tech-badge { display: none; }

      /* Бейдж меньше */
      .hero-badge { font-size: 10px; padding: 5px 12px; margin-bottom: 16px; }

      /* Заголовок меньше */
      h1 { font-size: clamp(28px, 8vw, 42px) !important; }
      .hero-sub    { font-size: 13px; margin-bottom: 8px; }
      .hero-slogan { font-size: 13px; margin-bottom: 20px; }

      /* Кнопки компактнее */
      .btn-primary   { font-size: 11px !important; padding: 12px 20px !important; }
      .btn-secondary { font-size: 11px !important; padding: 10px 16px !important; }

      /* Скролл-индикатор убрать */
      .scroll-indicator { display: none; }
    }

    @media (max-width: 400px) {
      .hero-slider { width: 200px !important; height: 220px !important; }
      h1 { font-size: 26px !important; }
    }

    /* ═══════════════════════════════
       СТРАНИЦА КАТАЛОГА
    ═══════════════════════════════ */

    /* Общий заголовок страниц */
    .page-hero {
      position: relative;
      padding: 140px 48px 64px;
      overflow: hidden;
      text-align: center;
    }
    .page-hero-glow {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(170,255,0,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 70% 50%, rgba(0,212,255,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,212,255,0.2), transparent);
    }
    .page-hero-inner {
      position: relative;
      max-width: 700px;
      margin: 0 auto;
    }
    .page-hero-label {
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 16px;
      opacity: 0.8;
    }
    .page-hero-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 900;
      line-height: 1.1;
      color: var(--text);
      margin: 0 0 16px;
    }
    .page-hero-sub {
      font-size: 15px;
      color: var(--text-dim);
      line-height: 1.6;
      margin: 0;
    }

    /* Каталог на отдельной странице — убираем лишний верхний паддинг */
    .catalog-page {
      padding-top: 48px;
    }

    /* Поиск */
    .catalog-search-wrap {
      position: relative;
      max-width: 480px;
      margin: 0 0 28px;
    }
    .catalog-search-icon {
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-dim);
      width: 17px;
      height: 17px;
      pointer-events: none;
    }
    .catalog-search-input {
      width: 100%;
      padding: 13px 44px 13px 46px;
      font-family: 'Golos Text', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(0,212,255,0.15);
      border-radius: 50px;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
      box-sizing: border-box;
    }
    .catalog-search-input::placeholder { color: var(--text-dim); opacity: 0.6; }
    .catalog-search-input:focus {
      border-color: rgba(0,212,255,0.45);
      box-shadow: 0 0 0 3px rgba(0,212,255,0.08);
    }
    .catalog-search-clear {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: var(--text-dim);
      font-size: 14px;
      cursor: pointer;
      opacity: 0;
      transition: opacity 0.2s;
      padding: 4px 6px;
      line-height: 1;
    }
    .catalog-search-clear:hover { color: var(--text); }

    /* Счётчик результатов */
    .catalog-results-count {
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 20px;
      min-height: 18px;
    }

    /* Пустое состояние */
    .catalog-empty {
      text-align: center;
      padding: 64px 24px;
    }
    .catalog-empty-icon {
      font-size: 48px;
      margin-bottom: 16px;
    }
    .catalog-empty-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
    .catalog-empty-sub {
      font-size: 14px;
      color: var(--text-dim);
    }
    .catalog-empty-reset {
      background: none;
      border: none;
      color: var(--cyan);
      cursor: pointer;
      font-size: 14px;
      font-family: inherit;
      text-decoration: underline;
      padding: 0;
    }

    @media (max-width: 768px) {
      .page-hero { padding: 120px 24px 48px; }
      .catalog-search-wrap { max-width: 100%; }
    }


    /* ═══════════════════════════════
       СТРАНИЦА ДОСТАВКИ И ОПЛАТЫ
    ═══════════════════════════════ */

    .dp-section {
      padding: 80px 48px;
      position: relative;
    }
    .dp-section--alt {
      background: rgba(255,255,255,0.015);
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .dp-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .dp-block-label {
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 12px;
      opacity: 0.8;
    }
    .dp-block-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(22px, 3.5vw, 36px);
      font-weight: 900;
      color: var(--text);
      margin: 0 0 10px;
      line-height: 1.15;
    }
    .dp-block-sub {
      font-size: 15px;
      color: var(--text-dim);
      margin: 0 0 48px;
    }

    /* ── Карточки доставки ── */
    .delivery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    .delivery-card {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 20px;
      padding: 28px 24px 24px;
      position: relative;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .delivery-card:hover {
      transform: translateY(-4px);
      border-color: rgba(170,255,0,0.25);
      box-shadow: 0 16px 48px rgba(0,0,0,0.25), 0 0 30px rgba(170,255,0,0.06);
    }
    .delivery-card--featured {
      border-color: rgba(170,255,0,0.2);
      background: rgba(170,255,0,0.03);
    }
    .delivery-card--featured:hover {
      border-color: rgba(170,255,0,0.4);
    }
    .delivery-card-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      font-family: 'Unbounded', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--bg);
      background: var(--grad);
      border-radius: 50px;
      padding: 4px 12px;
    }
    .delivery-card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .delivery-card-icon svg {
      width: 28px;
      height: 28px;
    }
    .delivery-card-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 10px;
    }
    .delivery-card-desc {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.6;
      margin: 0 0 16px;
    }
    .delivery-card-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .delivery-card-list li {
      font-size: 12px;
      color: var(--text-dim);
      padding-left: 16px;
      position: relative;
    }
    .delivery-card-list li::before {
      content: '—';
      position: absolute;
      left: 0;
      color: var(--lime);
      opacity: 0.6;
    }

    /* Заметка о доставке */
    .dp-note {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: rgba(0,212,255,0.04);
      border: 1px solid rgba(0,212,255,0.12);
      border-radius: 14px;
      padding: 20px 24px;
    }
    .dp-note-icon { font-size: 22px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
    .dp-note-text { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

    /* ── Карточки оплаты ── */
    .payment-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 32px;
    }
    .payment-card {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 20px;
      padding: 28px 24px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    }
    .payment-card:hover {
      transform: translateY(-4px);
      border-color: rgba(0,212,255,0.3);
      box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 24px rgba(0,212,255,0.07);
    }
    .payment-card-icon { font-size: 36px; margin-bottom: 14px; }
    .payment-card-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 10px;
    }
    .payment-card-desc {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.6;
      margin: 0;
    }

    /* Блок предоплаты */
    .dp-prepay {
      background: rgba(170,255,0,0.03);
      border: 1px solid rgba(170,255,0,0.15);
      border-radius: 20px;
      padding: 28px 32px;
    }
    .dp-prepay-inner {
      display: flex;
      align-items: center;
      gap: 48px;
    }
    .dp-prepay-left { flex: 1; }
    .dp-prepay-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }
    .dp-prepay-text {
      font-size: 13px;
      color: var(--text-dim);
      line-height: 1.65;
      margin: 0;
    }
    .dp-prepay-badges {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .dp-prepay-badge {
      text-align: center;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      padding: 16px 24px;
      min-width: 90px;
    }
    .dp-prepay-badge-num {
      display: block;
      font-family: 'Unbounded', sans-serif;
      font-size: 20px;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 4px;
    }
    .dp-prepay-badge-label {
      font-size: 11px;
      color: var(--text-dim);
    }
    .dp-prepay-badge-divider {
      font-size: 12px;
      color: var(--text-dim);
    }

    /* ── Шаги заказа ── */
    .steps-grid {
      display: flex;
      align-items: flex-start;
      gap: 0;
    }
    .step-card {
      flex: 1;
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 20px;
      padding: 28px 22px;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    .step-card:hover {
      border-color: rgba(170,255,0,0.25);
      box-shadow: 0 8px 32px rgba(0,0,0,0.2), 0 0 20px rgba(170,255,0,0.05);
    }
    .step-connector {
      flex-shrink: 0;
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, rgba(170,255,0,0.4), rgba(0,212,255,0.4));
      margin-top: 42px;
      position: relative;
    }
    .step-connector::after {
      content: '';
      position: absolute;
      right: -5px;
      top: -4px;
      width: 0;
      height: 0;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid rgba(0,212,255,0.6);
    }
    .step-num {
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.08em;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 12px;
    }
    .step-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--text);
      margin: 0 0 8px;
    }
    .step-desc {
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.6;
      margin: 0;
    }

    /* ── CTA блок ── */
    .dp-cta-section {
      position: relative;
      text-align: center;
      padding: 100px 48px;
      overflow: hidden;
    }
    .dp-cta-glow {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(170,255,0,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .dp-cta-inner { position: relative; max-width: 600px; margin: 0 auto; }
    .dp-cta-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(24px, 4vw, 42px);
      font-weight: 900;
      color: var(--text);
      margin: 0 0 16px;
      line-height: 1.15;
    }
    .dp-cta-sub {
      font-size: 15px;
      color: var(--text-dim);
      margin: 0 0 36px;
    }
    .dp-cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── Адаптив ── */
    @media (max-width: 1100px) {
      .delivery-grid  { grid-template-columns: repeat(2, 1fr); }
      .payment-grid   { grid-template-columns: repeat(2, 1fr); }
      .steps-grid     { flex-direction: column; gap: 0; }
      .step-connector {
        width: 2px;
        height: 28px;
        margin: 0 0 0 40px;
        background: linear-gradient(180deg, rgba(170,255,0,0.4), rgba(0,212,255,0.4));
      }
      .step-connector::after {
        right: -4px;
        top: auto;
        bottom: -5px;
        border-top: 8px solid rgba(0,212,255,0.6);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: none;
      }
    }
    @media (max-width: 768px) {
      .dp-section { padding: 60px 24px; }
      .dp-cta-section { padding: 72px 24px; }
      .delivery-grid  { grid-template-columns: 1fr; }
      .payment-grid   { grid-template-columns: repeat(2, 1fr); }
      .dp-prepay-inner { flex-direction: column; gap: 24px; }
      .dp-prepay-badges { width: 100%; justify-content: center; }
    }
    @media (max-width: 480px) {
      .payment-grid { grid-template-columns: 1fr; }
    }


    /* ═══════════════════════════════
       СТРАНИЦА КОНТАКТОВ
    ═══════════════════════════════ */

    .contacts-page {
      padding-top: 48px;
    }

    /* Инфо-плитки 2×2 */
    .contacts-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }
    .contact-info-tile {
      background: rgba(13,21,40,0.7);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: 16px;
      padding: 18px 16px;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .contact-info-tile:hover {
      border-color: rgba(170,255,0,0.2);
      box-shadow: 0 4px 20px rgba(170,255,0,0.05);
    }
    .contact-info-tile-icon {
      font-size: 22px;
      margin-bottom: 8px;
      line-height: 1;
    }
    .contact-info-tile-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-dim);
      margin-bottom: 4px;
    }
    .contact-info-tile-value {
      font-family: 'Unbounded', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
    }

    /* Кнопка «отправить ещё» */
    .contacts-retry-btn {
      margin-top: 20px;
      font-family: 'Golos Text', sans-serif;
      font-size: 13px;
      color: var(--cyan);
      background: transparent;
      border: 1px solid rgba(0,212,255,0.3);
      border-radius: 50px;
      padding: 10px 24px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .contacts-retry-btn:hover {
      border-color: var(--cyan);
      background: rgba(0,212,255,0.06);
    }

    /* form-note — если ещё не определён */
    .form-note {
      font-size: 11px;
      color: var(--text-dim);
      margin-top: 10px;
      opacity: 0.6;
      line-height: 1.5;
    }

    @media (max-width: 600px) {
      .contacts-info-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 380px) {
      .contacts-info-grid { grid-template-columns: 1fr; }
    }

    /* ─────────────────────────────────────────────────────────
       PRODUCT CARD UPDATES (link wrapper + order btn in info)
       ───────────────────────────────────────────────────────── */
    .product-img-link {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      background: rgba(8,14,26,0.8);
      position: relative;
      overflow: hidden;
      text-decoration: none;
      flex-shrink: 0;
    }
    .product-img-link img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
      display: block;
    }
    .product-card:hover .product-img-link img { transform: scale(1.06); }
    .product-img-link .product-img-placeholder { position: absolute; inset: 0; }

    a.product-name {
      display: block;
      color: var(--text);
      text-decoration: none;
    }
    a.product-name:hover { color: var(--cyan); }

    .product-info .product-order-btn {
      position: static;
      width: 100%;
      margin-top: 10px;
      opacity: 0;
      transform: translateY(4px);
    }
    .product-card:hover .product-info .product-order-btn {
      opacity: 1;
      transform: translateY(0);
    }

    /* ─────────────────────────────────────────────────────────
       PRODUCT PAGE (product.php)
       ───────────────────────────────────────────────────────── */
    .product-page {
      padding: 100px 0 80px;
      min-height: 100vh;
    }
    .product-page-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 48px;
    }

    .product-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--text-dim);
      margin-bottom: 40px;
      flex-wrap: wrap;
    }
    .product-breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
    .product-breadcrumb a:hover { color: var(--cyan); }
    .product-breadcrumb-sep { opacity: 0.4; }
    .product-breadcrumb span:last-child { color: var(--text); }

    .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    /* Галерея */
    .product-gallery { position: sticky; top: 100px; }
    .product-gallery-main {
      width: 100%;
      aspect-ratio: 1 / 1;
      background: var(--bg2);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }
    .product-gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .product-gallery-main:hover .product-gallery-img { transform: scale(1.04); }
    .product-gallery-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
      background: linear-gradient(135deg, rgba(170,255,0,0.05), rgba(0,212,255,0.05));
    }
    .product-gallery-placeholder svg { width: 64px; height: 64px; opacity: 0.25; }
    .product-gallery-placeholder span { font-size: 13px; color: var(--text-dim); opacity: 0.5; }

    .product-gallery-thumbs {
      display: flex;
      gap: 8px;
      margin-top: 12px;
      flex-wrap: wrap;
    }
    .product-gallery-thumb {
      width: 64px; height: 64px;
      border-radius: 8px;
      overflow: hidden;
      border: 2px solid transparent;
      background: var(--bg2);
      cursor: pointer;
      padding: 0;
      transition: border-color 0.2s;
      flex-shrink: 0;
    }
    .product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .product-gallery-thumb.active { border-color: var(--cyan); }
    .product-gallery-thumb:hover { border-color: rgba(0,212,255,0.5); }

    /* Информационный блок */
    .product-info-block { display: flex; flex-direction: column; gap: 24px; }

    .product-page-cat {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dim);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .product-page-title {
      font-family: 'Unbounded', sans-serif;
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 900;
      line-height: 1.2;
      color: var(--text);
    }
    .product-page-meta {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .product-page-material {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: rgba(8,14,26,0.8);
      border: 1px solid rgba(0,212,255,0.3);
      color: var(--cyan);
      padding: 4px 12px;
      border-radius: 50px;
    }

    /* Варианты */
    .product-variants-label {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 600;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .product-variants-list { display: flex; gap: 8px; flex-wrap: wrap; }
    .product-variant-btn {
      font-family: 'Golos Text', sans-serif;
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      background: var(--bg2);
      border: 1px solid rgba(0,212,255,0.2);
      border-radius: 8px;
      padding: 8px 16px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, color 0.2s;
    }
    .product-variant-btn:hover { border-color: var(--cyan); }
    .product-variant-btn.active {
      border-color: var(--lime);
      background: rgba(170,255,0,0.08);
      color: var(--lime);
    }

    /* Цена */
    .product-page-price { line-height: 1; }
    .product-page-price-val {
      font-family: 'Unbounded', sans-serif;
      font-size: 36px;
      font-weight: 900;
      background: var(--grad);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .product-page-price-val.on-request {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dim);
      background: none;
      -webkit-text-fill-color: var(--text-dim);
    }

    /* Кнопка заказа */
    .product-page-order-btn {
      display: block;
      width: 100%;
      font-family: 'Unbounded', sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--bg);
      background: var(--grad);
      border: none;
      border-radius: 50px;
      padding: 16px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
    }
    .product-page-order-btn:hover { opacity: 0.88; transform: translateY(-1px); }

    /* Описание */
    .product-page-desc {
      background: var(--bg2);
      border: 1px solid rgba(0,212,255,0.1);
      border-radius: var(--radius);
      padding: 20px 24px;
    }
    .product-page-desc-title {
      font-family: 'Unbounded', sans-serif;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-dim);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }
    .product-page-desc-body {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text);
    }

    /* STL / Автор */
    .product-page-stl {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 16px 20px;
      background: rgba(170,255,0,0.04);
      border: 1px solid rgba(170,255,0,0.15);
      border-radius: var(--radius);
    }
    .product-page-stl-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-dim);
    }
    .product-page-stl-icon { color: var(--lime); font-size: 12px; flex-shrink: 0; }
    .product-page-stl a { color: var(--lime); text-decoration: none; }
    .product-page-stl a:hover { text-decoration: underline; }

    @media (max-width: 900px) {
      .product-layout { grid-template-columns: 1fr; gap: 32px; }
      .product-gallery { position: static; }
      .product-page-inner { padding: 0 24px; }
      .product-page { padding: 88px 0 60px; }
    }
    @media (max-width: 600px) {
      .product-page-title { font-size: 22px; }
      .product-page-price-val { font-size: 28px; }
    }
