/* VORIX Global Non-Critical Stylesheet */
    /* ==========================================================================
       5. TRUST STRIP
       ========================================================================== */
    .trust-strip {
      width: 100%;
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
      background: rgba(13, 13, 17, 0.3);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 24px 0;
      z-index: 10;
      transition: var(--transition-smooth);
    }
    
    body.light-theme .trust-strip {
      background: rgba(255, 255, 255, 0.4);
    }
    
    .stats-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      width: 100%;
    }
    
    .stat-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-width: 160px;
      transition: var(--transition-smooth);
    }
    
    .stat-card:hover {
      transform: translateY(-2px);
    }
    
    .stat-value {
      font-family: var(--font-heading);
      font-size: 2.2rem;
      font-weight: 850;
      line-height: 1.1;
      margin-bottom: 6px;
      letter-spacing: -0.02em;
    }
    
    .stat-label {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-secondary);
    }

    /* ==========================================================================
       6. DEVICE EXPERIENCE SECTION
       ========================================================================== */
    :root {
      --device-icon-color: rgba(255, 255, 255, 0.95);
      --device-icon-bg: rgba(255, 255, 255, 0.04);
      --device-icon-border: rgba(255, 255, 255, 0.08);
      --device-icon-glow: rgba(255, 255, 255, 0.05);
    }
    
    body.light-theme {
      --device-icon-color: #5B6CFF;
      --device-icon-bg: rgba(91, 108, 255, 0.08);
      --device-icon-border: rgba(91, 108, 255, 0.14);
      --device-icon-glow: rgba(91, 108, 255, 0.12);
    }
    
    body.light-theme .device-apple {
      --device-icon-color: #1c1c1e;
      --device-icon-bg: rgba(28, 28, 30, 0.06);
      --device-icon-border: rgba(28, 28, 30, 0.12);
      --device-icon-glow: rgba(28, 28, 30, 0.10);
    }
    
    body.light-theme .device-android {
      --device-icon-color: #16a34a;
      --device-icon-bg: rgba(22, 163, 74, 0.08);
      --device-icon-border: rgba(22, 163, 74, 0.14);
      --device-icon-glow: rgba(22, 163, 74, 0.12);
    }
    
    body.light-theme .device-tv,
    body.light-theme .device-apps {
      --device-icon-color: #3b82f6;
      --device-icon-bg: rgba(59, 130, 246, 0.08);
      --device-icon-border: rgba(59, 130, 246, 0.14);
      --device-icon-glow: rgba(59, 130, 246, 0.12);
    }
    
    body.light-theme .device-firestick {
      --device-icon-color: #ea580c;
      --device-icon-bg: rgba(234, 88, 12, 0.08);
      --device-icon-border: rgba(234, 88, 12, 0.14);
      --device-icon-glow: rgba(234, 88, 12, 0.12);
    }
    
    body.light-theme .device-windows {
      --device-icon-color: #475569;
      --device-icon-bg: rgba(71, 85, 105, 0.06);
      --device-icon-border: rgba(71, 85, 105, 0.12);
      --device-icon-glow: rgba(71, 85, 105, 0.10);
    }
    
    body.light-theme .device-icon svg,
    body.light-theme .device-icon-container svg,
    body.light-theme .device-icon i,
    body.light-theme .device-icon-container i {
      opacity: 0.92;
    }
    .devices-section {
      padding: 80px 0;
      position: relative;
    }
    
    .devices-title {
      font-size: 2.2rem;
      text-align: center;
      margin-bottom: 48px;
    }
    
    .device-row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }
    
    .device-capsule {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 20px 16px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: var(--transition-smooth);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .device-sublabel {
      font-size: 0.78rem;
      color: var(--text-secondary);
      margin-top: -2px;
      font-weight: 500;
    }
    
    body.light-theme .device-capsule {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    }
    
    .device-capsule:hover {
      transform: translateY(-8px);
      border-color: var(--color-primary);
      box-shadow: 0 12px 30px var(--color-primary-glow);
      background: radial-gradient(circle at bottom, rgba(59, 130, 246, 0.08) 0%, var(--bg-card) 70%);
    }
    
    body.light-theme .device-capsule:hover {
      background: radial-gradient(circle at bottom, rgba(0, 113, 227, 0.05) 0%, var(--bg-card) 70%);
    }
    
    .device-icon-container,
    .device-icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      background: var(--device-icon-bg);
      border: 1px solid var(--device-icon-border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--device-icon-color);
      transition: transform .35s ease, box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
    }
    
    .device-icon-container svg,
    .device-icon svg {
      width: 32px;
      height: 32px;
      fill: currentColor;
      transition: opacity 0.35s ease;
    }
    
    .device-card:hover .device-icon,
    .device-capsule:hover .device-icon-container {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 
        0 10px 30px var(--device-icon-glow), 
        0 0 20px rgba(91, 108, 255, 0.04);
    }
    
    .device-label {
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--text-primary);
    }

    /* ==========================================================================
       7. PRICING GRID SECTION
       ========================================================================== */
    .pricing-section {
      padding: 100px 0;
      position: relative;
    }
    
    .pricing-header-center {
      text-align: center;
      margin-bottom: 56px;
    }
    
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: stretch;
    }
    
    .pricing-card {
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 18px;
      padding: 40px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                  background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    body.light-theme .pricing-card {
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    }
    
    .pricing-card:hover {
      transform: translateY(-6px);
      border-color: rgba(59, 130, 246, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(59, 130, 246, 0.08);
    }
    
    body.light-theme .pricing-card:hover {
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
    }
    
    /* 6 Months - Most Popular */
    .pricing-card-popular {
      border-color: rgba(139, 92, 246, 0.25);
      box-shadow: 0 10px 35px rgba(139, 92, 246, 0.12);
      background: rgba(13, 13, 17, 0.75);
    }
    
    .pricing-card-popular::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      padding: 1px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 2;
    }
    
    .pricing-card-popular:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(139, 92, 246, 0.16);
    }
    
    /* 12 Months VIP - Featured (Best Value) */
    .pricing-card-featured {
      transform: scale(1.03);
      z-index: 2;
      border-color: transparent;
      box-shadow: 
        0 15px 45px rgba(139, 92, 246, 0.18), 
        0 0 35px rgba(251, 191, 36, 0.1);
      background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, rgba(13, 13, 17, 0.8) 70%);
    }
    
    body.light-theme .pricing-card-featured {
      background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 0.9) 70%);
      box-shadow: 
        0 15px 45px rgba(139, 92, 246, 0.12), 
        0 0 35px rgba(251, 191, 36, 0.08);
    }
    
    .pricing-card-featured::after {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: 18px;
      padding: 1.5px;
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-gold) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 2;
    }
    
    .pricing-card-featured:hover {
      transform: translateY(-6px) scale(1.03);
      box-shadow: 
        0 25px 55px rgba(139, 92, 246, 0.24), 
        0 0 45px rgba(251, 191, 36, 0.16);
    }
    
    .pricing-card-top,
    .pricing-card-header {
      padding-top: 40px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    
    .pricing-card-featured .pricing-card-top,
    .pricing-card-featured .pricing-card-header,
    .featured-card .pricing-card-top,
    .featured-card .pricing-card-header {
      padding-top: 52px;
    }
    
    .pricing-badge,
    .plan-badge {
      position: absolute;
      top: 16px;
      right: 18px;
      max-width: calc(100% - 36px);
      padding: 8px 14px;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #fff;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }
    
    .pricing-badge-popular {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
      box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    }
    
    .pricing-badge-featured {
      background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
    }
    
    .plan-name {
      font-family: var(--font-heading);
      font-size: clamp(1.4rem, 2vw, 1.75rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text-primary);
      margin-bottom: 8px;
    }
    
    .pricing-card-popular .plan-name {
      color: var(--color-primary);
    }
    .pricing-card-featured .plan-name {
      color: var(--color-gold);
    }
    
    .plan-price-block {
      margin: 18px 0 26px;
      display: flex;
      flex-direction: column;
    }
    
    .old-price-row {
      display: flex;
      align-items: center;
    }
    
    .old-price {
      font-size: 1rem;
      color: var(--text-muted);
      text-decoration: line-through;
      text-decoration-thickness: 2px;
      font-weight: 500;
      opacity: 0.35;
      margin-bottom: 14px;
      font-family: var(--font-heading);
    }
    
    .price-row {
      display: flex;
      align-items: baseline;
      gap: 0;
      margin-top: 12px;
      margin-bottom: 8px;
    }
    
    .number-group {
      display: flex;
      align-items: baseline;
      line-height: 1;
    }
    
    .price-main {
      font-size: clamp(3rem, 3.4vw, 3.8rem);
      font-weight: 800;
      line-height: 0.92;
      letter-spacing: -0.06em;
      font-family: var(--font-heading);
      background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    
    .price-decimal {
      font-size: 1.7rem;
      font-weight: 700;
      opacity: 0.92;
      margin-left: 2px;
      vertical-align: top;
      display: inline-block;
      font-family: var(--font-heading);
      background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .currency,
    .plan-currency {
      font-size: 2rem;
      font-weight: 700;
      opacity: 0.75;
      margin-right: 6px;
      align-self: center;
      display: inline-block;
      font-family: var(--font-heading);
      background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .billing-period,
    .plan-price-period {
      font-size: 1rem;
      color: var(--text-muted);
      opacity: 0.55;
      margin-top: 12px;
      letter-spacing: 0.02em;
      font-family: var(--font-heading);
    }
    
    body.light-theme .price-main,
    body.light-theme .price-decimal,
    body.light-theme .currency,
    body.light-theme .plan-currency {
      background: linear-gradient(135deg, #000000 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .plan-price-period {
      font-size: 0.95rem;
      color: var(--text-muted);
      opacity: 0.7;
      font-weight: 500;
      margin-top: 2px;
      letter-spacing: 0.02em;
    }
    
    .plan-features {
      list-style: none;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }
    
    .plan-features li,
    .plan-feature {
      font-size: 0.95rem;
      color: var(--text-secondary);
      display: flex;
      align-items: center;
      gap: 12px;
      min-height: 28px;
      line-height: 1.3;
    }
    
    .premium-check-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
      border: 1px solid rgba(139, 92, 246, 0.35);
      box-shadow: 
        0 2px 8px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
      color: #60a5fa;
      flex-shrink: 0;
      transition: var(--transition-snappy);
    }
    
    body.light-theme .premium-check-badge {
      background: linear-gradient(135deg, rgba(0, 113, 227, 0.12) 0%, rgba(98, 0, 238, 0.12) 100%);
      border-color: rgba(98, 0, 238, 0.25);
      box-shadow: 
        0 2px 6px rgba(98, 0, 238, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
      color: var(--color-accent);
    }
    
    .premium-check-badge svg {
      width: 10px;
      height: 10px;
      fill: none;
      stroke: currentColor;
      stroke-width: 3.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    
    /* Highlighted card checks (Yearly plan check style) */
    .pricing-card-popular .premium-check-badge {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
      border-color: rgba(139, 92, 246, 0.4);
      color: #60a5fa;
    }
    
    .pricing-card-featured .premium-check-badge {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(251, 191, 36, 0.2) 100%);
      border-color: rgba(251, 191, 36, 0.45);
      box-shadow: 
        0 2px 10px rgba(251, 191, 36, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
      color: var(--color-gold);
    }
    
    .plan-features .feature-special {
      color: var(--text-primary);
      font-weight: 700;
      background: var(--color-accent-glow);
      padding: 2px 8px;
      border-radius: 6px;
      border: 1px solid rgba(139, 92, 246, 0.15);
      margin-left: -2px;
    }
    
    .plan-cta-btn,
    .pricing-card .btn-primary,
    .pricing-card .btn-secondary {
      width: 100%;
      min-height: 56px;
      font-size: 1rem;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    /* ==========================================================================
       8. REDESIGNED FAQ ACCORDION SECTION
       ========================================================================== */
    .faq-section {
      padding: 100px 0;
      position: relative;
    }
    
    .faq-layout {
      display: grid;
      grid-template-columns: 0.7fr 1.3fr;
      gap: 48px;
    }
    
    .faq-sidebar h2 {
      font-size: 2.2rem;
      margin-bottom: 16px;
      line-height: 1.2;
    }
    
    .faq-sidebar p {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }
    
    .faq-groups {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .faq-group-title {
      font-family: var(--font-heading);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-primary);
      margin-bottom: 16px;
      border-bottom: 1px solid var(--glass-border);
      padding-bottom: 8px;
    }
    
    .faq-accordion-item {
      margin-bottom: 12px;
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      background: var(--bg-card);
      overflow: hidden;
      transition: var(--transition-smooth);
    }
    
    .faq-question-btn {
      width: 100%;
      background: none;
      border: none;
      padding: 20px 24px;
      text-align: left;
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--text-primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    
    .faq-question-btn svg {
      width: 16px;
      height: 16px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      color: var(--text-secondary);
      transition: transform 0.3s ease;
    }
    
    .faq-accordion-item.active {
      border-color: var(--color-primary-glow);
    }
    
    .faq-accordion-item.active .faq-question-btn svg {
      transform: rotate(180deg);
      color: var(--color-primary);
    }
    
    .faq-answer-panel {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .faq-answer-content {
      padding: 0 24px 20px;
      font-size: 0.88rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }

    /* ==========================================================================
       9. PREMIUM TRUST & TESTIMONIALS
       ========================================================================== */
    .testimonials-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    /* Centered header ambient glow */
    .pricing-header-center {
      position: relative;
    }
    .header-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
      filter: blur(25px);
      pointer-events: none;
      z-index: -1;
    }

    /* Trust Microcopy Badge */
    .trust-microcopy {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: var(--text-secondary);
      font-size: 0.88rem;
      font-weight: 500;
      margin: 16px auto 40px;
      opacity: 0.85;
    }
    .trust-microcopy svg {
      color: #25d366; /* WhatsApp Green */
      fill: currentColor;
      width: 18px;
      height: 18px;
    }

    /* Stats Row Container */
    .testimonials-stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 40px 0 60px;
    }
    .stat-card {
      background: rgba(255, 255, 255, 0.01);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 34px 28px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .stat-card-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      gap: 16px;
      width: 100%;
    }
    .stat-card:hover {
      transform: translateY(-2px);
      border-color: rgba(59, 130, 246, 0.2);
      background: rgba(255, 255, 255, 0.02);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }
    .stat-top {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      transform: translateY(-2px);
    }
    .stat-icon {
      width: 38px;
      height: 38px;
      opacity: 0.95;
      flex-shrink: 0;
    }
    .stat-number,
    .stat-title {
      font-size: clamp(2.4rem, 3vw, 3.4rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.03em;
      font-family: var(--font-heading);
      background: linear-gradient(135deg, #ffffff 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .stat-card:nth-child(2) .stat-title,
    .stat-card:nth-child(2) .stat-number {
      font-size: clamp(2.2rem, 2.7vw, 3rem);
    }
    .stat-subtitle,
    .stat-card-lbl {
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-muted);
      opacity: 0.68;
    }

    /* Asymmetric Testimonials Grid Layout */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
      align-items: start;
    }
    
    .testimonial-card {
      grid-column: span 2;
      background: var(--bg-card);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 30px;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    
    .testimonial-card:nth-child(1),
    .testimonial-card:nth-child(2) {
      grid-column: span 3; /* 2 large featured cards at the top */
    }

    .testimonial-card:nth-child(3),
    .testimonial-card:nth-child(4),
    .testimonial-card:nth-child(5) {
      grid-column: span 2; /* 3 medium cards below */
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      border-color: rgba(139, 92, 246, 0.25);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.06);
    }

    /* Metallic shine sweep effect */
    .testimonial-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: -150%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
      transform: skewX(-20deg);
      pointer-events: none;
    }
    .testimonial-card:hover::after {
      left: 150%;
      transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .testimonial-stars {
      display: flex;
      gap: 4px;
      color: #fbbf24;
      margin-bottom: 16px;
    }
    .testimonial-stars svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* Card Badges */
    .testimonial-badges {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
      flex-wrap: wrap;
    }
    .testimonial-badge {
      font-size: 0.72rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 9999px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .badge-verified {
      background: rgba(16, 185, 129, 0.08);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: #10b981;
    }
    .badge-role {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      color: var(--text-secondary);
    }

    .testimonial-quote {
      font-size: 1.05rem;
      line-height: 1.5;
      color: var(--text-primary);
      margin-bottom: 20px;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    /* WhatsApp Screenshot Preview bounds */
    .testimonial-screenshot-wrapper {
      width: 100%;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--glass-border);
      background: rgba(0, 0, 0, 0.3);
      margin-bottom: 20px;
      max-height: 180px;
      position: relative;
    }
    .testimonial-screenshot-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .testimonial-card:hover .testimonial-screenshot-img {
      transform: scale(1.03);
    }
    .screenshot-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 40px;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      pointer-events: none;
    }

    /* Interaction Button */
    .btn-view-chat {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--glass-border);
      color: var(--text-secondary);
      font-size: 0.82rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 9999px;
      transition: all 0.24s ease;
      width: fit-content;
      cursor: pointer;
    }
    .testimonial-card:hover .btn-view-chat {
      background: var(--color-primary-glow);
      border-color: rgba(59, 130, 246, 0.3);
      color: var(--text-primary);
      box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
    }

    /* Real Customer Lifestyle Strip */
    .testimonials-lifestyle-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin: 80px 0 20px;
    }
    .lifestyle-card {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 16 / 10;
      border: 1px solid var(--glass-border);
      background: rgba(0, 0, 0, 0.4);
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }
    .lifestyle-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .lifestyle-card:hover .lifestyle-img {
      transform: scale(1.05);
    }
    .lifestyle-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at center, transparent 30%, rgba(5, 5, 8, 0.6) 100%);
      pointer-events: none;
    }

    /* Trust Disclaimer */
    .testimonials-disclaimer {
      text-align: center;
      font-size: 0.78rem;
      color: var(--text-muted);
      opacity: 0.65;
      margin-top: 50px;
      line-height: 1.5;
    }

    /* Cinematic Modal Backdrop & Viewer */
    .cinematic-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(5, 5, 8, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 500;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cinematic-modal.active {
      opacity: 1;
      pointer-events: auto;
    }
    .modal-content-wrapper {
      position: relative;
      max-width: 90%;
      max-height: 85%;
      width: auto;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      transform: scale(0.95);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cinematic-modal.active .modal-content-wrapper {
      transform: scale(1);
    }
    .modal-img-container {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
      background: #000;
      max-height: calc(100vh - 180px);
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .modal-img {
      max-width: 100%;
      max-height: calc(100vh - 180px);
      object-fit: contain;
      display: block;
    }
    .modal-caption {
      margin-top: 16px;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      text-align: center;
    }
    .modal-close-btn {
      position: absolute;
      top: -50px;
      right: 0;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .modal-close-btn:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: scale(1.05);
    }
    .modal-close-btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }

    /* Light Theme Compatibility Styling */
    body.light-theme .stat-card {
      background: rgba(0, 0, 0, 0.02);
      border-color: rgba(0, 0, 0, 0.08);
    }
    body.light-theme .stat-number,
    body.light-theme .stat-title {
      background: linear-gradient(135deg, #000000 0%, var(--text-secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    body.light-theme .btn-view-chat {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.08);
      color: var(--text-secondary);
    }
    body.light-theme .btn-view-chat:hover {
      background: var(--color-primary-glow);
      border-color: rgba(0, 113, 227, 0.2);
      color: var(--color-primary);
    }
    body.light-theme .testimonial-badge.badge-role {
      background: rgba(0, 0, 0, 0.03);
      border-color: rgba(0, 0, 0, 0.08);
    }
    body.light-theme .testimonials-disclaimer {
      color: var(--text-secondary);
    }

    /* Responsiveness Queries */
    @media (max-width: 992px) {
      .testimonials-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 16px;
        padding: 10px 4px 24px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
      .testimonials-grid::-webkit-scrollbar {
        display: none;
      }
      .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        grid-column: auto !important;
      }
      .testimonials-lifestyle-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 60px 0 20px;
      }
    }

    @media (max-width: 768px) {
      .testimonials-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 30px 0 40px;
      }
      .stat-card {
        padding: 20px 16px;
      }
      .stat-number,
      .stat-title {
        font-size: 1.6rem;
      }
      .stat-card:nth-child(2) .stat-title,
      .stat-card:nth-child(2) .stat-number {
        font-size: 1.45rem;
      }
      .stat-subtitle,
      .stat-card-lbl {
        font-size: 0.75rem;
      }
      .modal-close-btn {
        top: auto;
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
      }
      .modal-close-btn:hover {
        transform: translateX(50%) scale(1.05);
      }
    }

    /* ==========================================================================
       WORLD CUP 2026 COUNTDOWN SECTION
       ========================================================================== */
    .countdown-section {
      padding: 60px 0 30px;
      position: relative;
      z-index: 10;
    }
    
    .countdown-card {
      max-width: 900px;
      margin: 0 auto;
      padding: 40px;
      text-align: center;
      background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.06), transparent 60%), var(--bg-card);
      border: 1px solid var(--glass-border);
      position: relative;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(139, 92, 246, 0.04);
    }
    
    body.light-theme .countdown-card {
      background: radial-gradient(circle at top right, rgba(0, 113, 227, 0.04), transparent 60%), var(--bg-card);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 0 0 30px rgba(0, 113, 227, 0.02);
    }
    
    .countdown-hosts-bar {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(251, 191, 36, 0.06);
      border: 1px solid rgba(251, 191, 36, 0.15);
      border-radius: 9999px;
      padding: 6px 18px;
      margin-bottom: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--color-gold);
      box-shadow: 0 0 15px rgba(251, 191, 36, 0.05);
    }

    body.light-theme .countdown-hosts-bar {
      background: rgba(229, 169, 0, 0.05);
      border-color: rgba(229, 169, 0, 0.2);
    }
    
    .hosts-divider {
      opacity: 0.4;
    }
    
    .countdown-title {
      font-size: 2.2rem;
      margin-bottom: 8px;
      background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .countdown-subtext {
      font-size: 1rem;
      color: var(--text-secondary);
      margin-bottom: 35px;
    }
    
    .countdown-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    
    .countdown-item {
      position: relative;
    }
    
    .countdown-block-card {
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 24px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 20px rgba(0, 0, 0, 0.2);
      transition: var(--transition-smooth);
    }
    
    body.light-theme .countdown-block-card {
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 4px 15px rgba(0, 0, 0, 0.02);
    }
    
    .countdown-block-card:hover {
      transform: translateY(-4px);
      border-color: var(--color-primary-glow);
      box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    }
    
    body.light-theme .countdown-block-card:hover {
      box-shadow: 0 8px 25px rgba(0, 113, 227, 0.1);
    }
    
    .countdown-num {
      font-size: 3.2rem;
      font-weight: 800;
      font-family: var(--font-heading);
      line-height: 1.1;
      color: var(--text-primary);
      text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
      margin-bottom: 4px;
      display: inline-block;
      transition: transform 0.2s ease-out;
    }
    
    .countdown-num.number-pop {
      animation: numPop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }
    
    @keyframes numPop {
      0% { transform: scale(0.92); opacity: 0.85; }
      100% { transform: scale(1); opacity: 1; }
    }
    
    .countdown-label {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
    }
    
    /* Responsive countdown styles */
    @media (max-width: 768px) {
      .countdown-title {
        font-size: 1.8rem;
      }
      .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .countdown-block-card {
        padding: 20px 12px;
      }
      .countdown-num {
        font-size: 2.5rem;
      }
    }

    /* ==========================================================================
       10. LUXURY FREE TRIAL FORM
       ========================================================================== */
    .form-section {
      padding: 80px 0;
      position: relative;
    }
    
    .form-card {
      max-width: 580px;
      margin: 0 auto;
      padding: 40px;
    }
    
    .form-card-title {
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 32px;
    }
    
    .trial-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .form-group-full {
      grid-column: span 2;
    }
    
    .form-group label {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: var(--text-secondary);
      margin-bottom: 6px;
    }
    
    .form-input {
      width: 100%;
      background: rgba(0, 0, 0, 0.3);
      border: 1px solid var(--glass-border);
      border-radius: 10px;
      padding: 14px 18px;
      color: var(--text-primary);
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: var(--transition-snappy);
    }
    
    body.light-theme .form-input {
      background: rgba(255, 255, 255, 0.9);
    }
    
    .form-input:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 10px var(--color-primary-glow);
    }
    
    .form-input option {
      background-color: var(--bg-body);
      color: var(--text-primary);
    }
    
    .submit-btn {
      width: 100%;
      border-radius: 10px;
      padding: 16px;
      font-size: 0.95rem;
      position: relative;
    }
    
    /* Button loading spinner styling */
    .btn.loading {
      position: relative;
      color: transparent !important;
      pointer-events: none;
    }
    
    .btn.loading .btn-spinner {
      display: block;
    }
    
    .btn-spinner {
      display: none;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      border-top-color: currentColor;
      animation: spin 0.8s linear infinite;
    }

    body.light-theme .btn-spinner {
      border-color: rgba(0, 0, 0, 0.15);
      border-top-color: currentColor;
    }
    
    @keyframes spin {
      to { transform: translate(-50%, -50%) rotate(360deg); }
    }
    
    /* Success Morphing Staging */
    .success-panel {
      display: none;
      text-align: center;
      animation: morph-success 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .success-shield {
      width: 64px;
      height: 64px;
      background: rgba(16, 185, 129, 0.1);
      border: 2px solid var(--color-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--color-green);
      box-shadow: 0 0 15px rgba(16, 185, 129, 0.2);
    }
    
    .success-title {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }
    
    .success-desc {
      font-size: 0.9rem;
      color: var(--text-secondary);
      margin-bottom: 24px;
    }
    
    .credential-box {
      background: rgba(0, 0, 0, 0.2);
      border: 1px solid var(--glass-border);
      border-radius: 12px;
      padding: 20px;
      text-align: left;
      margin-bottom: 24px;
    }
    
    .credential-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      font-size: 0.82rem;
    }
    
    .credential-item:last-child {
      margin-bottom: 0;
    }
    
    .credential-label {
      color: var(--text-secondary);
    }
    
    .credential-value {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--text-primary);
    }
    
    .credential-value-active {
      color: var(--color-green);
    }

    /* ==========================================================================
       11. INTERACTIVE ORDER POPUP MODAL
       ========================================================================== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    
    .modal-card {
      width: 100%;
      max-width: 540px;
      background: var(--bg-surface);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: 36px;
      box-shadow: 0 30px 70px rgba(0,0,0,0.6);
      position: relative;
      transform: translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      overflow: hidden;
    }
    
    .modal-overlay.active .modal-card {
      transform: translateY(0);
    }
    
    .modal-close-btn {
      position: absolute;
      top: 24px;
      right: 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--glass-border);
      width: 36px;
      height: 36px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-primary);
      transition: var(--transition-snappy);
    }
    
    body.light-theme .modal-close-btn {
      background: rgba(0,0,0,0.02);
    }
    
    .modal-close-btn:hover {
      transform: scale(1.08);
      background: rgba(255,255,255,0.08);
    }
    
    .modal-title {
      font-size: 1.6rem;
      margin-bottom: 24px;
      text-align: center;
    }
    
    .modal-price-tier {
      background: var(--color-primary-glow);
      border: 1px solid rgba(59, 130, 246, 0.15);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .modal-price-info h4 {
      font-size: 0.82rem;
      color: var(--text-secondary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    
    .modal-price-display {
      font-family: var(--font-heading);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--text-primary);
    }
    

    /* 13. Premium Floating WhatsApp CTA */
    .whatsapp-cta-container {
      position: fixed;
      display: flex;
      align-items: center;
      gap: 12px;
      z-index: 103;
      pointer-events: none;
      transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0;
      transform: translateY(20px);
      will-change: transform, opacity;
    }
    
    .whatsapp-cta-container.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .whatsapp-cta-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: #ffffff;
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), 0 0 25px rgba(139, 92, 246, 0.2);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      position: relative;
      animation: whatsapp-pulse 6s infinite ease-in-out;
      will-change: transform;
    }
    
    .whatsapp-cta-btn svg {
      fill: currentColor;
    }

    .whatsapp-cta-btn:hover {
      transform: scale(1.08);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35), 0 0 35px rgba(139, 92, 246, 0.45);
    }

    /* Glassmorphism Tooltip */
    .whatsapp-tooltip-glass {
      background: rgba(18, 18, 24, 0.82);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      color: #ffffff;
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 0.82rem;
      font-weight: 600;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
      z-index: 104;
      opacity: 0;
      transform: scale(0.9) translateY(5px);
      transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      pointer-events: none;
      font-family: var(--font-heading), sans-serif;
      white-space: normal;
      word-wrap: break-word;
      max-width: min(260px, calc(100vw - 32px));
    }

    .whatsapp-tooltip-glass.active {
      opacity: 1;
      transform: scale(1) translateY(0);
    }

    @keyframes whatsapp-pulse {
      0% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), 0 0 25px rgba(139, 92, 246, 0.2);
      }
      50% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), 0 0 25px rgba(139, 92, 246, 0.2), 0 0 0 14px rgba(37, 211, 102, 0), 0 0 0 18px rgba(139, 92, 246, 0);
      }
      100% {
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25), 0 0 25px rgba(139, 92, 246, 0.2);
      }
    }

    @media (min-width: 769px) {
      .whatsapp-cta-container {
        right: 28px;
        bottom: 32px;
        flex-direction: row;
      }
      .whatsapp-cta-btn {
        width: 74px;
        height: 74px;
      }
      .whatsapp-cta-btn svg {
        width: 38px;
        height: 38px;
      }
    }

    @media (max-width: 768px) {
      .whatsapp-cta-container {
        right: 18px;
        bottom: max(85px, env(safe-area-inset-bottom));
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 8px;
      }
      .whatsapp-cta-btn {
        width: 64px;
        height: 64px;
      }
      .whatsapp-cta-btn svg {
        width: 32px;
        height: 32px;
      }
    }


