/* DNP Finance — אתר נחיתה. סגנון מותג DNP: מינימלי, RTL, accent סגול #7d37eb. */
:root {
  --purple: #7d37eb;
  --purple-2: #9b5cff;
  --ink: #0b0b12;
  --muted: #62626f;
  --bg: #ffffff;
  --bg-soft: #f6f5fb;
  --card: #ffffff;
  --border: #eceaf3;
  --shadow: 0 18px 50px rgba(125, 55, 235, 0.10);
  --radius: 22px;
  --maxw: 1200px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f4f4f8; --muted: #a0a0ad; --bg: #0a0a0f; --bg-soft: #111119;
    --card: #14141d; --border: #23232f; --shadow: 0 18px 50px rgba(0,0,0,0.5);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Assistant", "Heebo", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Arial, sans-serif;
  color: var(--ink); background: var(--bg); direction: rtl;
  line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* כותרת עליונה */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(20px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.3px; }
.brand .tile { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--purple), var(--purple-2)); box-shadow: 0 4px 12px rgba(125,55,235,.35); display: grid; place-items: center; color: #fff; font-weight: 900; font-size: 15px; }
.brand .accent { color: var(--purple); }
.nav-links { flex: 1; display: flex; gap: 32px; align-items: center; justify-content: center; font-size: 16.5px; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta { flex: 0 0 auto; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 0;
  background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: #fff;
  padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 22px rgba(125,55,235,.32); transition: transform .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(125,55,235,.42); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); box-shadow: none; }

