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

  :root {
    --primary: #f59e0b;
    --primary-dark: #d97706;
    --primary-light: #fbbf24;
    --bg: #0a0a0f;
    --card: #111118;
    --card2: #16161f;
    --border: rgba(255,255,255,0.07);
    --text: #ffffff;
    --muted: rgba(255,255,255,0.55);
    --muted2: rgba(255,255,255,0.7);
    --emerald: #10b981;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --purple: #a855f7;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
  }

  h1,h2,h3,h4 { font-family: 'Outfit', sans-serif; }

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

  /* ===== UTILITY ===== */
  .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
  .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .text-primary { color: var(--primary); }
  .text-muted { color: var(--muted); }
  .text-muted2 { color: var(--muted2); }

  .gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .badge {
    display: inline-flex; align-items: center;
    border-radius: 9999px; font-size: 0.7rem; font-weight: 600;
    padding: 0.3rem 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
    border: 1px solid rgba(245,158,11,0.3);
    background: rgba(245,158,11,0.1); color: #fbbf24;
  }

  .btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000; font-weight: 700; font-size: 0.95rem;
    padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid #fcd34d;
    cursor: pointer; text-decoration: none;
    box-shadow: 0 0 20px rgba(251,191,36,0.3);
    transition: all 0.3s; font-family: 'Outfit', sans-serif;
  }
  .btn-primary:hover { box-shadow: 0 0 35px rgba(251,191,36,0.55); transform: scale(1.02); }

  .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: rgba(255,255,255,0.04); color: #fff; font-weight: 600; font-size: 0.95rem;
    padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer; text-decoration: none;
    box-shadow: 0 0 10px rgba(255,255,255,0.04);
    transition: all 0.3s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }

  .btn-cyan {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: rgba(6,182,212,0.07); color: #06b6d4; font-weight: 600;
    padding: 0.85rem 2rem; border-radius: 0.75rem; border: 1px solid rgba(6,182,212,0.3);
    cursor: pointer; text-decoration: none; font-size: 0.95rem;
    transition: all 0.3s;
  }
  .btn-cyan:hover { background: rgba(6,182,212,0.15); border-color: rgba(6,182,212,0.5); }

  /* ===== CARD ===== */
  .card {
    background: rgba(17,17,24,0.7); border: 1px solid var(--border);
    border-radius: 1.25rem; backdrop-filter: blur(10px);
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .card:hover { border-color: rgba(245,158,11,0.15); box-shadow: 0 0 30px rgba(245,158,11,0.05); }

  /* ===== HEADER ===== */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 1.1rem 0;
    background: rgba(10,10,15,0.85); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
  }
  header .inner { display: flex; align-items: center; justify-content: space-between; }

  .logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
  .logo-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 15px rgba(251,191,36,0.25);
  }
  .logo-icon svg { width: 20px; height: 20px; color: #000; }
  .logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.2rem; color: #fff; }
  .logo-text span { color: var(--primary); }

  nav { display: flex; align-items: center; gap: 2rem; }
  nav a { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
  nav a:hover { color: var(--primary); }

  .header-actions { display: flex; align-items: center; gap: 1rem; }
  .header-actions .login { color: var(--muted); font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
  .header-actions .login:hover { color: #fff; }

  .btn-sm {
    display: inline-flex; align-items: center; gap: 0.3rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000; font-weight: 700; font-size: 0.8rem;
    padding: 0.55rem 1.2rem; border-radius: 0.6rem; border: 1px solid #fcd34d;
    cursor: pointer; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 0 12px rgba(251,191,36,0.25);
    font-family: 'Outfit', sans-serif;
  }
  .btn-sm:hover { box-shadow: 0 0 22px rgba(251,191,36,0.5); transform: scale(1.03); }

  /* Mobile hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

  /* Mobile nav */
  .mobile-nav {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,10,15,0.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border); padding: 1.5rem;
    flex-direction: column; gap: 1rem; z-index: 99;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { color: var(--muted2); font-size: 1rem; text-decoration: none; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
  .mobile-nav a:last-child { border-bottom: none; }

  /* ===== HERO ===== */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 5rem;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 900px 500px at 20% 0%, rgba(217,165,32,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 600px 400px at 80% 100%, rgba(59,130,246,0.04) 0%, transparent 70%),
      radial-gradient(ellipse 400px 300px at 50% 50%, rgba(245,158,11,0.03) 0%, transparent 60%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.03;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero .container { position: relative; z-index: 1; text-align: center; padding: 4rem 1.5rem; }

  .hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
    margin: 1rem 0 1.5rem;
  }
  .hero p { font-size: 1.05rem; color: var(--muted2); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.75; }

  .hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }

  .countdown-bar {
    display: inline-flex; align-items: center; gap: 0.75rem;
    background: linear-gradient(135deg, rgba(245,158,11,0.1), rgba(251,191,36,0.05));
    border: 1px solid rgba(245,158,11,0.2); border-radius: 9999px;
    padding: 0.6rem 1.25rem; margin-bottom: 2rem;
  }
  .countdown-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fde68a; }
  .countdown-digits { display: flex; gap: 0.25rem; }
  .cd { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.2); color: #fcd34d; font-weight: 700; font-size: 0.875rem; padding: 0.2rem 0.5rem; border-radius: 0.4rem; font-variant-numeric: tabular-nums; }

  .hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .hero-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; font-weight: 600; }
  .hero-badge.green { color: #34d399; }
  .hero-badge.blue { color: #60a5fa; }
  .hero-badge.gold { color: var(--primary); }
  .hero-badge.purple { color: #c084fc; }
  .hero-badge.cyan { color: #22d3ee; }
  .hero-badge svg { width: 14px; height: 14px; }

  /* ===== STATS ===== */
  .stats { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; margin-top: 3rem; }
  .stat-box {
    text-align: center; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 0.75rem; padding: 1rem 0.5rem;
  }
  .stat-box .val { font-size: 1.15rem; font-weight: 800; color: var(--primary); font-family: 'Outfit', sans-serif; }
  .stat-box .lbl { font-size: 0.65rem; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; margin-top: 0.2rem; }

  /* ===== SECTION ===== */
  section { padding: 5rem 0; position: relative; }
  section.alt { background: rgba(255,255,255,0.01); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

  .section-head { text-align: center; margin-bottom: 3.5rem; }
  .section-head h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 800; margin: 0.5rem 0 1rem; }
  .section-head p { color: var(--muted2); max-width: 560px; margin: 0 auto; line-height: 1.75; }

  /* ===== FEATURES ===== */
  .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .feature-card { padding: 1.75rem; }
  .feature-icon {
    width: 44px; height: 44px; border-radius: 0.75rem;
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  }
  .feature-icon svg { width: 20px; height: 20px; color: var(--primary); }
  .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
  .feature-card p { font-size: 0.85rem; color: var(--muted2); line-height: 1.75; }

  /* ===== SERVERS ===== */
  .servers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .server-card { display: flex; flex-direction: column; overflow: hidden; }
  .server-body { padding: 1.5rem; flex: 1; }
  .server-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
  .server-logo {
    width: 56px; height: 56px; border-radius: 0.75rem; overflow: hidden; flex-shrink: 0;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  }
  .server-info { flex: 1; min-width: 0; }
  .server-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; font-family: 'Outfit', sans-serif; }
  .server-desc { font-size: 0.78rem; color: var(--muted); }

  .server-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .server-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.83rem; color: var(--muted2); }
  .server-features li svg { width: 14px; height: 14px; color: var(--primary); flex-shrink: 0; }

  .server-footer {
    padding: 1rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02); display: flex; align-items: center; justify-content: space-between;
  }
  .server-footer .from { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
  .server-footer .price { font-size: 1.2rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
  .server-footer .per { font-size: 0.75rem; color: var(--muted); }

  .server-footer .view-btn {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.08); color: #fff; font-size: 0.78rem; font-weight: 600;
    padding: 0.45rem 1rem; border-radius: 0.5rem; text-decoration: none;
    transition: all 0.25s; border: none; cursor: pointer;
  }
  .server-footer .view-btn:hover { background: var(--primary); color: #000; }

  .server-badge {
    display: inline-flex; align-items: center;
    font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 9999px;
    border: 1px solid rgba(245,158,11,0.3); background: rgba(245,158,11,0.1); color: #fbbf24;
  }

  /* ===== STEPS ===== */
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .step-card { padding: 1.5rem; position: relative; }
  .step-num { font-size: 2.5rem; font-weight: 900; color: rgba(245,158,11,0.1); font-family: 'Outfit', sans-serif; line-height: 1; }
  .step-icon {
    width: 40px; height: 40px; border-radius: 0.7rem;
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
  }
  .step-icon svg { width: 18px; height: 18px; color: var(--primary); }
  .step-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
  .step-card p { font-size: 0.83rem; color: var(--muted2); line-height: 1.7; }

  /* ===== PRICING ===== */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto 3rem; }
  .pricing-card {
    background: rgba(17,17,24,0.8); border: 1px solid var(--border);
    border-radius: 1.25rem; padding: 2rem; position: relative; display: flex; flex-direction: column;
    transition: all 0.3s;
  }
  .pricing-card.featured { border-color: rgba(245,158,11,0.35); transform: scale(1.03); box-shadow: 0 0 40px rgba(245,158,11,0.1); }
  .pricing-card.best { border-color: rgba(245,158,11,0.25); }
  .pricing-badge-top {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
    padding: 0.25rem 0.9rem; border-radius: 9999px; white-space: nowrap;
  }
  .pricing-badge-top.starter { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.1); }
  .pricing-badge-top.featured-top { background: var(--primary); color: #000; }
  .pricing-badge-top.best-top { background: rgba(245,158,11,0.9); color: #000; }

  .pricing-header { text-align: center; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; }
  .pricing-header h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
  .pricing-credits { font-size: 1.5rem; font-weight: 800; color: var(--primary); font-family: 'Outfit', sans-serif; }
  .pricing-original { font-size: 0.85rem; color: var(--muted); text-decoration: line-through; margin: 0.25rem 0; }
  .pricing-price { font-size: 1.25rem; font-weight: 800; font-family: 'Outfit', sans-serif; }
  .pricing-note { font-size: 0.7rem; color: var(--muted); margin-top: 0.25rem; }
  .pricing-desc { font-size: 0.83rem; color: var(--muted2); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
  .pricing-secure { text-align: center; margin-top: 0; }
  .secure-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0.75rem; padding: 0.75rem 1.25rem;
  }
  .secure-badge svg { width: 16px; height: 16px; color: var(--primary); }
  .secure-badge span { font-size: 0.8rem; color: var(--muted2); }
  .secure-badge strong { font-size: 0.85rem; font-weight: 700; }

  /* ===== DEVICES ===== */
  .devices-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
  .device-card {
    text-align: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 1rem; padding: 1rem 0.5rem;
    transition: all 0.3s; cursor: default;
  }
  .device-card:hover { border-color: rgba(245,158,11,0.15); background: rgba(245,158,11,0.03); }
  .device-icon {
    width: 40px; height: 40px; border-radius: 0.6rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem;
    transition: all 0.3s;
  }
  .device-card:hover .device-icon { border-color: rgba(245,158,11,0.2); }
  .device-icon svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); transition: color 0.3s; }
  .device-card:hover .device-icon svg { color: var(--primary); }
  .device-name { font-size: 0.75rem; font-weight: 700; margin-bottom: 0.2rem; }
  .device-sub { font-size: 0.65rem; color: var(--muted); }

  /* ===== TRUST ===== */
  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .trust-card { padding: 2rem; display: flex; flex-direction: column; }
  .trust-icon {
    width: 48px; height: 48px; border-radius: 0.85rem;
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
  }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-card.blue-card { background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent); border-color: rgba(59,130,246,0.15) !important; }
  .trust-card.blue-card .trust-icon { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.2); }
  .trust-card.blue-card .trust-icon svg { color: #60a5fa; }
  .trust-card.gold-card { background: linear-gradient(135deg, rgba(245,158,11,0.08), transparent); border-color: rgba(245,158,11,0.15) !important; }
  .trust-card.gold-card .trust-icon { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.2); }
  .trust-card.gold-card .trust-icon svg { color: var(--primary); }
  .trust-card.green-card { background: linear-gradient(135deg, rgba(16,185,129,0.08), transparent); border-color: rgba(16,185,129,0.15) !important; }
  .trust-card.green-card .trust-icon { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.2); }
  .trust-card.green-card .trust-icon svg { color: #34d399; }
  .trust-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; }
  .trust-card p { font-size: 0.85rem; color: var(--muted2); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
  .trust-btn {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 600; padding: 0.65rem 1.25rem;
    border-radius: 0.65rem; text-decoration: none; transition: all 0.3s; cursor: pointer;
  }
  .trust-btn.blue { border: 1px solid rgba(59,130,246,0.2); color: #60a5fa; background: transparent; }
  .trust-btn.blue:hover { background: rgba(59,130,246,0.1); }
  .trust-btn.gold { border: 1px solid rgba(245,158,11,0.2); color: var(--primary); background: transparent; }
  .trust-btn.gold:hover { background: rgba(245,158,11,0.1); }
  .trust-btn.green { border: 1px solid rgba(16,185,129,0.3); color: #34d399; background: rgba(16,185,129,0.06); }
  .trust-btn.green:hover { background: rgba(16,185,129,0.15); }

  .trust-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 2.5rem; }
  .trust-stat {
    text-align: center; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 0.75rem; padding: 0.75rem 0.5rem;
  }
  .trust-stat svg { width: 16px; height: 16px; color: var(--primary); margin: 0 auto 0.4rem; display: block; }
  .trust-stat span { font-size: 0.7rem; color: var(--muted2); font-weight: 600; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .testimonial-card { padding: 1.5rem; display: flex; flex-direction: column; }
  .stars { display: flex; gap: 3px; margin-bottom: 1rem; }
  .stars svg { width: 15px; height: 15px; fill: #fbbf24; color: #fbbf24; }
  .stars svg.empty { fill: rgba(255,255,255,0.08); color: rgba(255,255,255,0.08); }
  .testimonial-card blockquote { font-size: 0.875rem; color: var(--muted2); line-height: 1.75; flex: 1; margin-bottom: 1.25rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
  .author-avatar {
    width: 36px; height: 36px; border-radius: 9999px;
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 800; color: var(--primary);
  }
  .author-name { font-size: 0.875rem; font-weight: 700; }
  .author-region { font-size: 0.7rem; color: var(--muted); }

  /* ===== GUIDE ===== */
  .guide-list { display: flex; flex-direction: column; gap: 3rem; max-width: 800px; margin: 0 auto; }
  .guide-item { display: flex; gap: 1.5rem; }
  .guide-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem;
    background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; font-weight: 800; color: var(--primary); font-family: 'Outfit', sans-serif;
  }
  .guide-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; font-family: 'Outfit', sans-serif; }
  .guide-item p { font-size: 0.875rem; color: var(--muted2); line-height: 1.85; }

  /* ===== FAQ ===== */
  .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
  .faq-item { border: 1px solid var(--border); border-radius: 1rem; overflow: hidden; transition: border-color 0.3s; }
  .faq-item.open { border-color: rgba(245,158,11,0.2); background: linear-gradient(90deg, rgba(245,158,11,0.04), transparent); }
  .faq-btn {
    width: 100%; display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
    background: none; border: none; cursor: pointer; text-align: left;
  }
  .faq-num {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 800; font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
  }
  .faq-item.open .faq-num { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.2); color: var(--primary); }
  .faq-item:not(.open) .faq-num { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
  .faq-q { flex: 1; font-size: 0.95rem; font-weight: 600; color: #fff; }
  .faq-chevron {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 0.6rem; border: 1px solid;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
  }
  .faq-chevron svg { width: 15px; height: 15px; transition: transform 0.3s; }
  .faq-item.open .faq-chevron { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); }
  .faq-item.open .faq-chevron svg { transform: rotate(180deg); color: var(--primary); }
  .faq-item:not(.open) .faq-chevron { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
  .faq-item:not(.open) .faq-chevron svg { color: rgba(255,255,255,0.6); }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-answer p { padding: 0 1.25rem 1.25rem 4.5rem; font-size: 0.875rem; color: var(--muted2); line-height: 1.75; }
  .faq-footer { text-align: center; margin-top: 2.5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ===== CTA ===== */
  .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(245,158,11,0.04) 0%, rgba(251,191,36,0.02) 50%, rgba(17,17,24,0) 100%);
    border-top: 1px solid var(--border); position: relative; overflow: hidden;
  }
  .cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(245,158,11,0.07) 0%, transparent 70%); pointer-events: none; }
  .cta-section .container { text-align: center; position: relative; z-index: 1; }
  .cta-section h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; margin: 0.75rem 0 1rem; }
  .cta-section p { color: var(--muted2); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.75; }
  .cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
  .cta-links { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; }
  .cta-links-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 1rem; }
  .cta-links-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .cta-link {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.85rem; color: var(--muted2); padding: 0.45rem 1rem; border-radius: 0.5rem;
    text-decoration: none; transition: all 0.2s;
  }
  .cta-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
  .cta-link svg { width: 13px; height: 13px; }

  /* ===== FOOTER ===== */
  footer { background: rgba(0,0,0,0.5); border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-brand p { font-size: 0.875rem; color: var(--muted); max-width: 380px; line-height: 1.75; margin: 1.25rem 0 1.25rem; }
  .footer-socials { display: flex; gap: 0.75rem; }
  .social-btn {
    width: 38px; height: 38px; border-radius: 9999px; background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center; transition: all 0.25s; text-decoration: none; color: #fff;
  }
  .social-btn svg { width: 16px; height: 16px; }
  .social-btn:hover { background: var(--primary); color: #000; }
  .footer-col h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1.5rem; font-family: 'Outfit', sans-serif; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
  .footer-col ul a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--primary); }
  .footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-bottom p { font-size: 0.8rem; color: var(--muted); }
  .footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; }
  .footer-bottom-right span { font-size: 0.75rem; color: var(--muted); }
  .footer-bottom-right strong { font-weight: 700; }

  /* ===== SVG ICONS ===== */
  svg { display: inline-block; vertical-align: middle; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1100px) {
    .features-grid, .servers-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(3, 1fr); }
    .devices-grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 768px) {
    nav, .header-actions { display: none; }
    .hamburger { display: flex; z-index: 101; position: relative; }

    .features-grid, .servers-grid, .trust-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-stats { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .pricing-card.featured { transform: none; }
    .hero-badges { gap: 1rem; }
    .guide-item { flex-direction: column; gap: 0.75rem; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  @media (max-width: 480px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .devices-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-stats { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2rem; }
    .cta-btns, .hero-cta { flex-direction: column; align-items: center; }
  }

  /* ===== LANGUAGE SWITCHER ===== */
  .lang-switcher { position: relative; display: inline-flex; align-items: center; }

  .lang-btn {
    display: inline-flex; align-items: center; gap: 0.45rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 0.6rem; padding: 0.45rem 0.8rem;
    cursor: pointer; color: #fff; font-size: 0.8rem; font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; white-space: nowrap;
  }
  .lang-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,158,11,0.4); color: var(--primary); }
  .lang-btn .lb-flag { font-size: 0.95rem; line-height: 1; }
  .lang-btn .lb-name { font-size: 0.78rem; font-weight: 700; }
  .lang-btn .lb-chevron { width: 13px; height: 13px; opacity: 0.55; transition: transform 0.25s; flex-shrink: 0; }
  .lang-switcher.open .lang-btn { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.06); color: var(--primary); }
  .lang-switcher.open .lb-chevron { transform: rotate(180deg); opacity: 1; }

  .lang-dropdown {
    display: none; position: absolute; top: calc(100% + 0.45rem); right: 0;
    background: #13131c; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.85rem; padding: 0.35rem;
    min-width: 155px; z-index: 9999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.06);
    animation: ldropIn 0.18s ease;
  }
  .lang-switcher.open .lang-dropdown { display: block; }

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

  .lang-option {
    display: flex; align-items: center; gap: 0.55rem;
    padding: 0.55rem 0.75rem; border-radius: 0.55rem;
    cursor: pointer; transition: all 0.15s;
    font-size: 0.83rem; font-weight: 500; color: var(--muted2);
    border: none; background: none; width: 100%; text-align: left;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .lang-option:hover { background: rgba(245,158,11,0.08); color: #fff; }
  .lang-option.active { background: rgba(245,158,11,0.12); color: var(--primary); font-weight: 700; }
  .lang-option .lo-flag { font-size: 1.05rem; line-height: 1; flex-shrink: 0; }
  .lang-option .lo-name { flex: 1; }
  .lang-option .lo-check { width: 13px; height: 13px; color: var(--primary); opacity: 0; flex-shrink: 0; }
  .lang-option.active .lo-check { opacity: 1; }
  .rtl-pill {
    font-size: 0.58rem; font-weight: 800; text-transform: uppercase;
    background: rgba(245,158,11,0.15); color: var(--primary);
    border-radius: 3px; padding: 0.1rem 0.3rem; letter-spacing: 0.04em;
  }

  /* Mobile lang switcher in nav */
  .mobile-lang { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .mobile-lang-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 0.6rem; }
  .mobile-lang-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
  .mobile-lang-btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0.5rem; padding: 0.4rem 0.75rem;
    cursor: pointer; color: var(--muted2); font-size: 0.8rem; font-weight: 600;
    transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .mobile-lang-btn:hover, .mobile-lang-btn.active { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: var(--primary); }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.5;} }
  .animate-fadeup { animation: fadeUp 0.7s ease forwards; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .pulse { animation: pulse 2s ease-in-out infinite; }

/* ===== LANGUAGE SWITCHER WIDGET ===== */
.ls-widget { position: relative; display: inline-flex; align-items: center; }
.ls-toggle { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 0.6rem; padding: 0.45rem 0.85rem; cursor: pointer; color: #fff; font-size: 0.8rem; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; white-space: nowrap; }
.ls-toggle:hover { background: rgba(255,255,255,0.08); border-color: rgba(245,158,11,0.4); color: var(--primary); }
.ls-toggle.ls-open { border-color: rgba(245,158,11,0.4); background: rgba(245,158,11,0.06); color: var(--primary); }
.ls-flag-icon { font-size: 1rem; line-height: 1; }
.ls-flag-fr::before { content: "🇫🇷"; }
.ls-flag-en::before { content: "🇬🇧"; }
.ls-flag-ar::before { content: "🇸🇦"; }
.ls-flag-es::before { content: "🇪🇸"; }
.ls-flag-de::before { content: "🇩🇪"; }
.ls-flag-nl::before { content: "🇳🇱"; }
.ls-text { font-size: 0.78rem; font-weight: 700; }
.ls-menu { display: none; position: absolute; top: calc(100% + 0.45rem); right: 0; background: #13131c; border: 1px solid rgba(255,255,255,0.1); border-radius: 0.85rem; padding: 0.35rem; min-width: 170px; z-index: 9999; box-shadow: 0 12px 40px rgba(0,0,0,0.6); animation: lsDropIn 0.18s ease; }
.ls-menu.open { display: block; }
@keyframes lsDropIn { from { opacity: 0; transform: translateY(-8px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.ls-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.75rem; border-radius: 0.55rem; cursor: pointer; transition: all 0.15s; font-size: 0.83rem; color: rgba(255,255,255,0.7); font-family: 'Plus Jakarta Sans', sans-serif; }
.ls-item:hover { background: rgba(245,158,11,0.08); color: #fff; }
.ls-item.active { background: rgba(245,158,11,0.12); color: var(--primary); font-weight: 700; }
.ls-name-main { flex: 1; font-weight: 500; }
.ls-name-code { font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.4); }
.ls-item.active .ls-name-code { color: var(--primary); opacity: 1; }


/* FLOATING LANGUAGE BUTTON */
.lang-float {
  position: fixed;
  left: 1rem;
  bottom: 1.5rem;
  z-index: 230;
}
.lang-float .ls-widget { position: relative; }
.lang-float .ls-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 9999px;
  justify-content: center;
  background: rgba(19,19,28,0.92);
  border: 1px solid rgba(245,158,11,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 20px rgba(245,158,11,0.12);
  backdrop-filter: blur(18px);
}
.lang-float .ls-toggle:hover,
.lang-float .ls-toggle.ls-open {
  transform: translateY(-1px) scale(1.04);
}
.lang-float .ls-text { display: none; }
.lang-float .ls-flag-icon { font-size: 1.2rem; }
.lang-float .ls-menu {
  right: auto;
  left: 0;
  top: auto;
  bottom: calc(100% + 0.6rem);
  min-width: 190px;
}
@media (max-width: 560px) {
  .lang-float { left: 0.85rem; bottom: 1rem; }
  .lang-float .ls-toggle { width: 52px; height: 52px; }
  .lang-float .ls-menu { min-width: 180px; }
}