/* =========================================================
   בית לאירוע — גיליון סגנון ראשי
   פלטת צבעים: ורד ואפרסק פסטל שמח ובהיר
   ========================================================= */

:root {
  /* ---- ורד ואפרסק פסטל שמח ובהיר ---- */
  --plum:        #c23e66;   /* ורד תוסס — אקסנט מותג ראשי */
  --plum-dark:   #9d3253;   /* ורד-פטל עשיר — כותרות ופוטר */
  --plum-soft:   #ffb3c1;   /* ורד פסטל בהיר — גרדיאנטים */
  --gold:        #ff8a5c;   /* אפרסק-קורל תוסס — אקסנט משני */
  --gold-soft:   #ffccae;   /* אפרסק בהיר */
  --blush:       #ffe6dd;   /* אפרסק-בלאש רך — רקעים */
  --cream:       #fff7f2;   /* לבן-אפרסקי בהיר — רקע ראשי */
  --cream-2:     #ffe0e6;   /* ורוד עדין */
  --ink:         #5c434b;   /* טקסט כהה בגוון ורד-חום */
  --ink-soft:    #8a656d;   /* טקסט משני */
  --taupe:       #e0b8bf;   /* ורד-אפור בהיר */
  --white:       #ffffff;
  --wa:          #25d366;   /* וואטסאפ */

  --shadow-sm: 0 2px 12px rgba(194, 62, 102, .10);
  --shadow-md: 0 14px 36px rgba(194, 62, 102, .14);
  --shadow-lg: 0 26px 64px rgba(194, 62, 102, .18);

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

  --font-body: "Heebo", system-ui, "Segoe UI", Arial, sans-serif;
  --font-display: "Frank Ruhl Libre", Georgia, serif;
}

/* ---------- Reset בסיסי ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; margin: 0; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--plum);
  text-transform: none;
  margin: 0 0 .6rem;
}

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, #d24a75, #a62d59);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: rgba(109, 38, 72, .28);
}
.btn-ghost:hover { background: rgba(109, 38, 72, .06); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 246, 241, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(109, 38, 72, .08);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: .5rem; font-size: 1.1rem; }
.logo-mark { color: var(--gold); font-size: 1.3rem; }
.logo-text strong { color: var(--plum); font-family: var(--font-display); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 1.4rem; }
.nav-list a { font-weight: 500; font-size: .98rem; color: var(--ink); transition: color .15s; }
.nav-list a:hover { color: var(--plum); }
.nav-cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--plum-dark); }

.header-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  color: var(--plum);
  border: 1.5px solid rgba(109, 38, 72, .2);
  padding: .5rem 1rem;
  border-radius: 999px;
  transition: background .15s;
}
.header-phone:hover { background: rgba(109, 38, 72, .06); }
.phone-icon { color: var(--gold); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 55%, var(--cream-2) 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 161, 90, .22), transparent 42%),
    radial-gradient(circle at 12% 85%, rgba(109, 38, 72, .16), transparent 45%);
  pointer-events: none;
}
.hero-inner { position: relative; }
.hero-content { max-width: 720px; }
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--plum-dark);
  margin: 0 0 1.1rem;
}
.hero-title .accent {
  color: var(--plum);
  background: linear-gradient(120deg, var(--plum), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(109, 38, 72, .12);
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--plum);
  line-height: 1.1;
}
.hero-trust span { font-size: .9rem; color: var(--ink-soft); }

.scroll-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--plum);
  box-shadow: var(--shadow-sm);
  font-size: 1.2rem;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ---------- Trust bar ---------- */
.trust-bar { background: linear-gradient(90deg, var(--plum), var(--plum-dark)); color: var(--white); }
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 5vw, 3.2rem);
  padding: 1.05rem 22px;
}
.trust-item { display: flex; align-items: center; gap: .55rem; font-weight: 500; font-size: .98rem; }
.trust-item span { font-size: 1.15rem; }

