    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      overflow-x: hidden;
      width: 100%;
      -webkit-tap-highlight-color: transparent; /* Makes mobile taps feel premium like native apps */
    }

    /* SCROLLBAR CUSTOMIZATION FOR PREMIUM FEEL */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: var(--bg-dark);
    }
    ::-webkit-scrollbar-thumb {
      background: rgba(91, 57, 119, 0.4);
      border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: rgba(91, 57, 119, 0.7);
    }

    /* ... animations omitted, keeping them same ... */
    @keyframes pulse {

      0%,
      100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 12px rgba(91, 57, 119, 0.3);
      }

      50% {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(91, 57, 119, 0.4);
      }
    }

    @keyframes textPulse {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0.7;
      }
    }

    @keyframes floatBubble {
      0% {
        transform: translateY(20px);
        opacity: 0;
      }

      10% {
        transform: translateY(0);
        opacity: 1;
      }

      90% {
        transform: translateY(0);
        opacity: 1;
      }

      100% {
        transform: translateY(20px);
        opacity: 0;
      }
    }

    @keyframes attention-pulse {

      0%,
      100% {
        transform: translateX(-50%) scale(1) rotate(0deg);
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      }

      50% {
        transform: translateX(-50%) scale(1.1) rotate(-2deg);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8);
      }
    }

    .combo-jimat-badge {
      position: absolute;
      top: -24px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      color: #000000;
      font-weight: 900;
      font-size: 1.1rem;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.6);
      animation: attention-pulse 2s infinite ease-in-out;
      white-space: nowrap;
      z-index: 100;
      padding: 12px 28px;
      border-radius: 50px;
      border: 3px solid #ffffff;
    }

    @media (max-width: 768px) {
      .combo-jimat-badge {
        top: -20px;
        font-size: 0.95rem;
        padding: 10px 20px;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
      will-change: opacity, transform;
    }

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

    :root {
      --bg-dark: #F2F2F5; /* Light Gray */
      --bg-light: #FFFFFF; /* Pure White */
      --brand-main: #2A0A57; /* Deep Purple */
      --brand-highlight: #7B2DFF; /* Violet */
      --brand-accent: #FF9F1A; /* Warm Orange */
      --text-light: #1A0940; /* Deep Indigo */
      --text-muted: #32364A; /* Slate */
      --card-bg: rgba(255, 255, 255, 0.8);
      --card-border: rgba(255, 255, 255, 0.6);
      --border: rgba(42, 10, 87, 0.08);
      --radius: 20px;
      --danger: #FF6B8E; /* Coral Pink */
      --glass-blur: blur(16px);
      --shadow-soft: 0 10px 40px -10px rgba(26, 9, 64, 0.08);
      --overlay-bg: rgba(255, 255, 255, 0.75);

      /* Typography System */
      --font-main: 'Inter', sans-serif;
      --font-heading: 'Poppins', sans-serif;
    }

    body.dark-mode {
      --bg-dark: #1A0940; /* Deep Indigo */
      --bg-light: #2A0A57; /* Deep Purple */
      --brand-main: #7B2DFF; /* Violet */
      --brand-highlight: #A78BFA; /* Lavender */
      --brand-accent: #FF9F1A; /* Warm Orange */
      --text-light: #F2F2F5; /* Light Gray */
      --text-muted: #A78BFA; /* Lavender */
      --card-bg: rgba(42, 10, 87, 0.6);
      --card-border: rgba(123, 45, 255, 0.2);
      --border: rgba(123, 45, 255, 0.1);
      --danger: #FF6B8E;
      --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
      --overlay-bg: rgba(26, 9, 64, 0.8);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: var(--font-main);
      color: var(--text-light);
      background: var(--bg-dark);
      line-height: 1.6;
      transition: background 0.3s ease, color 0.3s ease;
      letter-spacing: -0.01em;
      /* Tighter letter spacing for premium feel */
    }

    /* GLOBAL SECTIONS & BACKGROUNDS */
    section {
      padding: 80px 0;
    }
    
    section:nth-of-type(even) {
      background-color: var(--bg-light);
    }
    
    section:nth-of-type(odd) {
      background-color: var(--bg-dark);
    }

    /* GLOBAL BUTTONS */
    .btn-accent {
      background: linear-gradient(135deg, var(--brand-accent) 0%, #FFB84D 100%);
      color: #000;
      box-shadow: 0 10px 25px rgba(255, 159, 26, 0.3);
      padding: 16px 36px;
      border-radius: 99px;
      font-weight: 800;
      font-size: 1.05rem;
      border: none;
      transition: all 0.3s ease;
      display: inline-block;
      text-decoration: none;
      text-align: center;
      animation: pulse 3s ease-in-out infinite;
    }
    
    .btn-accent:hover {
      animation: none;
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(255, 159, 26, 0.5);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
    }

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

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

    .wrapper {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 2;
    }

    /* Top Announcement Bar */
    .top-announcement {
      background: linear-gradient(135deg, var(--brand-main) 0%, #1A0940 100%);
      color: var(--brand-accent);
      text-align: center;
      padding: 10px 0;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 100;
    }
    
    .top-announcement .wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
    }
    
    .pulse-dot {
      width: 8px;
      height: 8px;
      background-color: var(--brand-accent);
      border-radius: 50%;
      box-shadow: 0 0 0 0 rgba(255, 159, 26, 0.7);
      animation: pulse-dot-anim 2s infinite;
      display: inline-block;
    }
    
    @keyframes pulse-dot-anim {
      0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 159, 26, 0.7); }
      70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 159, 26, 0); }
      100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 159, 26, 0); }
    }

    /* Navigation */
    header {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 50;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    body.dark-mode header {
      background: rgba(5, 5, 5, 0.7);
    }

    header.nav-hidden {
      transform: translateY(-100%);
    }

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

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .brand:hover {
      opacity: 0.9;
    }

    .logo-typography {
      font-family: var(--font-main);
      font-size: clamp(1.5rem, 6vw, 2.2rem);
      font-weight: 800;
      /* Bolder for logo */
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--brand-main);
      white-space: nowrap;
    }

    .logo-typography span {
      color: var(--brand-accent);
    }

    .nav-buttons {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .nav-buttons a.btn-link {
      padding: 10px 20px;
      border-radius: 99px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: all 0.2s ease;
      cursor: pointer;
      font-size: 0.95rem;
    }

    .nav-buttons .btn-primary {
      background: linear-gradient(135deg, var(--brand-main) 0%, #4a2b63 100%);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(91, 57, 119, 0.25);
    }

    .nav-buttons .btn-secondary {
      background: transparent;
      border-color: var(--border);
      color: var(--text-light);
    }

    .nav-buttons a.btn-link:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .lang-switcher {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      background: rgba(91, 57, 119, 0.06);
      border: 1px solid var(--border);
      padding: 3px 3px 3px 6px;
      border-radius: 99px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--text-muted);
      transition: all 0.3s ease;
    }

    body.dark-mode .lang-switcher {
      background: rgba(255, 255, 255, 0.05);
    }

    .lang-switcher svg {
      color: var(--text-muted);
      opacity: 0.8;
      margin-right: 4px;
      flex-shrink: 0;
    }

    .lang-switcher span.active {
      color: #ffffff;
      background: var(--brand-main);
      padding: 4px 10px;
      border-radius: 99px;
      box-shadow: 0 2px 6px rgba(91, 57, 119, 0.2);
      display: inline-block;
      line-height: 1.2;
    }

    body.dark-mode .lang-switcher span.active {
      color: #000000;
      background: var(--brand-accent);
      box-shadow: 0 2px 6px rgba(255, 159, 26, 0.2);
    }

    .lang-switcher a {
      text-decoration: none;
      color: var(--text-muted);
      opacity: 0.7;
      padding: 4px 10px;
      border-radius: 99px;
      transition: all 0.2s ease;
      display: inline-block;
      line-height: 1.2;
    }

    .lang-switcher a:hover {
      opacity: 1;
      color: var(--text-light);
      background: rgba(91, 57, 119, 0.08);
    }

    body.dark-mode .lang-switcher a:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .hamburger {
      display: none;
      background: transparent;
      border: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      padding: 0;
    }

    .hamburger img {
      width: 28px;
      height: 28px;
      filter: invert(0);
    }

    body.dark-mode .hamburger img {
      filter: invert(1);
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 75px;
      right: 24px;
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      padding: 16px;
      flex-direction: column;
      gap: 12px;
      z-index: 100;
      min-width: 220px;
    }

    .mobile-menu a {
      display: block;
      margin: 0;
      text-align: center;
      padding: 14px;
      width: 100%;
    }

    .mobile-menu.active {
      display: flex;
    }

    @media (max-width: 768px) {

      .nav-buttons a.btn-secondary,
      .nav-buttons a.btn-primary {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    .theme-toggle {
      background: rgba(91, 57, 119, 0.06);
      border: 1px solid var(--border);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      margin-right: 8px;
    }

    body.dark-mode .theme-toggle {
      background: rgba(255, 255, 255, 0.05);
    }

    .theme-toggle:hover {
      background: rgba(91, 57, 119, 0.12);
      transform: scale(1.05) rotate(15deg);
    }

    body.dark-mode .theme-toggle:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: scale(1.05) rotate(-15deg);
    }

    .theme-toggle svg {
      width: 20px;
      height: 20px;
      fill: var(--brand-main);
      transition: fill 0.3s ease, transform 0.3s ease;
    }

    body.dark-mode .theme-toggle svg {
      fill: var(--brand-accent);
      transform: rotate(360deg);
    }

    /* --- HERO SECTION --- */
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      padding: 60px 0 60px;
      position: relative;
      overflow: hidden;
      min-height: 80vh;
    }

    @media (min-width: 768px) {
      .hero {
        padding: 80px 0 60px;
      }
    }

    .hero::before {
      content: "";
      position: absolute;
      top: -150px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 800px;
      background: radial-gradient(circle at center, rgba(91, 57, 119, 0.25), transparent 70%);
      filter: blur(90px);
      pointer-events: none;
      z-index: 0;
    }

    .hero-text {
      flex: 1 1 450px;
      margin-right: 24px;
      z-index: 2;
      position: relative;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(91, 57, 119, 0.08);
      border: 1px solid rgba(91, 57, 119, 0.15);
      color: var(--brand-main);
      padding: 6px 16px;
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
      backdrop-filter: blur(4px);
    }

    body.dark-mode .hero-tag {
      color: var(--brand-accent);
      border-color: rgba(251, 191, 36, 0.3);
      background: rgba(251, 191, 36, 0.05);
    }

    .hero-tag .check {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--brand-accent);
      display: inline-block;
      box-shadow: 0 0 10px var(--brand-accent);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.2rem);
      line-height: 1.05;
      font-weight: 800;
      margin: 16px 0 24px;
      letter-spacing: -0.03em;
    }

    .hero h1 span {
      display: inline-block;
      color: transparent;
      background: linear-gradient(135deg, var(--brand-accent) 20%, #f7d58b 80%);
      -webkit-background-clip: text;
      background-clip: text;
      padding-bottom: 5px;
    }

    .hero p {
      max-width: 580px;
      color: var(--text-muted);
      font-size: 1.15rem;
      margin: 0 0 36px;
      font-weight: 400;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .hero-actions .btn-primary {
      background: linear-gradient(135deg, var(--brand-main) 0%, #4a2b63 100%);
      color: #ffffff;
      box-shadow: 0 10px 25px rgba(91, 57, 119, 0.3);
      padding: 16px 36px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 1rem;
      animation: pulse 3s ease-in-out infinite;
      border: none;
      transition: all 0.3s ease;
    }

    .hero-actions .btn-primary:hover {
      animation: none;
      transform: translateY(-4px);
      box-shadow: 0 15px 35px rgba(91, 57, 119, 0.4);
    }

    .hero-actions .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--border);
      color: var(--text-light);
      padding: 16px 32px;
      border-radius: 99px;
      font-weight: 600;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
    }

    body.dark-mode .hero-actions .btn-secondary {
      border-color: rgba(255, 255, 255, 0.15);
    }

    .hero-actions .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--brand-main);
      color: var(--brand-main);
    }

    .microcopy {
      margin-top: 18px;
      font-size: 0.9rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .microcopy::before {
      /* content: "🔒"; Removed to avoid double icon with HTML */
      font-size: 0.9rem;
      display: none;
      /* Hide pseudo element */
    }

    .hero-image {
      flex: 1 1 350px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
      position: relative;
      z-index: 10;
      perspective: 1000px;
    }

    .hero-image::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 140%;
      height: 140%;
      background: radial-gradient(circle, rgba(91, 57, 119, 0.4) 0%, rgba(208, 166, 74, 0.1) 40%, transparent 70%);
      filter: blur(40px);
      z-index: -1;
      animation: pulseGlow 6s infinite alternate;
      pointer-events: none;
    }

    @keyframes pulseGlow {
      0% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(0.9);
      }
      100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
      }
    }

    @keyframes floatDevice {
      0% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
      }

      50% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-20px);
      }

      100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
      }
    }

    /* For hover state - pause or alter behavior if needed, or keep it floating */
    .device-mock {
      position: relative;
      width: 320px;
      max-width: 100%;
      height: auto;
      aspect-ratio: 320 / 650;
      background: #121212;
      border-radius: clamp(20px, 8vw, 45px);
      border: clamp(6px, 2vw, 12px) solid #2d2d2d;
      box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
      overflow: hidden;
      transform: rotateY(-5deg) rotateX(2deg);
      animation: floatDevice 6s ease-in-out infinite;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      margin-bottom: 20px;
    }

    /* Hover handled via JS parallax for Premium Feel */

    .device-mock::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 37.5%;
      height: 3.8%;
      background: #2d2d2d;
      border-bottom-left-radius: clamp(6px, 2vw, 12px);
      border-bottom-right-radius: clamp(6px, 2vw, 12px);
      z-index: 20;
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-slider img.hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 1;
    }

    /* --- FLOATING CARDS (NEW) --- */
    .float-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 16px;
      padding: 12px 20px;
      box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
      z-index: 30;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float-y 4s ease-in-out infinite;
      min-width: 140px;
    }

    body.dark-mode .float-card {
      background: rgba(30, 41, 59, 0.8);
      border-color: rgba(255, 255, 255, 0.1);
      color: #fff;
    }

    .float-card .icon-box {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--brand-main), var(--brand-accent));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: white;
      box-shadow: 0 4px 10px rgba(91, 57, 119, 0.3);
    }

    .float-card .info h4 {
      margin: 0;
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.1;
    }

    .float-card .info p {
      margin: 2px 0 0;
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    body.dark-mode .float-card .info p {
      color: #94a3b8;
    }

    /* Positioning */
    .fc-left {
      top: 15%;
      left: -40px;
      animation-delay: 0s;
    }

    .fc-right {
      bottom: 20%;
      right: -30px;
      animation-delay: 2s;
    }

    @keyframes float-y {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @media (max-width: 768px) {
      .hero-image {
        /* Increased bottom margin to avoid sticky widget overlap */
        margin-bottom: 40px;
      }

      .fc-left {
        left: 0;
        top: 10%;
        transform: scale(0.9);
      }

      .fc-right {
        right: 0;
        bottom: 15%;
        transform: scale(0.9);
      }

      /* Reset animation transform on mobile but keep scale? 
         Better to just include scale in keyframes or wrapper. 
         For simplicity, we let it float but with offset. */
    }

    .hero-slider img.hero-slide.active {
      opacity: 1;
      z-index: 2;
    }

    /* Bento Grid & Glass Cards */
    .problems,
    .solution,
    .global,
    .pricing,
    .testimonials,
    .product-demo,
    .learning-tools,
    .join-today,
    .social-media,
    .tech-specs {
      position: relative;
      z-index: 2;
    }

    /* Common Grid with Bento Style */
    .problem-cards,
    .feature-grid,
    .tool-grid,
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    /* Advanced Responsive Setup for Pricing Grid */
    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
      margin-top: 40px;
      margin-bottom: 80px; /* Increased safe buffer to prevent scaled cards from overlapping content below */
      align-items: stretch; /* Cards stretch to equal height for aligned SaaS layout */
    }

    @media (max-width: 991px) {
      .pricing-grid {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (min-width: 992px) {
      .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1140px;
        margin-left: auto;
        margin-right: auto;
      }
    }

    /* Clean List for Custom SVGs */
    .price-card ul.clean-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
      text-align: left;
    }

    .price-card ul.clean-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      line-height: 1.4;
      font-size: 0.95rem;
    }

    /* SVG Default (Neutral Point) */
    .price-card ul.clean-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 2px;
      width: 18px;
      height: 18px;
      background-size: contain;
      background-repeat: no-repeat;
    }

    .price-card ul.clean-list li.neutral::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 16 16 12 12 8'/%3E%3Cline x1='8' y1='12' x2='16' y2='12'/%3E%3C/svg%3E");
    }

    /* SVG Green Checkmark */
    .price-card ul.clean-list li.check::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    }

    /* SVG Red X */
    .price-card ul.clean-list li.cross::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    }

    /* SVG Gold Checkmark for PRO */
    .price-card.pro-card ul.clean-list li.check::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fbbf24' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    }

    /* SVG Red X for PRO (if any) */
    .price-card.pro-card ul.clean-list li.cross::before {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fb7185' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    }

    /* Receipt Box Styling */
    .receipt-box {
      background: rgba(0,0,0,0.3);
      border: 1px dashed rgba(255,255,255,0.4);
      padding: 14px;
      border-radius: 8px;
      margin: 20px 0 16px;
      font-size: 0.95rem;
      line-height: 1.5;
      position: relative;
    }
    
    .receipt-box::before, .receipt-box::after {
      content: "";
      position: absolute;
      top: -6px;
      width: 12px;
      height: 12px;
      background: linear-gradient(145deg, #2d1c3c 0%, #5b3977 100%);
      border-radius: 50%;
    }
    .receipt-box::before { left: -6px; }
    .receipt-box::after { right: -6px; }

    /* Decoy Card Visual Demotion */
    .opacity-card {
      opacity: 0.75;
      border: 1px dashed rgba(0, 0, 0, 0.2);
      filter: grayscale(20%);
    }
    body.dark-mode .opacity-card {
      border-color: rgba(255,255,255,0.2);
    }
    .opacity-card:hover {
      opacity: 1;
      filter: grayscale(0%);
    }



    .problem-card,
    .feature-card,
    .tool-card,
    .stat-card,
    .language-item,
    .price-card,
    .text-testi-card,
    .tech-card {
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.3s ease;
    }

    .problem-card:hover,
    .feature-card:hover,
    .tool-card:hover,
    .stat-card:hover,
    .price-card:hover,
    .tech-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
      border-color: var(--brand-main);
    }

    section {
      padding: 80px 0;
    }

    h2 {
      font-size: 2.2rem;
      font-weight: 800;
      margin-bottom: 16px;
      text-align: center;
      letter-spacing: -0.02em;
    }

    .problem-card,
    .tech-card {
      padding: 32px;
    }

    .problem-card h3 {
      margin: 0 0 12px;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--danger);
    }

    body.dark-mode .problem-card h3 {
      color: #fca5a5;
    }

    .problem-card p,
    .feature-card p,
    .tool-card p,
    .tech-card p {
      margin: 0;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.6;
    }

    .feature-card {
      padding: 32px;
      text-align: left;
    }

    .feature-card h4 {
      margin: 0 0 10px;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brand-accent);
    }

    .icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 18px;
      margin-bottom: 20px;
      font-size: 30px;
      background: var(--bg-light);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    }

    .problem-card .icon {
      background: rgba(239, 68, 68, 0.1);
      color: var(--danger);
    }

    body.dark-mode .problem-card .icon {
      background: rgba(248, 113, 113, 0.15);
    }

    .feature-card .icon {
      background: linear-gradient(135deg, rgba(91, 57, 119, 0.1), rgba(208, 166, 74, 0.1));
      border: 1px solid rgba(91, 57, 119, 0.2);
    }

    .comparison-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      border-radius: var(--radius);
      overflow: hidden;
      margin-top: 30px;
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--card-border);
    }

    .comparison-table th {
      background: var(--brand-main);
      color: #fff;
      padding: 24px;
      text-align: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .comparison-table th:first-child {
      text-align: left;
      border-top-left-radius: var(--radius);
    }

    .comparison-table th:last-child {
      background: var(--brand-accent);
      color: #000;
      border-top-right-radius: var(--radius);
    }

    .comparison-table td {
      padding: 20px;
      border-bottom: 1px solid var(--border);
      text-align: center;
      font-size: 1rem;
      color: var(--text-muted);
    }

    .comparison-table tr:last-child td {
      border-bottom: none;
    }

    .comparison-table td:first-child {
      text-align: left;
      font-weight: 600;
      color: var(--text-light);
    }

    .comparison-table td:last-child {
      font-weight: 700;
      color: var(--text-light);
      background: rgba(208, 166, 74, 0.05);
    }

    .table-container {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      margin-top: 20px;
      border-radius: var(--radius);
    }

    /* MOBILE OPTIMIZATION FOR TABLE (NEW) */
    @media (max-width: 768px) {
      .comparison-table thead {
        display: none;
      }

      .comparison-table,
      .comparison-table tbody,
      .comparison-table tr,
      .comparison-table td {
        display: block;
        width: 100%;
      }

      .comparison-table tr {
        margin-bottom: 24px;
        background: var(--card-bg);
        border-radius: var(--radius);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--border);
        overflow: hidden;
      }

      .comparison-table td {
        text-align: right;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      /* Make the first cell (Feature name) look like a header */
      .comparison-table td:first-child {
        background: var(--bg-dark);
        color: var(--brand-main);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
        text-align: left;
        display: block;
      }

      body.dark-mode .comparison-table td:first-child {
        color: var(--brand-highlight);
      }

      .comparison-table td:last-child {
        background: rgba(208, 166, 74, 0.15);
        color: var(--brand-main);
        border-bottom: none;
      }

      body.dark-mode .comparison-table td:last-child {
        color: var(--text-light);
        background: rgba(255, 159, 26, 0.15);
      }

      .comparison-table td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--text-muted);
        text-align: left;
        margin-right: 10px;
      }
    }

    .global-stats {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      justify-content: center;
    }

    .stat-card {
      padding: 30px;
      text-align: center;
      flex: 1 1 200px;
      max-width: 300px;
    }

    .stat-number {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--brand-accent);
      margin: 0;
      line-height: 1;
      letter-spacing: -1px;
    }

    .stat-label {
      margin-top: 10px;
      font-size: 1rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .language-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 16px;
    }

    .language-item {
      padding: 20px 10px;
      text-align: center;
    }

    .language-item .flag {
      font-size: 2.5rem;
      display: block;
      margin-bottom: 10px;
    }

    .language-item .language-name {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--text-light);
    }

    @keyframes floatLang {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-6px);
      }
    }

    .language-grid .language-item {
      animation: floatLang 5s ease-in-out infinite;
    }

    .testimonials {
      text-align: center;
      padding: 100px 0;
    }

    .testimonial-slider {
      position: relative;
      margin: 0 auto;
      max-width: 700px;
      min-height: 380px;
      border-radius: 30px;
      border: 1px solid var(--card-border);
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      box-shadow: var(--shadow-soft);
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .testimonial-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transform: scale(0.95);
      transition: opacity 0.5s ease, transform 0.5s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .testimonial-slide.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .text-testi-card {
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 40px;
      max-width: 100%;
    }

    .text-testi-card .quote {
      font-size: 1.25rem;
      font-style: italic;
      color: var(--text-light);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .text-testi-card h4 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--brand-main);
      margin-bottom: 4px;
    }

    body.dark-mode .text-testi-card h4 {
      color: var(--brand-accent);
    }

    .testimonial-controls {
      margin-top: 30px;
      display: flex;
      justify-content: center;
      gap: 16px;
      z-index: 2;
      position: relative;
    }

    .testimonial-controls button {
      width: 50px;
      height: 50px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 50%;
      color: var(--text-light);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }

    .testimonial-controls button:hover {
      background: var(--brand-main);
      color: #fff;
      transform: scale(1.1);
    }

    .pricing {
      text-align: center;
    }

    .pricing-subtitle {
      max-width: 600px;
      margin: 0 auto 50px;
      color: var(--text-muted);
      font-size: 1.1rem;
    }

    .price-card {
      padding: 40px 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start; /* Changed from space-between to group elements at top */
      text-align: left;
      height: auto; /* Shrink-to-fit content naturally, removing massive white gaps */
    }

    .price-card h3 {
      margin: 0;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .price-card .price {
      font-size: 3rem;
      font-weight: 800;
      margin: 20px 0;
      color: var(--brand-accent);
      line-height: 1;
    }

    .price-card .old-price {
      text-decoration: line-through;
      font-size: 1.2rem;
      color: var(--text-muted);
      font-weight: 400;
      margin-right: 10px;
    }

    .price-card ul {
      list-style: none;
      padding: 0;
      margin: 20px 0 30px; /* Unified feature list spacing */
    }

    /* Pushes CTA buttons/elements to bottom of stretched cards for clean visual alignment */
    .price-card .btn-free,
    .price-card .btn-secondary,
    .price-card .locked-btn,
    .price-card .fomo-countdown {
      margin-top: auto !important;
    }

    .price-card .fomo-countdown + .btn-primary {
      margin-top: 15px !important;
    }

    /* Locked indicator button styling */
    .price-card .locked-btn {
      width: 100%;
      display: block;
      text-align: center;
      padding: 12px;
      border-radius: 99px;
      font-weight: 600;
      background: rgba(0, 0, 0, 0.05);
      color: var(--text-muted);
      cursor: not-allowed;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    body.dark-mode .price-card .locked-btn {
      background: rgba(255, 255, 255, 0.05);
      color: rgba(255, 255, 255, 0.5);
      border-color: rgba(255, 255, 255, 0.05);
    }

    .price-card li {
      margin-bottom: 14px;
      color: var(--text-muted);
      padding-left: 32px;
      position: relative;
      font-size: 1rem;
    }

    .price-card li::before {
      content: '✔';
      position: absolute;
      left: 0;
      top: 2px;
      color: var(--brand-main);
      font-weight: 800;
      font-size: 1.1rem;
    }

    .price-card.highlight {
      background: var(--card-bg);
      border: 1px solid rgba(91, 57, 119, 0.15);
      transform: none !important;
      z-index: 5;
      box-shadow: var(--shadow-soft);
    }

    body.dark-mode .price-card.highlight {
      background: var(--card-bg);
      border-color: rgba(255, 255, 255, 0.1);
    }

    @media (max-width: 900px) {
      .price-card.highlight {
        transform: none !important;
      }
    }

    .price-card.highlight h3,
    .price-card.highlight .price,
    .price-card.highlight .new-price {
      color: var(--text-light) !important;
    }

    body.dark-mode .price-card.highlight h3,
    body.dark-mode .price-card.highlight .price,
    body.dark-mode .price-card.highlight .new-price {
      color: #ffffff !important;
    }

    .price-card.highlight .old-price {
      color: var(--text-muted) !important;
    }

    .price-card.highlight li {
      color: var(--text-muted) !important;
    }

    body.dark-mode .price-card.highlight li {
      color: rgba(255, 255, 255, 0.7) !important;
    }

    .price-card.highlight li::before {
      color: var(--brand-main) !important;
    }

    body.dark-mode .price-card.highlight li::before {
      color: var(--brand-accent) !important;
    }

    .price-card .badge {
      position: absolute;
      top: -16px;
      right: 50%;
      transform: translateX(50%);
      background: var(--brand-accent);
      color: #000;
      padding: 8px 20px;
      border-radius: 99px;
      font-size: 0.85rem;
      font-weight: 700;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-free {
      background: transparent;
      border: 2px solid var(--brand-main);
      color: var(--brand-main);
      padding: 14px 16px;
      border-radius: 99px;
      font-weight: 700;
      text-align: center;
      width: 100%;
      display: block;
      transition: all 0.3s ease;
    }

    .btn-free:hover {
      background: var(--brand-main);
      color: #fff;
      transform: translateY(-2px);
    }

    body.dark-mode .btn-free {
      border-color: var(--brand-accent);
      color: var(--brand-accent);
    }

    body.dark-mode .btn-free:hover {
      background: var(--brand-accent);
      color: #000;
    }

    /* Centralized pricing button styles, replacing old inline styles */
    .price-card .btn-secondary {
      width: 100%;
      display: block;
      text-align: center;
      padding: 14px;
      border-radius: 99px;
      margin-top: 20px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      color: #fff !important;
      background: var(--brand-main);
      box-shadow: 0 4px 15px rgba(91, 57, 119, 0.2);
      transition: all 0.3s ease;
    }

    .price-card .btn-secondary:hover {
      background: #472d62;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(91, 57, 119, 0.3);
    }

    body.dark-mode .price-card .btn-secondary {
      background: var(--brand-accent);
      color: #000 !important;
      box-shadow: 0 4px 15px rgba(253, 184, 19, 0.2);
    }

    body.dark-mode .price-card .btn-secondary:hover {
      background: #e2a40e;
      box-shadow: 0 6px 20px rgba(253, 184, 19, 0.4);
      transform: translateY(-2px);
    }

    .price-card .btn-primary {
      background: linear-gradient(90deg, #FDB813 0%, #FFAA00 100%);
      color: #000;
      width: 100%;
      display: block;
      text-align: center;
      font-weight: 800;
      border: none;
      box-shadow: 0 4px 15px rgba(253, 184, 19, 0.4);
      padding: 16px;
      border-radius: 99px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .price-card .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 8px 25px rgba(253, 184, 19, 0.6);
      background: linear-gradient(90deg, #FFAA00 0%, #FF8800 100%);
    }

    .btn-discount {
      background: var(--brand-accent);
      color: #000;
      padding: 18px;
      border-radius: 99px;
      font-weight: 800;
      text-align: center;
      width: 100%;
      display: block;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      animation: pulse 2.5s ease-in-out infinite;
      text-transform: uppercase;
      cursor: pointer;
    }

    .btn-discount:hover {
      background: #e0b04c;
      transform: translateY(-3px);
      animation: none;
    }

    .urgency-text {
      color: #ffe4e6;
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 16px;
      text-align: center;
      animation: textPulse 2s infinite;
    }

    /* Pro Card Main Styling - SaaS Corporate AI Upgrade */
    .price-card.pro-card {
      border: 1px solid rgba(253, 184, 19, 0.3) !important;
      background: linear-gradient(135deg, rgba(42, 10, 87, 0.85) 0%, rgba(26, 9, 64, 0.98) 100%) !important;
      color: #fff !important;
      position: relative;
      overflow: visible !important; /* Allow combo-jimat-badge to overflow without clipping */
      box-shadow: 0 20px 50px rgba(253, 184, 19, 0.15) !important;
      transform: scale(1.05);
      z-index: 10;
      border-radius: 24px !important;
      margin-top: 20px;
      margin-bottom: 30px;
      animation: proBorderGlow 4s infinite ease-in-out;
      display: flex;
      flex-direction: column;
    }

    body.dark-mode .price-card.pro-card {
      background: linear-gradient(135deg, rgba(26, 9, 64, 0.9) 0%, rgba(12, 4, 32, 0.98) 100%) !important;
    }

    .price-card.pro-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(253, 184, 19, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(253, 184, 19, 0.03) 1px, transparent 1px);
      background-size: 20px 20px;
      pointer-events: none;
      z-index: 1;
      border-radius: inherit; /* Clip mesh background perfectly without parent overflow: hidden */
    }

    .price-card.pro-card > * {
      position: relative;
      z-index: 2;
    }

    .price-card.pro-card:hover {
      transform: translateY(-8px) scale(1.05) !important;
      box-shadow: 0 30px 60px rgba(253, 184, 19, 0.3) !important;
      border-color: rgba(253, 184, 19, 0.7) !important;
    }

    @media (max-width: 1024px) {
      .price-card.pro-card {
        transform: scale(1) !important;
        margin-top: 0 !important;
      }
      .price-card.pro-card:hover {
        transform: translateY(-8px) scale(1) !important;
      }
    }

    @keyframes proBorderGlow {
      0%, 100% {
        border-color: rgba(253, 184, 19, 0.3);
        box-shadow: 0 20px 50px rgba(253, 184, 19, 0.12);
      }
      50% {
        border-color: rgba(253, 184, 19, 0.6);
        box-shadow: 0 25px 60px rgba(253, 184, 19, 0.25);
      }
    }

    /* Pro Card Fixes for Text Clarity & Icons */
    .pro-card li {
      color: #ffffff !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
      padding-left: 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .pro-card li::before {
      display: none;
    }

    /* --- VIDEO CARD FACADE --- */
    .video-card {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      aspect-ratio: 16 / 9;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
      border: 4px solid var(--card-bg);
      background: #000;
      cursor: pointer;
    }

    .video-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
      opacity: 0.8;
    }

    .video-card:hover .video-thumb {
      transform: scale(1.05);
      opacity: 0.6;
    }

    .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 68px;
      height: 48px;
      background-color: rgba(33, 33, 33, 0.9);
      border-radius: 12px;
      z-index: 5;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .play-btn::before {
      content: '';
      border-style: solid;
      border-width: 10px 0 10px 20px;
      border-color: transparent transparent transparent #fff;
    }

    .video-card:hover .play-btn {
      background-color: #f00;
    }

    .video-card iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* --- SYSTEM GRID VIDEO RESPONSIVE --- */
    .video-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 45px;
    }

    @media (min-width: 576px) {
      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 992px) {
      .video-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .video-grid-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .demo-caption {
      text-align: center;
      margin-top: 14px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-light);
      transition: color 0.3s ease;
    }

    .video-grid-item:hover .demo-caption {
      color: var(--brand-accent);
    }

    /* --- PREMIUM TESTIMONIAL VIDEO CARDS --- */
    .testimonial-video-card {
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid var(--card-border);
      border-radius: 24px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      box-shadow: var(--shadow-soft);
      transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
      position: relative;
      overflow: hidden;
      width: 100%;
      text-align: left;
    }

    .testimonial-video-card:hover {
      transform: translateY(-8px);
      border-color: var(--brand-main);
      box-shadow: 0 20px 40px rgba(91, 57, 119, 0.12);
    }

    body.dark-mode .testimonial-video-card:hover {
      border-color: var(--brand-highlight);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 15px rgba(123, 45, 255, 0.15);
    }

    .testimonial-video-card .video-card {
      margin: 0;
      border: none;
      border-radius: 16px;
      box-shadow: none;
      width: 100%;
    }

    .testimonial-meta {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 4px 6px;
      min-width: 0;
    }

    .avatar-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
      color: #ffffff;
      flex-shrink: 0;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
      letter-spacing: 0.5px;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    /* Gradients for different figures */
    .gradient-menk {
      background: linear-gradient(135deg, #FF9F1A 0%, #FFA500 100%);
    }
    .gradient-muhaya {
      background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    }
    .gradient-farhatul {
      background: linear-gradient(135deg, #EC4899 0%, #8B5CF6 100%);
    }
    .gradient-sabah {
      background: linear-gradient(135deg, #06B6D4 0%, #3B82F6 100%);
    }

    .meta-details {
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .meta-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-light);
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      font-family: var(--font-heading);
      letter-spacing: -0.01em;
    }

    .meta-role {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text-muted);
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .join-today h2 {
      text-align: center;
      margin-bottom: 12px;
    }

    .lead-form-container {
      max-width: 500px;
      margin: 0 auto;
      background: var(--bg-light);
      border-radius: 30px;
      padding: 48px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--border);
    }

    .lead-form-container label {
      display: block;
      margin-bottom: 8px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .lead-form-container input {
      width: 100%;
      padding: 16px 20px;
      border-radius: 12px;
      margin-bottom: 24px;
      background-color: var(--bg-dark);
      border: 2px solid var(--border);
      color: var(--text-light);
      font-size: 1rem;
      transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .lead-form-container input:hover {
      border-color: rgba(91, 57, 119, 0.4);
    }

    body.dark-mode .lead-form-container input:hover {
      border-color: rgba(255, 159, 26, 0.4);
    }

    .lead-form-container input:focus {
      outline: none;
      border-color: var(--brand-main);
      background: var(--bg-light);
      box-shadow: 0 0 16px rgba(91, 57, 119, 0.2), 0 0 0 4px rgba(91, 57, 119, 0.15);
      transform: translateY(-2px);
    }

    body.dark-mode .lead-form-container input:focus {
      border-color: var(--brand-accent);
      background: rgba(30, 41, 59, 0.5);
      box-shadow: 0 0 16px rgba(255, 159, 26, 0.25), 0 0 0 4px rgba(255, 159, 26, 0.15);
    }

    .lead-form-container button {
      width: 100%;
      padding: 18px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand-main) 0%, #4a2b63 100%);
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 10px 25px rgba(91, 57, 119, 0.3);
    }

    .lead-form-container button:hover {
      transform: translateY(-4px) scale(1.02);
      background: linear-gradient(135deg, #7b2dff 0%, var(--brand-main) 100%);
      box-shadow: 0 18px 38px rgba(91, 57, 119, 0.45), 0 0 12px rgba(123, 45, 255, 0.3);
    }

    .lead-form-container button:active {
      transform: translateY(-1px) scale(0.98);
      box-shadow: 0 8px 18px rgba(91, 57, 119, 0.3);
    }

    .faq-section {
      background: var(--bg-dark);
    }

    .faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-list details {
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
      transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    }

    .faq-list details[open] {
      border-color: var(--brand-main);
      box-shadow: 0 8px 20px rgba(91, 57, 119, 0.1);
      background: var(--bg-light);
    }

    body.dark-mode .faq-list details[open] {
      border-color: var(--brand-highlight);
    }

    .faq-list summary {
      padding: 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--text-light);
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
      transition: background-color 0.25s ease, color 0.25s ease;
    }

    .faq-list summary:hover {
      background-color: rgba(91, 57, 119, 0.03);
      color: var(--brand-main);
    }

    body.dark-mode .faq-list summary:hover {
      background-color: rgba(255, 255, 255, 0.02);
      color: var(--brand-accent);
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: '+';
      font-size: 1.5rem;
      color: var(--brand-accent);
      font-weight: 400;
      transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .faq-list details[open] summary::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 24px 24px;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      border-top: 1px solid var(--border);
      margin-top: -10px;
      padding-top: 20px;
      opacity: 0;
    }

    .faq-list details[open] .faq-answer {
      animation: faqSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes faqSlideDown {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    footer {
      background: var(--bg-light);
      border-top: 1px solid var(--border);
      color: var(--text-muted);
      padding: 80px 0 40px;
      font-size: 0.95rem;
    }

    body.dark-mode footer {
      background: #080808;
    }

    footer .cols {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 50px;
    }

    footer h4 {
      margin: 0 0 20px;
      font-size: 1.2rem;
      color: var(--text-light);
      font-weight: 700;
    }

    footer a {
      color: var(--text-muted);
      display: block;
      margin-bottom: 12px;
      transition: color 0.2s;
    }

    footer a:hover {
      color: var(--brand-main);
    }

    .social-links img {
      width: 44px;
      height: 44px;
      transition: transform 0.3s ease;
    }

    .whatsapp-float {
      position: fixed;
      bottom: 110px;
      /* Stack above Chat Widget */
      right: 30px;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
      z-index: 1000;
      transition: transform 0.2s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-5px) scale(1.05);
    }

    .mobile-sticky-cta {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-top: 1px solid var(--border);
      padding: 16px 24px;
      box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
      z-index: 999;
      justify-content: space-between;
      align-items: center;
    }

    body.dark-mode .mobile-sticky-cta {
      background: rgba(5, 5, 5, 0.9);
    }

    .btn-sticky {
      background: var(--brand-accent);
      color: #000;
      padding: 12px 28px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 0.95rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .social-proof-popup {
      position: fixed;
      bottom: 30px;
      left: 30px;
      background: var(--bg-light);
      border: 1px solid var(--border);
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 900;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
      max-width: 300px;
    }

    body.dark-mode .social-proof-popup {
      background: #1a1a1a;
      border-color: rgba(255, 255, 255, 0.1);
    }

    .social-proof-popup.show {
      opacity: 1;
      transform: translateY(0);
    }

    .sp-icon {
      font-size: 1.2rem;
    }

    .sp-text {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.3;
    }

    .sp-text strong {
      font-weight: 700;
      color: var(--brand-main);
    }

    body.dark-mode .sp-text strong {
      color: var(--brand-accent);
    }

    .sp-time {
      font-size: 0.75rem;
      color: var(--text-muted);
      display: block;
    }

    /* Who Is This For Section */
    .who-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .who-card {
      background: var(--card-bg);
      backdrop-filter: var(--glass-blur);
      border: 1px solid var(--card-border);
      border-radius: var(--radius);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease;
      box-shadow: var(--shadow-soft);
    }

    .who-card:hover {
      transform: translateY(-8px);
      border-color: var(--brand-accent);
    }

    .who-card .icon {
      margin: 0 auto 20px;
      background: rgba(91, 57, 119, 0.05);
      color: var(--brand-main);
    }

    body.dark-mode .who-card .icon {
      background: rgba(255, 255, 255, 0.05);
      color: var(--brand-accent);
    }

    .who-card h4 {
      margin: 10px 0;
      font-size: 1.1rem;
      font-weight: 700;
    }

    /* Guarantee Badge */
    .guarantee-badge {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid rgba(16, 185, 129, 0.3);
      padding: 24px;
      border-radius: 16px;
      margin: 60px auto 0; /* Pushed down to give breathing space below pricing-grid */
      max-width: 600px;
      text-align: left;
    }

    body.dark-mode .guarantee-badge {
      background: rgba(16, 185, 129, 0.05);
      border-color: rgba(16, 185, 129, 0.2);
    }

    .guarantee-badge .icon-shield {
      font-size: 2.5rem;
      flex-shrink: 0;
    }

    .guarantee-badge h4 {
      margin: 0 0 4px;
      color: #059669;
      font-size: 1.1rem;
      font-weight: 800;
    }

    body.dark-mode .guarantee-badge h4 {
      color: #34d399;
    }

    .guarantee-badge p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    @media (max-width: 600px) {
      .guarantee-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }
    }

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

      .hero-text {
        margin-right: 0;
        padding: 0 16px;
        flex-basis: 100%;
        min-width: 0;
      }

      .hero-image {
        margin-top: 60px;
        transform: scale(0.9);
        width: 100%;
      }

      .hero-actions {
        justify-content: center;
      }

      .price-card.highlight {
        margin: 20px 0;
      }

      .mobile-sticky-cta {
        display: flex;
      }

      .whatsapp-float {
        bottom: 155px !important;
        right: 15px !important;
        width: 50px !important;
        height: 50px !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3) !important;
      }

      .whatsapp-float img {
        width: 28px !important;
        height: 28px !important;
      }

      .social-proof-popup {
        display: flex !important;
        bottom: 85px !important;
        left: 15px !important;
        right: auto !important;
        max-width: 260px !important;
        padding: 8px 16px !important;
      }

      .social-proof-popup .sp-icon {
        font-size: 1rem !important;
      }

      .social-proof-popup .sp-text {
        font-size: 0.75rem !important;
      }

      /* Chatbase bubble button override for mobile */
      #chatbase-bubble-button,
      iframe#chatbase-bubble-button {
        bottom: 85px !important;
        right: 15px !important;
      }

      footer {
        padding-bottom: 100px;
      }
    }

    /* --- SCROLL EFFECTS ENHANCEMENTS --- */
    /* Parallax for Hero Blob */
    .hero::before {
      will-change: transform;
      transform: translate3d(-50%, calc(var(--scroll-y, 0px) * 0.15px), 0);
      transition: transform 0.1s linear;
    }

    /* Staggered Reveal Animation Base */
    .reveal-stagger-child {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .reveal-stagger-child.active {
      opacity: 1;
      transform: translateY(0);
    }

    @media (prefers-reduced-motion: reduce) {
      .hero::before {
        transform: translateX(-50%) !important;
      }

      .reveal-stagger-child {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
      }
    }
    /* CRO Enhancements */
    @keyframes glow-pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(91, 57, 119, 0.7);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(91, 57, 119, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(91, 57, 119, 0);
      }
    }

    .glow-button {
      animation: glow-pulse 2s infinite !important;
      position: relative;
      z-index: 5;
    }

    .mobile-sticky-cta {
      position: fixed;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
      width: 90%;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(91, 57, 119, 0.2);
      padding: 12px 20px;
      border-radius: 99px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      will-change: transform;
    }

    body.dark-mode .mobile-sticky-cta {
      background: rgba(30, 41, 59, 0.9);
      border-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-sticky-cta.visible {
      transform: translateX(-50%) translateY(0);
    }

    .sticky-text {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.2;
    }

    .sticky-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 400;
    }

    .btn-sticky {
      background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
      color: #000;
      padding: 10px 24px;
      border-radius: 99px;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      box-shadow: 0 4px 12px rgba(91, 57, 119, 0.3);
    }

    @media (min-width: 769px) {
      .mobile-sticky-cta {
        display: none !important;
      }
    }

    /* Exit Intent Popup */
    .exit-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .exit-popup-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .exit-popup-content {
      background: var(--bg-light);
      padding: 40px;
      border-radius: 20px;
      max-width: 500px;
      width: 90%;
      text-align: center;
      position: relative;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      transform: scale(0.9) translateY(15px);
      opacity: 0;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, background-color 0.3s ease;
      will-change: transform, opacity;
    }

    .exit-popup-overlay.active .exit-popup-content {
      transform: scale(1) translateY(0);
      opacity: 1;
    }

    .close-popup {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--text-muted);
      transition: color 0.2s ease, transform 0.2s ease;
    }

    .close-popup:hover {
      color: var(--brand-main);
      transform: scale(1.1) rotate(90deg);
    }

    .exit-popup-content h3 {
      font-size: 1.8rem;
      color: var(--brand-main);
      margin-bottom: 10px;
    }

    .exit-popup-content input {
      width: 100%;
      padding: 14px 18px;
      margin: 12px 0 20px 0;
      background: var(--bg-dark);
      border: 2px solid var(--border);
      border-radius: 12px;
      color: var(--text-light);
      font-size: 0.95rem;
      transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    }

    .exit-popup-content input:hover {
      border-color: rgba(91, 57, 119, 0.4);
    }

    body.dark-mode .exit-popup-content input:hover {
      border-color: rgba(255, 159, 26, 0.4);
    }

    .exit-popup-content input:focus {
      outline: none;
      border-color: var(--brand-main);
      background: var(--bg-light);
      box-shadow: 0 0 12px rgba(91, 57, 119, 0.15), 0 0 0 3px rgba(91, 57, 119, 0.1);
      transform: translateY(-1px);
    }

    body.dark-mode .exit-popup-content input:focus {
      border-color: var(--brand-accent);
      background: rgba(30, 41, 59, 0.5);
      box-shadow: 0 0 12px rgba(255, 159, 26, 0.2), 0 0 0 3px rgba(255, 159, 26, 0.1);
    }

    .exit-popup-content .btn-primary {
      width: 100%;
      padding: 16px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--brand-main) 0%, #4a2b63 100%);
      color: #ffffff;
      font-weight: 700;
      font-size: 1.1rem;
      border: none;
      cursor: pointer;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background 0.3s ease;
      box-shadow: 0 10px 25px rgba(91, 57, 119, 0.3);
      margin-top: 10px;
    }

    .exit-popup-content .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      background: linear-gradient(135deg, #7b2dff 0%, var(--brand-main) 100%);
      box-shadow: 0 15px 30px rgba(91, 57, 119, 0.4);
    }

    .exit-popup-content .btn-primary:active {
      transform: translateY(-1px) scale(0.98);
      box-shadow: 0 6px 15px rgba(91, 57, 119, 0.3);
    }

    /* --- FOMO COUNTDOWN TIMER --- */
    .fomo-countdown {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      margin: 15px 0 25px;
    }

    .fomo-box {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 10px 15px;
      min-width: 65px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .price-card:not(.highlight):not(.pro-card) .fomo-box {
      background: rgba(91, 57, 119, 0.05);
      border-color: rgba(91, 57, 119, 0.1);
    }
    
    .price-card:not(.highlight):not(.pro-card) .fomo-box span {
      color: var(--brand-main);
    }
    .price-card:not(.highlight):not(.pro-card) .fomo-box small {
      color: var(--text-muted);
    }
    .price-card:not(.highlight):not(.pro-card) .fomo-countdown > span {
      color: var(--brand-main);
    }

    .fomo-box span {
      display: block;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1;
      color: #fff;
    }

    .fomo-box small {
      display: block;
      font-size: 0.75rem;
      text-transform: uppercase;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
      margin-top: 4px;
      letter-spacing: 0.5px;
    }

    .combo-fomo .fomo-box span {
      color: var(--brand-accent);
      text-shadow: 0 2px 10px rgba(253, 184, 19, 0.3);
    }

    .fomo-countdown > span {
      font-size: 1.5rem;
      font-weight: 800;
      color: rgba(255, 255, 255, 0.5);
      margin-bottom: 20px;
    }

    /* --- FLOATING SHARE BAR --- */
    .floating-share-bar {
      position: fixed;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--border);
      border-left: none;
      border-top-right-radius: 16px;
      border-bottom-right-radius: 16px;
      padding: 16px 12px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
      box-shadow: 4px 0 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
      will-change: transform;
    }

    body.dark-mode .floating-share-bar {
      background: rgba(18, 18, 18, 0.8);
      box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .share-title {
      font-size: 0.65rem;
      font-weight: 800;
      color: var(--text-muted);
      text-align: center;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      margin-bottom: 8px;
      letter-spacing: 2px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border);
      transform: rotate(180deg);
    }

    .share-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: all 0.2s ease;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .share-btn svg {
      width: 20px;
      height: 20px;
    }

    .share-btn:hover {
      transform: scale(1.1) translateX(5px);
    }

    .wa-share { background: #25D366; }
    .wa-share:hover { box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4); }
    
    .tg-share { background: #0088cc; }
    .tg-share:hover { box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4); }
    
    .fb-share { background: #1877f2; }
    .fb-share:hover { box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4); }

    @media (max-width: 768px) {
      .floating-share-bar {
        display: none !important;
      }
    }

    /* Discount Code Banner Styles */
    .discount-code-banner {
      background: linear-gradient(135deg, rgba(210, 166, 74, 0.1) 0%, rgba(210, 166, 74, 0.2) 100%);
      border: 2px dashed var(--brand-accent);
      border-radius: 16px;
      padding: 15px 25px;
      margin: 0 auto 40px auto;
      max-width: 600px;
      display: flex;
      align-items: center;
      gap: 20px;
      box-shadow: 0 4px 20px rgba(210, 166, 74, 0.15);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .discount-code-banner:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(210, 166, 74, 0.3);
    }

    .dcb-icon {
      font-size: 2.5rem;
      animation: pulse 2s infinite;
    }

    .dcb-content {
      display: flex;
      flex-direction: column;
    }

    .dcb-title {
      font-size: 0.85rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .dcb-code {
      font-size: 2rem;
      font-weight: 800;
      color: var(--brand-accent);
      letter-spacing: 3px;
      background: rgba(210, 166, 74, 0.1);
      padding: 4px 16px;
      border-radius: 8px;
      display: inline-block;
      border: 1px solid rgba(210, 166, 74, 0.3);
    }

    .dcb-code:hover {
      background: rgba(210, 166, 74, 0.2);
    }

    .dcb-desc {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-left: auto;
      max-width: 200px;
      text-align: right;
      line-height: 1.4;
    }

    @media (max-width: 650px) {
      .discount-code-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px;
      }
      .dcb-desc {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        margin-top: 8px;
      }
    }

    /* PREMIUM LOCKED OVERLAY */
    .locked-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay-bg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      z-index: 10;
      transition: background 0.3s ease, backdrop-filter 0.3s ease;
      padding: 20px;
      text-align: center;
    }
    
    .locked-overlay .lock-icon {
      font-size: 2.2rem;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
      animation: lock-pulse 2s infinite ease-in-out;
    }
    
    .locked-overlay .lock-badge {
      font-weight: 700;
      color: #000;
      background: var(--brand-accent);
      padding: 8px 20px;
      border-radius: 99px;
      font-size: 0.85rem;
      box-shadow: 0 4px 15px rgba(255, 159, 26, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    body.dark-mode .locked-overlay .lock-badge {
      color: #ffffff;
      background: var(--brand-main);
      box-shadow: 0 4px 15px rgba(123, 45, 255, 0.3);
    }

    @keyframes lock-pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }

    /* ==========================================================================
       PREMIUM UPGRADE: HERO SECTION STYLING (ACTIVE RECALL SANDBOX & DYNAMIC GLOW)
       ========================================================================== */

    /* 1. Ambient Glow Blobs */
    .hero-glow-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.12;
      pointer-events: none;
      z-index: 1;
      will-change: transform;
    }

    body.dark-mode .hero-glow-blob {
      opacity: 0.22;
    }

    .blob-1 {
      top: -5%;
      left: -10%;
      width: clamp(250px, 40vw, 450px);
      height: clamp(250px, 40vw, 450px);
      background: radial-gradient(circle, var(--brand-highlight) 0%, transparent 80%);
      animation: floatBlob1 18s infinite alternate ease-in-out;
    }

    .blob-2 {
      bottom: -10%;
      right: -10%;
      width: clamp(300px, 50vw, 550px);
      height: clamp(300px, 50vw, 550px);
      background: radial-gradient(circle, var(--brand-accent) 0%, transparent 80%);
      animation: floatBlob2 22s infinite alternate ease-in-out;
    }

    @keyframes floatBlob1 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(40px, 30px) scale(1.1); }
      100% { transform: translate(-20px, 15px) scale(0.95); }
    }

    @keyframes floatBlob2 {
      0% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(-50px, -20px) scale(0.9); }
      100% { transform: translate(30px, 40px) scale(1.1); }
    }

    /* 2. Active Recall Sandbox Card */
    .sandbox-card {
      background: rgba(255, 255, 255, 0.45);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      border: 1px solid rgba(255, 255, 255, 0.5);
      border-radius: var(--radius);
      padding: clamp(16px, 4vw, 24px);
      margin: 28px 0;
      box-shadow: var(--shadow-soft);
      max-width: 580px;
      position: relative;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
      z-index: 10;
    }

    body.dark-mode .sandbox-card {
      background: rgba(42, 10, 87, 0.45);
      border-color: rgba(123, 45, 255, 0.2);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .sandbox-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 45px rgba(91, 57, 119, 0.1);
      border-color: var(--brand-main);
    }

    body.dark-mode .sandbox-card:hover {
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
      border-color: var(--brand-highlight);
    }

    .sandbox-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .sandbox-title {
      font-size: 0.75rem;
      font-weight: 800;
      letter-spacing: 1.5px;
      color: var(--brand-main);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    body.dark-mode .sandbox-title {
      color: var(--brand-highlight);
    }

    .sandbox-badge {
      background: linear-gradient(135deg, var(--brand-accent) 0%, #FFB84D 100%);
      color: #000;
      font-size: 0.65rem;
      font-weight: 800;
      padding: 4px 10px;
      border-radius: 99px;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(255, 159, 26, 0.25);
    }

    .sandbox-body {
      text-align: center;
      padding: 8px 0 16px;
    }

    .sandbox-word {
      font-family: 'Amiri', 'Poppins', serif;
      font-size: clamp(2.2rem, 6vw, 3.2rem);
      font-weight: 700;
      color: var(--text-light);
      margin: 8px 0;
      direction: rtl;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .sandbox-question {
      font-size: 0.95rem;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 18px;
    }

    .sandbox-options {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .sandbox-opt {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(42, 10, 87, 0.08);
      border-radius: 14px;
      padding: 14px 20px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-light);
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
      text-align: center;
      outline: none;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    }

    body.dark-mode .sandbox-opt {
      background: rgba(26, 9, 64, 0.6);
      border-color: rgba(123, 45, 255, 0.15);
      box-shadow: none;
    }

    .sandbox-opt:hover {
      transform: translateY(-2px);
      background: var(--brand-main);
      color: #ffffff;
      border-color: var(--brand-main);
      box-shadow: 0 6px 15px rgba(42, 10, 87, 0.15);
    }

    body.dark-mode .sandbox-opt:hover {
      background: var(--brand-highlight);
      color: #1A0940;
      border-color: var(--brand-highlight);
      box-shadow: 0 6px 15px rgba(123, 45, 255, 0.25);
    }

    .sandbox-opt.correct {
      background: #10b981 !important;
      color: #ffffff !important;
      border-color: #10b981 !important;
      box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
    }

    .sandbox-opt.wrong {
      background: #ef4444 !important;
      color: #ffffff !important;
      border-color: #ef4444 !important;
      box-shadow: 0 6px 18px rgba(239, 68, 68, 0.3) !important;
    }

    .sandbox-feedback {
      margin-top: 18px;
      padding: 14px 18px;
      border-radius: 14px;
      font-size: 0.9rem;
      line-height: 1.5;
      text-align: center;
      border: 1px solid transparent;
      animation: slideUp 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .sandbox-feedback.success {
      background: rgba(16, 185, 129, 0.08);
      color: #065f46;
      border-color: rgba(16, 185, 129, 0.2);
    }

    body.dark-mode .sandbox-feedback.success {
      background: rgba(16, 185, 129, 0.12);
      color: #a7f3d0;
      border-color: rgba(16, 185, 129, 0.25);
    }

    .sandbox-feedback.error {
      background: rgba(239, 68, 68, 0.08);
      color: #991b1b;
      border-color: rgba(239, 68, 68, 0.2);
    }

    body.dark-mode .sandbox-feedback.error {
      background: rgba(239, 68, 68, 0.12);
      color: #fca5a5;
      border-color: rgba(239, 68, 68, 0.25);
    }

    .sandbox-progress {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 18px;
    }

    .sandbox-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(42, 10, 87, 0.1);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    body.dark-mode .sandbox-dot {
      background: rgba(255, 255, 255, 0.15);
    }

    .sandbox-dot.active {
      background: var(--brand-main);
      width: 22px;
      border-radius: 10px;
    }

    body.dark-mode .sandbox-dot.active {
      background: var(--brand-accent);
    }

    .sandbox-dot.completed {
      background: #10b981;
    }

    /* 3. Avatar Stack & Dynamic Trust Counter */
    .hero-trust-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
      animation: slideUp 0.6s ease-out 0.4s both;
    }

    .avatar-stack {
      display: flex;
      align-items: center;
    }

    .avatar-img {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2.5px solid var(--bg-dark);
      object-fit: cover;
      margin-left: -12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.25s ease;
    }

    .avatar-img:first-child {
      margin-left: 0;
    }

    .avatar-img:hover {
      transform: translateY(-4px) scale(1.1);
      z-index: 10;
    }

    .avatar-more {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-main) 0%, #4a2b63 100%);
      color: #ffffff;
      border: 2.5px solid var(--bg-dark);
      font-size: 0.75rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: -12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    body.dark-mode .avatar-more {
      background: linear-gradient(135deg, var(--brand-accent) 0%, #FFB84D 100%);
      color: #000000;
    }

    .trust-text {
      display: flex;
      flex-direction: column;
    }

    .trust-rating {
      font-size: 0.9rem;
      font-weight: 700;
      color: #FDB813;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .rating-num {
      color: var(--text-light);
      font-weight: 800;
      font-size: 0.85rem;
      background: rgba(42, 10, 87, 0.05);
      padding: 1px 6px;
      border-radius: 4px;
    }

    body.dark-mode .rating-num {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff;
    }

    .trust-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 2px;
    }

    /* 4. Live counter indicator */
    .live-counter-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, 0.06);
      border: 1px solid rgba(16, 185, 129, 0.15);
      padding: 8px 16px;
      border-radius: 99px;
      font-size: 0.85rem;
      color: #065f46;
      margin-top: 14px;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.03);
      animation: slideUp 0.6s ease-out 0.5s both;
    }

    body.dark-mode .live-counter-badge {
      background: rgba(16, 185, 129, 0.1);
      border-color: rgba(16, 185, 129, 0.2);
      color: #a7f3d0;
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background-color: #10b981;
      border-radius: 50%;
      position: relative;
      display: inline-block;
    }

    .live-dot::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: #10b981;
      border-radius: 50%;
      animation: pulseGreen 1.8s infinite ease-in-out;
    }

    @keyframes pulseGreen {
      0% { transform: scale(1); opacity: 0.8; }
      100% { transform: scale(2.6); opacity: 0; }
    }

    .live-text {
      font-weight: 500;
    }

    .live-text strong {
      font-weight: 800;
      color: #059669;
    }

    body.dark-mode .live-text strong {
      color: #34d399;
    }

    /* 5. Shimmer Sweep Mockup Effect */
    .device-mock::before {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 50%;
      height: 100%;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0) 100%
      );
      transform: skewX(-25deg);
      z-index: 15;
      animation: shimmerSweep 7s infinite ease-in-out;
      pointer-events: none;
    }

    @keyframes shimmerSweep {
      0% { left: -150%; }
      30% { left: 150%; }
      100% { left: 150%; }
    }

    /* Final Screen Sandbox */
    .sandbox-final-card {
      text-align: center;
      animation: scaleIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
      padding: 12px 6px;
    }

    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    .sandbox-final-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--brand-accent);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .sandbox-final-desc {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .sandbox-final-btn {
      display: inline-block;
      width: 100%;
      background: linear-gradient(135deg, var(--brand-accent) 0%, #FFB84D 100%);
      color: #000000 !important;
      padding: 14px 24px;
      border-radius: 14px;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(255, 159, 26, 0.3);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      border: none;
      cursor: pointer;
    }

    .sandbox-final-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(255, 159, 26, 0.45);
    }

    /* ==========================================================================
       PREMIUM UPGRADE: DYNAMIC FOMO COUNTDOWN DIGITAL PLATES & SAAS PRICES
       ========================================================================== */
    .fomo-countdown.combo-fomo {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      margin: 22px auto 14px;
      background: rgba(0, 0, 0, 0.25);
      padding: 10px 18px;
      border-radius: 14px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      width: fit-content;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .combo-fomo .fomo-box {
      background: rgba(0, 0, 0, 0.45);
      border-radius: 8px;
      padding: 8px 12px;
      min-width: 46px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.05);
      box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    }

    .combo-fomo .fomo-box span {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--brand-accent) !important;
      text-shadow: 0 0 12px rgba(255, 159, 26, 0.65);
      display: block;
      line-height: 1;
    }

    .combo-fomo .fomo-box small {
      font-size: 0.6rem;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 700;
      display: block;
      margin-top: 4px;
      letter-spacing: 0.5px;
    }

    .combo-fomo span {
      color: rgba(255, 255, 255, 0.4);
      font-weight: 800;
      font-size: 1.2rem;
    }
    /* Premium Alignments for all price-cards - SaaS Corporate */
    .pricing-grid {
      display: grid;
      gap: 32px;
      align-items: stretch; /* Cards stretch to equal height for aligned SaaS layout */
    }

    .price-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
    }

    .price-card ul.clean-list {
      flex-grow: 1; /* Feature list grows to push CTA elements to bottom */
      margin-bottom: 24px;
    }

    .price-card ul.clean-list li {
      margin-bottom: 16px; /* Spaced out beautifully */
    }

    .price-card-desc {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.5;
      margin-top: 10px;
      margin-bottom: 24px;
      min-height: 48px; /* Perfectly aligns price block on desktop */
    }

    @media (max-width: 991px) {
      .price-card-desc {
        min-height: auto; /* Collapse on mobile/tablet */
      }
    }

    /* --- FLOATING VIDEO TESTIMONIAL BUBBLE WIDGET --- */
    .video-bubble {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 180px;
      height: 110px;
      border-radius: 16px;
      background-image: url('https://img.youtube.com/vi/S5_CN5wB90E/hqdefault.jpg');
      background-size: cover;
      background-position: center;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
      z-index: 1010;
      cursor: pointer;
      opacity: 0;
      transform: translateX(-150%) scale(0.9);
      transition: opacity 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                  transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                  box-shadow 0.3s ease;
      overflow: hidden;
      will-change: transform, opacity;
    }

    .video-bubble.show {
      opacity: 1;
      transform: translateX(0) scale(1);
    }

    .video-bubble:hover {
      transform: translateY(-5px) scale(1.03);
      box-shadow: 0 20px 45px rgba(253, 184, 19, 0.25), 0 0 0 2px var(--brand-accent);
    }

    .video-bubble-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.3) 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
      box-sizing: border-box;
    }

    .video-bubble-close {
      position: absolute;
      top: 6px;
      right: 6px;
      width: 20px;
      height: 20px;
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #fff;
      border-radius: 50%;
      font-size: 14px;
      line-height: 18px;
      text-align: center;
      cursor: pointer;
      z-index: 1012;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
    }

    .video-bubble-close:hover {
      background: #ef4444;
      transform: scale(1.1);
    }

    .video-bubble-play {
      width: 32px;
      height: 32px;
      background: #FDB813;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
      box-shadow: 0 4px 15px rgba(253, 184, 19, 0.5);
      position: relative;
      transition: transform 0.3s;
    }

    .video-bubble:hover .video-bubble-play {
      transform: scale(1.15);
    }

    .video-bubble-play::before {
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 0 6px 10px;
      border-color: transparent transparent transparent #000;
      margin-left: 2px;
    }

    /* Pulsing Ripple Effect on Play Button */
    @keyframes playPulse {
      0% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.6);
      }
      70% {
        box-shadow: 0 0 0 10px rgba(253, 184, 19, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0);
      }
    }

    .video-bubble-play {
      animation: playPulse 2s infinite;
    }

    .video-bubble-title {
      font-size: 0.72rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      text-align: center;
      width: 100%;
    }

    /* --- PREMIUM LIGHTBOX MODAL --- */
    .video-lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 5, 20, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }

    .video-lightbox.show {
      opacity: 1;
      pointer-events: auto;
    }

    .video-lightbox-content {
      width: 90%;
      max-width: 800px;
      background: rgba(20, 15, 35, 0.95);
      border: 1px solid rgba(253, 184, 19, 0.2);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(91, 57, 119, 0.15);
      border-radius: 24px;
      padding: 24px;
      box-sizing: border-box;
      position: relative;
      transform: scale(0.9);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    }

    .video-lightbox.show .video-lightbox-content {
      transform: scale(1);
    }

    .video-lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      background: transparent;
      border: none;
      color: #fff;
      font-size: 36px;
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s, transform 0.2s;
    }

    .video-lightbox-close:hover {
      color: var(--brand-accent);
      transform: rotate(90deg);
    }

    .video-iframe-container {
      position: relative;
      width: 100%;
      padding-top: 56.25%; /* 16:9 Aspect Ratio */
      border-radius: 16px;
      overflow: hidden;
      background: #000;
      box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
    }

    .video-iframe-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-lightbox-caption {
      margin-top: 20px;
      text-align: left;
    }

    .video-lightbox-caption h4 {
      margin: 0;
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
    }

    .video-lightbox-caption p {
      margin: 8px 0 0;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 768px) {
      .video-bubble {
        bottom: 85px;
        left: 15px;
        width: 150px;
        height: 95px;
      }
      
      .video-lightbox-content {
        padding: 16px;
        border-radius: 16px;
      }
      
      .video-lightbox-close {
        top: -35px;
        right: 0;
        font-size: 30px;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .video-lightbox-caption {
        margin-top: 16px;
      }
      
      .video-lightbox-caption h4 {
        font-size: 1.1rem;
      }
      
      .video-lightbox-caption p {
        font-size: 0.85rem;
      }
    }

