/* ===== ריסט ומשתנים ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e1a;
  --bg2: #0d1322;
  --bg3: #111827;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --accent-grad: linear-gradient(135deg, #7c3aed, #06b6d4);
  --text: #e8eaf0;
  --muted: #8b92a5;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

/* ===== תשתית ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: #a78bfa;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.star-1, .star-2 {
  display: inline-block;
  animation: star-twinkle 2s ease-in-out infinite;
}
.star-2 { animation-delay: 1s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 1;   transform: scale(1)   rotate(0deg); }
  25%      { opacity: 0.3; transform: scale(0.6) rotate(20deg); }
  50%      { opacity: 1;   transform: scale(1.3) rotate(0deg); }
  75%      { opacity: 0.5; transform: scale(0.8) rotate(-15deg); }
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
}

/* ===== כפתורים ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-grad);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(124,58,237,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.55); }

.btn-ghost {
  background: #ffffff;
  border: 1.5px solid rgb(211 206 206 / 91%);
  color: #708bdd;
}
.btn-ghost:hover {border-color: rgb(125 73 215);background: rgb(255 255 255);}

/* ===== ניווט ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  color: #ff9200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(255 255 255);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.nav-logo {
  height: 180px; 
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}
.nav-logo img {
  height: 66px;
  margin-top: 56px;
  }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  transition: color var(--transition);
}
.nav-links a:hover {font-weight: 800;color: #794ef9;}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== הירו ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -150px; right: -150px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: var(--accent2);
  bottom: -100px; left: -100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: #a78bfa;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-title .line2 {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--card-border);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* כרטיס צד ימין בהירו */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-main {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  position: relative;
}

.hero-card-main::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: var(--accent-grad);
  z-index: -1;
  opacity: 0.3;
}

/* ===== Journey steps בהירו ===== */
.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 0;
  opacity: 0.45;
  transition: opacity var(--transition);
}
.journey-step.journey-done { opacity: 1; }
.journey-step.journey-active { opacity: 1; }

.journey-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.journey-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.journey-line {
  width: 2px;
  height: 22px;
  background: var(--card-border);
  margin: 4px 0;
}

.journey-step.journey-done .journey-line {
  background: linear-gradient(to bottom, #a78bfa, rgba(124,58,237,0.2));
}

.journey-info { flex: 1; padding-top: 4px; }
.journey-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.journey-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ===== מיקרו-אנימציות journey ===== */

/* 1. נקודות הקלדה — יצירת קשר */
.anim-typing {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
}
.anim-typing span {
  width: 5px; height: 5px;
  background: #a78bfa;
  border-radius: 50%;
  animation: typing-dot 2s ease-in-out infinite;
  animation-play-state: paused;
  animation-delay: var(--anim-delay, 0s);
}
.anim-typing span:nth-child(2) { animation-delay: calc(var(--anim-delay, 0s) + 0.2s); }
.anim-typing span:nth-child(3) { animation-delay: calc(var(--anim-delay, 0s) + 0.4s); }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* 2. סרגל סריקה — חקר שוק */
.anim-scan {
  width: 52px; height: 22px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.25);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.anim-scan::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, transparent, rgba(6,182,212,0.7), transparent);
  animation: scan-move 2s ease-in-out infinite;
  animation-delay: var(--anim-delay, 0s);
  animation-play-state: paused;
}
@keyframes scan-move {
  0% { left: -12px; }
  100% { left: 52px; }
}

/* 3. גלגל — בנייה */
.anim-gear {
  width: 22px; height: 22px;
  color: #fbbf24;
  animation: spin-gear 2s linear infinite;
  animation-play-state: paused;
  animation-delay: var(--anim-delay, 0s);
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  display: block;
}
@keyframes spin-gear {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* 4. עמודות גרף — שיווק */
.anim-chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  padding: 4px 10px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 100px;
  height: 26px;
}
.anim-chart span {
  width: 4px;
  background: #4ade80;
  border-radius: 2px;
  animation: bar-grow 2s ease-in-out infinite alternate;
  animation-play-state: paused;
  animation-delay: calc(var(--anim-delay, 0s) + var(--local-delay, 0s));
}
.anim-chart span:nth-child(1) { height: 8px;  animation-delay: var(--anim-delay, 0s); }
.anim-chart span:nth-child(2) { height: 12px; animation-delay: calc(var(--anim-delay, 0s) + 0.2s); }
.anim-chart span:nth-child(3) { height: 6px;  animation-delay: calc(var(--anim-delay, 0s) + 0.4s); }
.anim-chart span:nth-child(4) { height: 14px; animation-delay: calc(var(--anim-delay, 0s) + 0.1s); }
@keyframes bar-grow {
  from { transform: scaleY(0.4); opacity: 0.5; }
  to   { transform: scaleY(1);   opacity: 1; }
}