@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .device-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-sidebar {
    text-align: center;
  }
}



@media (max-width: 768px) {
  .device-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 32px;
  }
  .pricing-card {
    padding: 28px 22px;
    border-radius: 28px;
  }
  .pricing-card-featured {
    transform: scale(1);
    margin: 8px 0;
  }
  .pricing-card-featured:hover {
    transform: translateY(-6px) scale(1);
  }
  .pricing-badge,
  .plan-badge {
    top: 12px;
    right: 12px;
    font-size: 0.72rem;
    padding: 6px 12px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .trial-form {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .trust-container {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}


@media (max-width: 576px) {
  .device-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 10px 4px 24px 4px;
    margin: 0 -4px;
    scrollbar-width: none;
  }
  .device-row::-webkit-scrollbar {
    display: none;
  }
  .device-capsule {
    flex: 0 0 calc(80% - 16px);
    scroll-snap-align: center;
  }
}

.countdown-live-active {
  animation: countdown-pulse 2s infinite ease-in-out !important;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.6) !important;
}
@keyframes countdown-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.6);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.8), 0 0 0 8px rgba(59, 130, 246, 0);
  }
}

/* Active Navigation State highlighting style */
.nav-links a.active {
  color: var(--color-accent) !important;
  font-weight: 700;
  text-shadow: 0 0 12px var(--color-accent-glow);
}


