    html {
      scroll-behavior: smooth;
    }

    html,
    body {
      overflow-x: hidden;
      width: 100%;
    }

    /* ... 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: #f5f7fb;
      --bg-light: #ffffff;
      --brand-main: #5b3977;
      --brand-accent: #d0a64a;
      --text-light: #1f2937;
      --text-muted: #4b5563;
      --card-bg: rgba(255, 255, 255, 0.7);
      --card-border: rgba(255, 255, 255, 0.6);
      --border: rgba(0, 0, 0, 0.08);
      --radius: 20px;
      --danger: #ef4444;
      --glass-blur: blur(16px);
      --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);

      /* New font variable */
      --font-main: 'Plus Jakarta Sans', sans-serif;
    }

    body.dark-mode {
      --bg-dark: #050505;
      --bg-light: #121212;
      --brand-main: #9d6cdb;
      --brand-accent: #fbbf24;
      --text-light: #f8fafc;
      --text-muted: #94a3b8;
      --card-bg: rgba(30, 41, 59, 0.4);
      --card-border: rgba(255, 255, 255, 0.08);
      --border: rgba(255, 255, 255, 0.08);
      --danger: #f87171;
      --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    }

    * {
      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 */
    }

    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;
    }

    /* 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 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-muted);
      margin-right: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .lang-switcher span.active {
      color: var(--brand-main);
    }

    body.dark-mode .lang-switcher span.active {
      color: var(--brand-accent);
    }

    .lang-switcher a {
      text-decoration: none;
      opacity: 0.6;
      transition: opacity 0.2s;
    }

    .lang-switcher a:hover {
      opacity: 1;
    }

    .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: transparent;
      border: 1px solid var(--border);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease;
      margin-right: 8px;
    }

    .theme-toggle:hover {
      background: rgba(0, 0, 0, 0.05);
    }

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

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

    /* --- 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;
    }

    @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;
      height: 650px;
      background: #121212;
      border-radius: 45px;
      border: 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;
    }

    .device-mock:hover {
      transform: rotateY(0) rotateX(0) translateY(-10px);
      box-shadow: 0 40px 60px -12px rgba(91, 57, 119, 0.4);
      animation-play-state: paused;
    }

    .device-mock::after {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 25px;
      background: #2d2d2d;
      border-bottom-left-radius: 12px;
      border-bottom-right-radius: 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,
    .pricing-grid,
    .tool-grid,
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    /* BENTO GRID IMPLEMENTATION */
    @media (min-width: 768px) {

      .problem-card:first-child,
      .feature-card:first-child {
        grid-column: span 2;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
      }

      body.dark-mode .problem-card:first-child,
      body.dark-mode .feature-card:first-child {
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), rgba(30, 41, 59, 0.3));
      }

      .problem-card:first-child {
        display: flex;
        align-items: center;
        gap: 24px;
        text-align: left;
      }

      .problem-card:first-child .icon {
        margin-bottom: 0;
        min-width: 64px;
      }
    }

    .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;
      }

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

      .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: space-between;
      text-align: left;
    }

    .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: 24px 0 32px;
    }

    .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: linear-gradient(145deg, #321c46 0%, #5b3977 100%);
      border: 2px solid var(--brand-accent);
      transform: scale(1.05);
      z-index: 5;
      box-shadow: 0 25px 50px -12px rgba(91, 57, 119, 0.5);
    }

    @media (max-width: 900px) {
      .price-card.highlight {
        transform: scale(1);
      }
    }

    .price-card.highlight h3,
    .price-card.highlight .price,
    .price-card.highlight .new-price {
      color: #ffffff;
    }

    .price-card.highlight .old-price {
      color: rgba(255, 255, 255, 0.6);
    }

    .price-card.highlight li {
      color: rgba(255, 255, 255, 0.95);
    }

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

    .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: 16px;
      border-radius: 99px;
      font-weight: 700;
      text-align: center;
      width: 100%;
      display: block;
      transition: all 0.2s;
    }

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

    .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 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;
    }

    .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 transparent;
      color: var(--text-light);
      font-size: 1rem;
      transition: all 0.2s;
    }

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

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

    .lead-form-container button:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(91, 57, 119, 0.4);
    }

    .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: all 0.3s ease;
    }

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

    .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;
    }

    .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;
    }

    .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;
    }

    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: 40px auto 0;
      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: 100px !important;
      }

      .social-proof-popup {
        display: none;
      }

      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);
    }

    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: translateY(20px);
      transition: transform 0.3s ease;
    }

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

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

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

    .exit-popup-content input {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid var(--border);
      border-radius: 8px;
    }