/* הפעלת האנימציות ב-hover או כשה-step פעיל אוטומטית */
.journey-step:hover .anim-typing span,
.journey-step.journey-anim-active .anim-typing span  { animation-play-state: running; }

.journey-step:hover .anim-scan::after,
.journey-step.journey-anim-active .anim-scan::after  { animation-play-state: running; }

.journey-step:hover .anim-gear,
.journey-step.journey-anim-active .anim-gear         { animation-play-state: running; }

.journey-step:hover .anim-chart span,
.journey-step.journey-anim-active .anim-chart span   { animation-play-state: running; }

.project-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
}
.project-row:last-child { border-bottom: none; }

.project-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.project-info { flex: 1; }
.project-name { font-size: 14px; font-weight: 600; }
.project-type { font-size: 12px; color: var(--muted); }

.project-status {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.status-live { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-build { background: rgba(251,191,36,0.15); color: #fbbf24; }

.hero-card-floating {
  position: absolute;
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.floating-1 { top: -20px; left: -30px; }
.floating-2 { bottom: -20px; right: -30px; }

/* ===== שירותים ===== */
#services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-grad);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,0.3); box-shadow: 0 24px 48px rgba(0,0,0,0.3); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  border: 1px solid var(--card-border);
}

/* ===== תהליך עבודה ===== */
#process { background: var(--bg); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(124,58,237,0.4);
}

.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); }

/* ===== למה אני ===== */
#why {
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #a78bfa;
  font-size: 16px;
}

.why-text-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.why-text-desc { font-size: 14px; color: var(--muted); }

.why-visual {
  position: relative;
}

