    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #FF6B35;
      --secondary: #004E89;
      --dark: #1A1A2E;
      --light: #F5F5F5;
      --gray: #6B6B6B;
      --success: #28A745;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: var(--dark);
      overflow-x: hidden;
    }

    /* Scroll Progress Bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), #ff8a65);
      z-index: 99999;
      transition: width 0.1s ease;
      box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
    }

    /* Sticky Navigation */
    .sticky-nav {
      position: fixed;
      top: -100px;
      left: 0;
      width: 100%;
      background: rgba(26, 26, 46, 0.95);
      backdrop-filter: blur(10px);
      padding: 15px 0;
      z-index: 9999;
      transition: top 0.3s ease;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .sticky-nav.visible {
      top: 0;
    }

    .sticky-nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .sticky-nav-logo {
      color: white;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .sticky-nav-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .sticky-nav-links a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .sticky-nav-links a:hover {
      color: var(--primary);
    }

    .sticky-nav-cta {
      background: var(--primary);
      color: white;
      padding: 10px 25px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .sticky-nav-cta:hover {
      background: #ff5722;
      transform: translateY(-2px);
    }

    /* Hero with Parallax */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      padding: 20px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%;
      background: url('https://amoto.by/upload/medialibrary/4f0/fivy63hqtenz1ro79o2v4aqv0xf7rqw1/5413781589592243180.jpg') center/cover;
      z-index: 0;
      will-change: transform;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0, 78, 137, 0.95), rgba(26, 26, 46, 0.9));
      z-index: 1;
    }

    .hero-content {
      max-width: 800px;
      z-index: 2;
      position: relative;
    }

    .pts-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: linear-gradient(135deg, #28A745, #34CE57);
      color: white;
      border-radius: 50px;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
      margin-bottom: 20px;
      font-size: 0.9rem;
    }

    .pts-badge svg {
      width: 20px;
      height: 20px;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
      font-size: 1.5rem;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .countdown-wrapper {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 30px 40px;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .countdown-label {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .countdown-timer {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .countdown-item {
      text-align: center;
      min-width: 80px;
    }

    .countdown-value {
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
      text-shadow: 0 0 20px rgba(255, 107, 0, 0.4);
    }

    .countdown-separator {
      font-size: 3.5rem;
      font-weight: 900;
      color: rgba(255, 255, 255, 0.3);
      line-height: 1;
      padding: 0 5px;
    }

    .countdown-label-small {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 8px;
    }

    /* Pulsing CTA Button */
    .cta-button {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 18px 50px;
      font-size: 1.2rem;
      font-weight: 600;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
      }
      50% {
        box-shadow: 0 4px 25px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.4);
      }
      100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
      }
    }

    .cta-button:hover {
      background: #ff5722;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
      animation: none;
    }

    section {
      padding: 80px 20px;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--dark);
      margin-bottom: 15px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Gallery with Enhanced Hover */
    .gallery-section {
      background: var(--light);
    }

    .gallery-container {
      max-width: 1000px;
      margin: 0 auto;
    }

    .gallery-main {
      margin-bottom: 20px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .gallery-main img {
      width: 100%;
      height: auto;
      display: block;
    }

    .gallery-thumbnails {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 15px;
    }

    .gallery-thumbnails img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.3s ease;
      border: 3px solid transparent;
      filter: brightness(0.9);
    }

    .gallery-thumbnails img:hover {
      transform: scale(1.1);
      filter: brightness(1);
      box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
      border-color: var(--primary);
    }

    .gallery-thumbnails img.active {
      border-color: var(--primary);
      transform: scale(1.05);
      filter: brightness(1);
    }

    /* Features with Cascade Animation */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .feature-card.animate-in {
      animation: slideUp 0.6s ease forwards;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), #ff8a65);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon svg {
      width: 30px;
      height: 30px;
      color: white;
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: var(--dark);
    }

    .feature-card p {
      color: var(--gray);
      line-height: 1.8;
    }

    .pts-feature {
      border: 2px solid var(--success);
      background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    }

    .pts-feature .feature-icon {
      background: linear-gradient(135deg, #28A745, #34CE57);
    }

    .feature-list {
      list-style: none;
      margin-top: 15px;
    }

    .feature-list li {
      padding: 8px 0;
      color: var(--success);
      font-weight: 600;
    }

    /* Reviews */
    .reviews-section {
      background: var(--light);
      overflow: hidden;
    }

    .reviews-carousel-wrapper {
      position: relative;
      overflow-x: auto;
      overflow-y: hidden;
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      padding: 20px;
      cursor: grab;
      scrollbar-width: none;
      -ms-overflow-style: none;
      scroll-behavior: smooth;
    }

    .reviews-carousel-wrapper::-webkit-scrollbar {
      display: none;
    }

    .reviews-carousel-wrapper:active {
      cursor: grabbing;
    }

    .reviews-carousel-track {
      display: flex;
      gap: 30px;
      animation: infiniteScroll 120s linear infinite;
      width: fit-content;
    }

    .reviews-carousel-wrapper:hover .reviews-carousel-track {
      animation-play-state: paused;
    }

    @keyframes infiniteScroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .review-card {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      min-width: 350px;
      max-width: 350px;
      flex-shrink: 0;
    }

    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .review-author {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      color: var(--dark);
    }

    .review-date {
      font-size: 0.9rem;
      color: var(--gray);
    }

    .review-rating {
      color: gold;
      flex-shrink: 0;
    }

    .review-text {
      color: var(--gray);
      line-height: 1.8;
      font-size: 0.95rem;
    }

    /* Specs with Animated Numbers */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .spec-item {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 3px 15px rgba(0,0,0,0.08);
      border-left: 4px solid var(--primary);
    }

    .spec-label {
      font-size: 0.9rem;
      color: var(--gray);
      margin-bottom: 8px;
    }

    .spec-value {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark);
    }

    .spec-value.animate-number {
      display: inline-block;
    }

    /* FAQ */
    .faq-section {
      background: var(--light);
    }

    .faq-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    .faq-question {
      padding: 20px 25px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: var(--light);
    }

    .faq-answer {
      padding: 0 25px;
      max-height: 0;
      overflow: hidden;
      transition: all 0.3s ease;
      color: var(--gray);
      line-height: 1.8;
    }

    .faq-item.active .faq-answer {
      padding: 20px 25px;
      max-height: 500px;
    }

    .faq-icon {
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    .cta-section {
      background: linear-gradient(135deg, var(--secondary), var(--dark));
      color: white;
      text-align: center;
    }

    /* Modal */
    .modal {
      display: none;
      position: fixed;
      z-index: 99999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      overflow-y: auto;
      padding: 20px;
    }

    .modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-content {
      background: white;
      padding: 50px;
      border-radius: 20px;
      max-width: 600px;
      width: 100%;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 10;
      background: none;
      border: none;
      font-size: 2rem;
      color: var(--gray);
      cursor: pointer;
      transition: color 0.3s ease;
      line-height: 1;
      padding: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .modal-close:hover {
      color: var(--dark);
    }

    .modal-header {
      text-align: center;
      margin-bottom: 30px;
    }

    .modal-header h2 {
      font-size: 2rem;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .modal-header p {
      color: var(--gray);
    }

    .form-group {
      margin-bottom: 20px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--dark);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
    }

    .form-group.error input {
      border-color: #dc3545;
    }

    .error-message {
      color: #dc3545;
      font-size: 0.9rem;
      margin-top: 5px;
      display: none;
    }

    .form-group.error .error-message {
      display: block;
    }

    .form-submit {
      width: 100%;
      padding: 18px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .form-submit:hover:not(:disabled) {
      background: #ff5722;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    }

    .form-submit:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .success-message {
      display: none;
      text-align: center;
      padding: 30px;
    }

    .success-message.active {
      display: block;
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: var(--success);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 3rem;
    }

    footer {
      background: var(--dark);
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    footer a {
      color: white;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    footer a:hover {
      opacity: 0.8;
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 2rem;
      }

      .hero-subtitle {
        font-size: 1.1rem;
      }

      .countdown-wrapper {
        padding: 25px 20px;
      }

      .countdown-value {
        font-size: 2.5rem;
      }

      .countdown-separator {
        font-size: 2.5rem;
      }

      .countdown-item {
        min-width: 60px;
      }

      .section-header h2 {
        font-size: 1.8rem;
      }

      .modal-content {
        padding: 30px 20px;
      }

      .features-grid,
      .specs-grid {
        grid-template-columns: 1fr;
      }

      .review-card {
        min-width: 300px;
        max-width: 300px;
      }

      .sticky-nav-links {
        display: none;
      }
    }
	/* Social Proof Notification */
.social-proof-notification { position: fixed; bottom: 20px; left: 20px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); border-radius: 15px; padding: 15px 20px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 15px; z-index: 9998; transform: translateX(-400px); transition: transform 0.5s ease; max-width: 350px; border-left: 4px solid var(--success); }
.social-proof-notification.show { transform: translateX(0); }
.social-proof-icon { width: 45px; height: 45px; background: linear-gradient(135deg, var(--success), #34CE57); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; font-size: 1.2rem; }
.social-proof-content { flex: 1; }
.social-proof-name { font-weight: 600; color: var(--dark); margin-bottom: 3px; font-size: 0.95rem; }
.social-proof-action { color: var(--gray); font-size: 0.85rem; }
.social-proof-time { color: var(--success); font-size: 0.8rem; font-weight: 600; margin-top: 3px; }
.social-proof-close { background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1.2rem; padding: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: color 0.3s ease; }
.social-proof-close:hover { color: var(--dark); }

/* Lightbox Gallery */
.lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 99999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; display: flex; align-items: center; justify-content: center; }
.lightbox-image { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 10px; transform: scale(1); transition: transform 0.3s ease; cursor: zoom-in; }
.lightbox-image.zoomed { transform: scale(1.5); cursor: zoom-out; }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: none; color: white; font-size: 2rem; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 10; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: none; color: white; font-size: 2rem; width: 60px; height: 60px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); color: white; padding: 10px 20px; border-radius: 50px; font-weight: 600; }

/* ============================================
   ГАЛЕРЕЯ - АДАПТИВНАЯ ВЕРСИЯ
   ============================================ */

/* Скрываем мобильную галерею на десктопе */
@media (min-width: 769px) {
  .mobile-gallery-slider {
    display: none;
  }
  .mobile-gallery-overlay {
    display: none;
  }
  .mobile-gallery-dots {
    display: none;
  }
  .mobile-gallery-counter {
    display: none;
  }
}

/* Мобильная версия */
@media (max-width: 768px) {
  /* Скрываем десктопную галерею */
  .gallery-main {
    display: none;
  }
  .gallery-thumbnails {
    display: none;
  }

  /* Контейнер */
  .gallery-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
  }

  /* Слайдер */
  .mobile-gallery-slider {
    display: flex;
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease;
  }

  /* Слайды */
  .mobile-gallery-slide {
    min-width: 100%;
    width: 100%;
    height: 500px;
    flex-shrink: 0;
  }

  .mobile-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Overlay */
  .mobile-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
    z-index: 5;
  }

  /* Точки */
  .mobile-gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .mobile-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
  }

  .mobile-gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
  }

  /* Счетчик */
  .mobile-gallery-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
  }
}


/* ============================================
   ЦЕНТРИРОВАНИЕ БЛОКА ПТС
   ============================================ */

/* Зеленая карточка ПТС */
.feature-card:nth-child(7) {
  grid-column: 1 / -1; /* Занимает всю ширину сетки */
  max-width: 500px;
  margin: 0 auto; /* Центрируем */
}

/* На планшетах и выше - точное центрирование */
@media (min-width: 768px) {
  .feature-card:nth-child(4) {
    max-width: 400px;
  }
}

/* На больших экранах - если 3 колонки, ставим во вторую */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-card:nth-child(4) {
    grid-column: 2; /* Вторая колонка = центр */
    grid-row: 2; /* Второй ряд */
    max-width: none;
    margin: 0;
  }
}