/* Sticky CTA for Mobile Pricing (Bottom sticky banner) */
.pricing-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .pricing-sticky-cta.visible {
    display: block !important;
    animation: slideUpFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

@media (min-width: 768px) {
  .pricing-sticky-cta {
    display: none !important;
  }
}

@keyframes slideUpFade {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ==========================================================================
   FINAL PREMIUM POLISH SPRINT (UX & Visual Refinements)
   ========================================================================== */

/* 1. Global Micro Details & Transitions */
html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(92, 92, 255, 0.25);
  color: inherit;
}

:root {
  --transition-smooth: background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Keyboard Focus States Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
  box-shadow: 0 0 15px var(--color-accent-glow) !important;
}

/* 2. Global Section Spacing Audit */
.hero,
.pricing-section,
.devices-section,
.testimonials-section,
.faq-section,
.contact-section {
  padding: 80px 0 !important;
}

/* 3. Typography Rhythm & Paragraph Optimization */
.hero-title {
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pricing-title,
.devices-title,
.faq-title,
.contact-title {
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}

.hero-description,
.pricing-subtitle,
.devices-section p,
.faq-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
  line-height: 1.6;
}

/* 4. Button System Normalization */
.btn {
  border-radius: 12px !important;
  font-weight: 600 !important;
  transition: var(--transition-smooth) !important;
}

.btn-primary {
  background: linear-gradient(90deg, #0071e3 0%, #6200ee 100%) !important;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.22) !important;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(98, 0, 238, 0.32) !important;
  transform: translateY(-2px) !important;
}

.btn-secondary {
  border: 1px solid var(--glass-border) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 12px !important;
}

body.light-theme .btn-secondary {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: var(--text-primary) !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px) !important;
}

body.light-theme .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
}