.stats-card {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.stats-card-title {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.stat-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-size: 36px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; }

.skill-bars { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.skill-row { }
.skill-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.skill-pct { color: var(--muted); }
.skill-bar { height: 6px; background: var(--card-border); border-radius: 3px; overflow: hidden; }
.skill-fill { height: 100%; border-radius: 3px; background: var(--accent-grad); transition: width 1.2s cubic-bezier(0.4,0,0.2,1); }

/* ===== Rocket scene ===== */
.rocket-scene {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 460px;
  margin: 0 auto;
  background: radial-gradient(ellipse at 50% 40%, rgba(124,58,237,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 80%, rgba(6,182,212,0.08) 0%, transparent 60%);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
}

/* כוכבים */
.rstar {
  position: absolute;
  width: 4px; height: 4px;
  background: white;
  border-radius: 50%;
  animation: rstar-twinkle 3s ease-in-out infinite;
}
@keyframes rstar-twinkle {
  0%,100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* רקטה */
.rocket-wrap {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rocket-float 3.5s ease-in-out infinite;
}
@keyframes rocket-float {
  0%,100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-18px); }
}

.rocket-svg { width: 110px; height: auto; filter: drop-shadow(0 0 18px rgba(124,58,237,0.6)); }

/* להבה */
.rocket-flame {
  display: flex;
  gap: 5px;
  margin-top: -6px;
  align-items: flex-end;
}
.flame {
  border-radius: 50% 50% 30% 30%;
  animation: flame-flicker 0.4s ease-in-out infinite alternate;
}
.f1 { width: 12px; height: 28px; background: linear-gradient(to top, #f97316, #fbbf24, transparent); animation-delay: 0s; }
.f2 { width: 18px; height: 40px; background: linear-gradient(to top, #dc2626, #f97316, #fbbf24, transparent); animation-delay: 0.1s; }
.f3 { width: 12px; height: 28px; background: linear-gradient(to top, #f97316, #fbbf24, transparent); animation-delay: 0.2s; }

@keyframes flame-flicker {
  from { transform: scaleX(1)   scaleY(1);   opacity: 0.9; }
  to   { transform: scaleX(0.8) scaleY(1.15); opacity: 1; }
}

/* תגיות צפות */
.rocket-badge {
  position: absolute;
  background: rgba(15,17,28,0.92);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.rb-1 { top: 22%; right: 6%; animation: badge-bob 4s ease-in-out infinite; }
.rb-2 { top: 50%; left: 4%; animation: badge-bob 4s ease-in-out infinite 1.3s; }
.rb-3 { bottom: 20%; right: 8%; animation: badge-bob 4s ease-in-out infinite 2.1s; }

@keyframes badge-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ===== המלצות ===== */
#testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-4px); }

.testimonial-stars { color: #fbbf24; font-size: 16px; margin-bottom: 16px; }

.testimonial-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 700; }
.author-biz { font-size: 12px; color: var(--muted); }

/* ===== פרויקטים ===== */
#portfolio { background: var(--bg2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.portfolio-card {
  background: var(--bg3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(0,0,0,0.4); border-color: rgba(124,58,237,0.3); }

.portfolio-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}

.portfolio-body { padding: 24px; }
.portfolio-type { font-size: 12px; font-weight: 700; color: #a78bfa; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.portfolio-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.portfolio-desc { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ===== CTA מיד-פייג' ===== */
.cta-banner {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 24px;
  padding: 56px 40px;
}

.cta-banner .section-title { margin-bottom: 20px; }
.cta-banner .section-sub { margin: 0 auto 32px; }
.cta-banner .btn { margin: 0 8px; }

/* ===== צור קשר ===== */
#contact { background: var(--bg2); }

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

.contact-info { }
.contact-channels { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  font-size: 15px;
  font-weight: 500;
}
.contact-channel:hover { border-color: rgba(124,58,237,0.4); background: rgba(124,58,237,0.06); transform: translateX(-4px); }

.channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 36px;
}

.form-title { font-size: 20px; font-weight: 700; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--muted); }

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: rgb(155, 155, 238);
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  transition: var(--transition);
  outline: none;
  direction: rtl;
}
.form-input:focus, .form-textarea:focus {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.06);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; justify-content: center; margin-top: 4px; }

.form-success {
  display: none;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

.form-error {
  display: none;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: #f87171;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
}

/* ===== GDPR Checkbox ===== */
.gdpr-group { margin-top: 4px; }

.gdpr-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.gdpr-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--card-border);
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: var(--transition);
}

.gdpr-label input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.gdpr-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 5px;
  width: 6px;
  height: 10px;
  border: 2px solid white;
  border-top: none;
  border-right: none; /* RTL — checkmark מותאם */
  border-left: 2px solid white;
  transform: rotate(-45deg) scaleX(-1);
}

.gdpr-label input[type="checkbox"]:focus {
  outline: 2px solid rgba(124,58,237,0.5);
  outline-offset: 2px;
}

.gdpr-label span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.gdpr-label span a {
  color: #a78bfa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  z-index: 99;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

.whatsapp-fab svg { width: 28px; height: 28px; fill: white; }

/* ===== פוטר ===== */
footer {
  background: var(--bg);
  border-top: 1px solid var(--card-border);
  padding: 40px 24px;
  text-align: center;
}

.footer-logo {
  font-size: 24px;
  font-weight: 900;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer-tagline { color: var(--muted); font-size: 14px; margin-bottom: 28px; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-copy { font-size: 13px; color: var(--muted); }

/* ===== Progress bar ===== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-grad);
  z-index: 200;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== Sticky CTA bar ===== */
#sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 98;
  background: rgba(10,11,16,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
#sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 15px; font-weight: 600; }
.sticky-cta-text span { color: #a78bfa; }
.sticky-cta-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #fbbf24;
  font-weight: 600;
  background: rgba(251,191,36,0.1);
  border: 1px solid rgba(251,191,36,0.2);
  padding: 6px 12px;
  border-radius: 100px;
}
.sticky-cta-actions { display: flex; gap: 10px; align-items: center; }
.sticky-close {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
}
.sticky-close:hover { color: var(--white); }
@media (max-width: 700px) {
  #sticky-cta { flex-wrap: wrap; justify-content: center; padding-bottom: 80px; }
  .sticky-cta-urgency { display: none; }
}

/* ===== כפתור Pulse ===== */
@keyframes cta-pulse {
  0%   { box-shadow: 0 4px 24px rgba(124,58,237,0.4), 0 0 0 0 rgba(124,58,237,0.4); }
  70%  { box-shadow: 0 4px 24px rgba(124,58,237,0.4), 0 0 0 12px rgba(124,58,237,0); }
  100% { box-shadow: 0 4px 24px rgba(124,58,237,0.4), 0 0 0 0 rgba(124,58,237,0); }
}
.btn-primary.pulse-active {
  animation: cta-pulse 2s ease-in-out infinite;
}

/* ===== Exit intent popup ===== */
#exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#exit-overlay.show { opacity: 1; pointer-events: all; }
.exit-modal {
  background: var(--bg3);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.6);
}
#exit-overlay.show .exit-modal { transform: scale(1); }
.exit-close {
  position: absolute;
  top: 16px; left: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
}
.exit-close:hover { color: var(--white); }
.exit-emoji { font-size: 48px; margin-bottom: 16px; }
.exit-title { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.exit-title span {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.exit-desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.7; }
.exit-offer {
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #a78bfa;
}
.exit-actions { display: flex; flex-direction: column; gap: 10px; }
.exit-skip { background: none; border: none; color: var(--muted); font-size: 13px; cursor: pointer; text-decoration: underline; font-family: 'Heebo',sans-serif; margin-top: 4px; }
.exit-skip:hover { color: var(--text); }

/* ===== אנימציות כניסה ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ===== רספונסיב ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { order: -1; }
  .hero-card-main { max-width: 100%; }
  .floating-1, .floating-2 { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--card-border);
    padding: 24px;
    gap: 16px;
    z-index: 99;
  }

  .hamburger { display: flex; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
