:root {
      --primary: #7d12ff;
      --secondary: #00f0ff;
      --accent: #ff2d75;
      --dark: #0a0a20;
      --light: #f0f0ff;
      --gray: #3a3a4a;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--dark);
      color: var(--light);
      line-height: 1.6;
      padding-top: 80px;
      overflow-x: hidden;
    }
    
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: rgba(10, 10, 32, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 15px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 0 20px rgba(125, 18, 255, 0.3);
      border-bottom: 1px solid var(--primary);
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--secondary);
      text-decoration: none;
    }
    
    .logo span {
      color: var(--primary);
    }
    
    nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }
    
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }
    
    nav ul li a:hover {
      color: var(--secondary);
    }
    
    nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--secondary);
      transition: width 0.3s;
    }
    
    nav ul li a:hover::after {
      width: 100%;
    }
    
    .burger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }
    
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      transition: all 0.3s;
    }
    
    .burger.active div:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger.active div:nth-child(2) {
      opacity: 0;
    }
    
    .burger.active div:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
    
    section {
      padding: 80px 5%;
      position: relative;
    }
    
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(10, 10, 32, 0.8), rgba(10, 10, 32, 0.9)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40') no-repeat center center/cover;
      overflow: hidden;
    }
    
    .hero-content {
      max-width: 600px;
      position: relative;
      z-index: 2;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.2;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: rgba(240, 240, 255, 0.9);
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background: linear-gradient(45deg, var(--primary), var(--accent));
      color: white;
      text-decoration: none;
      border-radius: 30px;
      font-weight: 600;
      transition: transform 0.3s, box-shadow 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(125, 18, 255, 0.3);
    }
    
    .btn-secondary {
      background: transparent;
      border: 2px solid var(--secondary);
      margin-left: 15px;
    }
    
    .btn-secondary:hover {
      background: rgba(0, 240, 255, 0.1);
    }
    
    h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--secondary);
      position: relative;
      display: inline-block;
    }
    
    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50%;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), transparent);
    }
    
    h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--light);
    }
    
    .about {
      background-color: var(--dark);
      position: relative;
    }
    
    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }
    
    .about-content {
      display: flex;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-img {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 30px rgba(125, 18, 255, 0.3);
      transition: transform 0.5s;
    }
    
    .about-img:hover {
      transform: scale(1.03);
    }
    
    .about-img img {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .products {
      background-color: #0f0f25;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .product-card {
      background-color: var(--gray);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(125, 18, 255, 0.3);
    }
    
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 30px rgba(125, 18, 255, 0.3);
    }
    
    .product-img {
      height: 200px;
      overflow: hidden;
    }
    
    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .product-card:hover .product-img img {
      transform: scale(1.1);
    }
    
    .product-info {
      padding: 20px;
    }
    
    .product-info h3 {
      color: var(--secondary);
      margin-bottom: 10px;
    }
    
    .prices {
      background-color: var(--dark);
    }
    
    .price-container {
      background-color: var(--gray);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
    }
    
    .price-table {
      width: 100%;
      border-collapse: collapse;
    }
    
    .price-table th, .price-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid rgba(240, 240, 255, 0.1);
    }
    
    .price-table th {
      background-color: rgba(125, 18, 255, 0.2);
      color: var(--secondary);
    }
    
    .price-table tr:last-child td {
      border-bottom: none;
    }
    
    .price-table tr:hover {
      background-color: rgba(125, 18, 255, 0.1);
    }
    
    .highlight {
      background-color: rgba(0, 240, 255, 0.1) !important;
      font-weight: 600;
    }
    
    .gallery {
      background-color: #0f0f25;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
    
    .gallery-item {
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      height: 250px;
      transition: transform 0.3s;
    }
    
    .gallery-item:hover {
      transform: scale(1.05);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    
    .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px;
      background: linear-gradient(transparent, rgba(10, 10, 32, 0.9));
      color: white;
      opacity: 0;
      transition: opacity 0.3s;
    }
    
    .gallery-item:hover .gallery-caption {
      opacity: 1;
    }
    
    .feedback {
      background-color: var(--dark);
    }
    
    .feedback-slider {
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }
    
    .feedback-track {
      display: flex;
      transition: transform 0.5s ease;
    }
    
    .feedback-slide {
      min-width: 100%;
      padding: 0 20px;
    }
    
    .feedback-card {
      background-color: var(--gray);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 20px rgba(125, 18, 255, 0.2);
      position: relative;
    }
    
    .feedback-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(125, 18, 255, 0.2);
      font-family: serif;
      line-height: 1;
    }
    
    .feedback-text {
      margin-bottom: 20px;
      font-style: italic;
      position: relative;
      z-index: 1;
    }
    
    .feedback-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .feedback-author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
    }
    
    .author-info h4 {
      color: var(--secondary);
      margin-bottom: 5px;
    }
    
    .author-info p {
      color: rgba(240, 240, 255, 0.7);
      font-size: 0.9rem;
    }
    
    .slider-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: var(--gray);
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .slider-dot.active {
      background-color: var(--secondary);
    }
    
    .faq {
      background-color: #0f0f25;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border: 1px solid rgba(125, 18, 255, 0.3);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .faq-question {
      padding: 20px;
      background-color: var(--gray);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background-color 0.3s;
    }
    
    .faq-question:hover {
      background-color: rgba(125, 18, 255, 0.2);
    }
    
    .faq-question h3 {
      margin-bottom: 0;
      font-size: 1.2rem;
    }
    
    .faq-toggle {
      width: 25px;
      height: 25px;
      position: relative;
    }
    
    .faq-toggle::before, .faq-toggle::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: var(--secondary);
      transition: transform 0.3s;
    }
    
    .faq-toggle::before {
      width: 15px;
      height: 2px;
    }
    
    .faq-toggle::after {
      width: 2px;
      height: 15px;
    }
    
    .faq-item.active .faq-toggle::after {
      transform: translate(-50%, -50%) rotate(90deg);
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background-color: rgba(10, 10, 32, 0.5);
    }
    
    .faq-content {
      padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 20px 0;
    }
    
    .contact-form {
      background-color: var(--gray);
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 0 30px rgba(125, 18, 255, 0.2);
      max-width: 600px;
      margin: 0 auto;
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--secondary);
    }
    
    .form-group input, .form-group textarea {
      width: 100%;
      padding: 12px 15px;
      background-color: rgba(240, 240, 255, 0.1);
      border: 1px solid rgba(125, 18, 255, 0.3);
      border-radius: 5px;
      color: var(--light);
      transition: border-color 0.3s;
    }
    
    .form-group input:focus, .form-group textarea:focus {
      outline: none;
      border-color: var(--secondary);
    }
    
    textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .form-submit {
      text-align: center;
    }
    
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(10, 10, 32, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    
    .modal.active {
      opacity: 1;
      visibility: visible;
    }
    
    .modal-content {
      background-color: var(--dark);
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      max-width: 500px;
      width: 90%;
      box-shadow: 0 0 30px rgba(125, 18, 255, 0.3);
      border: 1px solid var(--primary);
      position: relative;
    }
    
    .modal-close {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      color: var(--light);
      cursor: pointer;
      transition: color 0.3s;
    }
    
    .modal-close:hover {
      color: var(--accent);
    }
    
    .modal h3 {
      color: var(--secondary);
      margin-bottom: 15px;
    }
    
    footer {
      background-color: #0a0a14;
      padding: 50px 5% 30px;
      border-top: 1px solid rgba(125, 18, 255, 0.3);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-column h3 {
      color: var(--secondary);
      margin-bottom: 20px;
      font-size: 1.3rem;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 10px;
    }
    
    .footer-links a {
      color: rgba(240, 240, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-links a:hover {
      color: var(--secondary);
    }
    
    .contact-info {
      list-style: none;
    }
    
    .contact-info li {
      margin-bottom: 15px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    
    .contact-info i {
      color: var(--secondary);
      font-size: 1.2rem;
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(240, 240, 255, 0.1);
      color: rgba(240, 240, 255, 0.5);
      font-size: 0.9rem;
    }
    
    .disclaimer {
      background-color: rgba(255, 45, 117, 0.1);
      padding: 20px;
      border-radius: 10px;
      margin-top: 40px;
      border: 1px solid rgba(255, 45, 117, 0.3);
    }
    
    .disclaimer p {
      font-size: 0.9rem;
      color: rgba(240, 240, 255, 0.7);
    }
    
    .cookie-banner {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--gray);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 30px rgba(10, 10, 32, 0.5);
      max-width: 90%;
      width: 600px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      gap: 15px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    
    .cookie-banner.active {
      opacity: 1;
      visibility: visible;
    }
    
    .cookie-banner p {
      color: rgba(240, 240, 255, 0.8);
    }
    
    .cookie-buttons {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    
    .cookie-buttons .btn {
      padding: 8px 20px;
      font-size: 0.9rem;
    }
    
    @media (max-width: 992px) {
      .about-content {
        flex-direction: column;
      }
      
      .hero h1 {
        font-size: 2.8rem;
      }
    }
    
    @media (max-width: 768px) {
      nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px 5%;
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease;
      }
      
      nav.active {
        clip-path: circle(150% at 100% 0);
      }
      
      nav ul {
        flex-direction: column;
        gap: 20px;
      }
      
      .burger {
        display: flex;
      }
      
      .hero h1 {
        font-size: 2.2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .btn-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }
      
      .btn-secondary {
        margin-left: 0;
      }
      
      h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      section {
        padding: 60px 5%;
      }
      
      .hero {
        min-height: auto;
        padding: 120px 5% 80px;
      }
      
      .hero h1 {
        font-size: 1.8rem;
      }
      
      .price-container {
        padding: 20px 10px;
      }
      
      .contact-form {
        padding: 20px;
      }
    }
    
    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
      animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 {
      animation-delay: 0.2s;
    }
    
    .delay-2 {
      animation-delay: 0.4s;
    }
    
    .delay-3 {
      animation-delay: 0.6s;
    }
    
    .delay-4 {
      animation-delay: 0.8s;
    }
    
    .parallax {
      background-attachment: fixed;
    }

