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

    :root {
      --purple-deep: #0d0520;
      --purple-dark: #1a0a35;
      --purple-mid: #2d1466;
      --purple-primary: #7C3AED;
      --purple-light: #8B5CF6;
      --purple-glow: #a78bfa;
      --gold: #D97706;
      --gold-light: #F59E0B;
      --gold-bright: #FCD34D;
      --green-wa: #25D366;
      --green-wa-dark: #128C7E;
      --text-primary: #F9FAFB;
      --text-secondary: #C4B5FD;
      --text-muted: #9CA3AF;
      --glass-bg: rgba(255,255,255,0.04);
      --glass-border: rgba(255,255,255,0.10);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Cairo', sans-serif;
      background: var(--purple-deep);
      color: var(--text-primary);
      overflow-x: hidden;
      direction: rtl;
    }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--purple-deep); }
    ::-webkit-scrollbar-thumb { background: var(--purple-primary); border-radius: 3px; }

    /* ===== ANIMATIONS ===== */
    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2); }
      50% { box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.4); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }
    @keyframes shimmer {
      0% { background-position: -200% center; }
      100% { background-position: 200% center; }
    }
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes rotate-slow {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes bounce-wa {
      0%, 100% { transform: scale(1) rotate(0deg); }
      25% { transform: scale(1.15) rotate(-5deg); }
      75% { transform: scale(1.15) rotate(5deg); }
    }
    @keyframes count-up {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes star-twinkle {
      0%, 100% { opacity: 0.3; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.2); }
    }
    @keyframes gradient-shift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* ===== UTILITY ===== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    .text-center { text-align: center; }
    .flex { display: flex; }
    .items-center { align-items: center; }
    .justify-center { justify-content: center; }
    .gap-2 { gap: 0.5rem; }
    .gap-4 { gap: 1rem; }
    .gap-6 { gap: 1.5rem; }
    .grid { display: grid; }
    .hidden { display: none; }

    /* ===== ANNOUNCEMENT BAR ===== */
    #announcement-bar {
      background: linear-gradient(90deg, #7C3AED, #D97706, #7C3AED);
      background-size: 200% auto;
      animation: gradient-shift 3s ease infinite;
      color: white;
      text-align: center;
      padding: 10px 1rem;
      font-size: 0.9rem;
      font-weight: 700;
      position: relative;
      z-index: 1000;
    }
    #announcement-bar a {
      color: #FCD34D;
      text-decoration: none;
      border-bottom: 1px dashed #FCD34D;
      margin: 0 8px;
    }
    #announcement-bar a:hover { color: #fff; border-color: #fff; }
    #close-bar {
      position: absolute;
      left: 1rem;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0.8;
      line-height: 1;
    }
    #close-bar:hover { opacity: 1; }

    /* ===== HEADER ===== */
    header {
      position: sticky;
      top: 0;
      z-index: 900;
      background: rgba(13, 5, 32, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      padding: 0.85rem 0;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }
    .logo-wrap img {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--purple-light);
    }
    .logo-text {
      font-size: 1.3rem;
      font-weight: 900;
      background: linear-gradient(135deg, #a78bfa, #FCD34D);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    nav { display: flex; gap: 0.25rem; align-items: center; }
    nav a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      padding: 0.4rem 0.75rem;
      border-radius: 8px;
      transition: all 0.2s;
    }
    nav a:hover { color: #fff; background: var(--glass-bg); }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    /* ===== BUTTONS ===== */
    .btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      padding: 0.65rem 1.4rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      font-family: 'Cairo', sans-serif;
    }
    .btn-wa:hover {
      transform: translateY(-2px) scale(1.03);
      box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    }
    .btn-wa svg { flex-shrink: 0; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--purple-primary), #9333ea);
      color: white;
      padding: 0.65rem 1.4rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      border: none;
      cursor: pointer;
      font-family: 'Cairo', sans-serif;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      color: var(--purple-glow);
      padding: 0.65rem 1.4rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.25s;
      border: 2px solid var(--purple-light);
      cursor: pointer;
      font-family: 'Cairo', sans-serif;
    }
    .btn-outline:hover {
      background: var(--purple-primary);
      color: white;
      transform: translateY(-2px);
    }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 70%),
                  radial-gradient(ellipse 50% 40% at 80% 80%, rgba(217, 119, 6, 0.1) 0%, transparent 60%),
                  var(--purple-deep);
      padding: 6rem 0 4rem;
    }
    /* Stars background */
    .stars-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .star {
      position: absolute;
      width: 2px;
      height: 2px;
      background: white;
      border-radius: 50%;
      animation: star-twinkle ease-in-out infinite;
    }
    /* Glow orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
    }
    .orb-1 {
      width: 500px; height: 500px;
      background: rgba(124, 58, 237, 0.2);
      top: -100px; right: -100px;
      animation: float 8s ease-in-out infinite;
    }
    .orb-2 {
      width: 300px; height: 300px;
      background: rgba(217, 119, 6, 0.15);
      bottom: 0; left: -50px;
      animation: float 10s ease-in-out infinite reverse;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
      animation: fadeInUp 0.8s ease both;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(124, 58, 237, 0.2);
      border: 1px solid rgba(124, 58, 237, 0.4);
      color: var(--purple-glow);
      padding: 0.4rem 1rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
    }
    .hero-badge .dot {
      width: 8px; height: 8px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-glow 2s ease infinite;
      box-shadow: 0 0 8px #22c55e;
    }

    .hero-title {
      font-size: clamp(2.2rem, 6vw, 4rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 50%, #fcd34d 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--text-secondary);
      line-height: 1.8;
      margin-bottom: 2rem;
      font-weight: 500;
    }

    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .hero-stat {
      text-align: center;
    }
    .hero-stat .stat-num {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--gold-bright);
      display: block;
    }
    .hero-stat .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .stat-divider {
      width: 1px;
      background: var(--glass-border);
      align-self: stretch;
    }

    .hero-ctas {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .hero-ctas .btn-wa { font-size: 1.05rem; padding: 0.8rem 2rem; }
    .hero-ctas .btn-outline { font-size: 1.05rem; padding: 0.8rem 2rem; }

    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 600;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .trust-item svg { color: #22c55e; flex-shrink: 0; }

    /* ===== SECTION HEADER ===== */
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
      animation: fadeInUp 0.6s ease both;
    }
    .section-tag {
      display: inline-block;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.3);
      color: var(--purple-glow);
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      letter-spacing: 0.05em;
    }
    .section-title {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.3;
      margin-bottom: 0.75rem;
    }
    .section-title span {
      background: linear-gradient(135deg, var(--purple-light), var(--gold-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-desc {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== FEATURES ===== */
    #features {
      padding: 5rem 0;
      background: linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-dark) 100%);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .feature-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.75rem;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 100%; height: 2px;
      background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .feature-card:hover {
      transform: translateY(-5px);
      border-color: rgba(124, 58, 237, 0.4);
      background: rgba(124, 58, 237, 0.07);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(124,58,237,0.1);
    }
    .feature-card:hover::before { opacity: 1; }

    .feature-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(217, 119, 6, 0.2));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      font-size: 1.6rem;
      border: 1px solid rgba(124, 58, 237, 0.3);
    }
    .feature-title {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .feature-desc {
      color: var(--text-muted);
      font-size: 0.88rem;
      line-height: 1.7;
    }

    /* ===== PRICING ===== */
    #pricing {
      padding: 5rem 0;
      background: var(--purple-deep);
      position: relative;
    }
    #pricing::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      align-items: stretch;
    }
    @media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px)  { .pricing-grid { grid-template-columns: 1fr; } }
    .pricing-card { display: flex; flex-direction: column; height: 100%; }
    .pricing-card.premium {
      border-color: var(--gold);
      background: linear-gradient(145deg, rgba(217,119,6,0.14) 0%, rgba(13,5,32,0.85) 100%);
      box-shadow: 0 0 40px rgba(217,119,6,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
    }
    .premium-badge {
      position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: #1a0a35; font-size: 0.78rem; font-weight: 900;
      padding: 0.35rem 1.2rem; border-radius: 0 0 12px 12px; white-space: nowrap;
    }
    .pricing-tag {
      display: inline-block; background: rgba(124,58,237,0.18);
      border: 1px solid rgba(124,58,237,0.3); color: var(--purple-glow);
      font-size: 0.72rem; font-weight: 800; padding: 3px 10px; border-radius: 999px;
      margin-bottom: 0.5rem; letter-spacing: 0.02em;
    }
    .pricing-card.popular .pricing-tag { background: rgba(124,58,237,0.35); color: #fff; }
    .pricing-card.premium .pricing-tag { background: rgba(252,211,77,0.15); color: var(--gold-bright); border-color: rgba(252,211,77,0.4); }
    .pricing-save {
      display:inline-block; background: rgba(34,197,94,0.18); color:#86efac;
      border:1px solid rgba(34,197,94,0.3); font-size:0.72rem; font-weight:800;
      padding: 3px 9px; border-radius: 999px; margin-inline-start: 6px;
    }
    .pricing-quote {
      background: rgba(255,255,255,0.04); border: 1px dashed rgba(255,255,255,0.14);
      border-radius: 12px; padding: 0.7rem 0.85rem; font-size: 0.78rem;
      color: var(--text-secondary); line-height: 1.65; margin-bottom: 1rem;
    }
    .pricing-quote b { display:block; font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; font-weight: 700; }
    .pricing-hook { color: var(--text-muted); font-size: 0.78rem; text-align:center; margin-top: 0.6rem; font-weight: 700; }
    .pricing-hook.gold { color: var(--gold-bright); }

    /* ===== WHOLESALE / DISTRIBUTORS ===== */
    #wholesale {
      padding: 5rem 0;
      background: linear-gradient(135deg, #0d0520 0%, #1a0a35 55%, #2d1466 100%);
      position: relative;
    }
    #wholesale::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 90% 0%, rgba(217,119,6,0.15) 0%, transparent 60%),
                  radial-gradient(ellipse 60% 60% at 10% 100%, rgba(124,58,237,0.15) 0%, transparent 60%);
      pointer-events: none;
    }
    .wholesale-hero {
      position: relative; z-index: 1; text-align: center;
      max-width: 860px; margin: 0 auto 2.5rem;
    }
    .wholesale-hero h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; color:#fff; margin-bottom: 0.75rem; line-height: 1.3; }
    .wholesale-hero h2 span { background: linear-gradient(90deg, var(--gold-bright), var(--purple-glow)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .wholesale-hero p { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; }
    .tiers-grid {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
      max-width: 1100px; margin: 0 auto 2rem;
    }
    @media (max-width: 900px) { .tiers-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 520px) { .tiers-grid { grid-template-columns: 1fr; } }
    .tier-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 18px; padding: 1.5rem 1.2rem; text-align: center;
      transition: all 0.3s;
    }
    .tier-card:hover { transform: translateY(-4px); border-color: var(--gold-light); background: rgba(255,255,255,0.07); }
    .tier-lvl { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; color: var(--gold-bright); margin-bottom: 0.4rem; }
    .tier-name { font-size: 1.15rem; font-weight: 800; color:#fff; margin-bottom: 0.5rem; }
    .tier-range { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.9rem; line-height: 1.6; }
    .tier-hint { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; line-height: 1.7; }
    .tier-card.highlight { border-color: var(--gold); background: linear-gradient(160deg, rgba(217,119,6,0.14), rgba(124,58,237,0.08)); }
    .tier-card.highlight .tier-lvl { color: #FCD34D; }
    .wholesale-benefits {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
      max-width: 1100px; margin: 2rem auto;
    }
    @media (max-width: 820px) { .wholesale-benefits { grid-template-columns: 1fr; } }
    .wb-card {
      background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
      border-radius: 14px; padding: 1.1rem 1.2rem;
      display: flex; gap: 0.85rem; align-items: flex-start;
    }
    .wb-card .wb-ic { font-size: 1.6rem; flex: 0 0 auto; }
    .wb-card h4 { font-size: 0.98rem; color:#fff; font-weight: 800; margin-bottom: 0.25rem; }
    .wb-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.7; }
    .wholesale-cta { text-align: center; position: relative; z-index: 1; margin-top: 1rem; }
    .wholesale-cta .btn-wa { font-size: 1.05rem; padding: 0.95rem 2.3rem; }
    .wholesale-note { color: var(--text-muted); font-size: 0.82rem; margin-top: 0.85rem; font-weight: 600; }

    /* ===== APPS / PLATFORMS ===== */
    #apps {
      padding: 5rem 0;
      background: var(--purple-deep);
      position: relative;
    }
    .apps-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
      max-width: 1100px; margin: 0 auto;
    }
    @media (max-width: 900px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 540px) { .apps-grid { grid-template-columns: 1fr; } }
    .app-card {
      background: var(--glass-bg); border: 1px solid var(--glass-border);
      border-radius: 16px; padding: 1.25rem; text-align: center;
      transition: all 0.3s;
    }
    .app-card:hover { transform: translateY(-4px); border-color: var(--purple-primary); background: rgba(124,58,237,0.06); }
    .app-ic { width: 56px; height: 56px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(124,58,237,0.25), rgba(217,119,6,0.2));
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 1.7rem; margin-bottom: 0.8rem;
    }
    .app-name { font-size: 1rem; color:#fff; font-weight: 800; margin-bottom: 0.25rem; }
    .app-store { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 0.6rem; }
    .app-action { display: inline-block; font-size: 0.8rem; font-weight: 700;
      color: var(--purple-glow); padding: 5px 12px; border-radius: 999px;
      background: rgba(124,58,237,0.14); border: 1px solid rgba(124,58,237,0.3);
      text-decoration: none; transition: all 0.2s;
    }
    .app-action:hover { background: var(--purple-primary); color:#fff; }
    .pricing-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: all 0.3s;
      overflow: hidden;
    }
    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    }
    .pricing-card.popular {
      border-color: var(--purple-primary);
      background: linear-gradient(145deg, rgba(124,58,237,0.12) 0%, rgba(13,5,32,0.8) 100%);
      box-shadow: 0 0 40px rgba(124,58,237,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
      transform: scale(1.03);
    }
    .pricing-card.popular:hover {
      transform: scale(1.03) translateY(-6px);
    }
    .popular-badge {
      position: absolute;
      top: -1px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--purple-primary), #9333ea);
      color: white;
      font-size: 0.78rem;
      font-weight: 800;
      padding: 0.35rem 1.2rem;
      border-radius: 0 0 12px 12px;
      white-space: nowrap;
    }
    .pricing-header { margin-bottom: 1.5rem; padding-top: 0.5rem; }
    .pricing-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      display: block;
    }
    .pricing-name {
      font-size: 1.15rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.25rem;
    }
    .pricing-desc {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .pricing-price {
      display: flex;
      align-items: baseline;
      gap: 0.3rem;
      margin: 1rem 0;
    }
    .price-amount {
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold-bright);
      line-height: 1;
    }
    .price-currency {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--gold-light);
    }
    .price-period {
      font-size: 0.82rem;
      color: var(--text-muted);
      font-weight: 600;
    }
    .pricing-devices {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(124, 58, 237, 0.15);
      border: 1px solid rgba(124, 58, 237, 0.25);
      color: var(--purple-glow);
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 1.25rem;
    }
    .pricing-features {
      list-style: none;
      margin-bottom: 1.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--text-secondary);
      font-weight: 600;
    }
    .pricing-features li .check {
      color: #22c55e;
      flex-shrink: 0;
      font-size: 1rem;
    }
    .pricing-card .btn-wa { width: 100%; justify-content: center; font-size: 1rem; padding: 0.85rem; }
    .pricing-guarantee {
      text-align: center;
      margin-top: 2.5rem;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .pricing-guarantee span { color: var(--purple-glow); }

    /* ===== SOCIAL PROOF ===== */
    #social-proof {
      padding: 4rem 0;
      background: linear-gradient(135deg, var(--purple-dark) 0%, #1e0d44 100%);
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
    }
    .proof-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 2rem;
      text-align: center;
    }
    .proof-item {}
    .proof-num {
      font-size: 2.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--purple-glow), var(--gold-bright));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .proof-label {
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 700;
    }

    /* ===== FREE TRIAL ===== */
    #free-trial {
      padding: 5rem 0;
      background: var(--purple-dark);
      position: relative;
      overflow: hidden;
    }
    #free-trial::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .trial-card {
      background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(217,119,6,0.1) 100%);
      border: 1px solid rgba(124, 58, 237, 0.3);
      border-radius: 24px;
      padding: 3rem;
      text-align: center;
      position: relative;
      max-width: 700px;
      margin: 0 auto;
    }
    .trial-card h2 {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 1rem;
    }
    .trial-card p {
      color: var(--text-secondary);
      margin-bottom: 1.75rem;
      line-height: 1.7;
      font-size: 1rem;
    }
    .trial-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .trial-feature {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(34, 197, 94, 0.1);
      border: 1px solid rgba(34, 197, 94, 0.2);
      color: #86efac;
      padding: 0.4rem 0.9rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
    }
    .trial-note {
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-top: 1rem;
    }

    /* ===== DOWNLOAD ===== */
    #download {
      padding: 5rem 0;
      background: var(--purple-deep);
    }
    .download-methods {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .download-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.75rem;
      transition: all 0.3s;
    }
    .download-card:hover {
      border-color: rgba(124, 58, 237, 0.4);
      transform: translateY(-4px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    .download-card h3 {
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .download-card p {
      color: var(--text-muted);
      font-size: 0.85rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }
    .app-links { display: flex; flex-direction: column; gap: 0.6rem; }
    .app-link {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(124, 58, 237, 0.1);
      border: 1px solid rgba(124, 58, 237, 0.2);
      color: var(--purple-glow);
      padding: 0.6rem 1rem;
      border-radius: 10px;
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
    }
    .app-link:hover { background: rgba(124, 58, 237, 0.25); color: #fff; }

    /* ===== CONTACT ===== */
    #contact {
      padding: 5rem 0;
      background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }
    .contact-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 1.75rem;
      text-align: center;
      transition: all 0.3s;
    }
    .contact-card:hover {
      border-color: rgba(37, 211, 102, 0.3);
      background: rgba(37, 211, 102, 0.05);
      transform: translateY(-4px);
    }
    .contact-icon {
      font-size: 2rem;
      margin-bottom: 0.75rem;
      display: block;
    }
    .contact-card h3 {
      font-size: 0.95rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.3rem;
    }
    .contact-card p {
      color: var(--text-muted);
      font-size: 0.82rem;
      font-weight: 600;
    }
    .contact-main {
      text-align: center;
      margin-bottom: 2rem;
    }
    .contact-main h2 {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .contact-main p {
      color: var(--text-secondary);
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    .contact-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ===== FOOTER ===== */
    footer {
      background: #070210;
      border-top: 1px solid var(--glass-border);
      padding: 3rem 0 1.5rem;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.7;
      margin-top: 0.75rem;
      max-width: 280px;
    }
    .footer-col h4 {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .footer-col a {
      display: block;
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--purple-glow); }
    .footer-bottom {
      border-top: 1px solid var(--glass-border);
      padding-top: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-bottom p {
      color: var(--text-muted);
      font-size: 0.82rem;
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--purple-glow); }

    /* ===== FLOATING WA BUTTON ===== */
    #float-wa {
      position: fixed;
      bottom: 2rem;
      left: 1.5rem;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    #float-wa-btn {
      width: 62px; height: 62px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      animation: bounce-wa 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
      transition: transform 0.2s;
    }
    #float-wa-btn:hover {
      transform: scale(1.1) !important;
      animation-play-state: paused;
    }
    #float-wa-btn svg { width: 30px; height: 30px; fill: white; }
    .float-wa-tooltip {
      background: #128C7E;
      color: white;
      padding: 0.4rem 0.9rem;
      border-radius: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      animation: fadeIn 0.5s ease both;
      position: relative;
    }
    .float-wa-tooltip::after {
      content: '';
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%);
      border-width: 5px 6px 5px 0;
      border-style: solid;
      border-color: transparent #128C7E transparent transparent;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      nav { display: none; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-stats { gap: 1rem; }
      .stat-divider { display: none; }
      .pricing-card.popular { transform: scale(1); }
      #float-wa { bottom: 1.2rem; left: 1rem; }
      #float-wa-btn { width: 56px; height: 56px; }
      .float-wa-tooltip { display: none; }
      .trial-card { padding: 2rem 1.25rem; }
      .contact-main h2 { font-size: 1.6rem; }
    }

    /* ===== SCROLL REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(25px); transition: all 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }