/* ===== VANTX — Dark / Neon-green marketing site ===== */

:root {
  --bg: #07090c;
  --bg-2: #0b0f13;
  --card: #11161c;
  --card-border: #1d242d;
  --green: #6FE51B;
  --green-soft: rgba(111, 229, 27, 0.12);
  --green-glow: rgba(111, 229, 27, 0.35);
  --text: #f2f5f7;
  --muted: #9aa6b2;
  --radius: 18px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 820px; }

.section { padding: 110px 0; }

::selection { background: var(--green); color: #07090c; }

/* ===== Typography ===== */
h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h3 { font-size: 1.35rem; font-weight: 800; }

.highlight { color: var(--green); }

.kicker {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-head p { color: var(--muted); font-size: 1.15rem; margin-top: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn-green {
  background: var(--green);
  color: #07090c;
  box-shadow: 0 0 28px var(--green-glow);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 0 44px var(--green-glow); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: #2a333d;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { font-size: 1.15rem; padding: 18px 42px; }
.btn-sm { font-size: 0.95rem; padding: 10px 24px; }
.btn-block { display: block; width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 76px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  direction: ltr; /* הלוגו תמיד נקרא VANT ואז הסימן */
}
.logo-text {
  font-weight: 900;
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
}
.logo-mark { height: 22px; width: auto; fill: var(--green); }

.main-nav {
  display: flex;
  gap: 30px;
  margin-inline-start: auto;
}
.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--green); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-inline-start: auto;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 110px 0 90px;
  text-align: center;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% -5%, rgba(111, 229, 27, 0.16), transparent 70%),
    radial-gradient(ellipse 40% 30% at 85% 25%, rgba(111, 229, 27, 0.07), transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 900px; margin: 0 auto; }
.hero-sub {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 680px;
  margin: 26px auto 0;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ===== Hero video ===== */
.hero-video {
  position: relative;
  max-width: 880px;
  margin: 70px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 0 60px rgba(111, 229, 27, 0.12), 0 30px 80px rgba(0, 0, 0, 0.55);
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(ellipse 70% 90% at 50% 110%, rgba(111, 229, 27, 0.18), transparent 65%),
    linear-gradient(160deg, #0e1318, #0a0d11);
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ===== Cards (promises + testimonials) ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 229, 27, 0.45);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.4), 0 0 24px rgba(111, 229, 27, 0.08);
}
.card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--green-soft);
  border: 1px solid rgba(111, 229, 27, 0.25);
  border-radius: 14px;
  margin-bottom: 20px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 1rem; }