/* ---------- Section base ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.2rem, 5vw, 3.4rem); }
.section-head h2 {
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--plum-dark);
  margin-bottom: .7rem;
}
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin: 0; }

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--cream);
  border: 1px solid rgba(109, 38, 72, .08);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 161, 90, .4);
}
.service-icon {
  width: 66px; height: 66px;
  display: grid; place-items: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--blush), var(--cream-2));
  border-radius: 16px;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.32rem; color: var(--plum-dark); margin-bottom: .6rem; }
.service-card p { color: var(--ink-soft); font-size: .98rem; margin: 0 0 1.1rem; }
.service-link { font-weight: 700; color: var(--plum); font-size: .95rem; }
.service-link:hover { color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--cream), var(--blush)); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-size: cover;
  background-position: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-item figcaption {
  position: absolute;
  inset-inline: 0; bottom: 0;
  padding: .8rem 1rem;
  color: var(--white);
  font-weight: 500;
  font-size: .95rem;
  background: linear-gradient(to top, rgba(45, 16, 33, .78), transparent);
}
/* תמונות גלריה — תגי <img> עם alt (טוב לחיפוש תמונות ולנגישות) */
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 1; }
.gallery-item figcaption { z-index: 2; }
.g2 { grid-row: span 2; }
.g6 img { object-position: center 30%; }

.gallery-cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Why ---------- */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
}
.why-item { text-align: center; padding: 1rem; }
.why-icon {
  width: 76px; height: 76px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  font-size: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--cream-2));
  border: 1px solid rgba(201, 161, 90, .3);
}
.why-item h3 { font-size: 1.2rem; color: var(--plum-dark); margin-bottom: .5rem; }
.why-item p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Process ---------- */
.process { background: linear-gradient(180deg, var(--blush), var(--cream)); }
.process .section-head h2 { color: var(--plum-dark); }
.process .eyebrow { color: var(--plum); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(194, 62, 102, .12);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--plum-dark);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
}
.process-step h3 { color: var(--plum-dark); font-size: 1.25rem; margin: .4rem 0 .5rem; }
.process-step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(109, 38, 72, .06);
}
.stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; margin-bottom: .9rem; }
.testimonial blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; color: var(--ink); }
.testimonial figcaption { color: var(--ink-soft); font-size: .92rem; }
.testimonial figcaption strong { color: var(--plum); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: .9rem; }
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(43, 38, 34, .08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: rgba(165, 95, 63, .35); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--plum-dark);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--plum);
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform .25s ease, background .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--plum); color: var(--white); }
.faq-answer { padding: 0 1.4rem 1.25rem; }
.faq-answer p { margin: 0; color: var(--ink-soft); font-size: 1rem; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(160deg, var(--blush), var(--cream)); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--plum-dark); margin-bottom: .7rem; }
.contact-lead { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 1.8rem; }

