    .nav__logo.ai-brand { display:inline-flex; align-items:center; gap:10px; text-decoration:none; line-height:1; }
    .ai-brand-mark { display:inline-flex; align-items:center; justify-content:center; width:38px; height:32px; flex-shrink:0; }
    .ai-brand-mark svg { width:100%; height:100%; display:block; }
    .ai-brand-text { font-family:var(--font-heading); font-size:22px; font-weight:800; color:#fff; letter-spacing:-0.5px; line-height:1; }
    @media (max-width:768px){ .ai-brand-mark{ width:32px; height:28px; } .ai-brand-text{ font-size:18px; } }


    :root {
      --color-primary: #0D0F1A;
      --color-on-primary: #FFFFFF;
      --color-secondary: #161927;
      --color-accent: #7C3AED;
      --color-background: #FFFFFF;
      --color-foreground: #0D0F1A;
      --color-muted: #F4F4F6;
      --color-border: #E0E0E6;
      --color-destructive: #7C3AED;
      --color-ring: #7C3AED;
      --color-gold: #7C3AED;
      --font-heading: 'Outfit', system-ui, sans-serif;
      --font-body: 'Work Sans', system-ui, sans-serif;
      --transition-fast: 150ms ease;
      --transition-base: 250ms ease;
      --transition-slow: 350ms ease;
      --border-radius: 12px;
      --border-radius-lg: 20px;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

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

    body {
      font-family: var(--font-body);
      background-color: var(--color-background);
      color: var(--color-foreground);
      line-height: 1.6;
      font-size: 16px;
      overflow-x: hidden;
    }

    body, main, section {
      background-color: var(--color-background);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    ul {
      list-style: none;
    }

    button, a {
      cursor: pointer;
    }

    /* ============ UTILITY ============ */
    .container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 16px;
    }

    .section {
      padding: 96px 0;
    }

    .section--sm {
      padding: 64px 0;
    }

    .section__label {
      display: inline-block;
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-accent);
      background: rgba(124, 58, 237, 0.08);
      border: 1px solid rgba(124, 58, 237, 0.3);
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .section__title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      color: var(--color-foreground);
      margin-bottom: 16px;
    }

    .section__title span {
      color: var(--color-accent);
    }

    .section__subtitle {
      font-size: 18px;
      color: rgba(13, 15, 26, 0.65);
      max-width: 600px;
      line-height: 1.7;
    }

    .features .section__title,
    .features .section__subtitle,
    .pricing .section__title,
    .pricing .section__subtitle,
    .faq .section__title,
    .faq .section__subtitle {
      color: #FFFFFF;
    }

    .features .section__title span,
    .pricing .section__title span,
    .faq .section__title span {
      color: #A78BFA;
    }

    .features .section__subtitle,
    .pricing .section__subtitle,
    .faq .section__subtitle {
      color: rgba(255, 255, 255, 0.65);
    }

    .text-center {
      text-align: center;
    }

    .text-center .section__subtitle {
      margin: 0 auto;
    }

    /* ===== Buttons (taxi behaviour: shimmer + arrow + springy lift, OTT red) ===== */
    .btn {
      position: relative;
      overflow: hidden;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 16px;
      line-height: 1.2;
      padding: 15px 32px;
      border-radius: 12px;
      border: 2px solid transparent;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      vertical-align: middle;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                  box-shadow 0.25s ease, background 0.25s ease,
                  border-color 0.25s ease, color 0.25s ease, filter 0.25s ease;
    }

    /* shimmer sweep */
    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
      transform: translateX(-120%);
      transition: transform 0.7s ease;
      z-index: -1;
    }
    .btn:hover::before { transform: translateX(120%); }

    /* trailing arrow */
    .btn::after {
      content: '\2192';
      font-weight: 900;
      font-size: 1.05em;
      line-height: 1;
      display: inline-flex;
      align-items: center;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
    }
    .btn:hover::after { transform: translateX(5px); }
    .btn.no-arrow { gap: 8px; }
    .btn.no-arrow::after { content: none; display: none; }

    .btn:active { transform: translateY(-1px) scale(0.985); transition-duration: 0.1s; }
    .btn:focus-visible {
      outline: 3px solid rgba(124, 58, 237, 0.55);
      outline-offset: 3px;
    }

    .btn--primary {
      background: linear-gradient(135deg, #9D5CFF 0%, #7C3AED 55%, #5B21B6 100%);
      color: #fff;
      box-shadow: 0 10px 28px rgba(124, 58, 237, 0.38);
    }
    .btn--primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 38px rgba(124, 58, 237, 0.52);
      filter: brightness(1.05);
    }

    .btn--outline {
      background: rgba(255, 255, 255, 0.04);
      color: #FFFFFF;
      border-color: rgba(255, 255, 255, 0.28);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }
    .btn--outline::before {
      background: linear-gradient(120deg, transparent 20%, rgba(124,58,237,0.25) 50%, transparent 80%);
    }
    .btn--outline::after {
      width: 26px;
      height: 26px;
      justify-content: center;
      background: rgba(255,255,255,0.12);
      border-radius: 6px;
      font-size: 0.85em;
    }
    .btn--outline:hover {
      transform: translateY(-3px);
      border-color: var(--color-accent);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    }
    .btn--outline:hover::after { background: var(--color-accent); color: #fff; }

    /* ghost variant for dark CTA bands */
    .btn--ghost {
      background: transparent;
      color: rgba(255, 255, 255, 0.92);
      border-color: rgba(255, 255, 255, 0.35);
    }
    .btn--ghost::after {
      width: 26px;
      height: 26px;
      justify-content: center;
      background: rgba(255,255,255,0.12);
      border-radius: 6px;
      font-size: 0.85em;
    }
    .btn--ghost:hover {
      transform: translateY(-3px);
      background: rgba(255,255,255,0.08);
      border-color: var(--color-accent);
      box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    }
    .btn--ghost:hover::after { background: var(--color-accent); color: #fff; }

    .btn--lg {
      font-size: 18px;
      padding: 18px 42px;
    }

    /* centered per-section CTA (taxi .section-cta) */
    .section-cta {
      display: flex;
      justify-content: center;
      width: 100%;
      margin-top: 48px;
    }
    @media (max-width: 600px) {
      .section-cta { margin-top: 32px; }
      .section-cta .btn { width: 100%; max-width: 380px; justify-content: center; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .animate-fadeInUp {
      animation: fadeInUp 0.7s ease forwards;
    }

    .animate-float {
      animation: float 4s ease-in-out infinite;
    }

    /* ============ NAV ============ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(13, 15, 26, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(124, 58, 237, 0.25);
      transition: background var(--transition-base);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 0;
    }

    .nav__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 22px;
      color: #FFFFFF;
    }

    .nav__logo .logo-img {
      display: block;
      height:64px;
      width: auto;
      max-width: 200px;
    }

    @media (max-width: 768px) {
      .nav__logo .logo-img { height: 40px; }
    }

    @media (max-width: 480px) {
      .nav__logo .logo-img { height: 34px; max-width: 160px; }
    }

    .nav__logo-icon {
      background: var(--color-accent) !important;
    }

    .nav__logo-icon {
      width: 36px;
      height: 36px;
      background: var(--color-accent);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav__links {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-left: auto;
    }

    .nav__link {
      font-family: var(--font-body);
      font-size: 15px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.75);
      transition: color var(--transition-fast);
    }

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

    .nav__link:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .nav__cta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 32px;
    }

    /* ===== Taxi-style CTA pill (OTT dark/red theme) ===== */
    .nav-cta {
      position: relative;
      overflow: hidden;
      display: inline-flex !important;
      align-items: center;
      gap: 12px;
      background: var(--color-accent);
      color: #fff !important;
      padding: 10px 10px 10px 22px;
      border-radius: 10px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
      box-shadow: 0 4px 14px rgba(124,58,237,0.32);
      isolation: isolate;
    }
    .nav-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.45) 50%, transparent 80%);
      transform: translateX(-120%);
      transition: transform 0.6s ease;
      z-index: -1;
    }
    .nav-cta::after {
      content: '\2192';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      background: #0D0F1A;
      color: #fff;
      border-radius: 7px;
      font-weight: 900;
      font-size: 0.9rem;
      transition: transform 0.25s ease;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,58,237,0.50); }
    .nav-cta:hover::before { transform: translateX(120%); }
    .nav-cta:hover::after { transform: translateX(3px); }
    .nav-cta:active { transform: translateY(0) scale(0.97); transition-duration: 0.1s; }
    .nav-cta:focus-visible { outline: 3px solid rgba(124,58,237,0.55); outline-offset: 3px; }

    .mobile-menu .nav-cta {
      display: flex !important;
      margin: 16px 0 6px;
      padding: 16px 24px;
      width: 100%;
      justify-content: center;
      gap: 14px;
      border-radius: 999px;
      font-size: 1.05rem;
      font-weight: 800;
      min-height: 56px;
      border-bottom: none !important;
    }
    .mobile-menu .nav-cta::after { position: static; transform: none; width: 28px; height: 28px; font-size: 0.85rem; border-radius: 50%; flex-shrink: 0; }
    .mobile-menu .nav-cta:hover::after { transform: translateX(3px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--color-on-primary);
      transition: transform var(--transition-base), opacity var(--transition-fast);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* Animated, scrollable mobile menu (taxi behaviour) */
    .mobile-menu {
      display: flex;
      flex-direction: column;
      background: rgba(13, 15, 26, 0.99);
      border-top: 1px solid rgba(124, 58, 237, 0.3);
      gap: 4px;
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.25s ease;
    }

    .mobile-menu.active {
      max-height: calc(100vh - 61px);
      max-height: calc(100dvh - 61px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding: 16px 24px 16px;
      opacity: 1;
      pointer-events: auto;
    }

    .mobile-menu a {
      font-family: var(--font-body);
      font-size: 16px;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.8);
      padding: 12px 0;
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
      transition: color var(--transition-fast);
    }

    .mobile-menu a:last-child {
      border-bottom: none;
    }

    .mobile-menu a:hover {
      color: var(--color-accent);
    }

    .mobile-menu .btn {
      margin-top: 12px;
      justify-content: center;
    }

    /* ============ HERO ============ */
    .hero {
      padding: clamp(96px, 12vh, 150px) 0 80px;
      background: linear-gradient(135deg, #0D0F1A 0%, #161927 60%, #1A1030 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Cinematic OTT poster-wall, masked so it fades into the dark and
       leaves the headline column fully readable */
    /* Animated wall of app-screen tiles, masked so it fades into the dark
       and keeps the headline column readable */
    .hero__tiles {
      position: absolute;
      inset: 0;
      display: flex;
      gap: 8px;
      padding: 0 8px;
      z-index: 0;
      opacity: 0.2;
      pointer-events: none;
      overflow: hidden;
      -webkit-mask-image:
        linear-gradient(to right, transparent 0%, transparent 34%, rgba(0,0,0,0.55) 100%, #000 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 84%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-image:
        linear-gradient(to right, transparent 0%, transparent 34%, rgba(0,0,0,0.55) 100%, #000 100%),
        linear-gradient(to bottom, transparent 0%, #000 12%, #000 84%, transparent 100%);
      mask-composite: intersect;
    }

    .tiles-col {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      flex-direction: column;
      animation: tilesScrollUp var(--spd, 50s) linear infinite;
      will-change: transform;
    }
    .tiles-col.rev { animation-name: tilesScrollDown; }

    .tiles-col img {
      width: 100%;
      /* aspect-ratio: 1 / 1; */
      object-fit: contain;
      border-radius: 8px;
      display: block;
      margin-bottom: 8px;
      border: 1px solid rgba(124, 58, 237, 0.22);
      box-shadow: 0 5px 14px rgba(0,0,0,0.4);
      opacity: 0.9;
    }

    @keyframes tilesScrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
    @keyframes tilesScrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

    @media (prefers-reduced-motion: reduce) {
      .tiles-col { animation: none; }
    }

    .hero__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 500;
      color: #ffffff;
      background: rgba(124, 58, 237, 0.12);
      border: 1px solid rgba(124, 58, 237, 0.35);
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 24px;
      animation: fadeInUp 0.5s ease forwards;
    }

    .hero__stars {
      display: flex;
      gap: 2px;
    }

    .hero__stars svg {
      width: 14px;
      height: 14px;
      fill: var(--color-accent);
    }

    .hero__headline {
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 700;
      line-height: 1.125;
      margin-bottom: 24px;
      color: #FFFFFF;
      animation: fadeInUp 0.6s ease 0.1s both;
    }

    .hero__headline span {
      color: var(--color-accent);
      display: inline;
    }

    .hero__subtext {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.75;
      margin-bottom: 32px;
      animation: fadeInUp 0.6s ease 0.2s both;
    }

    .hero__checklist {
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      animation: fadeInUp 0.6s ease 0.3s both;
    }

    .hero__checklist li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.85);
    }

    .hero__checklist li svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--color-accent);
    }

    .hero__actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeInUp 0.6s ease 0.4s both;
    }

    .hero__visual {
      position: relative;
      animation: fadeInRight 0.8s ease 0.3s both;
    }

    .hero__device {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid rgba(124, 58, 237, 0.4);
      box-shadow: 0 32px 80px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(124, 58, 237, 0.2);
    }

    .hero__device img {
      width: 100%;
      display: block;
    }

    .hero__device-badge {
      position: absolute;
      bottom: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: #161927;
      border: 1px solid rgba(124, 58, 237, 0.4);
      border-radius: 100px;
      padding: 8px 20px;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #FFFFFF;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
    }

    .hero__device-badge .dot {
      width: 8px;
      height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-dot 1.5s infinite;
    }

    @keyframes pulse-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hero__stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px;
      animation: fadeInUp 0.6s ease 0.5s both;
    }

    .hero__stat {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(124, 58, 237, 0.3);
      border-radius: var(--border-radius);
      padding: 20px 16px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
    }

    .hero__stat-value {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 700;
      color: #A78BFA;
      display: block;
    }

    .hero__stat-label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 4px;
    }

    /* ============ TRUSTED BY ============ */
    .trusted {
      padding: 40px 0;
      border-top: 1px solid rgba(124, 58, 237, 0.2);
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
      background: #161927;
    }

    .trusted__inner {
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }

    .trusted__label {
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.4);
      white-space: nowrap;
      flex-shrink: 0;
    }

    .trusted__logos {
      display: flex;
      align-items: center;
      gap: 40px;
      flex-wrap: wrap;
      flex: 1;
    }

    .trusted__logo-item {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.4);
      transition: color var(--transition-base);
      letter-spacing: 0.02em;
    }

    .trusted__logo-item:hover {
      color: var(--color-accent);
    }

    /* ============ SERVICES ============ */
    .services {
      background: #F4F4F6;
    }

    .services__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .service-card {
      background: #FFFFFF;
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: var(--border-radius-lg);
      padding: 32px;
      transition: all var(--transition-base);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-accent), transparent);
      opacity: 0;
      transition: opacity var(--transition-base);
    }

    .service-card:hover {
      background: #F5F3FF;
      border-color: rgba(124, 58, 237, 0.35);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card__icon {
      width: 52px;
      height: 52px;
      background: rgba(124, 58, 237, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .service-card__icon svg {
      width: 26px;
      height: 26px;
      color: var(--color-accent);
    }

    .service-card__title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--color-foreground);
    }

    .service-card__desc {
      font-size: 14px;
      color: rgba(13, 15, 26, 0.6);
      line-height: 1.7;
    }

    /* ============ FEATURES ============ */
    .features {
      background: #0D0F1A;
      position: relative;
      overflow: hidden;
    }
    /* ambient glow behind the feature grid */
    .features::before {
      content: '';
      position: absolute;
      top: 10%;
      left: 50%;
      width: 760px;
      height: 440px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .features .container { position: relative; z-index: 1; }

    .features__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-top: 56px;
    }

    .feature-card {
      position: relative;
      background: linear-gradient(160deg, #191D2E 0%, #121420 100%);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 30px 26px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    /* gradient accent line that wipes across the top on hover */
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--color-accent), #A78BFA);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    /* corner glow that fades in on hover */
    .feature-card::after {
      content: '';
      position: absolute;
      top: -45px;
      right: -45px;
      width: 170px;
      height: 170px;
      background: radial-gradient(circle, rgba(124,58,237,0.22) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(124, 58, 237, 0.55);
      box-shadow: 0 18px 42px rgba(0,0,0,0.45), 0 0 0 1px rgba(124,58,237,0.22);
    }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-card:hover::after { opacity: 1; }

    .feature-card__icon {
      position: relative;
      width: 50px;
      height: 50px;
      background: linear-gradient(145deg, rgba(124,58,237,0.18), rgba(124,58,237,0.06));
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                  background 0.35s ease, box-shadow 0.35s ease;
    }
    .feature-card:hover .feature-card__icon {
      background: linear-gradient(145deg, var(--color-accent), #6D28D9);
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.45);
      transform: translateY(-2px) scale(1.06);
    }

    .feature-card__icon svg {
      width: 23px;
      height: 23px;
      color: var(--color-accent);
      transition: color 0.35s ease;
    }
    .feature-card:hover .feature-card__icon svg { color: #FFFFFF; }

    .feature-card__title {
      font-family: var(--font-heading);
      font-size: 16.5px;
      font-weight: 600;
      letter-spacing: -0.2px;
      margin-bottom: 9px;
      color: #FFFFFF;
    }

    .feature-card__desc {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
    }

    /* card transition (higher specificity so it covers reveal + hover) +
       staggered reveal wave; hover stays instant */
    .features__grid .feature-card {
      transition: opacity 0.6s ease,
                  transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                  border-color 0.35s ease, box-shadow 0.35s ease;
    }
    .features__grid .feature-card:nth-child(4n+2) { transition-delay: 0.07s; }
    .features__grid .feature-card:nth-child(4n+3) { transition-delay: 0.14s; }
    .features__grid .feature-card:nth-child(4n+4) { transition-delay: 0.21s; }
    .features__grid .feature-card:hover { transition-delay: 0s; }

    @media (max-width: 768px) {
      .feature-card { padding: 24px 20px; }
      .feature-card__icon { width: 46px; height: 46px; margin-bottom: 15px; }
    }
    @media (max-width: 480px) {
      .features__grid { gap: 14px; }
      .feature-card { padding: 22px 20px; }
    }

    /* ============ OTT TYPES ============ */
    .ott-types {
      background: #F4F4F6;
    }

    .ott-types__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }

    .ott-card {
      background: #FFFFFF;
      border: 1px solid rgba(124, 58, 237, 0.15);
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      transition: all var(--transition-base);
    }

    .ott-card:hover {
      border-color: rgba(124, 58, 237, 0.45);
      transform: translateY(-5px);
      box-shadow: 0 24px 48px rgba(124, 58, 237, 0.12);
    }

    .ott-card__image {
      width: 100%;
      height: auto;
      overflow: hidden;
      position: relative;
    }

    .ott-card__image img {
      width: 100%;
      height: auto;
      object-fit: contain;
      transition: transform var(--transition-slow);
    }

    .ott-card:hover .ott-card__image img {
      transform: scale(1.05);
    }

    .ott-card__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--color-accent);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 100px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .ott-card__body {
      padding: 24px;
    }

    .ott-card__title {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 10px;
      color: var(--color-foreground);
    }

    .ott-card__desc {
      font-size: 14px;
      color: rgba(13, 15, 26, 0.6);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .ott-card__examples {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .ott-card__tag {
      font-size: 12px;
      font-weight: 500;
      color: var(--color-accent);
      background: rgba(124, 58, 237, 0.07);
      border: 1px solid rgba(124, 58, 237, 0.22);
      padding: 3px 10px;
      border-radius: 100px;
    }

    /* ============ PRICING ============ */
    .pricing {
      background: #0D0F1A;
    }

    .pricing__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 56px;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    .pricing-card {
      border-radius: var(--border-radius-lg);
      padding: 40px;
      position: relative;
      border: 2px solid rgba(124, 58, 237, 0.2);
      background: #161927;
      transition: all var(--transition-base);
      box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    }

    .pricing-card:hover {
      transform: translateY(-4px);
    }

    .pricing-card--featured {
      border-color: var(--color-accent);
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(22, 25, 39, 0.95) 100%);
      box-shadow: 0 0 40px rgba(124, 58, 237, 0.25);
    }

    .pricing-card__badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--color-accent);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      padding: 5px 20px;
      border-radius: 100px;
      white-space: nowrap;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .pricing-card__label {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 8px;
    }

    .pricing-card__title {
      font-size: 22px;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    }

    .pricing-card__price {
      margin-bottom: 24px;
    }

    .pricing-card__amount {
      font-family: var(--font-heading);
      font-size: 52px;
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1;
    }

    .pricing-card--featured .pricing-card__amount {
      color: var(--color-accent);
    }

    .pricing-card__currency {
      font-size: 28px;
      vertical-align: super;
    }

    .pricing-card__period {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 4px;
    }

    .pricing-card__features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 32px;
    }

    .pricing-card__feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
    }

    .pricing-card__feature svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 1px;
      color: #22c55e;
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
    }

    /* ============ WHY CHOOSE US ============ */
    .why-us {
      background: #F4F4F6;
    }

    .why-us__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 0;
    }

    .why-us__visual img {
      width: 100%;
      max-width:600px;
      height: auto;
      display: block;
      /* border-radius: var(--border-radius-lg);
      border: 1px solid var(--color-border); */
    }

    .why-us__content .section__label {
      margin-bottom: 16px;
    }

    .why-us__list {
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .why-item__icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: rgba(124, 58, 237, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .why-item__icon svg {
      width: 24px;
      height: 24px;
      color: var(--color-accent);
    }

    .why-item__title {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .why-item__desc {
      font-size: 14px;
      color: rgba(13, 15, 26, 0.6);
      line-height: 1.65;
    }

    /* ============ STATS BAND ============ */
    .stats-band {
      background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
      border-top: 1px solid rgba(124, 58, 237, 0.4);
      border-bottom: 1px solid rgba(124, 58, 237, 0.4);
      padding: 64px 0;
    }

    .stats-band__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      text-align: center;
    }

    .stat-item__value {
      font-family: var(--font-heading);
      font-size: 48px;
      font-weight: 700;
      color: #FFFFFF;
      display: block;
    }

    .stat-item__label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 4px;
    }

    /* ============ CTA SECTION ============ */
    .cta-section {
      background: #080A12;
      padding: 96px 0;
    }

    .cta-inner {
      background: linear-gradient(135deg, #1a0a2e 0%, #0D0F1A 60%, #0a0a1a 100%);
      border: 1px solid rgba(124, 58, 237, 0.4);
      border-radius: 24px;
      padding: 80px 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-inner::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-inner__title {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 700;
      margin-bottom: 16px;
      position: relative;
      color: #FFFFFF;
    }

    .cta-inner__subtitle {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-inner__actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============ FAQ ============ */
    .faq {
      background: #161927;
    }

    /* Two independent columns so opening an item only shifts its own column */
    .faq__grid {
      max-width: 1400px;
      margin: 56px auto 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      gap: 18px;
    }

    .faq-col {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .faq-item {
      background: linear-gradient(160deg, #1B1F30 0%, #14172499 100%);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 14px;
      overflow: hidden;
      transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(124, 58, 237, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    }

    .faq-item { position: relative; }
    .faq-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, var(--color-accent), #A78BFA);
      transform: scaleY(0);
      transform-origin: top;
      transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
      z-index: 1;
    }
    .faq-item.open::before { transform: scaleY(1); }

    .faq-item.open {
      border-color: rgba(124, 58, 237, 0.6);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(124, 58, 237, 0.22);
    }
    .faq-item.open .faq-item__question { color: #A78BFA; }

    .faq-item__question {
      width: 100%;
      border: 0;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 22px;
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 15.5px;
      font-weight: 600;
      color: #FFFFFF;
      background: transparent;
      transition: background var(--transition-fast), color var(--transition-fast);
      gap: 16px;
      line-height: 1.45;
    }

    /* .faq-item__question:hover { background: rgba(255, 255, 255, 0.03); } */
    /* .faq-item.open .faq-item__question { background: rgba(124, 58, 237, 0.06); } */

    .faq-item__question:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: -2px;
    }

    .faq-item__icon {
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      padding: 5px;
      border-radius: 50%;
      background: rgba(124, 58, 237, 0.12);
      color: var(--color-accent);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, color 0.3s ease;
    }

    .faq-item.open .faq-item__icon {
      transform: rotate(180deg);
      background: var(--color-accent);
      color: #FFFFFF;
    }

    /* Smooth height animation for any content length (grid-rows 0fr -> 1fr) */
    .faq-item__answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
      opacity: 0;
    }

    .faq-item.open .faq-item__answer {
      grid-template-rows: 1fr;
      opacity: 1;
      display: block;
    }

    .faq-item__answer-inner {
      overflow: hidden;
      min-height: 0;
      padding: 4px 22px 22px;
      font-size: 14.5px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.75;
     display: none;
    }

    .faq-item.open .faq-item__answer-inner {
      display: block;
    }

    @media (max-width: 768px) {
      .faq__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
      .faq-col { gap: 12px; }
      .faq-item__question { padding: 16px 18px; font-size: 14.5px; }
      .faq-item__answer-inner { padding: 2px 18px 18px; font-size: 13.5px; }
    }

    /* ============ FOOTER ============ */
    .footer {
      background: #080A12;
      border-top: 1px solid rgba(124, 58, 237, 0.3);
      padding: 64px 0 32px;
    }

    .footer__grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer__brand-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.7;
      margin-top: 12px;
      margin-bottom: 20px;
    }

    .footer__social {
      display: flex;
      gap: 12px;
    }

    .footer__social-link {
      width: 36px;
      height: 36px;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.35);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      transition: all var(--transition-fast);
      cursor: pointer;
    }

    .footer__social-link:hover {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: #FFFFFF;
    }

    .footer__social-link svg {
      width: 16px;
      height: 16px;
    }

    .footer__col-title {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 16px;
    }

    .footer__links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer__link {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.65);
      transition: color var(--transition-fast);
    }

    .footer__link:hover {
      color: #A78BFA;
    }

    .footer__bottom {
      border-top: 1px solid rgba(124, 58, 237, 0.2);
      padding-top: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer__copy {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ============ FOOTER (slim, taxi-style) ============ */
    .footer-min {
      background: var(--color-secondary);
      border-top: 1px solid rgba(124, 58, 237, 0.25);
      padding: 32px 0;
      color: rgba(255, 255, 255, 0.65);
      font-size: 0.88rem;
    }
    .footer-min .footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .footer-min .footer-copy { color: rgba(255, 255, 255, 0.9); letter-spacing: 0.2px; }
    .footer-min .footer-copy span { color: var(--color-accent); font-weight: 600; }
    .footer-min .footer-links {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }
    .footer-min .footer-links a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
    .footer-min .footer-links a:hover { color: var(--color-accent); }
    .footer-min .footer-links .sep { color: rgba(255, 255, 255, 0.25); user-select: none; }
    @media (max-width: 768px) {
      .footer-min .footer-row { flex-direction: column; gap: 12px; text-align: center; }
    }

    /* ============ SCROLL REVEAL ============ */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1200px) {
      .features__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .features__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .services__grid,
      .ott-types__grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero__grid,
      .why-us__grid {
        gap: 40px;
      }

      .footer__grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
      }
    }

    /* Laptop / short-height screens: compress the hero so the whole
       headline + phone mockup stay visible above the fold */
    @media (min-width: 769px) and (max-height: 820px) {

        .ott-mockup{
            max-width:275px !important;
        }

      .hero {
        padding:108px 0 56px;
      }
      .hero__grid {
        gap: 40px;
        align-items: center;
      }
      .hero__badge {
        margin-bottom: 16px;
      }
      .hero__headline {
        font-size: clamp(32px, 3.6vw, 48px);
        margin-bottom: 16px;
      }
      .hero__subtext {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
      }
      .hero__checklist {
        gap: 8px;
        margin-bottom: 24px;
      }
      .hero__checklist li {
        font-size: 14px;
      }
      .ott-mockup {
        max-width: 268px;
      }
      .ott-float-card {
        padding: 9px 12px;
      }
      .ott-float-card.fc-a { top: 40px; left: -30px; }
      .ott-float-card.fc-b { bottom: 104px; right: -28px; }
    }

    @media (max-width: 768px) {
      .section {
        padding: 64px 0;
      }

      .nav__links, .nav__cta {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .hero {
        padding:96px 0 64px;
      }

      .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero__visual {
        order: -1;
      }

      .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
      }

      .hero__stat-value {
        font-size: 22px;
      }

      .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .features__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

      .ott-types__grid {
        grid-template-columns: 1fr;
      }

      .pricing__grid {
        grid-template-columns: 1fr;
      }

      .why-us__grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cta-inner {
        padding: 48px 24px;
      }

      .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .footer__bottom {
        flex-direction: column;
        text-align: center;
      }

      .stats-band__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .hero__stats {
        grid-template-columns: 1fr 1fr;
      }

      .hero__stat:last-child {
        grid-column: span 2;
      }

      .features__grid {
        grid-template-columns: 1fr;
      }

      .trusted__logos {
        gap: 24px;
      }

      .pricing-card {
        padding: 28px 24px;
      }

      .hero__actions,
      .cta-inner__actions {
        width: 100%;
      }

      .hero__actions .btn,
      .cta-inner__actions .btn {
        width: 100%;
        justify-content: center;
      }

      .stat-item__value {
        font-size: 36px;
      }
    }

    @media (max-width: 375px) {
      .container {
        padding: 0 16px;
      }

      .btn--lg {
        font-size: 16px;
        padding: 14px 24px;
      }
    }

    /* ============ HERO PHONE APP CAROUSEL ============ */
    .ott-mockup {
      position: relative;
      max-width: 360px;
      width: 100%;
      margin: 0 auto;
    }

    .ott-phone-frame {
      /* background: linear-gradient(45deg, #2a2a2a, #4a4a4a);
      border-radius: 44px;
      padding: 12px; */
      position: relative;
      /* box-shadow:
        0 40px 90px rgba(0,0,0,0.55),
        0 0 0 2px rgba(124,58,237,0.35),
        0 0 60px rgba(124,58,237,0.25),
        inset 0 0 0 1px rgba(255,255,255,0.10); */
    }

    .ott-phone-notch {
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 20px;
      background: #0B0E1B;
      border-radius: 0 0 14px 14px;
      z-index: 3;
      display: none;
    }

    .ott-phone-screen {
      border-radius: 32px;
      overflow: hidden;
      width: 100%;
      aspect-ratio: 300 / 550;
      /* background: #0D0F1A; */
      position: relative;
    }

    .ott-slider {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      cursor: grab;
      touch-action: pan-y;
      user-select: none;
      /* background: #0D0F1A; */
    }
    .ott-slider:active { cursor: grabbing; }

    .ott-slider-track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1);
      will-change: transform;
    }

    .ott-slider-track img {
      width: 100%;
      height: 100%;
      flex-shrink: 0;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
      -webkit-user-drag: none;
      /* background: #0D0F1A; */
    }

    .ott-slider.is-dragging .ott-slider-track { transition: none; }

    .ott-glow {
      position: absolute;
      top: 44%;
      left: 50%;
      width: 132%;
      height: 78%;
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.40) 0%, rgba(124,58,237,0.10) 42%, transparent 70%);
      filter: blur(26px);
      z-index: 0;
      pointer-events: none;
    }

    .ott-phone-frame { z-index: 1; }

    .ott-float-card {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 11px;
      padding: 12px 16px;
      background: rgba(22, 25, 39, 0.72);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(124, 58, 237, 0.28);
      border-radius: 14px;
      box-shadow: 0 16px 40px rgba(0,0,0,0.45);
      z-index: 4;
      white-space: nowrap;
    }
    .ott-float-card .fc-ic {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(124,58,237,0.16);
      color: var(--color-accent);
      flex-shrink: 0;
    }
    .ott-float-card .fc-ic svg { width: 20px; height: 20px; }
    .ott-float-card .fc-t { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: #fff; line-height: 1.15; }
    .ott-float-card .fc-s { display: block; font-size: 11.5px; color: rgba(255,255,255,0.6); }

    .ott-float-card.fc-a { top: 64px; left: -56px; animation: ottCardFloatA 6s ease-in-out infinite; }
    .ott-float-card.fc-b { bottom: 150px; right: -52px; animation: ottCardFloatB 7s ease-in-out -2s infinite; }

    @keyframes ottCardFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
    @keyframes ottCardFloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(11px); } }

    @media (prefers-reduced-motion: reduce) {
      .ott-float-card.fc-a, .ott-float-card.fc-b { animation: none; }
    }

    .ott-slider-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 24px;
      z-index: 5;
      position: absolute;
      top:auto;
      bottom:32px;
      left: 50%;
      transform: translateX(-50%);
      width:auto;
      padding: 6px 12px;
      background: rgba(255, 255, 255, 0.274);
      backdrop-filter: blur(14px);
      border-radius: 48px;
    }

    .os-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.28);
      cursor: pointer;
      padding: 0;
      position: relative;
      transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
    }
    .os-dot::before { content: ''; position: absolute; inset: -8px; }
    .os-dot.is-active {
      background: var(--color-accent);
      width: 30px;
      border-radius: 5px;
      box-shadow: 0 0 16px rgba(124,58,237,0.75);
    }
    .os-dot:hover { background: rgba(255,255,255,0.6); }
    .os-dot.is-active:hover { background: var(--color-accent); }
    .os-dot:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }

    /* Pull the status badge into normal flow beneath the dots */
    .ott-mockup .hero__device-badge {
      position: static;
      transform: none;
      left: auto;
      right: auto;
      bottom: auto;
      margin-top: 18px;
      display: none;
    }

    @media (max-width: 768px) {
      .ott-mockup { max-width: 260px; }
      .ott-float-card { display: none; }
      .hero__tiles {
        opacity: 0.3;
        gap: 8px;
        padding: 0 8px;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 46%, transparent 72%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 46%, transparent 72%);
        -webkit-mask-composite: source-over;
        mask-composite: add;
        display: none;
      }
      .tiles-col img { margin-bottom: 8px; border-radius: 9px; }
    }
    @media (max-width: 480px) {
      .ott-mockup { max-width: 230px; }
      .ott-phone-frame { border-radius: 38px; padding: 10px; }
      .ott-phone-screen { border-radius: 28px; }
      .ott-slider-dots { margin-top: 18px; gap: 7px; }
      .os-dot { width: 8px; height: 8px; }
      .os-dot.is-active { width: 24px; }
    }

    /* ============ STATS BAND (animated count-up) ============ */
    .stats-section {
      background: var(--color-background);
      padding: 36px 0;
    }
    .stats-title {
      text-align: center;
      font-family: var(--font-heading);
      color: var(--color-foreground);
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 44px;
    }
    .stats-title span { color: var(--color-accent); }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      background: linear-gradient(135deg, #161927 0%, #0D0F1A 100%);
      border: 1px solid rgba(124, 58, 237, 0.25);
      border-radius: 28px;
      overflow: hidden;
      padding:32px 24px;
      box-shadow: 0 30px 80px rgba(13, 15, 26, 0.25);
    }

    .stat-item {
      background: transparent;
      padding: 0 28px;
      text-align: left;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.2s ease;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item:hover { transform: translateY(-3px); }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 3.4rem;
      font-weight: 700;
      color: var(--color-accent);
      line-height: 1;
      margin-bottom: 12px;
      letter-spacing: -1px;
      /* keep digit width stable while the counter animates */
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      display: inline-block;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.95rem;
      font-weight: 500;
      line-height: 1.5;
    }

    @media (max-width: 1024px) {
      .stats-grid { padding: 44px 28px; }
      .stat-item { padding: 0 18px; }
      .stat-number { font-size: 2.7rem; }
    }
    @media (max-width: 768px) {
      .stats-section { padding:32px 0; }
      .stats-title { font-size: 1.35rem; margin-bottom: 32px; }
      .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; padding: 38px 22px; }
      .stat-item { border-right: none; padding: 0 16px; }
      .stat-item:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
      .stat-number { font-size: 2.5rem; }
    }
    @media (max-width: 667px) {
      .stat-number { font-size: 2.1rem; }
      .stats-title { font-size: 1.2rem; }
      .hero__visual{ display: none; }
    }

    /* ============ CTA BAND (taxi .cta-middle, OTT red) ============ */
    .cta-band {
      background: linear-gradient(135deg, #16091F 0%, #0D0F1A 55%, #16091F 100%);
      border-top: 1px solid rgba(124, 58, 237, 0.25);
      border-bottom: 1px solid rgba(124, 58, 237, 0.25);
      padding: 84px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 700px;
      height: 400px;
      transform: translate(-50%, -50%);
      background: radial-gradient(ellipse at center, rgba(124,58,237,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-band .container { position: relative; z-index: 1; }
    .cta-band h2 {
      font-family: var(--font-heading);
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 18px;
    }
    .cta-band h2 span { color: var(--color-accent); }
    .cta-band h2::after {
      content: '';
      display: block;
      width: 64px;
      height: 4px;
      background: linear-gradient(90deg, var(--color-accent), #A78BFA);
      border-radius: 2px;
      margin: 18px auto 0;
    }
    .cta-band p {
      font-size:16px;
      color: rgba(255, 255, 255, 0.72);
      max-width:960px;
      margin: 0px auto 0px;
      line-height: 1.75;
    }
    .cta-band__actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
      margin:16px 0
    }
    .cta-band__note {
      margin-top: 22px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
    }
    @media (max-width: 768px) {
      .cta-band { padding: 60px 0; }
      .cta-band__actions { width: 100%; }
      .cta-band__actions .btn { width: 100%; max-width: 360px; justify-content: center; }
    }

    /* ============ HOW IT WORKS (steps) ============ */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 56px;
      position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, rgba(124,58,237,0.2), rgba(124,58,237,0.6), rgba(124,58,237,0.2));
      z-index: 0;
    }
    .step-item { text-align: center; position: relative; z-index: 1; }
    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #9D5CFF, #5B21B6);
      color: #fff;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 22px rgba(124,58,237,0.4);
    }
    .step-item h3 {
      font-family: var(--font-heading);
      font-size: 17px;
      font-weight: 700;
      color: var(--color-foreground);
      margin-bottom: 10px;
    }
    .step-item p { font-size: 14px; color: rgba(13,15,26,0.6); line-height: 1.65; }
    @media (max-width: 1024px) {
      .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
      .steps-grid::before { display: none; }
    }
    @media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }

    /* ============ TESTIMONIALS ============ */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 56px;
    }
    .testimonial-card {
      background: #FFFFFF;
      border: 1px solid var(--color-border);
      border-radius: 18px;
      padding: 34px 30px;
      box-shadow: 0 2px 10px rgba(13,15,26,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .testimonial-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124,58,237,0.4);
      box-shadow: 0 18px 40px rgba(13,15,26,0.1);
    }
    .testimonial-card .stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .testimonial-card .star { color: var(--color-accent); font-size: 1.05rem; }
    .testimonial-text {
      font-size: 15px;
      color: rgba(13,15,26,0.72);
      line-height: 1.7;
      margin-bottom: 24px;
      font-style: italic;
    }
    .testimonial-author { display: flex; align-items: center; gap: 13px; }
    .author-avatar { width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
    .author-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .author-name {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 14.5px;
      color: var(--color-foreground);
    }
    .author-role { font-size: 12.5px; color: rgba(13,15,26,0.55); }
    @media (max-width: 900px) {
      .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    }

    @keyframes cmModalIn2 { from { opacity:0; transform:scale(0.94); } to { opacity:1; transform:scale(1); } }
    @keyframes cmSlideLeft2 { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
    @keyframes cmFadeUp2 { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
    .lead-modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:9999; display:none; align-items:center; justify-content:center; padding:16px; backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); overflow:hidden; box-sizing:border-box; }
    .lead-modal-overlay.active { display:flex; }
    .lead-modal-card { background:#fff; border-radius:16px; overflow:hidden; max-width:1000px; width:100%; display:flex; box-shadow:0 25px 60px rgba(0,0,0,0.28); position:relative; animation:cmModalIn2 0.35s cubic-bezier(0.22,1,0.36,1) both; font-family:"Poppins",sans-serif; max-height:calc(100svh - 32px); }
    .lead-modal-close-btn { position:absolute; top:12px; right:12px; z-index:50; background:#fff; border:2px solid #e0e0e0; border-radius:50%; height:36px; width:36px; min-width:36px; color:#333; font-size:20px; font-weight:400; display:flex; align-items:center; justify-content:center; box-shadow:0 2px 8px rgba(0,0,0,0.15); cursor:pointer; line-height:0; text-align:center; padding:0; margin:0; flex-shrink:0; transition:background 0.2s,box-shadow 0.2s,transform 0.2s; }
    .lead-modal-close-btn:hover { background:#f5f5f5; box-shadow:0 4px 12px rgba(0,0,0,0.22); }
    .lead-modal-left { width:42%; background-size:cover; background-position:center top; background-repeat:no-repeat; padding:40px 30px; position:relative; display:flex; align-items:flex-start; flex-shrink:0; animation:cmSlideLeft2 0.4s 0.1s cubic-bezier(0.22,1,0.36,1) both; }
    .lead-modal-left::before { content:""; position:absolute; inset:0; background:linear-gradient(170deg, rgb(157 92 255 / 85%) 0%, rgb(91 33 182 / 95%) 100%); z-index:0; }
    .lead-modal-left > div { position:relative; z-index:1; }
    .lead-modal-left .modal-logo { height:52px; width:auto; }
    .lead-modal-left h3 { font-family:"Poppins",sans-serif; font-size:24px; line-height:1.3; color:#fff; font-weight:700; padding-top:28px; padding-bottom:12px; margin:0; }
    .lead-modal-left p { font-family:"Poppins",sans-serif; font-size:14px; color:rgba(255,255,255,0.85); line-height:1.7; margin:0; }
    .lead-modal-right { flex:1; padding:40px 36px 36px; background:#fff; position:relative; overflow-y:auto; overflow-x:hidden; min-height:0; -webkit-overflow-scrolling:touch; overscroll-behavior:contain; }
    .lead-modal-right,.lead-modal-right * { font-family:"Poppins",sans-serif; }
    .lead-modal-right .form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:0; animation:cmFadeUp2 0.35s 0.18s both; }
    .lead-modal-right .form-group { margin-bottom:14px; }
    .lead-modal-right .form-group label { display:block; font-size:13px; font-weight:600; color:#3a3a3a; margin-bottom:5px; }
    .lead-modal-right .form-group input,
    .lead-modal-right .form-group textarea { width:100%; padding:11px 14px; border:1.5px solid #e0e0e0; border-radius:8px; font-size:16px; color:#1a1a1a; background:#f9f9f9; outline:none; transition:border-color 0.2s,box-shadow 0.2s; box-sizing:border-box; font-family:"Poppins",sans-serif; -webkit-appearance:none; appearance:none; }
    .lead-modal-right .form-group input:focus,
    .lead-modal-right .form-group textarea:focus { border-color:#7C3AED; background:#fff; box-shadow:0 0 0 3px rgba(124,58,237,0.14); }
    .lead-modal-right .form-group input::placeholder,
    .lead-modal-right .form-group textarea::placeholder { color:#9a9a9a; }
    .lead-modal-right .form-group textarea { min-height:80px; resize:vertical; }
    .lead-modal-right .form-group .iti { width:100%; }
    .lead-modal-right .form-group .iti--allow-dropdown input[type="tel"] { padding-left:96px !important; }
    .lead-modal-right .form-group .iti__flag-container { display:flex; align-items:center; }
    .lead-modal-right .email-group { animation:cmFadeUp2 0.35s 0.24s both; }
    .lead-modal-right .phone-group { animation:cmFadeUp2 0.35s 0.30s both; }
    .lead-modal-right .msg-group { animation:cmFadeUp2 0.35s 0.36s both; }
    .lead-modal-right .submit-wrap { animation:cmFadeUp2 0.35s 0.42s both; }
    .lead-modal-right .form-submit { width:100%; background:linear-gradient(135deg, #9D5CFF 0%, #7C3AED 55%, #5B21B6 100%); color:#fff; border:none; border-radius:6px; font-size:16px; font-weight:700; text-transform:uppercase; letter-spacing:0.04em; padding:13px; min-height:48px; cursor:pointer; transition:filter 0.2s,transform 0.2s,box-shadow 0.2s; font-family:"Poppins",sans-serif; box-shadow:0 4px 14px rgba(124,58,237,0.32); }
    .lead-modal-right .form-submit:hover { filter:brightness(1.05); transform:translateY(-2px); box-shadow:0 8px 22px rgba(124,58,237,0.45); }
    @media (max-width:767px) {
    .lead-modal-overlay { padding:12px; align-items:center; }
    .lead-modal-card { flex-direction:column; max-height:calc(100svh - 24px); border-radius:14px; overflow:hidden; }
    .lead-modal-left { display:none; }
    .lead-modal-right { flex:1; min-height:0; padding:52px 20px 32px; overflow-y:auto; -webkit-overflow-scrolling:touch; }
    .lead-modal-right .form-row { grid-template-columns:1fr; gap:0; }
    .lead-modal-close-btn { top:10px; right:10px; }
}
    @media (max-width:480px) {
    .lead-modal-overlay { padding:8px; }
    .lead-modal-card { border-radius:12px; max-height:calc(100svh - 16px); }
    .lead-modal-right { padding:50px 16px 28px; }
    .lead-modal-close-btn { top:8px; right:8px; width:34px; height:34px; font-size:18px; }
}
  
  @media (max-width:360px) {
    .lead-modal-overlay { padding:4px; }
    .lead-modal-card { border-radius:10px; max-height:calc(100svh - 8px); }
    .lead-modal-right { padding:46px 12px 24px; }
  }
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .lead-modal-right { padding-bottom:max(36px,calc(env(safe-area-inset-bottom) + 20px)); }
    @media (max-width:767px) { .lead-modal-right { padding-bottom:max(32px,calc(env(safe-area-inset-bottom) + 16px)); } }
    @media (max-width:480px) { .lead-modal-right { padding-bottom:max(28px,calc(env(safe-area-inset-bottom) + 12px)); } }
  }
  /* ── Fix v2: CSS Grid keeps close button in its own non-scrolling row ── */
  @media (max-width:767px) {
    .lead-modal-card { display: grid !important; grid-template-rows: auto 1fr !important; }
    .lead-modal-close-btn {
      grid-row: 1 !important;
      position: relative !important;
      top: auto !important;
      right: auto !important;
      justify-self: end !important;
      align-self: center !important;
      margin: 10px 10px 0 auto !important;
      flex-shrink: unset !important;
      z-index: 10 !important;
    }
    .lead-modal-right {
      grid-row: 2 !important;
      overflow-y: auto !important;
      min-height: 0 !important;
      padding: 16px 20px 32px !important;
    }
  }
  @media (max-width:480px) {
    .lead-modal-close-btn { margin: 8px 8px 0 auto !important; }
    .lead-modal-right { padding: 12px 16px 28px !important; }
  }
  /* ── Fix: phone input background matches other form fields ── */
  .lead-modal-right .form-group .iti,
  .lead-modal-right .form-group .iti input[type="tel"] {
    background: #f9f9f9 !important;
    background-color: #f9f9f9 !important;
    border-radius: 8px !important;
  }
  /* ── Fix: typed text always visible in phone input ── */
  .lead-modal-right .form-group .iti input[type="tel"],
  .lead-modal-right input[type="tel"] {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    color-scheme: light !important;
    opacity: 1 !important;
  }
  .lead-modal-right .form-group .iti input[type="tel"]:focus,
  .lead-modal-right input[type="tel"]:focus {
    color: #1a1a1a !important;
    -webkit-text-fill-color: #1a1a1a !important;
    background: #fff !important;
    background-color: #fff !important;
  }
  /* ── Fix: phone placeholder matches other fields (#9a9a9a gray) ── */
  .lead-modal-right .form-group .iti input[type="tel"]::placeholder,
  .lead-modal-right input[type="tel"]::placeholder {
    color: #9a9a9a !important;
    -webkit-text-fill-color: #9a9a9a !important;
    opacity: 1 !important;
  }
  .lead-modal-right .form-group .iti__selected-flag,
  .lead-modal-right .form-group .iti__flag-container {
    background-color: transparent !important;
  }
  /* ── Fix: intl-tel-input country code selector visibility ── */
  .lead-modal-right .form-group .iti__selected-flag {
    cursor: pointer !important;
    pointer-events: auto !important;
    background-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 6px 0 8px !important;
  }
  .lead-modal-right .form-group .iti__selected-dial-code {
    color: #1a1a1a !important;
    font-size: 14px !important;
    margin-left: 4px !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .lead-modal-right .form-group .iti__arrow {
    border-top-color: #1a1a1a !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .lead-modal-right .form-group .iti__country-list {
    z-index: 99999 !important;
    background: #fff !important;
    color: #1a1a1a !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  }
  .lead-modal-right .form-group .iti__country-list .iti__country {
    color: #1a1a1a !important;
    padding: 6px 10px !important;
  }
  .lead-modal-right .form-group .iti__country-list .iti__country:hover {
    background: #f0f0f0 !important;
  }
  .lead-modal-right .form-group .iti__dial-code {
    color: #555 !important;
  }


    /* === LIVE DEMO VIDEO SHOWCASE ============================== */
    .video-demo-section { padding: 48px 0 64px; }
    .video-demo-stage {
      position: relative;
      display: block;
      max-width: 960px;
      margin: 32px auto 0;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
    .video-demo-img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: var(--border-radius-lg);
      transition: transform 0.6s ease;
    }
    .video-demo-stage::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--border-radius-lg);
      background: radial-gradient(circle at center, rgba(13,15,26,0.10) 0%, rgba(13,15,26,0) 55%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .video-demo-stage:hover .video-demo-img { transform: scale(1.03); }
    .video-demo-stage:hover::after { opacity: 1; }
    .video-demo-badge {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 138px;
      height: 138px;
      display: grid;
      place-items: center;
      z-index: 2;
    }
    .video-demo-badge::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(255,255,255,0.94);
      box-shadow: 0 10px 30px rgba(13,15,26,0.18);
    }
    .video-demo-badge-text {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      animation: vdSpin 16s linear infinite;
    }
    .video-demo-badge-text text {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      fill: var(--color-accent);
    }
    .video-demo-play {
      position: relative;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--color-accent);
      display: grid;
      place-items: center;
      box-shadow: 0 10px 30px rgba(124,58,237,0.45);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .video-demo-play::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: var(--color-accent);
      opacity: 0.5;
      z-index: -1;
      animation: vdPulse 2.4s ease-out infinite;
    }
    .video-demo-play svg {
      width: 30px;
      height: 30px;
      fill: #fff;
      margin-left: 4px;
    }
    .video-demo-stage:hover .video-demo-play {
      transform: scale(1.08);
      box-shadow: 0 14px 38px rgba(124,58,237,0.55);
    }
    @keyframes vdSpin { to { transform: rotate(360deg); } }
    @keyframes vdPulse {
      0%   { transform: scale(1);   opacity: 0.5; }
      100% { transform: scale(1.7); opacity: 0; }
    }
    @media (max-width: 768px) {
      .video-demo-section { padding: 36px 0 48px; }
      .video-demo-stage { max-width: 560px; margin-top: 28px; }
      .video-demo-badge { width: 110px; height: 110px; }
      .video-demo-play { width: 62px; height: 62px; }
      .video-demo-play svg { width: 24px; height: 24px; }
      .video-demo-badge-text text { font-size: 9.5px; letter-spacing: 1.4px; }
    }
    @media (max-width: 480px) {
      .video-demo-badge { width: 94px; height: 94px; }
      .video-demo-play { width: 54px; height: 54px; }
      .video-demo-play svg { width: 21px; height: 21px; margin-left: 3px; }
      .video-demo-badge-text text { font-size: 8.5px; letter-spacing: 2.25px; }
    }
    @media (prefers-reduced-motion: reduce) {
      .video-demo-badge-text { animation: none; }
      .video-demo-play::before { animation: none; }
      .video-demo-img { transition: none; }
    }

    /* === LIVE DEMO VIDEO MODAL ================================= */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .video-modal.is-open {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0s;
    }
    .video-modal-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: rgba(10,14,20,0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: none;
      cursor: pointer;
      padding: 0;
      margin: 0;
      appearance: none;
    }
    .video-modal-content {
      position: relative;
      width: 100%;
      max-width: 960px;
      transform: scale(0.9) translateY(24px);
      opacity: 0;
      transition: transform 0.45s cubic-bezier(0.34,1.36,0.64,1), opacity 0.3s ease;
    }
    .video-modal.is-open .video-modal-content {
      transform: scale(1) translateY(0);
      opacity: 1;
    }
    .video-modal-close {
      position: absolute;
      top: -52px;
      right: 0;
      width: 42px;
      height: 42px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.28);
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: background 0.25s ease, transform 0.3s ease, border-color 0.25s ease, color 0.25s ease;
      z-index: 2;
    }
    .video-modal-close:hover {
      background: var(--color-accent);
      border-color: var(--color-accent);
      color: #fff;
      transform: rotate(90deg) scale(1.05);
    }
    .video-modal-close:focus-visible {
      outline: 2px solid var(--color-accent);
      outline-offset: 3px;
    }
    .video-modal-close svg { width: 22px; height: 22px; fill: currentColor; }
    .video-modal-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #000;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
    }
    .video-modal-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    .video-modal-loader {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: #0B0E1B;
      z-index: 1;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    .video-modal-frame.is-loading .video-modal-loader {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0s;
    }
    .video-modal-spinner {
      width: 52px;
      height: 52px;
      border: 4px solid rgba(255,255,255,0.12);
      border-top-color: var(--color-accent);
      border-radius: 50%;
      animation: videoSpin 0.85s linear infinite;
    }
    .video-modal-loader-text {
      color: rgba(255,255,255,0.65);
      font-size: 0.88rem;
      letter-spacing: 0.5px;
    }
    @keyframes videoSpin { to { transform: rotate(360deg); } }
    body.video-modal-open { overflow: hidden; }
    @media (max-width: 640px) {
      .video-modal { padding: 16px; }
      .video-modal-close { top: -46px; width: 38px; height: 38px; }
      .video-modal-close svg { width: 18px; height: 18px; }
      .video-modal-frame { border-radius: 12px; }
    }
    @media (max-width: 480px) {
      .video-modal { padding: 12px; }
      .video-modal-close { top: -42px; width: 34px; height: 34px; }
      .video-modal-close svg { width: 16px; height: 16px; }
    }
