    /* ---------- RESET & GLOBAL VARIABLES ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    :root {
      --accent: #3b82f6;
      --accent-hover: #2563eb;
      --bg-dark: #0a0c10;
      --card-bg: rgba(18, 22, 28, 0.75);
      --text-primary: #ffffff;
      --text-secondary: #cbd5e1;
      --border-light: rgba(255,255,255,0.08);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body {
      background: #0a0c10;
      font-family: system-ui, -apple-system, 'Inter', 'Segoe UI', sans-serif;
      color: var(--text-primary);
      line-height: 1.5;
      overflow-x: hidden;
    }
    .benefits,
    .product-pack,
    .product-catalog {
      min-height: 100vh;
    } 
    /* ========== HEADER & NAVIGATION ========== */
    .main-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(10, 12, 16, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      padding: 1rem 2rem;
    }

    .header-container {
      max-width: 1280px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      width: 28px;
      height: 28px;
    }

    .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .nav-links a:hover {
      color: var(--accent);
    }

    /* Language Dropdown */
    .lang-dropdown {
      position: relative;
    }
    
    @media (max-width: 768px) {
      .lang-dropdown {
        display: none;
      }
    }

    .lang-dropdown-btn {
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--border-light);
      border-radius: 60px;
      padding: 0.5rem 1rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: white;
      font-weight: 500;
      transition: var(--transition);
    }

    .lang-dropdown-btn:hover {
      background: rgba(59,130,246,0.2);
      border-color: var(--accent);
    }

    .lang-dropdown-arrow {
      font-size: 0.7rem;
      transition: transform 0.2s;
    }

    .lang-dropdown.active .lang-dropdown-arrow {
      transform: rotate(180deg);
    }

    .lang-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: rgba(10, 12, 16, 0.95);
      backdrop-filter: blur(12px);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      min-width: 140px;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.2s ease;
      z-index: 1001;
    }

    .lang-dropdown.active .lang-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.75rem 1rem;
      cursor: pointer;
      transition: var(--transition);
      color: var(--text-secondary);
    }

    .lang-option:hover {
      background: rgba(59,130,246,0.15);
      color: white;
    }

    .lang-option.active {
      background: rgba(59,130,246,0.25);
      color: var(--accent);
    }

    .lang-flag {
      font-size: 1.2rem;
    }

    /* Burger Menu */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 21px;
      cursor: pointer;
      z-index: 1010;
    }

    .burger span {
      width: 100%;
      height: 3px;
      background: white;
      border-radius: 10px;
      transition: 0.3s ease;
    }

    .burger.active span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: rgba(10, 12, 16, 0.98);
      backdrop-filter: blur(20px);
      z-index: 1005;
      transition: right 0.4s ease;
      padding: 6rem 2rem 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
      border-left: 1px solid var(--border-light);
    }

    .mobile-menu.open {
      right: 0;
    }

    .mobile-menu a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 500;
      padding: 0.5rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      transition: var(--transition);
    }

    .mobile-menu a:hover {
      color: var(--accent);
      padding-left: 8px;
    }

    .mobile-lang {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .mobile-lang-option {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 1rem;
      cursor: pointer;
      border-radius: 12px;
      transition: var(--transition);
      color: var(--text-secondary);
    }

    .mobile-lang-option:hover {
      background: rgba(59,130,246,0.15);
    }

    .mobile-lang-option.active {
      background: rgba(59,130,246,0.25);
      color: var(--accent);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .burger {
        display: flex;
      }
      .main-header {
        padding: 0.9rem 1.5rem;
      }
    }

    /* ========== SECTION STYLES ========== */
    section {
      scroll-margin-top: 80px;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 5rem 2rem;
    }

    /* Hero Section */
    .hero {
      min-height: calc(100vh - 80px);
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      overflow: hidden;
    }

    .hero__background {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero__gradient {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.5;
    }

    .hero__gradient--primary {
      width: 50%;
      height: 50%;
      background: radial-gradient(circle, rgba(59,130,246,0.4), transparent);
      top: -20%;
      left: -10%;
    }

    .hero__gradient--secondary {
      width: 50%;
      height: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.3), transparent);
      bottom: -20%;
      right: -10%;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }

    .hero__text {
      flex: 1;
    }

    .hero__title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1rem;
      background: linear-gradient(to right, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero__subtitle {
      color: var(--text-secondary);
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .hero__cta {
      background: var(--accent);
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 60px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      transition: var(--transition);
    }

    .hero__cta:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
    }

    .hero__visual {
      flex: 1;
      text-align: center;
    }
    @media (max-width: 768px) {
     .hero__visual {
      flex:none;
      width: 100%;
     }
     .hero__image {
        width: 100%;
     }
    }

    .preview-img {
      max-width: 100%;
      border-radius: 28px;
      box-shadow: 0 20px 35px -12px black;
    }

    .trust-bar {
      margin-top: 3rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      border-top: 1px solid var(--border-light);
      padding-top: 2rem;
    }

    /* Benefits Section */
    .benefits {
      position: relative;
      width: 100%;
      padding: 5rem 1.5rem;
      background-color: #05070a;
    }

    .benefits__background {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .benefits__gradient {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.4;
    }

    .benefits__gradient--primary {
      width: 55%;
      height: 55%;
      background: radial-gradient(circle, rgba(59,130,246,0.35), transparent);
      top: -15%;
      left: -10%;
    }

    .benefits__gradient--secondary {
      width: 50%;
      height: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.25), transparent);
      bottom: -20%;
      right: -5%;
    }

    .benefits__grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
      opacity: 0.2;
    }

    .benefits__divider {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0.3;
    }

    .benefits__container {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
    }

    .benefits__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .benefits__title {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .benefits__subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    .benefits__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .benefits__card {
      background: var(--card-bg);
      backdrop-filter: blur(12px);
      border-radius: 2rem;
      padding: 2rem;
      border: 1px solid var(--border-light);
      transition: var(--transition);
      text-align: center;
    }

    .benefits__card:hover {
      transform: translateY(-6px);
      border-color: rgba(59,130,246,0.5);
    }

    .benefits__icon-wrapper {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(59,130,246,0.12);
      width: 70px;
      height: 70px;
      border-radius: 28px;
      margin-bottom: 1.5rem;
    }

    .benefits__icon {
      stroke: var(--accent);
      width: 32px;
      height: 32px;
    }

    .benefits__card-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }

    .benefits__card-description {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    /* Product Pack Section */
    .product-pack {
      position: relative;
      padding: 5rem 1.5rem;
      background-color: #05070a;
    }

    .product-pack__container {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
    }

    .product-pack__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .product-pack__title {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .countdown {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(59,130,246,0.15);
      padding: 0.5rem 1.2rem;
      border-radius: 60px;
    }

    .countdown__label {
      color: var(--text-secondary);
      font-size: 0.85rem;
    }

    .countdown__time {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent);
      font-family: monospace;
    }

    .product-pack__content {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 3rem;
      align-items: stretch; /* important */

    }
    .product-pack__gallery {
      height: 100%;
    }

    .product-pack__main-image-wrapper {
      height: 100%;
    }

    .product-pack__main-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* or 'contain' if you don’t want cropping */
      display: block;
    }

    @media (max-width: 900px) {
      .product-pack__content {
        grid-template-columns: 1fr;
      }
    }

    .product-pack__main-image-wrapper {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      background: var(--card-bg);
    }

    .product-pack__image {
      width: 100%;
      height: auto;
      display: block;
    }

    .product-pack__zoom-hint {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: rgba(0,0,0,0.7);
      padding: 0.5rem 0.8rem;
      border-radius: 40px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
    }

    .product-pack__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.6);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      color: white;
      cursor: pointer;
      font-size: 1.5rem;
    }

    .product-pack__nav--prev { left: 1rem; }
    .product-pack__nav--next { right: 1rem; }

    .product-pack__thumbnails {
      display: flex;
      gap: 0.75rem;
      margin-top: 1rem;
      overflow-x: auto;
      padding-bottom: 0.5rem;
    }

    .product-pack__thumbnail {
      width: 70px;
      height: 70px;
      border-radius: 12px;
      border: 2px solid transparent;
      cursor: pointer;
      overflow: hidden;
      flex-shrink: 0;
    }

    .product-pack__thumbnail--active {
      border-color: var(--accent);
    }

    .product-pack__thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-pack__included {
      background: var(--card-bg);
      border-radius: 28px;
      padding: 1.8rem;
      margin-bottom: 1.5rem;
    }

    .product-pack__included-title {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    .product-pack__included-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .product-pack__included-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .product-pack__pricing-card {
      background: linear-gradient(135deg, #1e293b, #0f172a);
      border-radius: 28px;
      padding: 2rem;
      text-align: center;
    }

    .product-pack__price-amount {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--accent);
    }

    .product-pack__price-old {
      text-decoration: line-through;
      color: #94a3b8;
    }

    .product-pack__price-save {
      color: #22c55e;
    }

    .product-pack__cta {
      background: var(--accent);
      border: none;
      padding: 0.9rem 2rem;
      border-radius: 60px;
      font-weight: 600;
      color: white;
      cursor: pointer;
      margin-top: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Product Catalog */
    .product-catalog {
      position: relative;
      padding: 5rem 1.5rem;
      background-color: #05070a;
    }

    .product-catalog__container {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
    }

    .product-catalog__header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .product-catalog__title {
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .product-catalog__subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
    }

    .product-catalog__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .product-catalog__card {
      background: var(--card-bg);
      border-radius: 28px;
      border: 1px solid var(--border-light);
      overflow: hidden;
      transition: var(--transition);
    }

    .product-catalog__card:hover {
      transform: translateY(-6px);
    }

    .product-catalog__card-image-wrapper {
      position: relative;
    }

    .product-catalog__sale-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: linear-gradient(135deg, #ff6b6b, #ee5a24);
      color: white;
      padding: 0.3rem 0.8rem;
      border-radius: 60px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .product-catalog__card-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    .product-catalog__card-content {
      padding: 1.5rem;
    }

    .product-catalog__card-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .product-catalog__card-description {
      color: var(--text-secondary);
      font-size: 0.85rem;
      margin-bottom: 1rem;
      line-height: 1.4;
    }

    .product-catalog__card-pricing {
      display: flex;
      align-items: baseline;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .product-catalog__card-price-new {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--accent);
    }

    .product-catalog__card-price-old {
      text-decoration: line-through;
      color: #94a3b8;
      font-size: 0.9rem;
    }

    .product-catalog__card-actions {
      display: flex;
      gap: 0.75rem;
    }

    .product-catalog__btn {
      flex: 1;
      padding: 0.6rem;
      border-radius: 60px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      transition: var(--transition);
    }

    .product-catalog__btn--primary {
      background: var(--accent);
      color: white;
    }

    .product-catalog__btn--primary:hover {
      background: var(--accent-hover);
    }


    /* Footer */

    /* Footer Styles */
    .footer {
      background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
      color: #fff;
      padding: 3rem 2rem;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      margin-top: auto;
    }

    .footer__container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    /* Social Icons */
    .footer__social {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .footer__social-icon a {
      display: inline-block;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .footer__social-icon a:hover {
      transform: translateY(-5px);
      opacity: 0.8;
    }

    .footer__social-icon img {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    /* Navigation Links */
    .footer__nav {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .footer__nav-link {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .footer__nav-link:hover {
      color: #ffd700;
    }

    .footer__nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ffd700;
      transition: width 0.3s ease;
    }

    .footer__nav-link:hover::after {
      width: 100%;
    }

    /* Privacy Policy */
    .footer__privacy {
      margin-bottom: 1.5rem;
    }

    .footer__privacy-link {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.3s ease;
    }

    .footer__privacy-link:hover {
      color: #ffd700;
      text-decoration: underline;
    }

    /* Copyright */
    .footer__copyright {
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.8rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .footer {
        padding: 2rem 1rem;
      }

      .footer__social {
        gap: 1.5rem;
        margin-bottom: 2rem;
      }

      .footer__social-icon img {
        width: 32px;
        height: 32px;
      }

      .footer__nav {
        gap: 1rem;
        margin-bottom: 1.5rem;
      }

      .footer__nav-link {
        font-size: 0.85rem;
      }

      .footer__copyright {
        font-size: 0.7rem;
      }
    }

    @media (max-width: 480px) {
      .footer__nav {
        gap: 0.75rem;
      }
      
      .footer__nav-link {
        font-size: 0.75rem;
      }
    }















    /*  */
    .footer {
      background: linear-gradient(180deg, #05070a, #020304);
      border-top: 1px solid var(--border-light);
      padding: 3rem 2rem;
    }

    .footer__container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .footer__grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
    }

    @media (max-width: 768px) {
      .footer__grid {
        flex-direction: column;
        text-align: center;
      }
    }

    .footer__brand {
      font-size: 1.1rem;
      font-weight: 600;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .footer__legal, .footer__inn {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .footer__buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
    }

    .footer__offer, .footer__policy, .footer__recovery {
      background: transparent;
      border: none;
      color: var(--text-secondary);
      padding: 0.4rem 0.8rem;
      border-radius: 60px;
      cursor: pointer;
      transition: var(--transition);
    }

    .footer__offer:hover, .footer__policy:hover, .footer__recovery:hover {
      color: var(--accent);
    }

    .footer__contacts {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .footer__email, .footer__telegram {
      color: var(--text-secondary);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
    }

    .footer__email:hover, .footer__telegram:hover {
      color: var(--accent);
    }

    hr {
      margin: 2rem 0 0;
      border-color: var(--border-light);
    }

    .footer-copy {
      text-align: center;
      margin-top: 2rem;
      color: var(--text-secondary);
      font-size: 0.8rem;
    }

    @media (max-width: 480px) {
      .container, .benefits, .product-pack, .product-catalog {
        padding: 3rem 1rem;
      }
      .product-catalog__card-actions {
        flex-direction: column;
      }
      .benefits__grid {
        gap: 1rem;
      }
    }

    /* Demo content - button to trigger modal */
    .demo-content {
      text-align: center;
      max-width: 500px;
    }

    .demo-content h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .demo-content p {
      color: var(--text-secondary);
      margin-bottom: 2rem;
    }

    .buy-button {
      background: var(--accent);
      border: none;
      padding: 1rem 2rem;
      border-radius: 60px;
      font-weight: 700;
      font-size: 1.1rem;
      color: white;
      cursor: pointer;
      transition: var(--transition);
    }

    .buy-button:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(59,130,246,0.3);
    }

    /* Language Switcher */
    .lang-switcher {
      position: fixed;
      top: 20px;
      right: 20px;
      z-index: 1000;
      background: rgba(10, 12, 16, 0.9);
      backdrop-filter: blur(12px);
      padding: 0.5rem 1rem;
      border-radius: 60px;
      display: flex;
      gap: 0.5rem;
      border: 1px solid var(--border-light);
    }

    .lang-btn {
      background: transparent;
      border: none;
      font-size: 0.9rem;
      cursor: pointer;
      padding: 0.3rem 0.7rem;
      border-radius: 40px;
      transition: var(--transition);
      opacity: 0.6;
      color: white;
      font-weight: 600;
    }

    .lang-btn.active {
      opacity: 1;
      background: var(--accent);
    }

    /* ========== MODAL STYLES ========== */
    .consent-modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .consent-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .consent-modal {
      background: linear-gradient(145deg, #1a1f2e, #0f1119);
      border-radius: 32px;
      max-width: 500px;
      width: 90%;
      border: 1px solid var(--border-light);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }

    .consent-modal-overlay.active .consent-modal {
      transform: scale(1);
    }

    .consent-modal__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.5rem 1.5rem 0.5rem 1.5rem;
      border-bottom: 1px solid var(--border-light);
    }

    .consent-modal__title {
      font-size: 1.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #fff, #a0c0ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .consent-modal__close {
      background: rgba(255,255,255,0.08);
      border: none;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      color: var(--text-secondary);
    }

    .consent-modal__close:hover {
      background: rgba(255,255,255,0.15);
      color: white;
    }

    .consent-modal__content {
      padding: 1.5rem;
    }

    .consent-modal__product {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 1rem;
      padding: 0.75rem;
      background: rgba(59,130,246,0.1);
      border-radius: 16px;
    }

    .consent-modal__product strong {
      color: var(--accent);
    }

    .consent-modal__description {
      color: var(--text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.5;
    }

    .consent-modal__promo {
      margin-bottom: 1.5rem;
    }

    .consent-modal__promo-label {
      display: block;
      font-size: 0.85rem;
      color: var(--text-secondary);
      margin-bottom: 0.5rem;
    }

    .consent-modal__promo-row {
      display: flex;
      gap: 0.75rem;
    }

    .consent-modal__promo-input {
      flex: 1;
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--border-light);
      border-radius: 60px;
      padding: 0.75rem 1rem;
      color: white;
      font-size: 0.9rem;
      outline: none;
      transition: var(--transition);
    }

    .consent-modal__promo-input:focus {
      border-color: var(--accent);
    }

    .consent-modal__promo-button {
      background: rgba(255,255,255,0.08);
      border: 1px solid var(--border-light);
      border-radius: 60px;
      padding: 0.75rem 1.25rem;
      color: var(--text-secondary);
      cursor: pointer;
      transition: var(--transition);
    }

    .consent-modal__promo-button:hover {
      background: rgba(59,130,246,0.2);
      border-color: var(--accent);
      color: white;
    }

    .consent-modal__checkboxes {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .consent-modal__checkbox-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
    }

    .consent-modal__checkbox {
      display: none;
    }

    .consent-modal__checkbox-custom {
      width: 20px;
      height: 20px;
      border: 2px solid var(--border-light);
      border-radius: 6px;
      background: rgba(255,255,255,0.05);
      transition: var(--transition);
      position: relative;
    }

    .consent-modal__checkbox:checked + .consent-modal__checkbox-custom {
      background: var(--accent);
      border-color: var(--accent);
    }

    .consent-modal__checkbox:checked + .consent-modal__checkbox-custom::after {
      content: '✓';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 12px;
    }

    .consent-modal__checkbox-text {
      color: var(--text-secondary);
      font-size: 0.9rem;
    }

    .consent-modal__link {
      background: none;
      border: none;
      color: var(--accent);
      cursor: pointer;
      font-size: 0.9rem;
      text-decoration: underline;
      transition: var(--transition);
    }

    .consent-modal__link:hover {
      color: var(--accent-hover);
    }

    .consent-modal__actions {
      display: flex;
      gap: 1rem;
    }

    .consent-modal__btn {
      flex: 1;
      padding: 0.9rem;
      border-radius: 60px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }

    .consent-modal__btn--cancel {
      background: rgba(255,255,255,0.08);
      color: var(--text-secondary);
    }

    .consent-modal__btn--cancel:hover {
      background: rgba(255,255,255,0.15);
      color: white;
    }

    .consent-modal__btn--confirm {
      background: var(--accent);
      color: white;
    }

    .consent-modal__btn--confirm:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
    }

    .consent-modal__btn--disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .consent-modal__btn--disabled:hover {
      transform: none;
      background: var(--accent);
    }

    @media (max-width: 550px) {
      .consent-modal__promo-row {
        flex-direction: column;
      }
      .consent-modal__actions {
        flex-direction: column;
      }
    }