/* 5. Card Hover Normalization (translateY & glow limits) */
.pricing-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35) !important;
}

.pricing-card-featured:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(91, 108, 255, 0.25) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(91, 108, 255, 0.1) !important;
}

.device-capsule:hover {
  transform: translateY(-4px) !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 10px 25px var(--color-primary-glow) !important;
}

.stat-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22) !important;
}

/* 6. Image Loading Aspect Ratio & Fade In */
.pricing-card img,
.device-capsule img,
.testimonial-card img,
.footer img,
.hero img,
.devices-section img {
  object-fit: cover;
  opacity: 0;
  animation: fadeInImg 0.6s ease forwards;
}

@keyframes fadeInImg {
  to {
    opacity: 1;
  }
}

/* 7. Light Theme Minimalist Contrast Tuning */
body.light-theme .pricing-card,
body.light-theme .device-capsule,
body.light-theme .testimonial-card,
body.light-theme .stat-card {
  background: rgba(0, 0, 0, 0.015) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .pricing-card:hover,
body.light-theme .device-capsule:hover,
body.light-theme .testimonial-card:hover,
body.light-theme .stat-card:hover {
  background: rgba(0, 0, 0, 0.025) !important;
  border-color: rgba(0, 0, 0, 0.14) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
}

body.light-theme {
  --glass-border: rgba(0, 0, 0, 0.08) !important;
}

/* 8. Mobile Overflow & Responsive Adjustments */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }

  .pricing-title,
  .devices-title,
  .faq-title,
  .contact-title {
    font-size: 1.8rem !important;
  }

  .pricing-grid,
  .device-row,
  .testimonials-stats-row {
    gap: 16px !important;
  }

  .navbar {
    padding: 12px 16px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
  }
}

