    :root {
      --color-primary: #6A35FF;       
      --color-primary-dark: #4800E0;  
      --color-accent: #CCFF00;        
      --color-accent-hover: #B2E600;            
      
      --bg-hero: radial-gradient(circle at 50% 0%, #2a1b5e 0%, #120a2e 40%, #05030f 100%);
      --bg-dark: #120A2E;             
      --bg-darker: #080516;           
      --bg-body: #ffffff;
      --bg-light-grey: #F8F9FF;
      --glass-border: 1px solid rgba(255, 255, 255, 0.08);
      
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-pill: 50px;            
      --container-width: 1240px;
      
      --shadow-card: 0 10px 40px -10px rgba(18, 10, 46, 0.08);
      --shadow-hover: 0 25px 60px -12px rgba(106, 53, 255, 0.25);
      --shadow-glow: 0 0 30px rgba(204, 255, 0, 0.4);
      --shadow-text: 0 0 40px rgba(106, 53, 255, 0.5);
      
      --ease-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
      
      --space-section-desktop: 100px;
      --space-section-mobile: 60px;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { 
        scroll-behavior: smooth; 
        background-color: #080516; 
    }
    
    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff; 
      color: var(--text-dark);
      line-height: 1.7; 
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.no-scroll { overflow: hidden; }

    a { text-decoration: none; color: inherit; transition: 0.3s var(--ease-smooth); }
    ul { list-style: none; }
    img { max-width: 100%; height: auto; display: block; }

    .starfield {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        pointer-events: none;
        z-index: -1;
        background-image: 
            radial-gradient(1px 1px at 10% 10%, rgba(255,255,255,0.3) 100%, transparent),
            radial-gradient(1px 1px at 20% 30%, rgba(255,255,255,0.2) 100%, transparent),
            radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.2) 100%, transparent),
            radial-gradient(1px 1px at 60% 40%, rgba(255,255,255,0.3) 100%, transparent),
            radial-gradient(1.5px 1.5px at 80% 80%, rgba(255,255,255,0.2) 100%, transparent);
        background-size: 100% 100%;
        opacity: 0.4;
    }

    h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
    
    .section-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; position: relative; z-index: 2; padding: 0 15px; }
    .section-header h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 20px; color: var(--text-dark); position: relative; display: inline-block; }
    .section-header p { font-size: 1.15rem; color: #555; max-width: 650px; margin: 0 auto; opacity: 0.9; }
    
    .text-gradient {
      background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 20px rgba(204,255,0,0.25));
    }
    
    .text-gradient-dark {
      background: linear-gradient(135deg, var(--color-primary) 0%, #8E2DE2 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .highlight {
      position: relative;
      z-index: 1;
      display: inline-block;
      font-size: 1.10em; 
    }
    .highlight::after {
      content: '';
      position: absolute;
      bottom: 6px; left: -4px; right: -4px; height: 12px;
      background: var(--color-accent);
      z-index: -1;
      opacity: 0.6;
      transform: skewX(-15deg);
      transition: 0.4s var(--ease-smooth);
    }
    .section-header:hover .highlight::after { opacity: 0.9; height: 18px; transform: skewX(-15deg) scaleX(1.05); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 36px;
      font-weight: 700;
      font-size: 1rem;
      border-radius: var(--radius-pill);
      transition: all 0.3s var(--ease-smooth);
      cursor: pointer;
      gap: 12px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::after {
      content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
      background: rgba(255,255,255,0.4); border-radius: 50%;
      transform: translate(-50%, -50%); transition: width 0.6s, height 0.6s;
      z-index: -1; pointer-events: none;
    }
    .btn:active::after { width: 300px; height: 300px; opacity: 0; }

    .btn-primary {
      background-color: var(--color-accent);
      color: var(--color-primary-dark);
      border: 2px solid var(--color-accent);
      box-shadow: 0 8px 30px rgba(204, 255, 0, 0.25);
    }
    .btn-primary:hover {
      background-color: var(--color-accent-hover);
      border-color: var(--color-accent-hover);
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 15px 40px rgba(204, 255, 0, 0.4);
      animation: pulse-border 1.5s infinite;
    }

    .btn-secondary {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      color: #fff;
      backdrop-filter: blur(10px);
    }
    .btn-secondary:hover {
      background: #fff;
      color: var(--color-primary);
      border-color: #fff;
      transform: translateY(-4px);
    }

    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 20px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.4s var(--ease-smooth);
      border-bottom: 1px solid transparent;
    }
    
    header.scrolled {
      background: rgba(18, 10, 46, 0.7);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 15px 5%;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    header::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
      background-size: 200% 100%;
      opacity: 0; transition: 0.3s;
      animation: gradient-slide 3s linear infinite;
    }
    header.scrolled::after { opacity: 0.6; }

    .logo { display: flex; align-items: center; gap: 14px; max-width: 70%; text-decoration: none; }
    .logo img { width: 60px; height: auto; transition: 0.3s; filter: drop-shadow(0 0 10px rgba(106, 53, 255, 0.5)); }
    
    .logo-text { display: flex; flex-direction: column; text-align: left; }
    .company-name { 
       font-size: 1.5rem; color: #fff; font-weight: 900; 
       letter-spacing: -0.5px; line-height: 1; margin-bottom: 4px; 
       text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }
    .company-slogan { 
       font-size: 0.7rem; color: var(--color-accent); 
       text-transform: uppercase; letter-spacing: 0.8px; font-weight: 700; 
    }

    nav { display: flex; align-items: center; gap: 35px; }
    nav a { color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.95rem; position: relative; padding: 5px 0; }
    
    nav a:not(.nav-btn)::before {
      content: ''; position: absolute; bottom: 0; right: 0; width: 0; height: 2px;
      background: var(--color-accent); transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    nav a:not(.nav-btn):hover::before { width: 100%; left: 0; right: auto; }
    nav a:not(.nav-btn):hover { color: #fff; text-shadow: 0 0 20px rgba(255,255,255,0.4); }

    .nav-btn {
      padding: 12px 26px;
      background: rgba(106, 53, 255, 0.2);
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: var(--radius-pill);
      color: #fff;
      font-weight: 600;
      transition: 0.3s;
    }
    .nav-btn:hover { background: var(--color-primary); border-color: var(--color-primary); box-shadow: 0 0 20px rgba(106, 53, 255, 0.4); }

    .menu-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; padding: 10px; z-index: 1001; }
    .menu-toggle span { width: 28px; height: 2px; background: #fff; transition: 0.3s; border-radius: 2px; }

    .hero {
      background: var(--bg-hero);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 160px 5% 100px;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    @keyframes orbit-float {
      0% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(30px, -30px) rotate(120deg); }
      66% { transform: translate(-20px, 20px) rotate(240deg); }
      100% { transform: translate(0, 0) rotate(360deg); }
    }
    
    .hero-orb {
      position: absolute;
      width: 450px; height: 450px;
      background: conic-gradient(from 180deg at 50% 50%, var(--color-primary), #4800E0, transparent, var(--color-primary));
      top: 15%; right: 10%;
      border-radius: 50%;
      z-index: 0;
      opacity: 0.5;
      filter: blur(90px);
      will-change: transform;
    }
    
    .hero::before {
      content: ''; position: absolute; width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(106, 53, 255, 0.4) 0%, transparent 70%);
      top: -150px; left: -150px; filter: blur(100px); z-index: 0;
    }

    .hero-content { position: relative; z-index: 2; max-width: 950px; margin: 0 auto; transform-style: preserve-3d; }

    .hero h1 {
      font-size: clamp(2.5rem, 5vw, 4rem); 
      color: #fff;
      margin-bottom: 30px;
      line-height: 1.1;
      text-shadow: 0 0 60px rgba(106, 53, 255, 0.6); 
    }

    .hero p {
      font-size: clamp(1rem, 1.5vw, 1.15rem); 
      color: rgba(255,255,255,0.85);
      margin-bottom: 50px;
      max-width: 750px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
      line-height: 1.6;
    }

    .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

    .marquee { 
       background: #fff;
       padding: 35px 0;
       overflow: hidden;
       white-space: nowrap;
       border-bottom: 1px solid #e2e8f0;
       position: relative;
       z-index: 10;
    }
    .marquee-track { 
       display: flex; gap: 80px; width: max-content;
       animation: scroll 40s linear infinite; 
       will-change: transform;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    
    .marquee-item { 
       display: flex; align-items: center; gap: 14px;
       color: var(--text-grey); font-weight: 700; font-size: 1.2rem;
       text-transform: uppercase; opacity: 0.7; 
       transition: 0.3s var(--ease-smooth);
       cursor: default;
    }
    .marquee-item i { color: var(--color-primary); font-size: 1.4rem; transition: 0.3s; }
    
    .marquee-item:hover { opacity: 1; transform: scale(1.1); text-shadow: 0 0 15px rgba(106, 53, 255, 0.2); }
    .marquee-item:hover i { color: var(--color-accent-hover); transform: rotate(10deg); }

    .stats-section { padding: 80px 5% var(--space-section-desktop); background: #fff; margin-top: -1px; position: relative; z-index: 5; }
    .stats-grid {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 30px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .stat-card {
      flex: 1; min-width: 220px; text-align: center;
      padding: 40px 30px; border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-card);
      border: 1px solid #f0f0f0;
      transition: 0.4s var(--ease-smooth);
      position: relative; overflow: hidden;
    }
    .stat-card:hover { 
      transform: translateY(-8px) scale(1.02); 
      box-shadow: var(--shadow-hover); 
      border-color: rgba(106, 53, 255, 0.3);
    }
    
    .stat-card::after {
      content: ''; position: absolute; inset: 0; 
      border-radius: var(--radius-lg);
      padding: 2px;
      background: linear-gradient(135deg, transparent, var(--color-accent), transparent);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0; transition: 0.4s;
    }
    .stat-card:hover::after { opacity: 1; }

    .stat-number { font-size: 3.5rem; font-weight: 900; color: var(--color-primary); display: block; margin-bottom: 5px; line-height: 1; }
    .stat-label { color: var(--text-dark); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px; text-transform: uppercase; }
    .stat-bg-icon {
      position: absolute; bottom: -15px; right: -15px; font-size: 5rem;
      color: var(--text-dark); opacity: 0.03; transform: rotate(-15deg);
      pointer-events: none; transition: 0.4s;
    }
    .stat-card:hover .stat-bg-icon { transform: rotate(0deg) scale(1.1); opacity: 0.06; }

    .market-intro-section {
      background-color: var(--bg-dark);
      padding: var(--space-section-desktop) 5%;
      color: #fff;
      position: relative;
    }
    
    .intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 50px;
      max-width: var(--container-width);
      margin: 0 auto;
      position: relative;
    }
    
    .intro-grid::before {
      content: ''; position: absolute; top: 50px; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
      opacity: 0.5; display: none;
    }
    @media(min-width: 992px) { 
      .intro-grid::before { display: block; } 
      .intro-step:not(:last-child)::after {
         content: ''; position: absolute; top: 50%; right: -25px; width: 50px; height: 1px;
         background: var(--color-primary); opacity: 0.3;
      }
    }

    .intro-step {
      background: rgba(255,255,255,0.02);
      border: var(--glass-border);
      backdrop-filter: blur(15px);
      padding: 50px 35px;
      border-radius: var(--radius-lg);
      text-align: center;
      position: relative;
      transition: all 0.4s var(--ease-smooth);
      overflow: hidden;
    }
    .intro-step:hover {
      background: rgba(255,255,255,0.05);
      transform: translateY(-12px);
      border-color: rgba(204, 255, 0, 0.3);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }
    
    .step-number {
      display: inline-flex; justify-content: center; align-items: center;
      width: 60px; height: 60px;
      background: var(--color-primary);
      color: #fff; border-radius: 50%;
      font-weight: 800; font-size: 1.4rem;
      margin-bottom: 30px;
      position: relative;
      z-index: 2;
      box-shadow: 0 0 30px rgba(106, 53, 255, 0.5); 
      transition: 0.4s;
    }
    .intro-step:hover .step-number {
        background: var(--color-accent); color: var(--color-primary-dark);
        transform: scale(1.1); box-shadow: 0 0 40px rgba(204, 255, 0, 0.6);
    }

    .intro-step h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
    .intro-step p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; }

    .features-section { padding: var(--space-section-desktop) 5%; background: #fff; }
    .features-container {
      max-width: var(--container-width); margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    
    .why-list { display: flex; flex-direction: column; gap: 25px; }
    .why-item {
      display: flex; align-items: center; gap: 25px;
      padding: 25px; background: #fff; border-radius: var(--radius-md);
      box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #eee;
      transition: 0.3s var(--ease-smooth);
    }
    .why-item:hover { 
      transform: translateX(10px) translateY(-5px); 
      box-shadow: 0 15px 35px rgba(106, 53, 255, 0.1); 
      border-color: var(--color-primary); 
    }
    
    .why-icon {
      width: 60px; height: 60px; 
      border-radius: 14px;
      background: rgba(106, 53, 255, 0.1); color: var(--color-primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; flex-shrink: 0;
      transition: 0.3s;
    }
    .why-item:hover .why-icon { background: var(--color-primary); color: #fff; transform: scale(1.1); }
    
    .why-text h4 { font-size: 1.15rem; margin-bottom: 5px; color: var(--text-dark); }
    .why-text span { font-size: 0.95rem; color: #666; }

    .features-image { position: relative; perspective: 1000px; }
    .features-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card); transition: 0.5s; }
    .features-image:hover img { transform: rotateY(2deg); }
    
    .features-badge {
      position: absolute; bottom: 40px; left: -40px;
      background: #fff; padding: 25px; border-radius: var(--radius-md);
      box-shadow: 0 15px 50px rgba(0,0,0,0.15), 0 0 30px rgba(255, 255, 255, 0.8);
      display: flex; align-items: center; gap: 18px;
      z-index: 5;
      position: relative;
      background-clip: padding-box;
      border: 2px solid transparent;
    }
    .features-badge::after {
      content: ''; position: absolute; inset: -2px; z-index: -1;
      border-radius: var(--radius-md);
      background: linear-gradient(45deg, var(--color-primary), var(--color-accent), var(--color-primary));
      background-size: 200% 200%;
    }
    
    .features-badge i { font-size: 2.2rem; color: #FCC419; }
    .features-badge div strong { display: block; font-size: 1.3rem; color: var(--text-dark); }

    .boost-section { padding: var(--space-section-desktop) 5%; background: var(--bg-light-grey); }
    .boost-container { max-width: var(--container-width); margin: 0 auto; }
    
    .boost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
    
    .boost-card {
      background: #fff; padding: 40px 30px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card);
      transition: all 0.4s var(--ease-smooth);
      position: relative; overflow: hidden;
      border: 1px solid transparent;
      display: flex; flex-direction: column; justify-content: space-between;
      transform-style: preserve-3d;
    }
    .boost-card:hover {
      transform: translateY(-10px) rotate(-2deg);
      box-shadow: var(--shadow-hover), 0 0 0 1px var(--color-accent);
      border-color: var(--color-primary);
    }
    
    .boost-card::before {
      content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
      background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
      opacity: 0; transition: 0.4s;
    }
    .boost-card:hover::before { opacity: 1; }
    
    .boost-icon {
      font-size: 2.5rem; 
      margin-bottom: 22px;
      color: var(--color-primary);
      transition: 0.3s;
    }
    .boost-card:hover .boost-icon { transform: scale(1.1) translateZ(20px); }
    
    .boost-card h3 { font-size: 1.35rem; margin-bottom: 12px; color: var(--text-dark); }
    .boost-card p { color: #666; margin-bottom: 30px; font-size: 0.95rem; line-height: 1.6; }
    
    .boost-link {
      font-weight: 700; color: var(--color-primary);
      display: inline-flex; align-items: center; gap: 10px; font-size: 0.95rem;
    }
    .boost-link i { transition: 0.3s; color: var(--color-accent-hover); }
    .boost-link:hover i { transform: translateX(6px); }

    .dominate-section {
      background-color: var(--bg-dark);
      position: relative;
      padding: var(--space-section-desktop) 5%;
      overflow: hidden;
      color: #fff;
    }
    
    @keyframes grid-pan {
      0% { background-position: 0 0; }
      100% { background-position: 50px 50px; }
    }
    
    .dominate-bg {
      position: absolute; inset: 0;
      background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
      opacity: 0.5;
      animation: grid-pan 15s linear infinite;
    }
    
    .dominate-container {
      max-width: var(--container-width); margin: 0 auto; position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }
    
    .dominate-text h2 {
       font-size: clamp(2.5rem, 4vw, 3.5rem); margin-bottom: 25px; line-height: 1.1;
       text-shadow: 0 0 50px rgba(106, 53, 255, 0.4);
    }
    .dominate-text h2::before {
      content: ''; position: absolute; top: 50%; left: 10%; width: 200px; height: 200px;
      background: var(--color-primary); filter: blur(120px); opacity: 0.5;
      transform: translateY(-50%); z-index: -1;
    }

   .dominate-text .btn {
      margin-top: 40px; 
    }
    
    .d-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
    .d-card {
      background: rgba(255,255,255,0.03); 
      border: 1px solid rgba(255,255,255,0.1);
      padding: 30px; border-radius: 24px; transition: 0.4s var(--ease-smooth);
      backdrop-filter: blur(8px);
    }
    .d-card:hover { 
      background: rgba(255,255,255,0.08); 
      border-color: var(--color-accent); 
      transform: translateY(-8px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    .d-card i { font-size: 2.2rem; color: var(--color-accent); margin-bottom: 18px; display: inline-block; }
    .d-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
    .d-card p { font-size: 0.95rem; color: #aaa; line-height: 1.6; margin: 0; }
    
    .d-card.wide { grid-column: span 2; display: flex; align-items: center; gap: 25px; }
    .d-card.wide i { font-size: 3rem; margin: 0; }

    .authority-section { padding: var(--space-section-desktop) 5%; background: radial-gradient(circle at top, #F8F9FF 0%, #fff 100%); }
    .auth-grid {
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
      gap: 40px;
      max-width: var(--container-width); margin: 0 auto;
    }
    .auth-card {
      background: #fff; padding: 45px 35px; border-radius: var(--radius-lg);
      border: 1px solid rgba(106, 53, 255, 0.05); 
      box-shadow: var(--shadow-card); transition: 0.4s var(--ease-smooth);
      position: relative; overflow: hidden;
    }
    .auth-card:hover { 
      transform: translateY(-12px); 
      box-shadow: var(--shadow-hover);
      border-color: rgba(106, 53, 255, 0.2);
    }
    .auth-card::before {
        content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
        background: linear-gradient(135deg, transparent, rgba(106, 53, 255, 0.3), transparent);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor; mask-composite: exclude;
    }

    .auth-icon {
      width: 70px; height: 70px; 
      border-radius: 20px;
      background: linear-gradient(135deg, var(--color-primary), #4800E0);
      color: #fff; display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem; margin-bottom: 30px;
      box-shadow: 0 10px 25px rgba(106, 53, 255, 0.3);
      transition: 0.4s;
    }
    .auth-card:hover .auth-icon { transform: rotateY(180deg); }

    .reviews-section { 
        padding: var(--space-section-desktop) 5%; 
        background: #fff; overflow: hidden; position: relative;
    }
    .reviews-section::before, .reviews-section::after {
        content: ''; position: absolute; top: 0; bottom: 0; width: 30px; 
        z-index: 2;
        pointer-events: none;
    }
    .reviews-section::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
    .reviews-section::after { right: 0; background: linear-gradient(to left, #fff, transparent); }

    .reviews-scroll {
      display: flex; gap: 30px; padding: 20px 0 50px;
      overflow-x: auto; scrollbar-width: none;
    }
    .reviews-scroll::-webkit-scrollbar { display: none; }
    
    .review-card {
      background: var(--bg-dark); color: #fff;
      padding: 35px; border-radius: 24px;
      position: relative; transition: all 0.5s var(--ease-smooth);
      border: 1px solid rgba(255,255,255,0.05);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      min-width: 360px; width: 360px; flex-shrink: 0;
      display: flex; flex-direction: column; justify-content: space-between;
    }
    .review-card:hover { 
       transform: scale(1.05); 
       border-color: var(--color-accent);
       box-shadow: 0 25px 70px rgba(106, 53, 255, 0.3);
       z-index: 10;
    }
    
    .review-quote-icon {
      position: absolute; top: 25px; right: 30px;
      font-size: 5rem; color: #fff; opacity: 0.02;
    }
    .stars { color: var(--color-accent); font-size: 1rem; margin-bottom: 20px; letter-spacing: 3px; }
    .review-text { font-size: 1.05rem; color: rgba(255,255,255,0.9); font-style: italic; line-height: 1.7; margin-bottom: 30px; }
    
    .review-author {
      display: flex; align-items: center; gap: 18px;
      padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1);
    }
    .author-avatar {
      width: 50px; height: 50px; border-radius: 50%;
      background: var(--color-primary); color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 1.2rem;
      box-shadow: 0 0 0 4px rgba(255,255,255,0.05);
      animation: pulse-border 2s infinite;
    }
    .author-info h4 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
    .author-info span { font-size: 0.85rem; color: var(--color-accent); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }

    .cta-section { padding: 40px 5% var(--space-section-desktop); background: #fff; position: relative; }
    .cta-box {
      background: linear-gradient(120deg, var(--color-primary), #3b00c9);
      border-radius: 40px; padding: 100px 50px; text-align: center; color: #fff;
      max-width: var(--container-width); margin: 0 auto;
      box-shadow: 0 30px 80px rgba(74, 0, 224, 0.4);
      position: relative; overflow: hidden;
    }
    
    .cta-box::before {
      content: ''; position: absolute; inset: -50%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
      animation: orbit-float 10s linear infinite;
    }
    
    .cta-content { position: relative; z-index: 2; }
    .cta-brands { display: flex; justify-content: center; gap: 50px; margin-bottom: 50px; opacity: 0.8; flex-wrap: wrap; filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2)); }
    .cta-brands img { height: 35px; filter: brightness(0) invert(1); }
    
    .cta-box h2 { 
       font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 25px;
       text-shadow: 0 5px 30px rgba(0,0,0,0.3);
    }
    .cta-box h3 { 
       font-size: clamp(1rem, 1.5vw, 1.25rem); font-weight: 400; opacity: 0.95;
       margin-bottom: 50px; max-width: 750px; margin-left: auto; margin-right: auto; line-height: 1.8;
    }
    
    .cta-box .btn-primary {
        background-color: var(--color-accent); color: var(--color-primary-dark); border-color: var(--color-accent);
        padding: 18px 45px; font-size: 1.1rem;
    }
    .cta-box .btn-primary:hover {
        background-color: #fff; color: var(--color-primary); border-color: #fff;
        transform: scale(1.05); 
    }

    footer { 
        background: var(--bg-darker); 
        color: #fff; 
        padding: 80px 5% calc(10px + env(safe-area-inset-bottom)); 
        border-top: 1px solid rgba(255,255,255,0.05); 
        font-size: 1.05rem;
        position: relative; 
    }
    
    footer::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 1px;
        background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
        opacity: 0.5;
    }

    .footer-container {
      max-width: var(--container-width); margin: 0 auto;
      display: grid; 
      grid-template-columns: 1.8fr 1fr 1fr 1.2fr; 
      gap: 60px;
      padding-bottom: 60px; 
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .footer-brand h2 { margin-bottom: 25px; letter-spacing: 1px; color: #fff; font-size: 1.8rem; }
    
    .footer-brand h2 {
       background: linear-gradient(135deg, var(--color-accent) 0%, #ffffff 80%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 20px rgba(204,255,0,0.1));
    }

    .footer-desc { color: #aaa; margin-bottom: 35px; line-height: 1.8; max-width: 380px; }
    
    .footer-social { display: flex; gap: 15px; }
    .footer-social a {
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,0.03); 
      border: 1px solid rgba(255,255,255,0.15); 
      color: #fff; transition: 0.3s;
    }
    .footer-social a:hover { 
      transform: translateY(-5px); 
      background: var(--color-primary); border-color: var(--color-primary); 
      color: #fff;
      box-shadow: 0 0 25px rgba(106, 53, 255, 0.6);
    }

    .footer-col h3 { 
        font-size: 1.3rem; 
        margin-bottom: 30px; 
        color: #fff;
        position: relative;
        display: inline-block;
    }
    .footer-col h3::after {
        content: ''; position: absolute; bottom: -8px; left: 0; width: 100%; height: 2px;
        background: var(--color-accent); border-radius: 2px; opacity: 0.8;
    }

    .footer-col ul li { margin-bottom: 18px; }
    .footer-col a { color: #aaa; transition: 0.3s; position: relative; }
    .footer-col a:hover { color: var(--color-accent); padding-left: 8px; text-shadow: 0 0 15px rgba(204, 255, 0, 0.4); }

    .footer-bottom { text-align: center; padding-top: 40px; color: #666; font-size: 0.95rem; letter-spacing: 0.5px; }

    .whatsapp-chat { position: fixed; bottom: 40px; right: 40px; z-index: 1000; }
    .whatsapp-chat img { width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    .whatsapp-chat img:hover { transform: scale(1.15) rotate(15deg); }

    @keyframes pulse-border { 0% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(204, 255, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(204, 255, 0, 0); } }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes gradient-slide { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }

   /* =========================================
       TABLET & MOBILE OPTIMIZATION
       ========================================= */

    /* TABLET LANDSCAPE & IPAD PRO (Max-width: 1080px) */
    /* This catches iPad Pro (1024px) and smaller laptops */
    @media (max-width: 1080px) {
      
      /* 1. Navigation: Switch to Hamburger Menu */
      .menu-toggle { 
          display: flex; 
          z-index: 1002; 
      }

      header.nav-active {
          backdrop-filter: none !important;
          -webkit-backdrop-filter: none !important;
          background: transparent !important;
      }

      nav {
         position: fixed; 
         top: 0; 
         left: 0; 
         width: 100%;
         height: 100dvh; 
         background: #120A2E; 
         flex-direction: column;
         justify-content: center; 
         align-items: center;
         transform: translateX(100%); 
         transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
         z-index: 1001; 
         padding-top: 60px;
         overflow-y: auto;
      }

      nav.active { transform: translateX(0); }
      nav a { font-size: 1.8rem; color: #fff; margin: 15px 0; font-weight: 700; }
      
      .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); background: var(--color-accent); }
      .menu-toggle.active span:nth-child(2) { opacity: 0; }
      .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: var(--color-accent); }

      /* 2. Layout & Spacing */
      :root {
        --space-section-desktop: 80px; /* Balanced spacing for tablets */
      }
      
      .hero { padding-top: 140px; }
      
      /* 3. Hero H1 Sizing - Increased for Tablet Readability */
      .hero h1 {
        font-size: 3.8rem; /* Larger than desktop calculation for impact */
        line-height: 1.15;
      }

      /* 4. Grids - Force 2 Columns for clean design */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
        gap: 20px;
      }

      .boost-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Grid */
      }
      
      .intro-grid, .auth-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .footer-container {
        grid-template-columns: 1fr 1fr; /* 2 Column footer */
        gap: 50px;
      }
      .footer-brand { grid-column: span 2; text-align: center; }
      .footer-desc { margin: 0 auto 30px; }
      .footer-social { justify-content: center; }

      /* 5. Features Section - Stack but keep aligned */
      .features-container { 
        grid-template-columns: 1fr; 
        gap: 60px; 
      }
      
      .features-image { 
        margin: 0 auto; 
        max-width: 80%; /* Don't let image get too huge */
      }
      
      .features-badge {
        width: auto;
        padding: 20px 40px;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        width: 90%;
      }
      
      .why-list { 
        max-width: 700px; /* Prevent text lines from being too long to read */
        margin: 0 auto;
      }

      .dominate-container {
        grid-template-columns: 1fr;
        gap: 50px;
      }
      
      .dominate-text { text-align: center; max-width: 800px; margin: 0 auto; }
      .dominate-text h2::before { left: 50%; transform: translate(-50%, -50%); }
    }

    /* TABLET PORTRAIT (Max-width: 768px) */
    @media (max-width: 768px) {
      
      .hero h1 {
        font-size: 3.2rem; /* Still large, but fitted for portrait width */
      }
      
      .stat-number { font-size: 3rem; }
      
      .intro-grid, .auth-grid {
        grid-template-columns: 1fr; /* Stack these on narrower tablets */
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }
      
      .boost-grid {
        gap: 20px;
      }

      .review-card {
        min-width: 340px; /* Slightly tighter for portrait scroll */
        width: 340px;
      }
      
      .cta-box h2 { font-size: 2.2rem; }
    }

    /* MOBILE (Max-width: 480px) */
    @media (max-width: 480px) {
      .logo img { width: 35px; height: auto; }
      .company-name { font-size: 1rem; }
      
      .company-slogan { 
          font-size: 0.42rem; 
          letter-spacing: 0;
          white-space: nowrap; 
          width: 100%;
          line-height: 1.2;
      }

      .hero { padding: 130px 5% 60px; min-height: auto; } 
      .hero h1 { font-size: 2rem; margin-bottom: 20px; } /* Reset for small mobile */
      .hero p { font-size: 1rem; line-height: 1.5; margin-bottom: 35px; }
      
      .starfield { opacity: 0.2; } 
      .hero-orb { width: 300px; height: 300px; top: 10%; right: -20%; opacity: 0.4; animation: none; } 
      
      .hero-buttons { flex-direction: column; width: 100%; }
      .btn { width: 100%; }

      .marquee-track { gap: 40px; }

      .stats-grid { grid-template-columns: 1fr; gap: 15px; } /* Stack stats on mobile */
      .stat-card { padding: 25px; }
      .stat-number { font-size: 2.8rem; }
      
      .boost-grid { grid-template-columns: 1fr; } /* Stack boost on mobile */
      
      .features-image img { height: 280px; object-fit: cover; }
      .features-image { max-width: 100%; }

      .features-badge { width: 95%; bottom: 15px; padding: 15px; gap: 12px; }
      .features-badge i { font-size: 1.8rem; }
      .features-badge div strong { font-size: 1.1rem; }
      
      /* Fix layout for Wide Cards on Mobile */
      .d-card-grid { grid-template-columns: 1fr; }
      .d-card.wide { grid-column: span 1; flex-direction: column; text-align: center; }

      .review-card { 
        min-width: 85vw; 
        width: 85vw; 
        padding: 25px 20px; 
      }
      .review-text { font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px; }
      .review-quote-icon { font-size: 3rem; top: 15px; right: 15px; }
      .stars { margin-bottom: 10px; font-size: 0.8rem; }
      .author-avatar { width: 40px; height: 40px; font-size: 1rem; }
      
      .cta-box { padding: 60px 20px; border-radius: 24px; }
      
      .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
      .footer-brand { grid-column: span 1; }
      .footer-col { text-align: center; }
      .footer-col h3::after { left: 50%; transform: translateX(-50%); width: 50px; }
      
      .whatsapp-chat { bottom: 20px; right: 20px; }
      .whatsapp-chat img { width: 55px; height: 55px; }
    }