:root {
    /* Replace these values with exact colors from your "Color pallet .png" */
    --bg: #08111f;
    --surface: #101b2b;
    --surface-2: #132238;
    --text: #eaf2ff;
    --muted: #a8b7cc;
    --primary: #23d39b;
    --primary-2: #17b784;
    --border: rgba(255, 255, 255, 0.12);
  
    /* Replace with exact gradient from "profile picture 2.png" */
    --hero-gradient: linear-gradient(135deg, #0b2a45 0%, #123b63 45%, #1aa07a 100%);
  }
  
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
  }

  html[lang="ar"] body {
    font-family: Tajawal, Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  }
  
  .container {
    width: min(1120px, 92%);
    margin-inline: auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(8, 17, 31, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  
  .brand-logo {
    height: 60px;
    width: auto;
    display: block;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }

  .lang-switch {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
  }

  .lang-btn {
    margin: 0;
    padding: 8px 12px;
    font: inherit;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .lang-btn.is-active {
    background: rgba(35, 211, 155, 0.2);
    color: var(--primary);
  }

  .header-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
  }
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.2s ease;
    cursor: pointer;
  }
  
  .btn-lg { padding: 12px 20px; font-size: 1rem; }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #041216;
  }
  .btn-primary:hover { filter: brightness(1.08); }
  
  .btn-ghost {
    color: var(--text);
    border-color: var(--border);
    background: transparent;
  }
  .btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }
  
  .hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 60px;
  }
  .hero-gradient {
    position: absolute;
    inset: 0;
    background: var(--hero-gradient);
    opacity: 0.35;
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: center;
  }
  .eyebrow {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 0.8rem;
  }

  html[lang="ar"] .eyebrow {
    text-transform: none;
    letter-spacing: normal;
  }
  .hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
  }
  .hero-text {
    margin: 0 0 20px;
    color: var(--muted);
    max-width: 55ch;
  }
  .hero-cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .hero-card {
    background: rgba(16, 27, 43, 0.72);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
  }
  .hero-card h3 { margin-top: 0; }
  .hero-card ul { margin: 0; padding-inline-start: 18px; color: var(--muted); }
  
  .section { padding: 70px 0; }
  .section-alt { background: rgba(255, 255, 255, 0.02); }
  .section h2 {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  }
  .section-subtitle { margin: 0 0 24px; color: var(--muted); }
  
  .card-grid {
    display: grid;
    gap: 16px;
  }
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  
  .info-card,
  .price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
  }
  .info-card h3,
  .price-card h3 { margin-top: 0; }
  
  .price {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 8px 0 12px;
  }
  .price-card ul {
    color: var(--muted);
    padding-inline-start: 18px;
    min-height: 90px;
  }
  .price-card.featured {
    border-color: rgba(35, 211, 155, 0.65);
    box-shadow: 0 0 0 1px rgba(35, 211, 155, 0.2) inset;
  }
  .badge {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #041216;
    background: var(--primary);
    border-radius: 999px;
    padding: 4px 10px;
  }
  
  .launcher-form {
    display: grid;
    grid-template-columns: 1fr 190px 120px;
    gap: 10px;
  }
  .launcher-form input,
  .launcher-form select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface-2);
    color: var(--text);
    padding: 10px 12px;
  }
  
  .faq-list details {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 10px;
  }
  .faq-list summary {
    cursor: pointer;
    font-weight: 600;
  }
  .faq-list p { color: var(--muted); margin-bottom: 0; }
  
  .site-footer {
    border-top: 1px solid var(--border);
    background: #060d18;
    padding: 28px 0 34px;
  }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-logo {
    height: 30px;
    width: auto;
  }
  .footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-links a {
    color: var(--muted);
    text-decoration: none;
  }
  .footer-links a:hover { color: var(--text); }
  
  /* Simple inner pages (Support, Privacy, About) */
  .static-page {
    padding: 48px 0 80px;
  }
  .static-page-inner {
    max-width: 65ch;
  }
  .static-page h1 {
    margin: 0 0 12px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.2;
  }
  .static-page .static-lead {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 1.05rem;
  }
  .static-page h2 {
    margin: 28px 0 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
  }
  .static-page p,
  .static-page li {
    margin: 0 0 12px;
    color: var(--muted);
  }
  .static-page ul {
    margin: 0 0 16px;
    padding-inline-start: 1.25rem;
  }
  .static-page a {
    color: var(--primary);
    text-decoration: none;
  }
  .static-page a:hover {
    text-decoration: underline;
  }
  .static-page .note-box {
    margin-top: 24px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-size: 0.9rem;
    color: var(--muted);
  }

  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .launcher-form { grid-template-columns: 1fr; }
  }