:root {
  --bg: #07101f;
  --panel: #101b2d;
  --panel2: #14243a;
  --text: #f6fbff;
  --muted: #aab8ca;
  --blue: #39bdf8;
  --green: #17d885;
  --purple: #9d7cff;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  direction: rtl;
  font-family: Arial, "Noto Sans Hebrew", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(57,189,248,.22), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(157,124,255,.18), transparent 26%),
    var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(7,16,31,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand, .header nav, .actions, .stats {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  font-size: 20px;
}

.brand span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #06101f;
}

.header nav {
  gap: 24px;
  color: var(--muted);
  font-weight: 700;
}

.nav-cta, .primary, .secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-align: center;
}

.nav-cta, .primary {
  color: #06101f;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 16px 40px rgba(23,216,133,.24);
}

.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 80px 18px;
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
}

.tag {
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 900;
}

h1, h2, h3, p { margin: 0; }

h1 {
  font-size: clamp(46px, 8vw, 104px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.05;
}

h3 { font-size: 22px; }

.lead, .section-copy, .contact p {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.75;
  max-width: 760px;
  margin: 24px auto 0;
}

.actions {
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.stats {
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 46px;
}

.stats div {
  width: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.stats strong {
  display: block;
  font-size: 38px;
  color: var(--blue);
}

.stats span {
  color: var(--muted);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 90px 0;
  text-align: center;
}

.cards, .steps, .feature-grid, .review-grid, .map-grid {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.cards { grid-template-columns: repeat(4, 1fr); }
.steps, .feature-grid { grid-template-columns: repeat(3, 1fr); }
.review-grid { grid-template-columns: repeat(3, 1fr); }
.map-grid { grid-template-columns: repeat(3, 1fr); }

article, .compare div, .price-card > div, details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  padding: 26px;
  text-align: right;
}

article p, .compare p, .price-card p, details p {
  color: var(--muted);
  line-height: 1.65;
  margin-top: 12px;
}

.map-grid article {
  display: grid;
  gap: 10px;
}

.map-grid strong {
  color: var(--blue);
  font-size: 24px;
}

.map-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  text-align: right;
}

.detail-list div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 62px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  line-height: 1.55;
}

.detail-list span {
  color: var(--green);
  font-weight: 900;
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(57,189,248,.14);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 18px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.stars {
  color: #ffd76a;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.price-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.price-card span {
  color: var(--green);
  font-weight: 900;
}

.price-card strong {
  display: block;
  font-size: clamp(50px, 8vw, 96px);
  color: var(--text);
  margin: 14px 0;
}

details {
  margin-top: 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.contact {
  width: min(1000px, calc(100% - 36px));
  margin: 40px auto 80px;
  padding: 54px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(57,189,248,.14), rgba(23,216,133,.12));
  box-shadow: var(--shadow);
}

.contact .primary {
  margin-top: 30px;
}

.contact small {
  display: block;
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

footer {
  min-height: 90px;
  padding: 0 clamp(18px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer span:first-child {
  color: var(--text);
  font-weight: 900;
}

.legal-page {
  width: min(940px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 90px;
}

.legal-card {
  text-align: right;
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 70px);
  margin-bottom: 22px;
}

.legal-card h2 {
  font-size: 26px;
  margin-top: 34px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
}

.legal-card p {
  margin-top: 14px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-right: 22px;
}

@media (max-width: 920px) {
  .header nav { display: none; }
  .cards, .steps, .feature-grid, .review-grid, .map-grid, .detail-list, .compare, .price-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .brand { font-size: 17px; }
  .nav-cta { display: none; }
  .hero { padding: 58px 18px 70px; min-height: auto; }
  h1 { font-size: 42px; line-height: 1.04; }
  .lead, .section-copy, .contact p { font-size: 17px; }
  .primary, .secondary { width: 100%; }
  .stats div { width: 100%; }
  .section { padding: 64px 0; }
  article, .compare div, .price-card > div, details { padding: 22px; }
  footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 24px;
  }
}
