 :root {
      --primary: #1A23A7;
      --secondary: #1592E6;
      --accent: #0EA5E9;
      --light: #f7fbff;
      --dark: #0f172a;
      --muted: #64748b;
      --glow: rgba(21,146,230,0.4);
    }
    * { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
    h1, h2, h3, .font-display { font-family: 'Inter', sans-serif; }

    .gradient-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
    .gradient-text { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

    /* ===== HERO ===== */
    .hero-section {
      position: relative;
      min-height: 85vh;
      overflow: hidden;
    }
    .hero-bg-image {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 40%, rgba(255,255,255,0.94) 100%);
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(21,146,230,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(21,146,230,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 0%, transparent 80%);
      animation: meshFloat 25s linear infinite;
    }
    @keyframes meshFloat {
      0% { transform: translateY(0) translateX(0); }
      100% { transform: translateY(-60px) translateX(-60px); }
    }

    .particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      animation: particleFloat linear infinite;
    }
    @keyframes particleFloat {
      0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
      10% { opacity: 0.6; }
      90% { opacity: 0.6; }
      100% { transform: translateY(-100vh) translateX(50px) scale(0.5); opacity: 0; }
    }

    .glow-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      animation: orbPulse 8s ease-in-out infinite;
    }
    @keyframes orbPulse {
      0%, 100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.15); }
    }

    .scanline {
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(21,146,230,0.005) 2px, rgba(21,146,230,0.005) 4px);
      pointer-events: none;
    }

    .nav-glass {
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.06);
      transition: all 0.4s ease;
    }
    .nav-glass.scrolled {
      background: rgba(255,255,255,0.97);
      border-bottom-color: rgba(0,0,0,0.08);
      box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    }
    .nav-link { position: relative; color: #475569; transition: color 0.3s; font-weight: 500; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 50%; transform: translateX(-50%);
      width: 0; height: 2px;
      background: var(--secondary);
      border-radius: 1px;
      transition: width 0.3s ease;
    }
    .nav-link:hover { color: var(--primary); }
    .nav-link:hover::after { width: 100%; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 24px;
      border-radius: 999px;
      background: rgba(21,146,230,0.08);
      border: 1px solid rgba(21,146,230,0.2);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      backdrop-filter: blur(10px);
      animation: badgePulse 3s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%, 100% { border-color: rgba(21,146,230,0.2); box-shadow: 0 0 0 0 rgba(21,146,230,0); }
      50% { border-color: rgba(21,146,230,0.4); box-shadow: 0 0 20px rgba(21,146,230,0.08); }
    }

    .btn-glow {
      position: relative;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 16px 36px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.3s ease;
      overflow: hidden;
      z-index: 1;
    }
    .btn-glow::before {
      content: '';
      position: absolute;
      inset: -2px;
      background: linear-gradient(135deg, var(--secondary), var(--primary), var(--secondary));
      border-radius: 16px;
      z-index: -2;
      animation: borderGlow 3s linear infinite;
      background-size: 200% 200%;
    }
    @keyframes borderGlow {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .btn-glow::after {
      content: '';
      position: absolute;
      inset: 2px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 12px;
      z-index: -1;
    }
    .btn-glow:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 40px rgba(21,146,230,0.4);
    }

    .btn-outline-hero {
      padding: 16px 36px;
      border-radius: 14px;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-weight: 600;
      font-size: 15px;
      background: #fff;
      transition: all 0.3s ease;
    }
    .btn-outline-hero:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(26,35,167,0.2);
    }

    .trust-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 8px;
      background: #fff;
      border: 1px solid #e5e7eb;
      color: #475569;
      font-size: 12px;
      font-weight: 500;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    .trust-pill:hover {
      border-color: rgba(21,146,230,0.3);
      color: var(--primary);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(21,146,230,0.1);
    }

    /* ===== STATS ===== */
    .stats-strip {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .stat-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0;
    }
    @media (max-width: 1023px) {
      .stat-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 639px) {
      .stat-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .stat-item {
      text-align: center;
      padding: 6px 8px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0; top: 50%; transform: translateY(-50%);
      height: 32px; width: 1px;
      background: rgba(255,255,255,0.2);
    }
    @media (max-width: 1023px) {
      .stat-item:nth-child(3)::after { display: none; }
    }
    @media (max-width: 639px) {
      .stat-item:nth-child(2)::after,
      .stat-item:nth-child(4)::after { display: none; }
      .stat-item:nth-child(3)::after { display: block; }
    }
    .stat-number-row {
      display: flex;
      align-items: baseline;
      justify-content: center;
      height: 38px;
    }
    .stat-number { font-size: 1.85rem; font-weight: 800; color: #fff; line-height: 1; }
    .stat-label {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.8);
      margin-top: 3px;
      font-weight: 500;
      line-height: 1.3;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    /* ===== MODERN SERVICES ===== */
    .services-section {
      background: linear-gradient(180deg, #f8faff 0%, #ffffff 50%, #f8faff 100%);
      position: relative;
      overflow: hidden;
    }
    .services-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(21,146,230,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26,35,167,0.03) 0%, transparent 50%);
      pointer-events: none;
    }
    .services-section::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(21,146,230,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(21,146,230,0.02) 1px, transparent 1px);
      background-size: 80px 80px;
      mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 0%, transparent 80%);
      pointer-events: none;
    }

    .service-feature-card {
      background: rgba(255,255,255,0.9);
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      padding: 28px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
    }
    .service-feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }
    .service-feature-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(21,146,230,0.03) 45%,
        rgba(21,146,230,0.06) 50%,
        rgba(21,146,230,0.03) 55%,
        transparent 60%
      );
      transform: translateX(-100%) rotate(0deg);
      transition: none;
      pointer-events: none;
    }
    .service-feature-card:hover {
      transform: translateY(-8px);
      box-shadow:
        0 25px 60px rgba(15,23,42,0.1),
        0 0 0 1px rgba(21,146,230,0.15),
        0 0 30px rgba(21,146,230,0.05);
      border-color: rgba(21,146,230,0.3);
    }
    .service-feature-card:hover::before { transform: scaleX(1); }
    .service-feature-card:hover::after {
      animation: holoSweep 0.8s ease forwards;
    }
    @keyframes holoSweep {
      0% { transform: translateX(-100%) rotate(0deg); }
      100% { transform: translateX(100%) rotate(0deg); }
    }

    .service-icon-wrapper {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      transition: all 0.4s ease;
      flex-shrink: 0;
    }
    .service-feature-card:hover .service-icon-wrapper {
      transform: scale(1.1) rotate(-5deg);
      box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 20px rgba(21,146,230,0.3);
    }

    .service-feature-card .service-checklist {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .service-feature-card .service-checklist li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      color: #4b5563;
      line-height: 1.5;
      min-height: 24px;
    }
    .service-feature-card .service-checklist li + li {
      margin-top: 8px;
    }
    .service-feature-card .service-check-icon {
      width: 18px;
      height: 18px;
      min-width: 18px;
      border-radius: 50%;
      background: #eff6ff;
      border: 1px solid #bfdbfe;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
      transition: all 0.3s ease;
    }
    .service-feature-card:hover .service-check-icon {
      background: linear-gradient(135deg, #dbeafe, #eff6ff);
      border-color: rgba(21,146,230,0.4);
      box-shadow: 0 0 8px rgba(21,146,230,0.15);
    }
    .service-feature-card .service-check-icon i {
      font-size: 8px;
      color: #2563eb;
    }
    .service-feature-card .service-checklist li span:last-child {
      flex: 1;
    }

    /* ===== CARDS ===== */
    .card-glass {
      background: rgba(255,255,255,0.95);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 4px 24px rgba(15,23,42,0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .card-glass::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .card-glass:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(15,23,42,0.12), 0 0 20px rgba(21,146,230,0.06);
      border-color: rgba(21,146,230,0.2);
    }
    .card-glass:hover::before { opacity: 1; }

    .pill-icon {
      width: 52px; height: 52px;
      border-radius: 16px;
      background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
      border: 1px solid #dbeafe;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.4s ease;
      flex-shrink: 0;
      font-size: 18px;
    }
    .card-glass:hover .pill-icon {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      color: #fff;
      transform: scale(1.08) rotate(-5deg);
      box-shadow: 0 8px 25px rgba(26,35,167,0.25);
    }

    .icon-circle {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
      border: 1px solid #dbeafe;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      transition: all 0.3s ease;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
      border: 1px solid #dbeafe;
      font-weight: 700;
      font-size: 12px;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .badge-soft {
      background: rgba(255,255,255,0.85);
      border: 1px solid #e2e8f0;
      color: #0f172a;
      border-radius: 999px;
      padding: 6px 12px;
      font-weight: 600;
      font-size: 11px;
    }

    .section-light {
      background: linear-gradient(180deg, #f8faff 0%, #f1f5fd 100%);
      position: relative;
      overflow: hidden;
    }
    .section-light::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 10% 50%, rgba(21,146,230,0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(26,35,167,0.04) 0%, transparent 40%);
      pointer-events: none;
    }

    /* ===== SOFTWARE CAROUSEL ===== */
    .software-section {
      padding: 28px 0;
      background: #f9fafb;
      overflow: hidden;
    }
    .software-carousel-wrapper { position: relative; overflow: hidden; }
    .software-fade { position: absolute; top: 0; bottom: 0; width: 120px; z-index: 10; pointer-events: none; }
    .software-fade-left { left: 0; background: linear-gradient(to right, #f9fafb, transparent); }
    .software-fade-right { right: 0; background: linear-gradient(to left, #f9fafb, transparent); }
    .software-scroll-container { display: flex; width: max-content; animation: softwareScroll 45s linear infinite; }
    .software-scroll-container:hover { animation-play-state: paused; }
    @keyframes softwareScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .software-strip { display: flex; gap: 40px; padding-right: 40px; }
    .software-card {
      background: #fff;
      padding: 14px 28px;
      border-radius: 14px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      border: 1px solid #e5e7eb;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 140px;
      height: 70px;
      transition: all 0.3s ease;
      flex-shrink: 0;
    }
    .software-card:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(15,23,42,0.12);
      border-color: #bfdbfe;
    }
    .software-logo { max-height: 38px; max-width: 120px; object-fit: contain; filter: grayscale(20%); }

    /* ===== SECTORS ===== */
    .sectors-strip {
      background: linear-gradient(90deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
      border-top: 1px solid #e5e7eb;
      border-bottom: 1px solid #e5e7eb;
    }
    .sector-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .sector-tag:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(21,146,230,0.15);
      border-color: var(--secondary);
      color: var(--primary);
    }
    .sector-tag i { color: var(--secondary); font-size: 14px; }

    /* ===== QUALITY SECTION WITH BG ===== */
    .quality-section {
      position: relative;
      overflow: hidden;
    }
    .quality-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1554469384-e58fac16e23a?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    }
    .quality-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,255,0.93) 50%, rgba(255,255,255,0.95) 100%);
    }
    .quality-section .quality-mesh {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(26,35,167,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26,35,167,0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
      z-index: 1;
    }
    .quality-card {
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.8);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 4px 30px rgba(15,23,42,0.08);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }
    .quality-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .quality-card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      border: 1px solid transparent;
      background: linear-gradient(135deg, rgba(21,146,230,0.1), rgba(26,35,167,0.05), rgba(21,146,230,0.1)) border-box;
      mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      -webkit-mask-composite: xor;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .quality-card:hover {
      transform: translateY(-6px);
      box-shadow:
        0 20px 50px rgba(15,23,42,0.15),
        0 0 40px rgba(21,146,230,0.08);
      border-color: rgba(21,146,230,0.3);
    }
    .quality-card:hover::before { opacity: 1; }
    .quality-card:hover::after { opacity: 1; }
    .quality-card:hover .icon-circle {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: transparent;
      color: #fff;
      box-shadow: 0 8px 25px rgba(26,35,167,0.25);
      transform: scale(1.08);
    }

    /* ===== ONBOARDING ===== */
    .onboard-wrap {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border: 1px solid #e5e7eb;
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(15,23,42,0.10);
    }
    .onboard-step {
      position: relative;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 16px;
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .onboard-step::before {
      content: '';
      position: absolute;
      left: 0; right: 0; top: 0;
      height: 3px;
      border-radius: 16px 16px 0 0;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .onboard-step:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(15,23,42,0.10), 0 0 20px rgba(21,146,230,0.06);
      border-color: rgba(21,146,230,0.3);
    }
    .onboard-step:hover::before { opacity: 1; }
    .onboard-num {
      width: 36px; height: 36px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 8px 20px rgba(26,35,167,0.25);
      flex-shrink: 0;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section {
      background: linear-gradient(180deg, #f8faff 0%, #f1f5fd 100%);
      overflow: hidden;
      position: relative;
    }
    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 80%, rgba(21,146,230,0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(26,35,167,0.03) 0%, transparent 40%);
      pointer-events: none;
    }

    .testimonial-card-new {
      min-width: 380px;
      max-width: 380px;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
      flex-shrink: 0;
    }
    .testimonial-card-new::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .testimonial-card-new:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(15,23,42,0.12), 0 0 25px rgba(21,146,230,0.06);
      border-color: rgba(21,146,230,0.2);
    }
    .testimonial-card-new:hover::before { opacity: 1; }

    .testimonial-quote-icon {
      font-size: 48px;
      font-family: Georgia, serif;
      line-height: 1;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0.15;
      position: absolute;
      top: 20px;
      right: 28px;
    }

    /* Auto-scroll for testimonials */
    @keyframes testimonialAutoScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .testimonial-auto-scroll {
      display: flex;
      gap: 24px;
      width: max-content;
      animation: testimonialAutoScroll 60s linear infinite;
      padding: 10px 0 20px 0;
    }
    .testimonial-auto-scroll:hover {
      animation-play-state: paused;
    }
    .testimonial-scroll-wrapper {
      overflow: hidden;
      position: relative;
    }
    .testimonial-fade-left {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 80px;
      background: linear-gradient(to right, #f8faff, transparent);
      z-index: 10;
      pointer-events: none;
    }
    .testimonial-fade-right {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      width: 80px;
      background: linear-gradient(to left, #f1f5fd, transparent);
      z-index: 10;
      pointer-events: none;
    }

    .fade-in-up {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .fade-in-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animated-underline { position: relative; display: inline-block; }
    .animated-underline::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--secondary), var(--accent));
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      animation: underlineGrow 1.2s ease 0.8s forwards;
    }
    @keyframes underlineGrow { to { transform: scaleX(1); } }

    .why-list-card {
      background: rgba(255,255,255,0.7);
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }

    .footer-section {
      background: #f8fafc;
      border-top: 1px solid #e5e7eb;
      position: relative;
      overflow: hidden;
    }
    .footer-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 90%, rgba(21,146,230,0.03) 0%, transparent 40%);
      pointer-events: none;
    }

    .counter { display: inline-block; }

    /* ===== FUTURISTIC EFFECTS ===== */
    .why-list-card:hover {
      border-color: rgba(21,146,230,0.3);
      box-shadow: 0 0 20px rgba(21,146,230,0.08), 0 8px 30px rgba(15,23,42,0.08);
    }

    .stats-strip::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
      animation: dataLine 4s linear infinite;
    }
    @keyframes dataLine {
      0% { left: -50%; }
      100% { left: 150%; }
    }

    .cta-section-bg {
      position: relative;
      overflow: hidden;
    }
    .cta-section-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-section-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    ::-webkit-scrollbar { width: 8px; }
    ::-webkit-scrollbar-track { background: #f1f5f9; }
    ::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 4px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

    @media (max-width: 640px) {
      .testimonial-card-new {
        min-width: 310px;
        max-width: 310px;
      }
    }