/* =====================================================
   הדר זיגזג — דף נחיתה
   כיוון צבע: פטל על קרם (נבחר ע"י אביאל)
   ===================================================== */

:root {
  --bg: #FBF7F2;          /* קרם חם */
  --card: #FFFFFF;
  --ink: #221A1E;          /* כמעט שחור חם */
  --muted: #6E5F66;        /* אפור-חם לטקסט משני */
  --accent: #D6336C;       /* פטל — צבע הכפתור היחיד */
  --accent-dark: #B82559;
  --blush: #F7E6EC;        /* ורוד עדין לרקעים */
  --border: rgba(34, 26, 30, 0.1);
  --radius: 20px;
  --font-body: 'Rubik', sans-serif;
  --font-display: 'Rubik', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.container.narrow { max-width: 720px; }

/* ===== כפתור פעולה — אחד ויחיד ===== */
.btn-cta {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 100px;
  padding: 1.05rem 2rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(214, 51, 108, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(214, 51, 108, 0.4);
}

/* ===== Placeholders לתמונות ===== */
.placeholder {
  background: var(--blush);
  border: 2px dashed rgba(214, 51, 108, 0.35);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}
.placeholder span { font-size: 2rem; }
.placeholder-portrait { min-height: 340px; }
.placeholder-ba { aspect-ratio: 4 / 5; }

/* ===== פתיח ===== */
.hero {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(214, 51, 108, 0.08), transparent 70%),
    var(--bg);
}
.hero-inner { display: flex; flex-direction: column; gap: 2.5rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 8vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1.05rem, 4vw, 1.3rem);
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 34ch;
}
.hero-proof {
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

/* ===== הכאב ===== */
.pain { padding: 4.5rem 0; background: var(--card); }
.pain-p {
  font-size: clamp(1.1rem, 4.2vw, 1.35rem);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.pain-p:last-child { margin-bottom: 0; }
.pain-p.strong { font-weight: 700; }

/* ===== כותרות סקשן ===== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

/* ===== מה מקבלים ===== */
.benefits { padding: 4.5rem 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.benefit-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.benefit-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; }
.benefit-card p { color: var(--muted); }

/* ===== תוצאות ===== */
.results { padding: 4.5rem 0; background: var(--blush); }
.results-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.result-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 24px rgba(34, 26, 30, 0.06);
}
.result-card .placeholder { margin-bottom: 1rem; background: var(--bg); }
.result-name { font-weight: 700; font-size: 1.05rem; }
.result-detail { color: var(--accent); font-weight: 700; }

/* ===== איך זה עובד ===== */
.process { padding: 4.5rem 0; }
.process-steps { display: flex; flex-direction: column; gap: 2rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step h3 { font-size: 1.15rem; font-weight: 700; }
.process-step p { color: var(--muted); }

/* ===== הטופס ===== */
.form-section { padding: 4.5rem 0; background: var(--card); }
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.5rem;
}
.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5.5vw, 2rem);
  font-weight: 900;
}
.form-sub { color: var(--muted); margin-bottom: 1.75rem; }

.progress-wrap { margin-bottom: 1.75rem; }
.progress-label { font-size: 0.85rem; font-weight: 600; color: var(--muted); margin-bottom: 0.4rem; }
.progress-track {
  height: 8px;
  background: rgba(214, 51, 108, 0.15);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 33.3%;
  background: var(--accent);
  border-radius: 100px;
  transition: width 0.35s ease;
}

.form-step { display: none; }
.form-step.active { display: block; }

.step-question { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.25rem; }

.goal-options { display: flex; flex-direction: column; gap: 0.75rem; }
.goal-btn {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: right;
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.goal-btn:hover { border-color: var(--accent); }
.goal-btn.selected {
  border-color: var(--accent);
  background: var(--blush);
  color: var(--accent-dark);
}

.fields-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  text-align: right;
  direction: rtl;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 51, 108, 0.12);
}
.field input::placeholder { color: #B9AEB4; }

.field-error {
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-nav {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.5rem;
}
.btn-next {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-next:hover { background: var(--accent-dark); }
.btn-back {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  text-decoration: underline;
  padding: 0.5rem;
}
.btn-submit { flex: 1; width: auto; }

.form-trust {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

.done-box { text-align: center; padding: 1.5rem 0; }
.done-icon { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; }
.done-sub { color: var(--muted); }

/* ===== שאלות נפוצות ===== */
.faq { padding: 4.5rem 0; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 1.15rem 1.25rem;
  position: relative;
  padding-inline-end: 3rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  inset-inline-end: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { padding: 0 1.25rem 1.15rem; color: var(--muted); }

/* ===== סגירה ===== */
.closing {
  padding: 5rem 0;
  background: var(--ink);
  color: #fff;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6.5vw, 2.7rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.closing-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ===== תחתית ===== */
.footer {
  padding: 2.5rem 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-brand { font-weight: 700; color: #fff; margin-bottom: 0.5rem; }

/* ===== אנימציית גילוי עדינה ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== מסכים גדולים ===== */
@media (min-width: 760px) {
  .hero { padding: 5.5rem 0 6rem; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 3.5rem;
  }
  .hero-text { flex: 1.2; }
  .hero-photo { flex: 0.8; min-height: 440px; }
  .btn-cta { display: inline-block; width: auto; min-width: 300px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .fields-row { grid-template-columns: repeat(3, 1fr); }
  .form-card { padding: 3rem; }
}

/* ===== תמונת הירו ===== */
.hero-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(34, 26, 30, 0.12);
}

/* ===== תמונות לפני/אחרי ===== */
.ba-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  margin-bottom: 1rem;
}
