@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;700;900&display=swap');

/* ===== Base reset =====
   Every section below uses a full-bleed 100vw trick (width:100vw; left:50%;
   translateX(-50%)) to break out of any container. overflow-x:hidden here
   stops that from creating a horizontal scrollbar. */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: #05010f;
}

/* ===== Navigation ===== */
    /* 1. BASE STRUCTURE */
    .lusa-navbar-premium { 
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 9999;
      background: rgba(8, 1, 26, 0.85); 
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-family: 'Inter', sans-serif;
    }

    .lusa-nav-container {
      max-width: 1400px;
      margin: auto;
      padding: 16px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative; /* Needed for centering the links */
    }

    /* 2. LOGO */
    .lusa-logo {
      font-size: 1.8rem;
      font-weight: 900;
      color: #ffffff;
      text-decoration: none;
      letter-spacing: -0.03em;
      z-index: 100;
    }

    .lusa-logo span {
      color: #A855F7; 
    }

    /* 3. MENU WRAPPER */
    .lusa-nav-right {
      display: flex;
      align-items: center;
    }

    /* 4. LINKS (Perfectly Centered on Desktop) */
    .lusa-nav-links {
      display: flex;
      gap: 35px;
      list-style: none;
      margin: 0;
      padding: 0;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    .lusa-nav-links li a {
      color: #cbd5e1;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      transition: color 0.3s ease;
      position: relative;
    }

    .lusa-nav-links li a:hover { color: #ffffff; }

    .lusa-nav-links li a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0%;
      height: 2px;
      background: #A855F7;
      transition: width 0.3s ease;
    }

    .lusa-nav-links li a:hover::after { width: 100%; }

    /* 5. CLEAN CTA BUTTON */
    .lusa-nav-cta {
      background: #7c3aed; 
      color: #ffffff;
      padding: 12px 32px; 
      border-radius: 10px;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
      display: inline-block;
      text-align: center;
      z-index: 100;
    }

    .lusa-nav-cta:hover {
      background: #8b5cf6;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
    }

    /* 6. MOBILE ICON (Hidden on Desktop) */
    .lusa-menu-icon {
      display: none;
      background: none;
      border: none;
      color: #fff;
      cursor: pointer;
      z-index: 100;
    }

    /* 7. RESPONSIVENESS */
    @media(max-width: 900px){
      .lusa-nav-container { padding: 12px 5%; }
      .lusa-logo { font-size: 1.5rem; }
      
      .lusa-menu-icon { display: block; }
      
      /* Hide the whole right section (links + button) on mobile by default */
      .lusa-nav-right {
        display: none; 
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 1, 26, 0.98); 
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        padding: 20px 5% 30px;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      }

      /* Show menu when icon is clicked */
      .lusa-nav-right.active { display: flex; }

      .lusa-nav-links {
        position: relative; /* Reset desktop centering */
        left: 0;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
      }

      .lusa-nav-cta {
        width: 100%;
        padding: 14px 0;
        font-size: 1.1rem;
      }
      
      /* 8. HERO OVERLAP FIX FOR MOBILE */
      .lusa-hero-content {
        padding-top: 90px; /* Pushes the hero text down so the menu doesn't cover it */
      }
    }
  

