/* ===== Gilboa HaKosem (Gilbi) — Design tokens ===== */
:root {
  --purple: #6E1FC2;
  --purple-dark: #4E1590;
  --green: #4E9A2E;
  --green-dark: #3B7522;
  --orange: #F7931E;
  --gold: #FFC93C;
  --wa: #25D366;
  --bg: #F7F5F1;
  --ink: #2B1B45;
  --ink-soft: #5B4B78;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 40px -18px rgba(78, 21, 144, 0.35);
  --shadow-card: 0 10px 30px -12px rgba(43, 27, 69, 0.18);
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Heebo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  direction: rtl;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* subtle dot texture instead of flat white */
body {
  background-image: radial-gradient(circle, rgba(110,31,194,0.07) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}

h1, h2, h3, h4 {
  font-family: 'Rubik', 'Heebo', sans-serif;
  font-weight: 800;
  margin: 0 0 .5em;
  color: var(--purple-dark);
  line-height: 1.25;
}

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--orange);
  background: rgba(247, 147, 30, .12);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .9rem;
  margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 10px 24px -10px rgba(37,211,102,.6); }
.btn-outline { background: var(--white); color: var(--purple); border: 2px solid var(--purple); }
.btn-gold { background: var(--gold); color: var(--purple-dark); box-shadow: 0 10px 24px -10px rgba(255,201,60,.7); }
.btn-lg { padding: 18px 32px; font-size: 1.1rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Top bar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, .92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(110,31,194,.08);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-mini {
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--purple);
}
.logo-mini span { color: var(--orange); }
.topbar-actions { display: flex; gap: 10px; align-items: center; }
.phone-link {
  font-weight: 700;
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 56px 0 120px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--gold);
  -webkit-text-stroke: 2px var(--purple-dark);
  text-shadow: 0 6px 0 rgba(0,0,0,.12);
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 16px;
}
.hero p.lead {
  color: rgba(255,255,255,.88);
  font-size: 1.15rem;
  max-width: 480px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.trust-badges { margin-top: 18px; }
.trust-pill {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
  font-size: .85rem;
  padding: 7px 16px;
  border-radius: 999px;
}
.hero-figure {
  position: relative;
  justify-self: center;
}
.hero-figure .blob {
  position: absolute;
  inset: -6%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  border-radius: 42% 58% 63% 37% / 41% 44% 56% 59%;
  z-index: 0;
  opacity: .9;
}
.hero-figure img {
  position: relative;
  z-index: 1;
  border-radius: 40% 60% 62% 38% / 44% 42% 58% 56%;
  border: 6px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
  max-height: 460px;
  object-fit: cover;
  width: 100%;
}
.decor { pointer-events: none; user-select: none; }
.decor-sparkle {
  position: absolute;
  top: -10%;
  left: -8%;
  width: 90px;
  z-index: 2;
}
.decor-wand {
  width: 140px;
  margin-bottom: 8px;
}
.decor-confetti {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  opacity: .9;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ===== Date check card ===== */
.date-card-wrap {
  position: relative;
  margin-top: -90px;
  z-index: 5;
}
.date-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
}
.date-card h3 { margin-bottom: 6px; }
.date-card .icon-badge {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(110,31,194,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.date-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.date-form .field { display: flex; flex-direction: column; gap: 6px; }
.date-form label { font-size: .85rem; font-weight: 700; color: var(--ink-soft); }
.date-form input, .date-form select, .date-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #E4DEF2;
  font-family: inherit;
  font-size: .95rem;
  background: var(--bg);
  resize: vertical;
}
.date-form input:focus, .date-form select:focus, .date-form textarea:focus { outline: 2px solid var(--purple); }
.date-form .field.full { grid-column: 1 / -1; }
.date-submit { grid-column: 1 / -1; margin-top: 4px; }

/* ===== Facts bar ===== */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.fact {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-position: top center;
  box-shadow: var(--shadow-card);
  position: relative;
  isolation: isolate;
}
.fact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78,21,144,.88) 0%, rgba(78,21,144,.35) 55%, rgba(78,21,144,.05) 100%);
  border-radius: inherit;
  z-index: -1;
}
.fact .num { font-family: 'Rubik'; font-weight: 800; font-size: 1.5rem; color: var(--gold); display:block; }
.fact span.label { color: #fff; font-size: .85rem; }

/* ===== World cards ===== */
.world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.world-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease;
  border-top: 5px solid var(--gold);
}
.world-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: top center;
}
.world-card .emoji,
.world-card h4,
.world-card p,
.world-card a.more { padding-left: 22px; padding-right: 22px; }
.world-card .emoji { margin-top: 18px; }
.world-card a.more { display: inline-block; margin-bottom: 22px; }
.world-card:nth-child(2) { border-top-color: var(--green); }
.world-card:nth-child(3) { border-top-color: var(--orange); }
.world-card:nth-child(4) { border-top-color: var(--purple); }
.world-card:hover { transform: translateY(-4px); }
.world-card .emoji { font-size: 2.4rem; margin-bottom: 10px; }
.world-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.world-card p { font-size: .92rem; margin-bottom: 14px; }
.world-card a.more { color: var(--purple); font-weight: 700; font-size: .9rem; }