/* 9. Dark Mode Subtle Glow Caps */
.pricing-card-popular::after {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.15) !important;
}
.pricing-card-featured::after {
  box-shadow: 0 0 35px rgba(59, 130, 246, 0.18) !important;
}

/* ==========================================================================
   10. VORIX HERO SECTION OVERRIDES (LAYOUT & SPACING POLISH)
   ========================================================================== */

/* 1. Hero Layout Stability (Safe Height Fix) */
.hero-section,
.hero {
  padding-top: 180px !important;
  min-height: max(920px, 100vh) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  overflow: hidden !important;
}

/* 2. Hero Content Layering */
.hero-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 760px !important;
  margin: 0 auto !important;
}

/* 3. Trophy Balance Fix (Premium Cinematic Scale) */
.hero-trophy,
.hero-trophy-ambient {
  width: min(400px, 34vw) !important;
  max-height: 68vh !important;
  object-fit: contain !important;
  position: absolute !important;
  bottom: -20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 0 !important;
  opacity: 0.72 !important;
  pointer-events: none !important;
  filter: drop-shadow(0 0 40px rgba(255, 184, 0, 0.18)) !important;
}

/* 4. Floating Country Pills Polish */
.country-pill,
.floating-team {
  --pill-scale: 0.92;
  opacity: 0.78 !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

.country-pill:hover,
.floating-team:hover {
  --pill-scale: 0.96;
  opacity: 1 !important;
}

/* 5. CTA Button Spacing */
.hero-cta-group,
.hero-buttons {
  display: flex !important;
  gap: 16px !important;
  margin-top: 36px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

/* 6. Bottom Country Marquee Fix (No Collision) */
.bottom-country-marquee,
.marquee-wrapper {
  position: absolute !important;
  bottom: 12px !important;
  left: 0 !important;
  width: 100% !important;
  margin-top: 0 !important;
  z-index: 2 !important;
}

/* 7. Mobile Hero Cleanup */
@media (max-width: 768px) {
  .hero-trophy,
  .hero-trophy-ambient {
    width: 280px !important;
    max-height: none !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    opacity: 0.45 !important;
  }

  .country-pill-column,
  .hero-teams-side {
    display: none !important;
  }
}

/* 8. Float Keyframes Redefined for Scalability */
@keyframes float-slow-1 {
  0% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
  50% { transform: scale(var(--pill-scale, 0.92)) translateY(-8px) translateX(3px); }
  100% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
}
@keyframes float-slow-2 {
  0% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
  50% { transform: scale(var(--pill-scale, 0.92)) translateY(-10px) translateX(-4px); }
  100% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
}
@keyframes float-slow-3 {
  0% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
  50% { transform: scale(var(--pill-scale, 0.92)) translateY(-6px) translateX(-2px); }
  100% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
}
@keyframes float-slow-4 {
  0% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
  50% { transform: scale(var(--pill-scale, 0.92)) translateY(-9px) translateX(4px); }
  100% { transform: scale(var(--pill-scale, 0.92)) translateY(0px) translateX(0px); }
}

/* ==========================================================================
   11. DYNAMIC WORLD CUP MATCHES SECTION
   ========================================================================== */
.daily-matches-section {
  padding: 80px 0 !important;
  position: relative;
  background: radial-gradient(circle at 50% -20%, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.match-card {
  border-radius: 30px;
  background: rgba(10, 10, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 32px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.match-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.08);
}

.match-status.match-live {
  color: #ff4d4d !important;
  text-shadow: 0 0 18px rgba(255, 77, 77, 0.4) !important;
}

.match-status.match-upcoming {
  color: var(--color-primary) !important;
}

.match-status.match-finished {
  color: var(--text-muted) !important;
  opacity: 0.6;
}

.countdown-ended .hero-trophy,
.countdown-ended .hero-trophy-ambient {
  opacity: 0.42 !important;
  width: min(360px, 30vw) !important;
}

/* Pulse animation for Live dot */
@keyframes pulse-live {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive Mobile Snap Carousel */
@media (max-width: 992px) {
  .matches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .matches-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 18px !important;
    padding: 10px 16px 30px !important;
    margin: 0 -16px !important;
    scrollbar-width: none;
  }
  
  .matches-grid::-webkit-scrollbar {
    display: none;
  }

  .match-card {
    min-width: 88vw !important;
    max-width: 88vw !important;
    scroll-snap-align: center !important;
  }
}

/* ==========================================================================
   12. HERO LIVE STATE CLEANUP
   ========================================================================== */
.countdown-live-badge .live-dot,
.countdown-live-badge .pulse-dot,
.streaming-dot-large,
.hero-live-dot-large,
.live-indicator-large {
  display: none !important;
}

.live-status {
  color: #ff6262 !important;
  text-shadow: 0 0 16px rgba(255, 98, 98, 0.24) !important;
  letter-spacing: 0.08em;
  font-weight: 700;
}
