:root {
  --bg: #0b0f11;
  --surface: #0f1518;
  --surface-2: #101c20;
  --text: #eaf1f2;
  --muted: #b7c7c9;

  --accent: #4e9ea5;
  --accent-2: #6cc7cf;
  --accent-3: #2d6a6f;

  --border: rgba(234, 241, 242, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gutter: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family:
    "Assistant",
    system-ui,
    -apple-system,
    "Segoe UI",
    Arial,
    sans-serif;
  background: radial-gradient(1200px 800px at 10% 0%, rgba(78, 158, 165, 0.18), transparent 55%),
    radial-gradient(900px 700px at 90% 10%, rgba(108, 199, 207, 0.14), transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: min(var(--container), 100%);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  inset-inline-start: 12px;
  inset-block-start: 12px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 17, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 241, 242, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(234, 241, 242, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

/* Social icon groups used in header and footer */
.social-links {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.social-links a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease, transform 120ms ease;
}

.social-links a svg {
  display: block;
  width: 1.05em;
  height: 1.05em;
}

.social-links a:hover {
  color: var(--accent-2);
  background: rgba(78, 158, 165, 0.04);
  transform: translateY(-2px);
}

.site-nav a {
  padding: 10px 10px;
  border-radius: 999px;
}

.site-nav a:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #041113;
  padding-inline: 14px;
  box-shadow: 0 10px 24px rgba(78, 158, 165, 0.22);
}

.nav-cta:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(234, 241, 242, 0.14);
  background: rgba(15, 21, 24, 0.75);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.nav-toggle-lines {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.hero {
  padding-block: clamp(40px, 6vw, 70px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 30px;
}

.eyebrow {
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 800;
  margin: 0 0 10px;
  font-size: 14px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 56ch;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 10px 22px rgba(78, 158, 165, 0.22);
  color: #041113;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.micro {
  margin: 0;
  color: rgba(234, 241, 242, 0.7);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(234, 241, 242, 0.14);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #041113;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(78, 158, 165, 0.18);
}

.btn.primary:hover {
  filter: brightness(1.03);
}

.btn.ghost {
  background: rgba(15, 21, 24, 0.5);
}

.btn.btn-block {
  width: 100%;
}

.hero-media {
  display: flex;
  justify-content: center;
}

.media-card {
  width: min(380px, 100%);
  background: linear-gradient(180deg, rgba(15, 21, 24, 0.6), rgba(16, 28, 32, 0.6));
  border: 1px solid rgba(234, 241, 242, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: radial-gradient(800px 500px at 10% 0%, rgba(78, 158, 165, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(135deg, rgba(234, 241, 242, 0.08), rgba(234, 241, 242, 0.08) 10px, transparent 10px, transparent 20px);
  display: grid;
  place-items: center;
  color: rgba(234, 241, 242, 0.75);
  font-weight: 700;
  text-align: center;
  padding: 14px;
}

.photo-placeholder::before {
  content: "תמונה תתווסף כאן";
  padding: 10px 12px;
  border: 1px dashed rgba(234, 241, 242, 0.25);
  border-radius: 999px;
  background: rgba(11, 15, 17, 0.55);
}

.photo-placeholder.tall {
  aspect-ratio: 4 / 5;
}

.media-card-caption {
  padding: 14px 16px 16px;
}

.caption-title {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}

.caption-subtitle {
  margin: 2px 0 0;
  color: rgba(234, 241, 242, 0.68);
  font-size: 14px;
}

.lead-section {
  padding-block: clamp(34px, 6vw, 70px);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.lead-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
}

.lead-note {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(15, 21, 24, 0.4);
  color: rgba(234, 241, 242, 0.9);
  font-weight: 700;
  font-size: 14px;
}

.lead-form {
  background: linear-gradient(180deg, rgba(15, 21, 24, 0.65), rgba(16, 28, 32, 0.65));
  border: 1px solid rgba(234, 241, 242, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label {
  font-weight: 700;
  color: rgba(234, 241, 242, 0.9);
}

input,
select,
textarea {
  width: 100%;
  background: rgba(11, 15, 17, 0.55);
  border: 1px solid rgba(234, 241, 242, 0.16);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 12px;
  font: inherit;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

textarea {
  resize: vertical;
}

.form-disclaimer {
  margin: 10px 0 0;
  color: rgba(234, 241, 242, 0.68);
  font-size: 12px;
}

.form-success {
  margin-top: 12px;
  border: 1px solid rgba(108, 199, 207, 0.35);
  background: rgba(108, 199, 207, 0.12);
  padding: 12px;
  border-radius: 12px;
  color: rgba(234, 241, 242, 0.92);
  font-weight: 700;
}

.section {
  padding-block: clamp(44px, 7vw, 86px);
}

.section.alt {
  background: linear-gradient(180deg, rgba(15, 21, 24, 0.28), rgba(15, 21, 24, 0));
  border-top: 1px solid rgba(234, 241, 242, 0.07);
  border-bottom: 1px solid rgba(234, 241, 242, 0.07);
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step-card {
  background: rgba(15, 21, 24, 0.55);
  border: 1px solid rgba(234, 241, 242, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.step-num {
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  color: rgba(108, 199, 207, 0.8);
  direction: ltr;
}

.step-card h3 {
  margin: 6px 0 8px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: rgba(234, 241, 242, 0.78);
  font-size: 14px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.about-lead {
  margin: 0 0 12px;
  color: rgba(234, 241, 242, 0.88);
  font-size: 18px;
}

.accent {
  color: var(--accent-2);
  font-weight: 800;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat {
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(11, 15, 17, 0.35);
  border-radius: 16px;
  padding: 14px;
}

.stat-title {
  font-weight: 900;
  color: rgba(234, 241, 242, 0.92);
}

.stat-desc {
  color: rgba(234, 241, 242, 0.7);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(15, 21, 24, 0.55);
  border-radius: var(--radius);
  padding: 16px;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: rgba(234, 241, 242, 0.78);
  font-size: 14px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.result-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(15, 21, 24, 0.55);
}

.photo-placeholder.result {
  aspect-ratio: 1 / 1;
}

.result-card figcaption {
  padding: 12px 14px 14px;
  color: rgba(234, 241, 242, 0.78);
  font-weight: 700;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: stretch;
}

.video {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(15, 21, 24, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  aspect-ratio: 16 / 9;
}

.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  border-radius: var(--radius);
  border: 1px dashed rgba(234, 241, 242, 0.22);
  background: rgba(11, 15, 17, 0.35);
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  color: rgba(234, 241, 242, 0.75);
  font-weight: 700;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fit-card {
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid rgba(234, 241, 242, 0.12);
  background: rgba(15, 21, 24, 0.55);
}

.fit-card.good {
  box-shadow: 0 18px 50px rgba(78, 158, 165, 0.12);
}

.fit-card.bad {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.fit-card h3 {
  margin: 0 0 10px;
}

.bullets {
  margin: 0;
  padding-inline-start: 18px;
  color: rgba(234, 241, 242, 0.82);
}

.bullets li {
  margin-bottom: 8px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}

details {
  border: 1px solid rgba(234, 241, 242, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(15, 21, 24, 0.55);
  padding: 0;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-bottom: 1px solid rgba(234, 241, 242, 0.1);
}

.faq-body {
  padding: 12px 16px 16px;
  color: rgba(234, 241, 242, 0.78);
}

.cta {
  padding-block: clamp(44px, 7vw, 86px);
  background: radial-gradient(1000px 600px at 50% 0%, rgba(78, 158, 165, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(15, 21, 24, 0.65), rgba(11, 15, 17, 0.65));
  border-top: 1px solid rgba(234, 241, 242, 0.08);
}

.cta-inner {
  text-align: center;
  max-width: 900px;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
}

.cta p {
  margin: 0 0 18px;
  color: rgba(234, 241, 242, 0.78);
}

.site-footer {
  border-top: 1px solid rgba(234, 241, 242, 0.08);
  background: rgba(11, 15, 17, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 18px;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(234, 241, 242, 0.08);
}

.footer-brand p {
  margin: 0;
  color: rgba(234, 241, 242, 0.68);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--accent-2);
}

.footer-credit {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: var(--accent-2);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .lead-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    inset-inline: 12px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(11, 15, 17, 0.92);
    border: 1px solid rgba(234, 241, 242, 0.14);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav a {
    padding: 12px 12px;
    text-align: center;
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .brand-logo,
  .footer-logo {
    width: 130px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  inset-inline-end: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:active {
  transform: scale(0.95);
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 520px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    inset-inline-end: 16px;
    bottom: 16px;
  }
}