/* ===== Hero ===== */
    .lusa-hero-simple-premium {
      width: 100vw;
      position: relative; 
      left: 50%;
      transform: translateX(-50%);
      overflow: hidden;
      min-height: 850px;
      display: flex;
      align-items: center;
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(115deg, #070114 30%, rgba(7, 1, 20, 0.85) 60%, transparent 100%), 
                  url('../images/hero-bg.webp');
      background-size: cover;
      background-position: center right;
    }

    .lusa-hero-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 5%;
      width: 100%;
      z-index: 10;
    }

    .lusa-hero-content { max-width: 800px; padding-top: 70px; }

    /* 1. TOP LABEL */
    .lusa-simple-tag {
      display: inline-block;
      background: rgba(168, 85, 247, 0.2);
      border: 1px solid #A855F7;
      color: #d8b4fe;
      padding: 6px 15px;
      border-radius: 5px;
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 25px;
      letter-spacing: 1px;
    }

    /* 2. SIMPLE HEADLINE */
    .lusa-hero-content h1 {
      font-size: clamp(2.4rem, 6vw, 4.5rem); 
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -0.04em;
    }

    .lusa-hero-content h1 span { color: #A855F7; }

    .lusa-hero-content p {
      font-size: 1.4rem;
      color: #cbd5e1;
      line-height: 1.5;
      margin-bottom: 45px;
      max-width: 650px;
    }

    /* 3. ICON GRID (Simple Words) */
    .lusa-simple-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-bottom: 55px;
    }

    .lusa-simple-box {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .lusa-simple-icon {
      width: 54px;
      height: 54px;
      background: #1e1135;
      border: 1px solid rgba(168, 85, 247, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #A855F7;
      flex-shrink: 0;
    }

    .lusa-simple-box b { font-size: 1.2rem; display: block; color: #fff; margin-bottom: 2px; }
    .lusa-simple-box span { font-size: 0.95rem; color: #94a3b8; font-weight: 500; }

    /* 4. LARGE CLICKABLE BUTTON */
    .lusa-btn-big {
      padding: 24px 50px;
      background: #7c3aed;
      color: #fff;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 900;
      font-size: 1.2rem;
      display: inline-flex;
      align-items: center;
      gap: 15px;
      transition: 0.3s;
      box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
      text-transform: uppercase;
    }

    .lusa-btn-big:hover {
      background: #8b5cf6;
      transform: translateY(-4px);
      box-shadow: 0 20px 45px rgba(124, 58, 237, 0.5);
    }

    @media (max-width: 900px) {
      .lusa-hero-simple-premium { background-position: center; text-align: center; }
      .lusa-hero-content { margin: 0 auto; }
      .lusa-simple-grid { grid-template-columns: 1fr; }
      .lusa-simple-box { text-align: left; }
      .lusa-btn-big { width: 100%; justify-content: center; }
    }
  

/* ===== Content showcase (video) ===== */
    .lusa-video-section {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #05010f;
      padding: 120px 0;
      font-family: 'Outfit', sans-serif;
      color: #fff;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-video-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
    }

    /* 3D VIDEO PLAYER CASE */
    .lusa-video-wrapper {
      position: relative;
      border-radius: 30px;
      padding: 10px;
      background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(56, 189, 248, 0.1));
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .lusa-video-wrapper video {
      width: 100%;
      border-radius: 22px;
      display: block;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    }

    /* CONTENT DETAILS */
    .lusa-video-text h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 25px;
      letter-spacing: -1px;
    }

    .lusa-video-text h2 span { color: #A855F7; }

    .lusa-video-text p {
      font-size: 1.15rem;
      color: #94a3b8;
      line-height: 1.6;
      margin-bottom: 40px;
    }

    .lusa-category-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .lusa-cat-item {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, 0.03);
      padding: 15px;
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: 0.3s;
    }

    .lusa-cat-item:hover {
      background: rgba(168, 85, 247, 0.1);
      border-color: #A855F7;
      transform: translateX(5px);
    }

    .lusa-cat-item svg {
      color: #A855F7;
      flex-shrink: 0;
    }

    .lusa-cat-item b {
      font-size: 1rem;
      font-weight: 700;
    }

    @media (max-width: 1000px) {
      .lusa-video-container { grid-template-columns: 1fr; text-align: center; }
      .lusa-video-text { order: -1; }
      .lusa-cat-item { text-align: left; }
    }
  

/* ===== Everything you need to start ===== */
    .lusa-ultimate-req {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #05010F; /* Updated Background Color */
      padding: 100px 0; 
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      text-align: center;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      box-sizing: border-box;
    }

    .lusa-blueprint-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
      box-sizing: border-box;
    }

    .lusa-ultimate-req h2 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      margin-bottom: 12px;
      letter-spacing: -0.05em;
    }

    .lusa-ultimate-req h2 span { color: #A855F7; }

    .lusa-ultimate-req p.subtitle {
      font-size: 1.15rem;
      color: #94a3b8;
      margin-bottom: 70px;
      font-weight: 500;
    }

    /* THE VISUAL FLOW */
    .lusa-flow-grid {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 70px;
      position: relative;
    }

    .lusa-flow-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .lusa-icon-circle {
      width: 85px;
      height: 85px;
      background: rgba(168, 85, 247, 0.1); /* Increased opacity for better contrast */
      border: 1px solid rgba(168, 85, 247, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #A855F7;
      margin-bottom: 20px;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .lusa-flow-item:hover .lusa-icon-circle {
      border-color: #A855F7;
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
    }

    .lusa-flow-item b {
      font-size: 1.35rem;
      font-weight: 800;
      margin-bottom: 8px;
      display: block;
      color: #fff;
    }

    .lusa-flow-item span {
      font-size: 1rem;
      color: #94a3b8;
      line-height: 1.5;
    }

    /* CONNECTOR LINE */
    .lusa-flow-grid::after {
      content: "";
      position: absolute;
      top: 42px;
      left: 15%;
      width: 70%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
      z-index: 1;
    }

    /* SUPPORT BOX */
    .lusa-support-box {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(168, 85, 247, 0.25);
      padding: 35px 45px;
      border-radius: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 950px;
      margin: 0 auto;
      text-align: left;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .lusa-support-text h4 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 8px;
      color: #fff;
    }

    .lusa-support-text p {
      color: #94a3b8;
      font-size: 1.05rem;
      line-height: 1.5;
      margin: 0;
    }

    .lusa-support-text span { color: #25D366; font-weight: 800; }

    /* WHATSAPP BUTTON */
    .lusa-wa-link {
      text-decoration: none;
      display: flex;
      flex-shrink: 0;
    }

    .lusa-wa-pulse {
      width: 65px;
      height: 65px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
      animation: pulse-wa 2s infinite;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .lusa-wa-pulse:hover {
      transform: scale(1.1);
      background: #1eb954;
    }

    @keyframes pulse-wa {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
      70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* RESPONSIVE LAYOUTS */
    @media (max-width: 992px) {
      .lusa-support-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 40px 30px;
      }
      .lusa-flow-item b { font-size: 1.2rem; }
      .lusa-flow-item span { font-size: 0.9rem; }
    }

    @media (max-width: 650px) {
      .lusa-ultimate-req { padding: 70px 0; }
      .lusa-flow-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        margin-bottom: 60px;
      }
      .lusa-flow-grid::after {
        top: 10%;
        left: 50%;
        width: 1px;
        height: 80%;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.3), transparent);
      }
    }

    @media (max-width: 480px) {
      .lusa-icon-circle { width: 75px; height: 75px; }
      .lusa-flow-item b { font-size: 1.25rem; }
      .lusa-support-box { padding: 30px 20px; }
      .lusa-support-text h4 { font-size: 1.35rem; }
      .lusa-support-text p { font-size: 0.95rem; }
    }
  

/* ===== Pricing plans ===== */
    .lusa-pricing-tier {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #060112; /* Deep Premium Purple */
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      padding: 120px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-pricing-container {
      max-width: 1450px;
      margin: 0 auto;
      padding: 0 4%;
    }

    /* HEADER */
    .lusa-pricing-header {
      text-align: center;
      margin-bottom: 80px;
    }

    .lusa-pricing-header h2 {
      font-size: clamp(2.4rem, 5vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -0.05em;
      margin-bottom: 20px;
      line-height: 1.1;
    }

    .lusa-pricing-header h2 span { color: #A855F7; }

    .lusa-pricing-header p {
      font-size: 1.25rem;
      color: #94a3b8;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* 4-COLUMN GRID */
    .lusa-pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch; 
    }

    /* PLAN CARDS */
    .lusa-plan-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 24px;
      padding: 50px 20px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    }

    .lusa-plan-card:hover {
      border-color: #A855F7;
      transform: translateY(-10px);
      background: rgba(168, 85, 247, 0.05);
    }

    .lusa-plan-card.lusa-popular {
      border: 2px solid #A855F7;
      background: rgba(168, 85, 247, 0.08);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    }

    .lusa-popular-badge {
      position: absolute;
      top: -16px;
      left: 50%;
      transform: translateX(-50%);
      background: #A855F7;
      color: #fff;
      padding: 6px 20px;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    /* PRICING STYLE */
    .lusa-plan-name {
      font-size: 0.95rem;
      font-weight: 800;
      color: #94a3b8;
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    /* PRICING LAYOUT */
    .lusa-plan-price {
      display: flex;
      align-items: baseline; 
      justify-content: flex-start;
      margin-bottom: 5px;
      gap: 4px;
    }

    .lusa-plan-price .amount {
      font-size: 3.5rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }

    .lusa-plan-price .currency {
      font-size: 1.8rem;
      font-weight: 700;
      color: #A855F7;
    }

    .lusa-price-slash {
      font-size: 2rem;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.2);
      margin: 0 4px;
    }

    .lusa-price-usd {
      font-size: 1.6rem; 
      font-weight: 700;
      color: #94a3b8; 
    }

    .lusa-plan-monthly {
      font-size: 0.85rem;
      color: #22c55e;
      font-weight: 700;
      margin-bottom: 25px;
      min-height: 20px;
    }

    .lusa-plan-divider {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.05);
      margin-bottom: 30px;
    }

    /* FEATURES LIST */
    .lusa-plan-features {
      list-style: none;
      padding: 0;
      margin: 0 0 40px 0;
      flex-grow: 1;
    }

    .lusa-plan-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: #cbd5e1;
      margin-bottom: 14px;
      line-height: 1.3;
      text-align: left;
    }

    .lusa-plan-features li b { color: #fff; }
    .lusa-plan-features li svg {
      width: 16px;
      height: 16px;
      color: #22c55e;
      flex-shrink: 0;
    }

    /* BUTTON STYLE */
    .lusa-btn-plan {
      width: 100%;
      padding: 18px 0;
      border-radius: 12px;
      font-weight: 900;
      text-decoration: none;
      font-size: 1rem;
      text-align: center;
      transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
      display: block;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.05);
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .lusa-btn-plan:hover {
      background: #fff;
      color: #000;
      transform: scale(1.02);
    }

    .lusa-popular .lusa-btn-plan {
      background: #7c3aed;
      color: #fff;
      border: none;
      box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    }

    .lusa-popular .lusa-btn-plan:hover { background: #8b5cf6; }

    /* RESPONSIVE */
    @media (max-width: 1150px) {
      .lusa-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    }
    @media (max-width: 650px) {
      .lusa-pricing-grid { grid-template-columns: 1fr; }
      .lusa-plan-price { justify-content: center; }
      .lusa-plan-monthly { text-align: center; }
    }
  

/* ===== Trust bar ===== */
    .lusa-trust-bar {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #05010f;
      padding: 60px 0;
      font-family: 'Outfit', sans-serif;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-trust-container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .lusa-trust-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      padding: 30px 20px;
      border-radius: 20px;
      text-align: center;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      backdrop-filter: blur(10px);
    }

    .lusa-trust-card:hover {
      background: rgba(168, 85, 247, 0.05);
      border-color: #A855F7;
      transform: translateY(-5px);
    }

    .lusa-trust-icon {
      width: 50px;
      height: 50px;
      background: rgba(168, 85, 247, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #A855F7;
      margin-bottom: 20px;
    }

    .lusa-trust-card b {
      display: block;
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .lusa-trust-card span {
      font-size: 0.9rem;
      color: #94a3b8;
      font-weight: 500;
      line-height: 1.4;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .lusa-trust-container { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .lusa-trust-container { grid-template-columns: 1fr; }
      .lusa-trust-bar { padding: 40px 0; }
      .lusa-trust-card { padding: 25px; }
    }
  

/* ===== How it works ===== */
    .lusa-how-it-works-unified {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #08011a; 
      padding: 80px 0; 
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-unified-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .lusa-section-label {
      color: #A855F7;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.8rem;
      margin-bottom: 12px;
      display: block;
    }

    .lusa-how-it-works-unified h2 {
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      margin-bottom: 60px;
      letter-spacing: -0.05em;
    }

    /* THE THREE STEPS GRID */
    .lusa-steps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 25px;
    }

    /* Variant for a 4-card row (Free Trial, Firestick guides) */
    .lusa-steps-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
    @media (max-width: 1024px) {
      .lusa-steps-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .lusa-steps-grid.cols-4 { grid-template-columns: 1fr; }
    }

    /* Narrower cards at 4-up need tighter padding and a reserved heading
       height, so a card whose title wraps to 2 lines doesn't push its body
       text out of alignment with its 1-line neighbors. */
    .lusa-steps-grid.cols-4 .lusa-step-card { padding: 36px 22px; }
    .lusa-steps-grid.cols-4 .lusa-step-card h3 {
      font-size: 1.15rem;
      min-height: 2.5em;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lusa-step-card {
      /* Increased opacity slightly to compensate for removed blur */
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      padding: 45px 30px;
      border-radius: 24px;
      /* Optimized transitions */
      transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
    }

    .lusa-step-card:hover {
      border-color: #A855F7;
      transform: translateY(-8px);
      background: rgba(168, 85, 247, 0.05);
    }

    .lusa-step-number {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #7c3aed, #A855F7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 1.3rem;
      margin: 0 auto 25px;
      box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
    }

    .lusa-step-card h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 15px;
      color: #fff;
    }

    .lusa-step-card p {
      color: #94a3b8;
      font-size: 1.05rem;
      line-height: 1.6;
      font-weight: 500;
    }

    .lusa-highlight-text {
      color: #A855F7;
      font-weight: 700;
    }

    @media (max-width: 1024px) {
      .lusa-steps-grid { grid-template-columns: 1fr; }
      .lusa-how-it-works-unified { padding: 60px 0; }
    }
  

/* ===== Reviews ===== */
    .lusa-reviews {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #05010f;
      padding: 80px 0;
      font-family: 'Outfit', sans-serif;
      color: #fff;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-reviews-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .lusa-reviews-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .lusa-reviews-header h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -1px;
    }

    .lusa-reviews-header span { color: #A855F7; }

    /* REVIEWS GRID */
    .lusa-reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    .lusa-review-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 30px;
      position: relative;
      transition: all 0.3s ease;
    }

    .lusa-review-card:hover {
      border-color: #A855F7;
      background: rgba(168, 85, 247, 0.03);
      transform: translateY(-5px);
    }

    .lusa-stars { color: #facc15; margin-bottom: 15px; font-size: 0.9rem; }

    .lusa-review-text {
      font-size: 1rem;
      line-height: 1.5;
      color: #cbd5e1;
      margin-bottom: 25px;
      font-style: italic;
    }

    .lusa-reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 20px;
    }

    .lusa-reviewer-info b { display: block; font-size: 0.95rem; color: #fff; }
    .lusa-reviewer-info span { font-size: 0.8rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; }

    .lusa-verified {
      margin-left: auto;
      background: rgba(34, 197, 94, 0.1);
      color: #22c55e;
      font-size: 0.7rem;
      font-weight: 900;
      padding: 4px 10px;
      border-radius: 50px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (max-width: 900px) {
      .lusa-reviews-grid { grid-template-columns: 1fr; }
    }
  

/* ===== FAQ ===== */
    .lusa-faq-section {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #08011a; 
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      padding: 100px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-faq-container {
      max-width: 900px; 
      margin: 0 auto;
      padding: 0 5%;
    }

    /* HEADER */
    .lusa-faq-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lusa-faq-header h2 {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      margin-bottom: 15px;
    }

    .lusa-faq-header h2 span { color: #A855F7; }

    .lusa-faq-header p {
      font-size: 1.15rem;
      color: #94a3b8;
      line-height: 1.6;
    }

    /* FAQ ACCORDION */
    .lusa-faq-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .lusa-faq-item {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 16px;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .lusa-faq-item:hover {
      border-color: rgba(168, 85, 247, 0.4);
      background: rgba(168, 85, 247, 0.04);
    }

    .lusa-faq-question {
      padding: 25px 30px;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none; 
    }

    .lusa-faq-question::-webkit-details-marker {
      display: none;
    }

    .lusa-faq-icon {
      width: 24px;
      height: 24px;
      color: #A855F7;
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 15px;
    }

    .lusa-faq-item[open] .lusa-faq-icon {
      transform: rotate(45deg);
    }

    .lusa-faq-item[open] {
      border-color: #A855F7;
      background: rgba(168, 85, 247, 0.05);
    }

    .lusa-faq-item[open] .lusa-faq-question {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-faq-answer {
      padding: 25px 30px;
      color: #cbd5e1;
      font-size: 1.05rem;
      line-height: 1.6;
      margin: 0;
    }

    .lusa-faq-answer b { color: #fff; }

    @media (max-width: 600px) {
      .lusa-faq-question { padding: 20px; font-size: 1.05rem; }
      .lusa-faq-answer { padding: 20px; font-size: 0.95rem; }
    }
  

/* ===== Contact / WhatsApp ===== */
    .lusa-contact-section {
      width: 100vw;
      position: relative;
      left: 50%;
      transform: translateX(-50%);
      background-color: #060112; /* Matches the pricing section */
      color: #ffffff;
      font-family: 'Inter', sans-serif;
      padding: 100px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .lusa-contact-container {
      max-width: 800px; /* Narrowed to perfectly fit the single card */
      margin: 0 auto;
      padding: 0 5%;
    }

    /* HEADER */
    .lusa-contact-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .lusa-contact-header h2 {
      font-size: clamp(2.2rem, 4.5vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      margin-bottom: 15px;
    }

    .lusa-contact-header h2 span { color: #A855F7; }

    .lusa-contact-header p {
      font-size: 1.15rem;
      color: #94a3b8;
      line-height: 1.6;
    }

    /* SINGLE CARD WRAPPER */
    .lusa-contact-single {
      display: flex;
      justify-content: center;
    }

    /* CARD DESIGN */
    .lusa-contact-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(37, 211, 102, 0.3); /* Subtle WA Green Border */
      border-radius: 24px;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      align-items: center; /* Centered inside */
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
      max-width: 600px;
      width: 100%;
    }

    .lusa-contact-card:hover {
      transform: translateY(-5px);
      border-color: #25D366; 
      background: rgba(37, 211, 102, 0.03);
    }

    /* ICON */
    .lusa-contact-icon {
      width: 75px;
      height: 75px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      background: rgba(37, 211, 102, 0.1); 
      color: #25D366;
    }

    /* TEXT */
    .lusa-contact-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 15px;
      color: #fff;
    }

    .lusa-contact-card p {
      color: #94a3b8;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .lusa-response-time {
      display: inline-block;
      font-size: 0.9rem;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 50px;
      margin-bottom: 30px;
      background: rgba(37, 211, 102, 0.15); 
      color: #25D366;
    }

    /* BUTTON */
    .lusa-btn-wa {
      width: 100%;
      padding: 18px 0;
      border-radius: 12px;
      font-weight: 900;
      text-decoration: none;
      font-size: 1.1rem;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      background: #25D366;
      color: #fff;
      box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

    .lusa-btn-wa:hover {
      background: #1eb954;
      transform: translateY(-2px);
      box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
    }

    /* RESPONSIVE */
    @media (max-width: 600px) {
      .lusa-contact-card { padding: 40px 25px; }
      .lusa-contact-card h3 { font-size: 1.5rem; }
    }


/* ===== Footer ===== */
.lusa-footer {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #05010f;
  color: #fff;
  font-family: 'Inter', sans-serif;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lusa-footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.9fr 0.9fr;
  gap: 40px;
}

.lusa-footer-brand .lusa-logo { font-size: 1.6rem; }

.lusa-footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 32ch;
}

.lusa-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin: 0 0 18px;
}

.lusa-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lusa-footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.lusa-footer-col a:hover { color: #A855F7; }

.lusa-footer-bottom {
  margin-top: 55px;
  padding: 25px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lusa-footer-bottom p {
  color: #6b7684;
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 900px) {
  .lusa-footer-container { grid-template-columns: 1fr 1fr; }
  .lusa-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 550px) {
  .lusa-footer-container { grid-template-columns: 1fr; }
  .lusa-footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== Legal pages (Privacy / Terms / Refund) ===== */
.lusa-legal-page {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background-color: #08011a;
  color: #cbd5e1;
  font-family: 'Inter', sans-serif;
  padding: 160px 0 100px;
}

.lusa-legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 5%;
}

.lusa-legal-container h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.lusa-legal-updated {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 50px;
}

.lusa-legal-container h2 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 46px 0 16px;
}

.lusa-legal-container h2:first-of-type { margin-top: 0; }

.lusa-legal-container p,
.lusa-legal-container li {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.lusa-legal-container ul,
.lusa-legal-container ol {
  padding-left: 22px;
}

.lusa-legal-container a { color: #A855F7; }

.lusa-legal-container strong { color: #fff; }

.lusa-placeholder {
  background: rgba(168, 85, 247, 0.12);
  border: 1px dashed #A855F7;
  color: #d8b4fe;
  padding: 1px 6px;
  border-radius: 4px;
  font-style: normal;
}

@media (max-width: 600px) {
  .lusa-legal-page { padding: 130px 0 70px; }
}

/* ===== Guide / landing pages (Trial, Firestick, Sports, Features, International) ===== */
.lusa-guide-container { max-width: 980px; }

.lusa-guide-container .lusa-legal-updated { margin-bottom: 30px; }

.lusa-guide-lead {
  font-size: 1.2rem !important;
  color: #cbd5e1 !important;
  margin-bottom: 40px !important;
}

.lusa-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 40px;
}

@media (max-width: 700px) {
  .lusa-guide-grid { grid-template-columns: 1fr; }
}

.lusa-guide-cta {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 50px 0;
}

.lusa-guide-cta p {
  color: #cbd5e1;
  margin-bottom: 22px !important;
}

.lusa-guide-cta .lusa-btn-big {
  display: inline-flex;
}

.lusa-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 30px 0 40px;
}

@media (max-width: 800px) {
  .lusa-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .lusa-hub-grid { grid-template-columns: 1fr; }
}

.lusa-hub-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  display: block;
  transition: all 0.25s ease;
}

.lusa-hub-card:hover {
  border-color: #A855F7;
  background: rgba(168, 85, 247, 0.06);
  transform: translateY(-4px);
}

.lusa-hub-card b {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.lusa-hub-card span {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.5;
}

.lusa-hub-card.lusa-hub-more {
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lusa-hub-card .lusa-flag { font-size: 2rem; display: block; margin-bottom: 14px; }

/* ===== Guide page hero band ===== */
.lusa-page-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 150px 0 80px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(168, 85, 247, 0.22), transparent 70%),
    #070114;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.lusa-page-hero-container { max-width: 820px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 2; }

.lusa-page-hero .lusa-simple-tag { margin-bottom: 22px; }

.lusa-page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.lusa-page-hero h1 span { color: #A855F7; }

.lusa-page-hero p.lusa-hero-lead {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 620px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

.lusa-page-hero .lusa-btn-big { display: inline-flex; }

/* ===== Content bands (alternating backgrounds like the homepage) ===== */
.lusa-band {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 80px 0;
  font-family: 'Inter', sans-serif;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lusa-band.bg-a { background: #08011a; }
.lusa-band.bg-b { background: #05010f; }
.lusa-band.bg-c { background: #060112; }

.lusa-band-inner { max-width: 1020px; margin: 0 auto; padding: 0 5%; }

.lusa-band-head { max-width: 640px; margin: 0 0 40px; }
.lusa-band-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.lusa-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.lusa-band h2 span { color: #A855F7; }

.lusa-band p.lusa-band-subtitle { color: #94a3b8; font-size: 1.05rem; line-height: 1.6; margin: 0; }

/* Benefit / feature cards */
.lusa-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.lusa-benefit-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.lusa-benefit-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .lusa-benefit-grid, .lusa-benefit-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lusa-benefit-grid, .lusa-benefit-grid.cols-2, .lusa-benefit-grid.cols-4 { grid-template-columns: 1fr; }
}

.lusa-benefit-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 30px 26px;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.lusa-benefit-card:hover {
  border-color: #A855F7;
  background: rgba(168, 85, 247, 0.05);
  transform: translateY(-6px);
}

.lusa-benefit-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A855F7;
  margin-bottom: 18px;
}

.lusa-benefit-card h3 { color: #fff; font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.lusa-benefit-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.55; margin: 0; }

/* Simple checklist (for short lists that don't need full cards) */
.lusa-check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lusa-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: #cbd5e1;
  line-height: 1.5;
}
.lusa-check-list li svg { color: #22c55e; flex-shrink: 0; margin-top: 3px; width: 20px; height: 20px; }
.lusa-check-list li b { color: #fff; }

/* Final CTA band */
.lusa-final-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.lusa-final-cta .lusa-wa-pulse { margin: 0 auto 22px; }

.lusa-final-cta h2 { margin-bottom: 12px; }

.lusa-final-cta p.lusa-band-subtitle { margin: 0 auto 30px; }

.lusa-final-cta .lusa-btn-wa { display: inline-flex; width: auto; padding: 18px 44px; }

/* Trial request form */
.lusa-trial-form {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lusa-form-row { display: flex; flex-direction: column; gap: 8px; }

.lusa-form-row label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lusa-form-row input,
.lusa-form-row select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.lusa-form-row input::placeholder { color: #6b7684; }

.lusa-form-row input:focus,
.lusa-form-row select:focus {
  border-color: #A855F7;
  background: rgba(168, 85, 247, 0.06);
}

.lusa-form-row select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.lusa-form-row select:invalid { color: #6b7684; }
.lusa-form-row select option { background: #0d0620; color: #fff; }

.lusa-trial-form .lusa-btn-big {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.lusa-form-note {
  font-size: 0.85rem;
  color: #6b7684;
  text-align: center;
  margin-top: 16px;
}

/* Inline anchor links inside dark prose */
.lusa-band a:not(.lusa-btn-wa):not(.lusa-btn-big) { color: #A855F7; text-decoration: underline; text-decoration-color: rgba(168, 85, 247, 0.4); }
.lusa-band a:not(.lusa-btn-wa):not(.lusa-btn-big):hover { text-decoration-color: #A855F7; }

