/* =====================================================
   פשוט לפרוש — Landing Pages CSS
   Used by: magnet-prisha.html, toda-prisha.html
   ===================================================== */

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

:root {
  --navy:        #0D1B3E;
  --navy-light:  #16285A;
  --bg:          #FFFFFF;
  --bg2:         #F4F7FC;
  --gold:        #C47B0A;
  --gold-lt:     #E09218;
  --gold-dim:    rgba(196,123,10,.12);
  --gold-glow:   rgba(196,123,10,.32);
  --green:       #1A8754;
  --green-bg:    #F0FBF4;
  --text:        #0D1B3E;
  --text2:       #4A587A;
  --text3:       #8B98BC;
  --white:       #FFFFFF;
  --font:        'Heebo', sans-serif;
  --r:           6px;
  --ease:        0.28s cubic-bezier(.4,0,.2,1);
  --shadow:      0 2px 20px rgba(13,27,62,.08);
  --max:         620px;
  --max-wide:    680px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  background: var(--bg2);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Page Layout ── */
.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Brand Bar ── */
.brand-bar {
  background: var(--navy);
  padding: 18px 24px;
  text-align: center;
}

.brand-bar .logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.brand-bar .logo-text em {
  color: var(--gold);
  font-style: normal;
}

/* ── Hero (magnet) ── */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 85% 15%, rgba(196,123,10,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(196,123,10,.09) 0%, transparent 55%);
  padding: 56px 24px 64px;
  text-align: center;
  color: var(--white);
}

.hero .tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(196,123,10,.35);
  color: #E8A835;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--gold);
  display: block;
}

.hero .subtitle {
  font-size: 1.08rem;
  color: rgba(255,255,255,.85);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* ── Arrow Down ── */
.arrow-down {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  animation: bounce 1.8s infinite;
  will-change: transform;
}

.arrow-down svg {
  width: 28px;
  height: 28px;
  opacity: .55;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── Main Content (magnet card) ── */
.main-content {
  flex: 1;
  max-width: var(--max);
  margin: -28px auto 0;
  width: 100%;
  padding: 0 20px 60px;
}

.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(13,27,62,.12);
  overflow: hidden;
}

/* ── What You Get ── */
.what-you-get {
  padding: 36px 36px 28px;
  border-bottom: 1px solid #EEF2FB;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.what-you-get h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.4;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .97rem;
  color: var(--text2);
  line-height: 1.6;
}

.benefit-list li .icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.benefit-list li .icon svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Form (magnet) ── */
.form-section {
  padding: 32px 36px 36px;
}

.form-section h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.form-section .form-sub {
  font-size: .9rem;
  color: var(--text2);
  margin-bottom: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: .97rem;
  color: var(--text);
  background: var(--bg2);
  border: 1.5px solid #DDE4F0;
  border-radius: var(--r);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  direction: rtl;
  min-height: 44px;
}

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,123,10,.12);
  background: var(--white);
}

.form-group input::placeholder { color: var(--text3); }

.submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: var(--ease);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
}

.submit-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.submit-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-note {
  margin-top: 14px;
  font-size: .79rem;
  color: var(--text3);
  text-align: center;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.privacy-note svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--text3);
  stroke-width: 2;
  min-width: 13px;
}

/* ── Social Proof Strip ── */
.proof-strip {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--text2);
}

.proof-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

/* ── Footer min ── */
.footer-min {
  background: var(--navy);
  padding: 24px;
  text-align: center;
  margin-top: 48px;
}

.footer-min p {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Toda: Confirmation Banner ── */
.confirm-banner {
  background: var(--green-bg);
  border-bottom: 2px solid #B8E9CC;
  padding: 22px 24px;
  text-align: center;
}

.confirm-banner .check-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.confirm-banner .check-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.confirm-banner h1 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
}

.confirm-banner p {
  font-size: .95rem;
  color: #2E6B49;
  max-width: 440px;
  margin: 0 auto;
}

/* ── Toda: Content Wrap ── */
.content-wrap {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 32px 20px 72px;
}

/* ── Toda: Card ── */
.content-wrap .card {
  margin-bottom: 24px;
}

.card-header {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 85% 10%, rgba(196,123,10,.2) 0%, transparent 60%);
  padding: 30px 36px;
  color: var(--white);
}

.card-header .tag {
  display: inline-block;
  background: rgba(196,123,10,.2);
  border: 1px solid rgba(196,123,10,.4);
  color: #E8A835;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.card-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}

.card-header p {
  font-size: .93rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
}

.card-body {
  padding: 32px 36px 36px;
}

/* ── Checklist ── */
.checklist-intro {
  font-size: .97rem;
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.8;
}

.checklist-intro strong { color: var(--text); }

.checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.check-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1.5px solid #EEF2FB;
  border-radius: var(--r);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.check-item:hover {
  border-color: rgba(196,123,10,.3);
  box-shadow: 0 2px 12px rgba(196,123,10,.08);
}

.check-item .num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--gold-dim);
  border: 1.5px solid rgba(196,123,10,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: 2px;
}

.check-item .check-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.45;
}

.check-item .check-explain {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.7;
}

.check-item .check-explain .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ── Result Box ── */
.result-box {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--gold-dim);
  border: 1.5px solid rgba(196,123,10,.25);
  border-radius: var(--r);
}

.result-box .result-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-box .result-title svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

.result-box p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.75;
}

.result-box .score-guide {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .87rem;
}

.score-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
}

.dot-green  { background: #1A8754; }
.dot-yellow { background: #D4A017; }
.dot-red    { background: #C0392B; }

/* ── Steps Card ── */
.steps-card .card-body { padding-bottom: 28px; }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  position: relative;
}

.step-item:not(:last-child) {
  border-bottom: 1px solid #EEF2FB;
}

.step-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  font-weight: 800;
}

.step-line {
  width: 2px;
  flex: 1;
  background: #DDE4F0;
  min-height: 20px;
  margin-top: 4px;
}

.step-item:last-child .step-line { display: none; }

.step-content { padding-top: 8px; }

.step-content h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text);
}

.step-content p {
  font-size: .9rem;
  color: var(--text2);
  line-height: 1.7;
}

/* ── WhatsApp CTA ── */
.wa-card {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(196,123,10,.18) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(196,123,10,.1) 0%, transparent 50%);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 4px 32px rgba(13,27,62,.15);
}

.wa-card .wa-tag {
  display: inline-block;
  background: rgba(196,123,10,.2);
  border: 1px solid rgba(196,123,10,.4);
  color: #E8A835;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.wa-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}

.wa-card p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  max-width: 440px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--ease);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
  min-height: 50px;
}

.wa-btn:hover {
  background: #20C05A;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
}

.wa-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa-note {
  margin-top: 16px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ── Mobile ── */
@media (max-width: 520px) {
  .hero { padding: 44px 20px 54px; }
  .what-you-get,
  .form-section { padding-right: 24px; padding-left: 24px; }
  .card-header,
  .card-body { padding-right: 24px; padding-left: 24px; }
  .wa-card { padding: 32px 24px; }
  .check-item { flex-direction: column; gap: 10px; }
  .check-item .num { margin-top: 0; }
  .proof-strip { gap: 18px; }
}