/* hero */
.hero { padding: 84px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% 30% auto 30%; height: 460px;
  background: radial-gradient(closest-side, rgba(125,55,235,.18), transparent 70%); z-index: -1;
}
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--purple); background: color-mix(in srgb, var(--purple) 12%, transparent); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(34px, 6vw, 60px); line-height: 1.08; letter-spacing: -1.2px; font-weight: 800; }
.hero h1 .accent { color: var(--purple); }
.hero p.lead { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 640px; margin: 20px auto 30px; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.store-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* כפתור App Store — אייקון בקו ישר עם הכיתוב */
.appstore { display: inline-flex; align-items: center; gap: 10px; background: var(--ink); color: var(--bg); padding: 14px 28px; border-radius: 14px; font-weight: 800; font-size: 18px; line-height: 1; transition: transform .15s ease, box-shadow .15s ease; }
.appstore:hover { transform: translateY(-1px); }
.appstore svg { width: 19px; height: 22px; flex: 0 0 auto; }
.appstore span { line-height: 1; }

/* mock דשבורד */
.phone { margin: 54px auto 0; width: 300px; max-width: 86vw; border-radius: 42px; background: var(--card); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 14px; }
.phone .notch { width: 120px; height: 26px; background: var(--ink); border-radius: 0 0 16px 16px; margin: -14px auto 14px; }
.screen { border-radius: 28px; background: linear-gradient(180deg, var(--bg-soft), var(--bg)); padding: 18px; text-align: right; }
.balance-card { background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: #fff; border-radius: 18px; padding: 18px; box-shadow: 0 10px 24px rgba(125,55,235,.3); }
.balance-card .label { font-size: 12px; opacity: .85; }
.balance-card .amount { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; margin-top: 4px; }
.mini-row { display: flex; align-items: center; gap: 10px; padding: 11px 4px; border-bottom: 1px solid var(--border); }
.mini-row:last-child { border: 0; }
.dot { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 15px; flex: 0 0 auto; }
.mini-row .t { flex: 1; }
.mini-row .t b { font-size: 14px; display: block; }
.mini-row .t span { font-size: 12px; color: var(--muted); }
.mini-row .amt { font-weight: 800; font-size: 14px; }
.amt.neg { color: #e0405a; } .amt.pos { color: #21a565; }

/* features */
section { padding: 70px 0; }
.section-title { text-align: center; margin-bottom: 46px; }
.section-title h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.6px; font-weight: 800; }
.section-title p { color: var(--muted); margin-top: 10px; font-size: 17px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card .ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 22px; color: #fff; background: linear-gradient(135deg, var(--purple), var(--purple-2)); margin-bottom: 16px; }
.card h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.3px; }
.card p { color: var(--muted); font-size: 15px; }

/* פס פרטיות */
.band { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.band .lock { font-size: 40px; }
.band h2 { font-size: clamp(24px, 4vw, 34px); margin: 14px 0; letter-spacing: -0.5px; }
.band p { color: var(--muted); max-width: 620px; margin: 0 auto; font-size: 17px; }

/* footer */
footer { padding: 50px 0 40px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a:hover { color: var(--purple); }

/* עמודי מסמך (privacy/terms/accessibility/support) — פריסה מתוחה ושטוחה, ללא קוביות */
.doc { padding: 56px 0 70px; max-width: 1080px; }
.doc .doc-head { margin-bottom: 14px; }
.doc h1 { font-size: 34px; letter-spacing: -0.6px; }
.doc .updated { color: var(--muted); font-size: 14px; margin-top: 4px; }
.doc-intro { color: var(--muted); font-size: 16.5px; line-height: 1.9; margin: 18px 0 30px; }
.doc-section { background: none; border: 0; border-radius: 0; padding: 0 0 22px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.doc-section:last-child { border-bottom: 0; }
.doc-section h3 { font-size: 20px; margin-bottom: 12px; letter-spacing: -.2px; }
.doc-section p { color: var(--muted); line-height: 1.9; margin-bottom: 12px; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section ul { color: var(--muted); line-height: 1.9; padding-inline-start: 24px; margin: 8px 0; }
.doc-section li { margin-bottom: 8px; }
.doc-section a { color: var(--purple); font-weight: 700; }
.doc-section b { color: var(--ink); }
.back { display: inline-flex; align-items: center; gap: 6px; color: var(--purple); font-weight: 700; margin-bottom: 22px; }

/* ====== לוגו בניווט (בהיר/כהה) ====== */
.brand .logo { height: 48px; width: auto; display: block; }
.nav-links .btn { margin-inline-start: 6px; }
.brand .logo-w { display: none; }
.brand-sub { font-weight: 800; font-size: 19px; letter-spacing: -0.3px; color: var(--ink); }
@media (prefers-color-scheme: dark) {
  .brand .logo-d { display: none; }
  .brand .logo-w { display: block; }
}

/* ====== מסגרת מכשיר (טלפון) ====== */
.device { background: #0a0813; border-radius: 40px; padding: 8px; border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 70px rgba(20,6,60,.28), 0 8px 20px rgba(0,0,0,.18); }
.device img { display: block; width: 100%; border-radius: 32px; }

/* ====== טלפון הירו ====== */
.hero-phone { width: 300px; max-width: 80vw; margin: 54px auto 0; }
.hero-phone .device { animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ====== הירו דו-טורי — טלפון לצד התוכן (בסגנון findsiter) ====== */
.hero { text-align: right; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero-copy .eyebrow { margin-bottom: 18px; }
.hero-copy h1 { font-size: clamp(32px, 4.4vw, 56px); }
.hero-copy p.lead { margin: 18px 0 28px; max-width: 520px; }
.hero-copy .cta-row { justify-content: flex-start; }
.hero-copy .store-note { text-align: right; }
.hero-grid .hero-phone { margin: 0 auto; width: 300px; max-width: 78vw; }
@media (max-width: 860px) {
  .hero { text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy p.lead { margin: 18px auto 26px; }
  .hero-copy .cta-row { justify-content: center; }
  .hero-copy .store-note { text-align: center; }
  .hero-grid .hero-phone { margin: 6px auto 0; }
}

/* ====== גלריית מסכים ====== */
.screens-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.screens { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; align-items: start; }
.screen-item { text-align: center; margin: 0; }
.screen-item .device { max-width: 240px; margin: 0 auto; }
.screen-item h4 { font-size: 17px; margin-top: 16px; letter-spacing: -0.3px; }
.screen-item p { color: var(--muted); font-size: 14px; margin-top: 4px; }
@media (max-width: 860px) {
  .screens { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 74%;
    overflow-x: auto; scroll-snap-type: x mandatory; gap: 18px; padding-bottom: 14px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .screens::-webkit-scrollbar { display: none; }
  .screen-item { scroll-snap-align: center; }
}

/* ====== כפתור App Store ====== */
.appstore svg { flex: 0 0 auto; }
.appstore.light { background: #fff; color: #0a0813; box-shadow: 0 10px 30px rgba(0,0,0,.18); }

/* ====== קריאה לפעולה — הורדה (רקע כהה, לוגו לבן) ====== */
.download-cta { background: radial-gradient(120% 130% at 50% 0%, #2a1350 0%, #140a26 55%, #0a0813 100%); color: #fff; text-align: center; }
.download-cta .cta-logo { height: 46px; width: auto; margin: 0 auto 20px; display: block; opacity: .96; }
.download-cta h2 { font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.6px; }
.download-cta p { color: rgba(255,255,255,.78); max-width: 520px; margin: 12px auto 26px; font-size: 17px; }
.store-note.light { color: rgba(255,255,255,.6); }

/* ===================== עיצוב מחדש בסגנון fintech ===================== */
.btn.dark { background: var(--ink); color: var(--bg); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn.dark:hover { background: var(--purple); color: #fff; }
.btn.block { display: flex; width: 100%; justify-content: center; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* רקע הירו רך */
.hero { background: linear-gradient(180deg, #f1ebfe 0%, #f7f4fe 42%, var(--bg) 100%); }
@media (prefers-color-scheme: dark) { .hero { background: linear-gradient(180deg, #15101f 0%, #0d0a16 60%, var(--bg) 100%); } }

/* טלפונים חופפים בהירו */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.hero-visual .device { width: 256px; }
.hero-visual .device.main { z-index: 2; }
.hero-visual .device.back { width: 222px; z-index: 1; transform: rotate(-6deg); margin-inline-end: -56px; margin-top: 30px; opacity: .96; }
.hero-badge { position: absolute; bottom: 30px; left: 4px; z-index: 3; display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 9px 14px; font-weight: 700; font-size: 13px; box-shadow: var(--shadow); }
.badge-dot { width: 9px; height: 9px; border-radius: 50%; background: #21a565; box-shadow: 0 0 0 4px rgba(33,165,101,.18); }
@media (max-width: 860px) { .hero-visual { min-height: 0; margin-top: 8px; } .hero-visual .device.back, .hero-badge { display: none; } }

/* שורת אמון בהירו */
.trust-line { margin-top: 22px; color: var(--muted); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.trust-dots { display: inline-flex; }
.trust-dots span { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--purple-2)); border: 2px solid var(--bg); margin-inline-start: -8px; }
.trust-dots span:first-child { margin: 0; }
@media (max-width: 860px) { .trust-line { justify-content: center; } }

/* פס אמון */
.trust { padding: 24px 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 600; font-size: 15px; }
.trust-item .ti-ic { font-size: 17px; }

.section-title .eyebrow { margin-bottom: 12px; }

/* למה — שלישייה */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.why-item { text-align: center; padding: 12px; }
.why-item .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; background: var(--purple-soft, #f4f0fe); margin: 0 auto 14px; }
.why-item h3 { font-size: 19px; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

/* תכונות עם צילומים */
.features-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; margin: 0; transition: transform .18s ease, box-shadow .18s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card .device { max-width: 200px; margin: 0 auto 18px; border-radius: 30px; }
.feature-card .device img { border-radius: 24px; }
.feature-card h3 { font-size: 18px; margin-bottom: 6px; }
.feature-card p { color: var(--muted); font-size: 14px; }
@media (max-width: 820px) { .feature-cards { grid-template-columns: 1fr; } }

/* מחירים */
.price-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; max-width: 760px; margin: 0 auto; }
.price-card { position: relative; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; }
.price-card.featured { border: 2px solid var(--purple); box-shadow: var(--shadow); }
.pc-badge { position: absolute; top: -13px; inset-inline-start: 24px; background: linear-gradient(135deg,var(--purple),var(--purple-2)); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.pc-name { font-weight: 800; font-size: 18px; }
.pc-price { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin: 8px 0 2px; }
.pc-price span { font-size: 15px; font-weight: 600; color: var(--muted); }
.pc-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.pc-feats { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pc-feats li { position: relative; padding-inline-start: 26px; font-size: 15px; }
.pc-feats li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--purple); font-weight: 900; }
.price-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 18px; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* פס 3 צעדים */
.steps-band { background: radial-gradient(120% 130% at 80% 0%, #2a1350 0%, #170b2c 55%, #0c0718 100%); color: #fff; }
.steps-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.steps-phone .device { max-width: 250px; margin: 0 auto; }
.steps-copy .eyebrow.light { background: rgba(255,255,255,.14); color: #fff; }
.steps-copy h2 { color: #fff; font-size: clamp(26px,4vw,36px); letter-spacing: -.6px; }
.steps-lead { color: rgba(255,255,255,.78); font-size: 17px; margin: 12px 0 22px; }
.steps-list { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.steps-list li { display: flex; gap: 14px; align-items: flex-start; }
.step-n { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; background: linear-gradient(135deg,var(--purple),var(--purple-2)); color: #fff; }
.steps-list b { display: block; }
.steps-list span { color: rgba(255,255,255,.72); font-size: 14px; }
@media (max-width: 820px) { .steps-grid { grid-template-columns: 1fr; gap: 28px; } .steps-phone { order: 2; } }

/* FAQ */
.faq-wrap { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2px 22px; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-list details[open] { border-color: color-mix(in srgb, var(--ink) 22%, var(--border)); box-shadow: 0 10px 30px rgba(11,11,18,.06); }
.faq-list summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; font-size: 16.5px; display: flex; justify-content: space-between; align-items: center; gap: 14px; transition: color .15s ease; }
.faq-list summary:hover { color: var(--purple); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-weight: 800; font-size: 20px; line-height: 1; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: color-mix(in srgb, var(--ink) 7%, transparent); color: var(--ink); flex: 0 0 auto; }
.faq-list details[open] summary::after { content: "−"; background: var(--ink); color: var(--bg); }
.faq-list details p { color: var(--muted); padding: 14px 0 18px; font-size: 15px; line-height: 1.75; border-top: 1px solid var(--border); }
.faq-list a { color: var(--purple); font-weight: 700; }

/* פוטר עשיר */
.site-footer { background: #0b0b12; color: rgba(255,255,255,.7); padding: 54px 0 26px; border-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand .logo-white { height: 30px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 240px; color: rgba(255,255,255,.65); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 12px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; font-size: 13px; color: rgba(255,255,255,.5); }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ===== ניווט: שקוף לכל הרוחב בראש העמוד → גלולה מעוגלת בגלילה ===== */
header.nav { position: fixed; top: 0; inset-inline: 0; z-index: 50; background: transparent; border: 0; backdrop-filter: none; }
.nav-inner { height: 76px; max-width: 1200px; padding: 0 22px; background: transparent; border: 1px solid transparent; border-radius: 0; box-shadow: none;
  transition: max-width .38s cubic-bezier(.4,0,.2,1), height .28s ease, padding .28s ease, background .28s ease, border-color .28s ease, box-shadow .28s ease; }
header.nav.scrolled { top: 14px; }
header.nav.scrolled .nav-inner { height: 60px; max-width: 1120px; padding: 0 24px; border-color: var(--border); border-radius: 18px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 12px 34px rgba(11,11,18,.10); }
.hero { padding-top: 122px; }
.doc { padding-top: 112px; }

/* אייקונים מונוכרום (ללא צבע) */
.why-item .ic { background: color-mix(in srgb, var(--ink) 7%, transparent); color: var(--ink); }
.why-item .ic svg { width: 26px; height: 26px; }
.trust-item { color: var(--muted); }
.trust-item .ti-ic { height: 18px; width: auto; }

/* פוטר קומפקטי */
.site-footer { padding: 34px 0 18px; }
.footer-grid { gap: 22px; }
.footer-brand .logo-white { height: 26px; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; }
.footer-col h4 { margin-bottom: 8px; font-size: 14px; }
.footer-col a { margin-bottom: 6px; font-size: 13px; }
.footer-bottom { margin-top: 22px; padding-top: 16px; }

/* ===== מתיחה לכל הרוחב: פוטר ===== */
.site-footer .wrap { max-width: none; padding-inline: 44px; }
@media (max-width: 600px) {
  .nav-inner { padding-inline: 18px; }
  .site-footer .wrap { padding-inline: 18px; }
}

/* ===== כניסת הטלפונים בהירו (הצדדי נכנס מהצד) ===== */
@keyframes phoneInMain { from { opacity: 0; transform: translateY(30px) scale(.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes phoneInBack { from { opacity: 0; transform: translateX(-72px) rotate(-15deg) scale(.9); } to { opacity: .96; transform: translateX(0) rotate(-6deg) scale(1); } }
.hero-visual .device.main { animation: phoneInMain .85s cubic-bezier(.2,.75,.25,1) both; }
.hero-visual .device.back { animation: phoneInBack 1s cubic-bezier(.2,.75,.25,1) .12s both; }
@media (prefers-reduced-motion: reduce) { .hero-visual .device.main, .hero-visual .device.back { animation: none; } }

/* ===== שדרוג מחירון + מתג חודשי/שנתי + כפתור משני ===== */
.btn.lg { padding: 14px 28px; font-size: 18px; border-radius: 14px; }
.btn.ghost.lg { border-width: 1.5px; }
.nav-cta { padding: 10px 22px; font-size: 15px; }
/* קישור פעיל בתפריט — קו תחתון סגול */
.nav-links a { position: relative; padding-bottom: 2px; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { content: ""; position: absolute; bottom: -7px; right: 0; left: 0; height: 2.5px; border-radius: 2px; background: var(--purple); }

.price-toggle { width: fit-content; margin: 0 auto 30px; display: flex; gap: 4px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: 5px; }
.pt-btn { border: 0; background: transparent; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 15px; color: var(--muted); padding: 9px 22px; border-radius: 999px; display: inline-flex; align-items: center; gap: 8px; transition: background .2s, color .2s; }
.pt-btn.active { background: var(--ink); color: var(--bg); }
.pt-save { font-size: 11px; font-weight: 800; background: rgba(33,165,101,.16); color: #1f9d5f; padding: 2px 8px; border-radius: 999px; }
.pt-btn.active .pt-save { background: rgba(255,255,255,.2); color: #fff; }

.price-card { padding: 32px 28px; }
.price-card.featured { transform: translateY(-8px); }
.pc-price { display: flex; align-items: baseline; gap: 6px; margin: 10px 0 4px; }
.pc-price .pc-amount { font-size: 44px; font-weight: 800; letter-spacing: -1.5px; transition: opacity .15s ease; }
.pc-price .pc-per { font-size: 15px; font-weight: 600; color: var(--muted); }
.feat-hl { font-weight: 700; color: var(--ink); }
.feat-hl::before { color: #1f9d5f !important; }
@media (max-width: 720px) { .price-card.featured { transform: none; } }

/* רספונסיביות עדינה למסכים קטנים */
@media (max-width: 520px) {
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 0 12px; height: 52px; }
  .brand .logo { height: 34px; }
  .hero { padding-top: 96px; }
  .hero-copy h1 { font-size: 30px; }
  .hero-visual { min-height: 0; }
  .pc-price { font-size: 34px; }
  section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
}