/* ===== About / honesty section ===== */
.about {
  border-block: 1px solid var(--card-border);
  background: var(--bg-2);
}
.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(111, 229, 27, 0.4); }
.price-card.popular {
  border-color: var(--green);
  box-shadow: 0 0 44px rgba(111, 229, 27, 0.14);
  transform: scale(1.03);
}
.price-card.popular:hover { transform: scale(1.03) translateY(-5px); }
.popular-tag {
  position: absolute;
  top: -16px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  background: var(--green);
  color: #07090c;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-desc { color: var(--muted); font-size: 0.98rem; margin: 10px 0 22px; min-height: 3em; }
.price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 26px;
}
.price .currency { font-size: 1.6rem; vertical-align: super; color: var(--green); }
.price .per { font-size: 1rem; font-weight: 500; color: var(--muted); }
.setup-note { color: var(--muted); font-size: 0.88rem; margin: -16px 0 24px; }
.features {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}
.features li {
  padding: 9px 0;
  padding-inline-start: 28px;
  position: relative;
  color: var(--text);
  font-size: 0.98rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.features li:last-child { border-bottom: none; }
.features li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--green);
  font-weight: 800;
}
.pricing-note { text-align: center; color: var(--muted); margin-top: 40px; }
.pricing-note a { color: var(--green); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item[open] { border-color: rgba(111, 229, 27, 0.45); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  font-size: 1.1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0;
  width: 14px; height: 14px;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--green);
  border-radius: 2px;
  transition: transform 0.25s;
}
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2.5px; }
.faq-icon::after { left: 6px; top: 0; width: 2.5px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); }
.faq-body { padding: 0 26px 24px; color: var(--muted); font-size: 1.02rem; }
.faq-body em { color: var(--green); font-style: normal; font-weight: 700; }

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  background: var(--bg-2);
  border-top: 1px solid var(--card-border);
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 60% at 50% 110%, rgba(111, 229, 27, 0.14), transparent 70%);
  pointer-events: none;
}
.final-cta .container { position: relative; }
.cta-sub { color: var(--muted); font-size: 1.15rem; margin: 20px auto 40px; max-width: 600px; }
.cta-form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form input {
  font-family: inherit;
  font-size: 1.02rem;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.cta-form input::placeholder { color: #6b7682; }
.cta-form input[type="tel"] { direction: rtl; text-align: right; }
.cta-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(111, 229, 27, 0.15);
}
.cta-form input.error { border-color: #e5533d; }
.form-note { color: var(--muted); font-size: 0.9rem; }
.form-success {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.copyright { width: 100%; color: #5d6873; font-size: 0.88rem; margin-top: 8px; }

/* ===== Floating WhatsApp button ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  left: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), 0 0 18px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 26px rgba(37, 211, 102, 0.5);
}
.whatsapp-fab svg { width: 32px; height: 32px; fill: #fff; }

/* ===== Accessibility widget ===== */
.a11y-btn {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #1463F3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.a11y-btn:hover { transform: translateY(-3px) scale(1.05); }
.a11y-btn svg { width: 34px; height: 34px; fill: #fff; }

.a11y-panel {
  position: fixed;
  bottom: 94px;
  right: 22px;
  z-index: 95;
  width: 300px;
  max-width: calc(100vw - 44px);
  max-height: min(70vh, 520px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.6);
  display: none;
}
.a11y-panel.open { display: block; }
.a11y-panel h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.a11y-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.a11y-close:hover { color: var(--text); }
.a11y-panel .a11y-actions { display: flex; flex-direction: column; gap: 8px; }
.a11y-action {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  text-align: start;
  transition: border-color 0.2s, background 0.2s;
}
.a11y-action:hover { border-color: var(--green); }
.a11y-action[aria-pressed="true"] {
  border-color: var(--green);
  background: var(--green-soft);
}
.a11y-action[aria-pressed="true"]::after {
  content: '✓';
  margin-inline-start: auto;
  color: var(--green);
  font-weight: 800;
}
.a11y-reset { color: #ff8d7a; }
.a11y-statement-link {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}
.a11y-statement-link:hover { color: var(--green); }

/* Accessibility modes */
html.a11y-fs1 { font-size: 112.5%; }
html.a11y-fs2 { font-size: 125%; }
html.a11y-grayscale { filter: grayscale(1); }
html.a11y-contrast body { background: #000; }
html.a11y-contrast .card,
html.a11y-contrast .price-card,
html.a11y-contrast .faq-item,
html.a11y-contrast .stats,
html.a11y-contrast .final-cta,
html.a11y-contrast .a11y-panel { background: #000; border-color: #fff; }
html.a11y-contrast body, html.a11y-contrast p, html.a11y-contrast li,
html.a11y-contrast h1, html.a11y-contrast h2, html.a11y-contrast h3,
html.a11y-contrast .card p, html.a11y-contrast .hero-sub,
html.a11y-contrast .faq-body, html.a11y-contrast .section-head p { color: #fff; }
html.a11y-contrast .highlight, html.a11y-contrast .kicker { color: #ffff00; }
html.a11y-links a { text-decoration: underline !important; outline: 1px dashed var(--green); outline-offset: 2px; }
html.a11y-readable body, html.a11y-readable button, html.a11y-readable input {
  font-family: Arial, Helvetica, sans-serif !important;
}
html.a11y-no-motion *, html.a11y-no-motion *::before, html.a11y-no-motion *::after {
  animation: none !important;
  transition: none !important;
}
html.a11y-no-motion { scroll-behavior: auto; }
html.a11y-no-motion .reveal { opacity: 1 !important; transform: none !important; }

/* ===== Legal pages ===== */
.legal-page { padding: 70px 0 90px; }
.legal-page h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 0.95rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.45rem; font-weight: 800; margin: 36px 0 12px; color: var(--green); }
.legal-page p, .legal-page li { color: #c3ccd5; font-size: 1.02rem; margin-bottom: 12px; }
.legal-page ul { padding-inline-start: 22px; margin-bottom: 12px; }
.legal-page a { color: var(--green); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; width: 100%; }
.footer-legal a { color: #5d6873; text-decoration: none; font-size: 0.88rem; }
.footer-legal a:hover { color: var(--green); }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .cards-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-5px); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}

@media (max-width: 720px) {
  .section { padding: 80px 0; }
  .cards-grid, .pricing-grid, .form-row, .about-points { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 76px;
    inset-inline: 0;
    flex-direction: column;
    gap: 0;
    background: #07090c;
    border-bottom: 1px solid var(--card-border);
    padding: 12px 24px 20px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    margin: 0;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 14px 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
}
