  :root {
    --purple-700: #6D28D9;
    --purple-600: #7C3AED;
    --purple-500: #8B5CF6;
    --purple-400: #A78BFA;
    --purple-100: #EDE9FE;
    --purple-50:  #F5F3FF;
    --lavender-bg: #F4F1FB;
    --green-600: #16A34A;
    --green-100: #DCFCE7;
    --ink-900: #14101E;
    --ink-700: #3C3548;
    --ink-500: #6B6478;
    --line: #E8E3F2;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(20,16,30,0.04), 0 2px 6px rgba(124,58,237,0.06);
    --shadow-md: 0 6px 18px rgba(124,58,237,0.08), 0 2px 6px rgba(20,16,30,0.04);
    --shadow-lg: 0 18px 40px rgba(124,58,237,0.18), 0 8px 16px rgba(20,16,30,0.06);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
    color: var(--ink-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
  }
  html[lang="he"] body { font-family: 'Heebo', -apple-system, system-ui, sans-serif; }
  a { color: inherit; text-decoration: none; }

  /* ===== Top nav ===== */
  .nav { position: sticky; top: 0; z-index: 50; background: var(--purple-600); color: white; }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 16px 28px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .wordmark {
    font-family: 'Allura', cursive;
    font-size: 42px; line-height: 1; color: white; letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .wordmark img { width: 38px; height: 38px; border-radius: 10px; display: block; box-shadow: 0 4px 12px rgba(0,0,0,0.20); }
  .nav-links { display: flex; gap: 28px; align-items: center; font-size: 15px; font-weight: 500; }
  .nav-links a { opacity: 0.9; transition: opacity .15s; cursor: pointer; }
  .nav-links a:hover { opacity: 1; }
  .nav-cta {
    background: white; color: var(--purple-700);
    padding: 10px 18px; border-radius: 999px;
    font-weight: 700; font-size: 14px;
    transition: transform .15s;
  }
  .nav-cta:hover { transform: translateY(-1px); }
  .lang-toggle {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 8px 12px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background .15s;
  }
  .lang-toggle:hover { background: rgba(255,255,255,0.22); }
  .lang-toggle svg { opacity: 0.85; }

  /* ===== Hero ===== */
  .hero { background: var(--purple-600); color: white; padding: 40px 28px 80px; position: relative; overflow: hidden; }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background:
      radial-gradient(800px 400px at 85% 20%, rgba(255,255,255,0.10), transparent 60%),
      radial-gradient(600px 300px at 10% 80%, rgba(255,255,255,0.06), transparent 60%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 60px; align-items: center;
    position: relative;
  }
  .pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    padding: 7px 14px; border-radius: 999px;
    font-size: 13px; font-weight: 500;
    backdrop-filter: blur(6px);
  }
  .pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 4px rgba(74,222,128,0.25); }
  .hero h1 {
    font-size: clamp(40px, 5.2vw, 68px);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
    margin: 22px 0 18px;
  }
  .hero h1 .script {
    font-family: 'Allura', cursive;
    font-weight: 400; font-size: 1.15em; line-height: 0.8;
    color: #F5F3FF;
  }
  html[lang="he"] .hero h1 .script { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 1em; }
  .hero p.lede { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 0 32px; }
  .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-primary {
    background: white; color: var(--purple-700);
    padding: 14px 24px; border-radius: 999px;
    font-weight: 700; font-size: 15px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.20); }
  .btn-ghost {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.30);
    color: white;
    padding: 14px 24px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .15s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.18); }

  /* Store buttons */
  .store-row { display: flex; gap: 12px; flex-wrap: wrap; }
  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    background: #14101E; color: white;
    padding: 10px 18px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: transform .15s, background .15s; cursor: pointer;
  }
  .store-btn:hover { transform: translateY(-2px); background: #1F1830; }
  .store-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
  html[dir="rtl"] .store-text { text-align: right; }
  .store-sm { font-size: 11px; opacity: 0.75; }
  .store-lg { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }

  /* Coming soon toast */
  .toast {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: var(--ink-900); color: white;
    padding: 14px 22px; border-radius: 999px;
    font-weight: 600; font-size: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.30);
    opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
    z-index: 100;
    display: inline-flex; align-items: center; gap: 10px;
  }
  .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
  .toast .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ADE80; }

  .hero-meta { margin-top: 38px; display: flex; gap: 28px; align-items: center; color: rgba(255,255,255,0.85); font-size: 14px; }
  .avatars { display: flex; }
  .avatars .a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 2px solid var(--purple-600);
    margin-left: -10px;
    background-size: cover; background-position: center;
  }
  .avatars .a:first-child { margin-left: 0; }
  html[dir="rtl"] .avatars .a { margin-left: 0; margin-right: -10px; }
  html[dir="rtl"] .avatars .a:first-child { margin-right: 0; }
  .avatars .a:nth-child(1){ background: linear-gradient(135deg,#F59E0B,#EF4444); }
  .avatars .a:nth-child(2){ background: linear-gradient(135deg,#8B5CF6,#EC4899); }
  .avatars .a:nth-child(3){ background: linear-gradient(135deg,#10B981,#3B82F6); }
  .avatars .a:nth-child(4){ background: linear-gradient(135deg,#F472B6,#A78BFA); }

  /* ===== Phone mockup ===== */
  .phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
  .phone {
    width: 300px; height: 610px;
    background: #14101E;
    border-radius: 44px;
    padding: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.20), inset 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
  }
  .phone::before {
    content: ""; position: absolute;
    top: 22px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 22px; background: #14101E;
    border-radius: 999px; z-index: 5;
  }
  .screen-img { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; display: block; }

  /* ===== Section base ===== */
  section { padding: 100px 28px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .eyebrow {
    text-transform: uppercase; letter-spacing: 0.12em;
    font-size: 12px; font-weight: 700;
    color: var(--purple-600); margin: 0 0 14px;
  }
  h2.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800; line-height: 1.08; letter-spacing: -0.02em;
    margin: 0 0 18px; max-width: 720px; text-wrap: balance;
  }
  .section-sub { font-size: 18px; line-height: 1.55; color: var(--ink-700); max-width: 620px; margin: 0; }

  /* ===== Features ===== */
  .features { background: var(--lavender-bg); }
  .feature-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feat {
    background: white; border-radius: var(--radius-lg);
    padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column; min-height: 320px;
  }
  .feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .feat .ico {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--purple-100); color: var(--purple-700);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .feat h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.01em; }
  .feat p { font-size: 15px; color: var(--ink-700); margin: 0; line-height: 1.55; }
  .feat .visual { margin-top: auto; padding-top: 24px; }

  .visual-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .visual-tags .tag {
    background: #DBF4E2; color: var(--green-600);
    padding: 6px 12px; border-radius: 999px;
    font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
  }
  .visual-tags .tag.lavender { background: var(--purple-100); color: var(--purple-700); }

  .visual-event { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 14px; display: flex; gap: 12px; align-items: center; }
  .visual-event .cal { width: 44px; height: 44px; border-radius: 12px; background: var(--purple-100); color: var(--purple-700); display: flex; align-items: center; justify-content: center; }
  .visual-event .info { flex: 1; line-height: 1.3; }
  .visual-event .info b { font-size: 14px; }
  .visual-event .info span { font-size: 12px; color: var(--ink-500); display: block; }
  .visual-event .going { background: var(--green-100); color: var(--green-600); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 700; }

  .visual-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .visual-chips .chip { background: #DEEDE9; color: #166f5e; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }

  .visual-providers { display: flex; gap: 8px; }
  .visual-providers .card { flex: 1; background: white; border: 1px solid var(--line); border-radius: 14px; padding: 12px; text-align: center; }
  .visual-providers .card .ico-sm { width: 36px; height: 36px; margin: 0 auto 6px; background: var(--purple-100); color: var(--purple-700); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
  .visual-providers .card span { font-size: 12px; font-weight: 600; color: var(--ink-700); }

  /* ===== How it works ===== */
  .how { padding: 100px 28px; }
  .steps { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .step { padding: 28px; border-radius: var(--radius-md); border: 1px solid var(--line); background: white; }
  .step .num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--purple-600); color: white; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .step h3 { margin: 0 0 6px; font-size: 18px; font-weight: 700; }
  .step p { margin: 0; font-size: 14px; color: var(--ink-700); line-height: 1.55; }

  /* ===== Providers band ===== */
  .providers {
    background: var(--purple-600); color: white;
    border-radius: 32px; max-width: 1200px; margin: 0 auto;
    padding: 56px;
    display: grid; grid-template-columns: 1.2fr 0.8fr;
    gap: 40px; align-items: center;
    position: relative; overflow: hidden;
  }
  .providers-wrap { padding: 0 28px 100px; }
  .providers::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 300px at 90% 10%, rgba(255,255,255,0.15), transparent 60%); pointer-events: none; }
  .providers h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin: 0 0 12px; letter-spacing: -0.02em; line-height: 1.1; }
  .providers p { color: rgba(255,255,255,0.85); font-size: 16px; margin: 0 0 24px; }
  .providers .badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .providers .badges .b { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.22); padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 500; }
  .providers-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; }
  .stat { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); border-radius: 18px; padding: 22px; backdrop-filter: blur(8px); }
  .stat .big { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
  .stat .lbl { font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 4px; }

  /* ===== Contact ===== */
  .contact { background: var(--lavender-bg); }
  .contact-grid { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .contact-card { background: white; border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
  .contact-card h3 { margin: 0 0 8px; font-size: 22px; font-weight: 700; }
  .contact-card p { margin: 0 0 24px; color: var(--ink-700); font-size: 15px; }
  .email-link {
    display: inline-flex; align-items: center; gap: 12px;
    background: var(--purple-50); border: 1px solid var(--purple-100);
    border-radius: 14px; padding: 16px 20px;
    font-weight: 600; color: var(--purple-700);
    transition: background .15s, transform .15s;
    direction: ltr;
  }
  .email-link:hover { background: var(--purple-100); transform: translateY(-1px); }
  .email-link .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--purple-600); color: white; display: flex; align-items: center; justify-content: center; }

  .faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
  .faq-item:last-child { border-bottom: none; padding-bottom: 0; }
  .faq-item summary {
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 15px; color: var(--ink-900);
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary .plus {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--purple-100); color: var(--purple-700);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; transition: transform .2s;
  }
  .faq-item[open] summary .plus { transform: rotate(45deg); }
  .faq-item p { margin: 10px 0 0; font-size: 14px; color: var(--ink-700); line-height: 1.55; }

  /* ===== CTA band ===== */
  .cta-band { padding: 80px 28px; text-align: center; }
  .cta-band h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin: 0 0 14px; letter-spacing: -0.02em; }
  .cta-band h2 .script { font-family: 'Allura', cursive; font-weight: 400; color: var(--purple-600); font-size: 1.2em; line-height: 0.8; }
  html[lang="he"] .cta-band h2 .script { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 1em; color: var(--purple-600); }
  .cta-band p { color: var(--ink-700); font-size: 17px; margin: 0 auto 32px; max-width: 540px; }

  /* ===== Footer ===== */
  footer { background: var(--ink-900); color: rgba(255,255,255,0.7); padding: 56px 28px 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  footer .wordmark { color: white; }
  footer p { font-size: 14px; line-height: 1.55; margin: 12px 0 0; max-width: 320px; }
  footer h4 { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; }
  footer ul { list-style: none; padding: 0; margin: 0; }
  footer li { margin-bottom: 10px; font-size: 14px; }
  footer a { transition: color .15s; }
  footer a:hover { color: white; }
  .footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.5); }

  .ico svg { width: 28px; height: 28px; }
  .ico-sm svg { width: 18px; height: 18px; }

  /* RTL adjustments */
  html[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; }
  html[dir="rtl"] .footer-bottom { direction: rtl; }

  /* Responsive */
  @media (max-width: 900px) {
    .nav-links a:not(.nav-cta):not(.lang-toggle) { display: none; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .phone { transform: scale(0.9); }
    .feature-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .providers { grid-template-columns: 1fr; padding: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    section { padding: 72px 22px; }
    .hero { padding: 32px 22px 64px; }
  }
  @media (max-width: 520px) {
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
    .wordmark { font-size: 36px; }
  }

/* ===== Footer social links ===== */
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-link { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.85); transition: background .15s, color .15s; }
.social-link:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* ===== Legal pages ===== */
.legal { max-width: 820px; margin: 0 auto; padding: 56px 28px 90px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; color: var(--purple-700); font-weight: 600; font-size: 14px; margin-bottom: 22px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal .updated { color: var(--ink-500); font-size: 14px; margin: 0 0 32px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 15px; line-height: 1.7; color: var(--ink-700); }
.legal ul { padding-inline-start: 22px; margin: 8px 0; }
.legal a { color: var(--purple-700); font-weight: 600; }
.legal-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 14px; }
.legal-table th, .legal-table td { border: 1px solid var(--line); padding: 8px 12px; text-align: left; vertical-align: top; }
.legal-table th { background: var(--purple-50); font-weight: 700; color: var(--ink-900); }