.contact-methods { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.6rem; }
.contact-methods a {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(109, 38, 72, .1);
  border-radius: var(--radius-sm);
  padding: .9rem 1.1rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-methods a:hover { transform: translateX(-4px); box-shadow: var(--shadow-sm); }
.cm-icon {
  width: 46px; height: 46px;
  flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--blush), var(--cream-2));
  color: var(--plum);
}
.cm-icon.wa { background: var(--wa); color: var(--white); }
.contact-methods strong { color: var(--plum-dark); }
.contact-meta { font-size: .9rem; color: var(--ink-soft); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
}
.contact-form h3 {
  grid-column: 1 / -1;
  font-size: 1.35rem;
  color: var(--plum-dark);
  margin-bottom: .2rem;
}
.field { display: flex; flex-direction: column; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 500; font-size: .92rem; color: var(--ink); }
.field .opt { color: var(--ink-soft); font-weight: 400; font-size: .82rem; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: .75rem .9rem;
  border: 1.5px solid rgba(109, 38, 72, .18);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--plum);
  box-shadow: 0 0 0 3px rgba(109, 38, 72, .12);
}
.field input.invalid,
.field select.invalid { border-color: #d64545; box-shadow: 0 0 0 3px rgba(214, 69, 69, .12); }
.contact-form .btn-block { grid-column: 1 / -1; margin-top: .4rem; }
.form-note { grid-column: 1 / -1; font-size: .82rem; color: var(--ink-soft); text-align: center; margin: 0; }
.form-status { grid-column: 1 / -1; text-align: center; font-weight: 500; margin: 0; min-height: 1.2rem; }
.form-status.ok { color: #1f8a4c; }
.form-status.err { color: #d64545; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum-dark); color: rgba(255, 255, 255, .85); padding: 2.4rem 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer-brand { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1.15rem; color: var(--white); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.footer-nav a { font-size: .95rem; transition: color .15s; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-copy { width: 100%; text-align: center; font-size: .85rem; color: rgba(255, 255, 255, .6); border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 1.2rem; margin: .4rem 0 0; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 22px; left: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--wa);
  color: var(--white);
  padding: .8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float > span:first-child { font-size: 1.35rem; }

/* ---------- רספונסיביות ---------- */
@media (max-width: 860px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g2 { grid-row: span 1; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .header-phone { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
  }
  .nav-toggle span {
    display: block;
    width: 24px; height: 2.5px;
    background: var(--plum);
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .nav-list {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 6rem 2rem 2rem;
    background: var(--cream);
    box-shadow: -16px 0 40px rgba(45, 16, 33, .2);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 1.15rem; }
  .nav-cta { display: inline-block; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .contact-form { grid-template-columns: 1fr; }
  .wa-float-text { display: none; }
  .wa-float { padding: 1rem; }
  .wa-float > span:first-child { font-size: 1.5rem; }
  .hero-cta .btn { flex: 1 1 auto; }
}

/* ---------- שורת קישורי שירות בעמוד הבית ---------- */
.more-services { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); font-size: 1rem; }
.more-services a { color: var(--plum); font-weight: 600; }
.more-services a:hover { color: var(--gold); }

/* ---------- עמודי שירות (SEO landing pages) ---------- */
.svc-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 60%, var(--cream-2) 100%);
  padding: clamp(2.4rem, 6vw, 4rem) 0 clamp(2.4rem, 6vw, 3.4rem);
}
.breadcrumb { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.breadcrumb a { color: var(--plum); font-weight: 500; }
.breadcrumb a:hover { color: var(--gold); }
.svc-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--plum-dark);
  margin: 0 0 .8rem;
  max-width: 760px;
}
.svc-hero .lead { font-size: clamp(1.05rem, 2.2vw, 1.24rem); color: var(--ink-soft); max-width: 640px; margin: 0 0 1.8rem; }
.svc-hero .hero-cta { margin: 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--plum-dark); margin: 2rem 0 .8rem; }
.prose h3 { font-size: 1.2rem; color: var(--plum-dark); margin: 1.4rem 0 .5rem; }
.prose p { color: var(--ink); margin: 0 0 1rem; font-size: 1.05rem; }
.prose a { color: var(--plum); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.feature-list { list-style: none; margin: 1rem 0 1.4rem; padding: 0; display: grid; gap: .7rem; }
.feature-list li { position: relative; padding-inline-start: 2rem; color: var(--ink); font-size: 1.03rem; }
.feature-list li::before {
  content: "✿";
  position: absolute; inset-inline-start: 0; top: 0;
  color: var(--plum);
  font-size: 1.1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.related-card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(194, 62, 102, .12);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.related-card .ico { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.related-card strong { display: block; color: var(--plum-dark); font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .3rem; }
.related-card span { color: var(--ink-soft); font-size: .95rem; }

.cta-strip {
  background: linear-gradient(90deg, var(--plum), var(--plum-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  text-align: center;
  margin-top: 2.4rem;
}
.cta-strip h2 { color: var(--white); font-size: clamp(1.4rem, 3.5vw, 2rem); margin: 0 0 .5rem; }
.cta-strip p { color: rgba(255, 255, 255, .9); margin: 0 0 1.3rem; }
.cta-strip .btn-ghost { background: var(--white); color: var(--plum-dark); border-color: var(--white); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.85); }

/* ---------- העדפת תנועה מופחתת ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}
