:root {
      --primary: #6e44ff;
      --secondary: #ff2d75;
      --dark: #0a0338;
      --light: #f0e6ff;
      --accent: #00cfc8;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Arial', sans-serif;
    }
    body {
      background-color: var(--dark);
      color: var(--light);
      line-height: 1.6;
      padding-top: 80px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(10, 3, 56, 0.9);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--primary);
    }
    .logo {
      font-size: 1.8rem;
      font-weight: bold;
      color: var(--accent);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .logo span {
      color: var(--light);
    }
    nav ul {
      display: flex;
      list-style: none;
    }
    nav ul li {
      margin-left: 2rem;
    }
    nav ul li a {
      color: var(--light);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: var(--accent);
    }
    .burger {
      display: none;
      cursor: pointer;
    }
    .burger div {
      width: 25px;
      height: 3px;
      background-color: var(--light);
      margin: 5px;
      transition: all 0.3s ease;
    }
    section {
      padding: 5rem 2rem;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero {
      background: linear-gradient(rgba(10, 3, 56, 0.7), rgba(10, 3, 56, 0.7)), 
                  url('https://images.unsplash.com/photo-1545205597-3d9d02c29597') center/cover;
      text-align: center;
      position: relative;
    }
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: var(--accent);
      text-shadow: 0 0 10px rgba(0, 207, 200, 0.5);
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
    }
    .btn {
      display: inline-block;
      background: var(--primary);
      color: white;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      margin: 0.5rem;
    }
    .btn:hover {
      background: var(--secondary);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(110, 68, 255, 0.3);
    }
    .about {
      background-color: var(--light);
      color: var(--dark);
    }
    .section-title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--secondary);
    }
    .about-content {
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    .about-text {
      flex: 1;
    }
    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    }
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s;
    }
    .about-image:hover img {
      transform: scale(1.05);
    }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    .product-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(110, 68, 255, 0.3);
    }
    .product-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 30px rgba(110, 68, 255, 0.2);
    }
    .product-image {
      height: 200px;
      overflow: hidden;
    }
    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .product-card:hover .product-image img {
      transform: scale(1.1);
    }
    .product-content {
      padding: 1.5rem;
    }
    .product-title {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    .prices-cards {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 3rem;
    }
    .price-card {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 2rem;
      width: 300px;
      text-align: center;
      transition: transform 0.3s;
      border: 1px solid rgba(110, 68, 255, 0.3);
    }
    .price-card:hover {
      transform: translateY(-10px);
      background: rgba(110, 68, 255, 0.2);
    }
    .price-card h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--accent);
    }
    .price {
      font-size: 2.5rem;
      font-weight: bold;
      color: var(--secondary);
      margin: 1rem 0;
    }
    .price span {
      font-size: 1rem;
      color: var(--light);
    }
    .price-features {
      list-style: none;
      margin: 1.5rem 0;
    }
    .price-features li {
      margin-bottom: 0.5rem;
      position: relative;
      padding-left: 1.5rem;
    }
    .price-features li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--accent);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1rem;
      margin-top: 3rem;
    }
    .gallery-item {
      height: 250px;
      overflow: hidden;
      border-radius: 10px;
      position: relative;
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .gallery-item:hover img {
      transform: scale(1.1);
    }
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(10, 3, 56, 0.8), transparent);
      padding: 1rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    .feedback-slider {
      position: relative;
      max-width: 800px;
      margin: 3rem auto 0;
      overflow: hidden;
    }
    .feedback-slide {
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
      text-align: center;
      display: none;
      animation: fade 0.5s ease-in-out;
    }
    @keyframes fade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    .feedback-slide.active {
      display: block;
    }
    .client-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1rem;
      border: 3px solid var(--accent);
    }
    .client-name {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    .client-position {
      font-style: italic;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.7);
    }
    .slider-nav {
      display: flex;
      justify-content: center;
      margin-top: 1rem;
    }
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      margin: 0 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .slider-dot.active {
      background: var(--accent);
    }
    .faq-item {
      margin-bottom: 1rem;
      border: 1px solid rgba(110, 68, 255, 0.3);
      border-radius: 5px;
      overflow: hidden;
    }
    .faq-question {
      background: rgba(110, 68, 255, 0.2);
      padding: 1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
    }
    .faq-answer {
      padding: 0 1rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      padding: 1rem;
      max-height: 500px;
    }
    .contact-form {
      max-width: 600px;
      margin: 3rem auto 0;
      background: rgba(255, 255, 255, 0.1);
      padding: 2rem;
      border-radius: 10px;
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--accent);
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.8rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(110, 68, 255, 0.5);
      border-radius: 5px;
      color: white;
    }
    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }
    footer {
      background: #05001a;
      padding: 3rem 2rem;
      text-align: center;
    }
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-section {
      flex: 1;
      min-width: 250px;
      margin-bottom: 2rem;
    }
    .footer-section h3 {
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .footer-links {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 0.5rem;
    }
    .footer-links a {
      color: var(--light);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: var(--accent);
    }
    .copyright {
      margin-top: 2rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(110, 68, 255, 0.3);
      color: rgba(255, 255, 255, 0.5);
    }
    .disclaimer {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.5);
      margin-top: 2rem;
      text-align: center;
    }
    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(10, 3, 56, 0.9);
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      transform: translateY(100%);
      transition: transform 0.3s;
    }
    .cookie-banner.show {
      transform: translateY(0);
    }
    .cookie-banner p {
      flex: 1;
      margin-right: 1rem;
    }
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      justify-content: center;
      align-items: center;
    }
    .modal-content {
      background: var(--dark);
      padding: 2rem;
      border-radius: 10px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      border: 1px solid var(--primary);
      position: relative;
    }
    .close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--light);
    }
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        clip-path: circle(0px at 90% -10%);
        transition: clip-path 0.5s ease-out;
        pointer-events: none;
      }
      nav ul.open {
        clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
      }
      nav ul li {
        margin: 1rem 0;
      }
      .burger {
        display: block;
      }
      .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .burger.active div:nth-child(2) {
        opacity: 0;
      }
      .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
      .hero h1 {
        font-size: 2.5rem;
      }
      .about-content {
        flex-direction: column;
      }
      .section-title {
        font-size: 2rem;
      }
    }