/* ===== Video ===== */
.video-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: var(--radius-lg);
  aspect-ratio: 16/8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 20px;
}
.video-box .play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}

/* ===== Moment (wand) ===== */
.moment {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 36px;
}
.moment img {
  border-radius: var(--radius-md);
  width: 100%;
  object-fit: cover;
  max-height: 420px;
}
.moment .eyebrow { }

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.timeline-step {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.timeline-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 14px;
}
.timeline-step h4, .timeline-step p { padding: 0 18px; }
.timeline-step .step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  margin: -34px auto 12px;
  font-family: 'Rubik';
  border: 3px solid var(--white);
  position: relative;
  z-index: 1;
}
.timeline-step h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-step p { font-size: .88rem; margin: 0; }

/* ===== What's included ===== */
.included {
  background: var(--purple);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.included .section-head h2, .included .section-head p { color: var(--white); }
.included .section-head p { color: rgba(255,255,255,.8); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.included-item {
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  background-size: cover;
  background-position: top center;
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.included-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,10,60,.85) 0%, rgba(30,10,60,.3) 55%, rgba(30,10,60,.05) 100%);
  border-radius: inherit;
  z-index: -1;
}
.included-item .check {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
}
.included-item p { color: #fff; margin: 0; font-size: .95rem; font-weight: 500; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  font-weight: 700;
  font-family: 'Heebo';
  font-size: 1rem;
  color: var(--ink);
  text-align: right;
}
.faq-q .plus { color: var(--purple); font-size: 1.3rem; transition: transform .2s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }
.faq-a p { margin: 0; font-size: .95rem; }

/* ===== Bio ===== */
.bio {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 40px;
  align-items: center;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--gold);
  box-shadow: var(--shadow-card);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-text .signature { font-family: 'Rubik'; color: var(--orange); font-weight: 800; font-size: 1.2rem; }

/* ===== Testimonials placeholder ===== */
.testi-placeholder {
  text-align: center;
  background: var(--white);
  border: 2px dashed #E4DEF2;
  border-radius: var(--radius-lg);
  padding: 48px 24px;
  color: var(--ink-soft);
}

/* ===== How to order ===== */
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.order-step {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.order-step-img {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 12px;
  border: 4px solid var(--bg);
  box-shadow: var(--shadow-card);
}
.order-step .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  display: flex; align-items: center; justify-content: center;
  margin: -34px auto 14px 0;
  margin-inline-start: calc(50% + 18px);
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Rubik';
  position: relative;
  border: 3px solid var(--white);
}

/* ===== Final CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  position: relative;
}
.final-cta h2 { color: var(--purple-dark); margin-bottom: 8px; }
.final-cta .cta-figure {
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  justify-self: end;
}
.final-cta .cta-figure img { height: 260px; object-fit: cover; }

/* ===== Footer ===== */
footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,.75);
  padding: 40px 0 96px;
  text-align: center;
  font-size: .9rem;
}
footer a { color: var(--gold); font-weight: 700; }

/* ===== Sticky mobile bar ===== */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: none;
  z-index: 60;
  background: var(--white);
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,.2);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
}
.mobile-bar .call { background: var(--bg); color: var(--purple); border: 1.5px solid var(--purple); }
.mobile-bar .wa { background: var(--wa); color: var(--white); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin: 0 auto; }
  .hero-cta { justify-content: center; }
  .hero-figure { max-width: 340px; margin: 0 auto; }
  .date-card { grid-template-columns: 1fr; text-align: center; }
  .date-card .icon-badge { margin: 0 auto; }
  .date-form { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .world-grid { grid-template-columns: repeat(2, 1fr); }
  .moment { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
  .bio { grid-template-columns: 1fr; text-align: center; }
  .bio-photo { max-width: 240px; margin: 0 auto; }
  .order-steps { grid-template-columns: 1fr; }
  .final-cta { grid-template-columns: 1fr; text-align: center; }
  .final-cta .cta-figure { justify-self: center; }
  .mobile-bar { display: flex; }
  footer { padding-bottom: 110px; }
}

@media (max-width: 520px) {
  .date-form { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}
