/* ============================================================
   פיתוח קול עם עומר — single-page site (blue redesign)
   Concept: clean, modern, professional. Deep-blue dominant
   surfaces alternate with light tinted sections. Light-blue
   for actions/highlights, purple for the standout CTA.
   Palette (exact): deep #294285 · light blue #5B8EDC ·
   purple #7868E6 · tint #EEF3FC · white #FFFFFF · ink #1A1A1A
   ============================================================ */

:root {
  /* brand — exact hex per spec */
  --blue-900: #294285;   /* deep — hero, dominant fields, headings */
  --blue:     #5B8EDC;   /* light blue — buttons, stars, links, highlights */
  --purple:   #7868E6;   /* standout CTA */
  --tint:     #EEF3FC;   /* very light blue section background */
  --white:    #FFFFFF;
  --ink:      #1A1A1A;

  /* functional shades derived from the same hues (hover/depth) */
  --blue-950: #1d3266;
  --blue-800: #21366c;
  --blue-700: #3a6fc0;
  --blue-soft: #cdddf6;
  --purple-700: #5d4dd0;
  --ink-soft: rgba(26, 26, 26, .70);
  --ink-faint: rgba(26, 26, 26, .54);
  --on-blue:      #f4f8ff;
  --on-blue-soft: rgba(244, 248, 255, .76);
  --line-dark: rgba(244, 248, 255, .16);
  --line-light: rgba(41, 66, 133, .14);

  --display: 'Suez One', Georgia, serif;
  --serif:   'Frank Ruhl Libre', Georgia, 'Times New Roman', serif;
  --sans:    'Assistant', system-ui, 'Segoe UI', Arial, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-soft: cubic-bezier(.4, 0, .2, 1);
  --shadow: 0 24px 60px -34px rgba(20, 38, 84, .55);
  --shadow-sm: 0 10px 30px -18px rgba(20, 38, 84, .45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.72;
  font-size: clamp(1rem, .96rem + .2vw, 1.12rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }

.skip-link {
  position: fixed; inset-block-start: -140px; inset-inline-start: 18px; z-index: 1200;
  background: var(--blue); color: #fff; padding: 12px 20px; border-radius: 0 0 12px 12px;
  font-weight: 700; transition: inset-block-start .25s var(--ease);
}
.skip-link:focus { inset-block-start: 0; }

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  color: var(--blue);
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; border-radius: 2px; opacity: .9; }
.eyebrow--on-blue { color: var(--blue-soft); }

.section-title {
  font-family: var(--display); font-weight: 400; line-height: 1.04;
  color: var(--blue-900); font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.7rem);
  letter-spacing: -.01em;
}
.section-title--on-blue { color: #fff; }

/* line-reveal (hero) */
.rline { display: block; overflow: hidden; }
.rline > span { display: block; transform: translateY(112%); transition: transform 1s var(--ease); }
.rline:nth-child(2) > span { transition-delay: .08s; }
body.loaded .rline > span { transform: translateY(0); }

/* generic scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--sans); font-weight: 700; font-size: 1.04rem;
  padding: .95rem 2rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--blue); color: #fff; cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(91, 142, 220, .8);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--blue-700); box-shadow: 0 20px 38px -16px rgba(91, 142, 220, .9); }
.btn svg { flex: none; }
.btn--purple { background: #0d0d0d; box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .6); }
.btn--purple:hover { background: #000; box-shadow: 0 22px 42px -16px rgba(0, 0, 0, .7); }
.btn--ghost { background: transparent; border-color: rgba(244, 248, 255, .5); color: #fff; box-shadow: none; }
.btn--ghost:hover { background: rgba(244, 248, 255, .1); border-color: #fff; }
.btn--lg { font-size: 1.12rem; padding: 1.05rem 2.6rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   Equalizer logo mark
   ============================================================ */
.mark { display: inline-flex; align-items: flex-end; gap: 3px; height: 24px; }
.mark > span { width: 3px; background: var(--blue); border-radius: 3px; animation: eq 1.7s var(--ease) infinite; }
.mark--light > span { background: var(--blue-soft); }
.mark > span:nth-child(1) { height: 9px;  animation-delay: 0s; }
.mark > span:nth-child(2) { height: 16px; animation-delay: .18s; }
.mark > span:nth-child(3) { height: 24px; animation-delay: .36s; }
.mark > span:nth-child(4) { height: 16px; animation-delay: .54s; }
.mark > span:nth-child(5) { height: 9px;  animation-delay: .72s; }
@keyframes eq { 0%,100% { transform: scaleY(.5); } 50% { transform: scaleY(1); } }

/* sound-wave motif */
.wave { display: block; width: 100%; height: 44px; overflow: hidden; opacity: .7; }
.wave svg { width: 200%; height: 100%; animation: waveSlide 14s linear infinite; }
@keyframes waveSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* star rating */
.stars { display: inline-flex; gap: 2px; color: var(--blue); font-size: 1.05rem; line-height: 1; letter-spacing: 1px; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(41, 66, 133, .9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-dark);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__name { font-family: var(--serif); font-weight: 700; font-size: 1.16rem; color: #fff; white-space: nowrap; }
.brand__wave { width: 52px; height: 18px; flex: none; opacity: .9; }
@media (max-width: 600px) { .brand__wave { display: none; } }

.menu { display: flex; align-items: stretch; gap: clamp(.4rem, 1.6vw, 1.7rem); }
.menu a {
  display: inline-flex; align-items: center; padding: .55rem .3rem; position: relative;
  color: var(--on-blue-soft); font-weight: 600; font-size: 1rem;
  transition: color .3s var(--ease);
}
.menu a::after { content: ""; position: absolute; inset-inline: .2rem; bottom: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease); }
.menu a:hover { color: #fff; }
.menu a:hover::after { transform: scaleX(1); }
.menu a[aria-current="page"] { color: #fff; }
.menu a[aria-current="page"]::after { transform: scaleX(1); background: #fff; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

main { animation: pageIn .8s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Section shell + alternating surfaces
   ============================================================ */
.section { padding-block: clamp(3.4rem, 7vw, 6.5rem); position: relative; }
section[id] { scroll-margin-top: 88px; }
.surface-blue { background: var(--blue-900); color: var(--on-blue); }
.surface-tint { background: var(--tint); color: var(--ink); }
.surface-white { background: var(--white); color: var(--ink); }

.section-head { max-width: 56ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head .eyebrow { margin-bottom: .9rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; isolation: isolate; overflow: hidden; padding-block: clamp(2.6rem, 6vw, 5rem); }
.hero::before { /* soft glow */
  content: ""; position: absolute; z-index: -1; inset-block-start: -30%; inset-inline-start: -10%;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 142, 220, .42), transparent 64%);
}
.hero__grid {
  display: grid; grid-template-columns: 1fr;
  grid-template-areas: "title" "media" "copy";
  gap: clamp(1.4rem, 4vw, 2.2rem); align-items: start;
}
.hero__copy { grid-area: copy; max-width: 36rem; }
.hero__title {
  grid-area: title;
  font-family: 'Heebo', var(--sans); font-weight: 800; color: #fff;
  font-size: clamp(2.4rem, 1.5rem + 5vw, 4.6rem); line-height: 1.05; letter-spacing: -.01em;
}
.hero__title .accent { color: var(--blue-soft); }
.hero__wave { margin: 1.3rem 0 1.4rem; max-width: 420px; }
.hero__subtitle { font-family: var(--serif); font-weight: 600; font-size: clamp(1.42rem, 1.1rem + 1.05vw, 1.95rem); color: #fff; line-height: 1.4; }
.hero__lead { margin-top: 1.1rem; color: var(--on-blue); font-size: 1.1rem; line-height: 1.7; max-width: 42ch; }
.hero__cta { margin-top: 1.9rem; }

.hero__media { grid-area: media; position: relative; justify-self: center; width: min(100%, 528px); }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 30%;
  border-radius: 18px; box-shadow: var(--shadow);
}
.hero__media::before { /* offset frame, behind */
  content: ""; position: absolute; z-index: -1; inset-block-start: 18px; inset-inline-end: -18px;
  width: 100%; height: 100%; border: 2px solid var(--blue); border-radius: 18px;
}
.hero__badge {
  position: absolute; inset-block-end: 16px; inset-inline-start: 16px;
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(41, 66, 133, .82); backdrop-filter: blur(6px);
  color: #fff; font-weight: 600; font-size: .92rem; padding: .5rem .95rem; border-radius: 999px;
  border: 1px solid var(--line-dark);
}

/* ============================================================
   LEARN (what you learn + personal text)
   ============================================================ */
.learn__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.learn__list { list-style: none; padding: 0; display: grid; gap: .85rem; }
.learn__list li {
  display: flex; align-items: center; gap: .85rem;
  font-family: var(--sans); font-weight: 600; font-size: clamp(1.02rem, .96rem + .38vw, 1.22rem);
  letter-spacing: -.005em; color: var(--blue-900); line-height: 1.45;
}
/* וי בתוך עיגול, זהה לזה שבמקטע "קצת עליי" */
.learn__list .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; box-shadow: 0 6px 16px -8px rgba(91, 142, 220, .9);
}
.learn__list .tick svg { width: 16px; height: 16px; }
.learn__body { display: grid; gap: 1.2rem; max-width: 60ch; }
.learn__body p { color: rgba(26, 26, 26, .88); font-size: 1.08rem; }
.learn__body p:first-child { color: var(--ink); font-size: 1.16rem; font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.svc {
  position: relative; background: #fff; color: var(--ink); border-radius: 16px;
  padding: clamp(1.7rem, 3vw, 2.3rem); box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-6px); box-shadow: 0 34px 70px -30px rgba(20, 38, 84, .6); }
.svc--featured { border-top-color: var(--purple); }
.svc__icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--tint); color: var(--blue); margin-bottom: 1.1rem;
}
.svc--featured .svc__icon { background: rgba(120, 104, 230, .12); color: var(--purple); }
.svc__title { font-family: var(--display); font-weight: 400; font-size: 1.5rem; color: var(--blue-900); margin-bottom: .7rem; }
.svc__text { color: #141414; font-size: 1.02rem; }

/* ============================================================
   JOIN / OFFER
   ============================================================ */
.join { position: relative; overflow: hidden; }
.join__card {
  position: relative; isolation: isolate; overflow: hidden;
  background: linear-gradient(125deg, var(--blue-900) 0%, var(--blue) 130%);
  color: #fff; border-radius: 24px; box-shadow: var(--shadow);
  padding: clamp(2.2rem, 6vw, 4.2rem) clamp(1.6rem, 5vw, 3.6rem);
  text-align: center; display: grid; justify-items: center; gap: 1.1rem;
}
.join__card::before { /* faint resonance ring */
  content: ""; position: absolute; z-index: -1; inset-block-start: -40%; inset-inline-end: -10%;
  width: 28rem; height: 28rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(91, 142, 220, .55), transparent 62%);
}
.join__title { font-family: var(--display); font-weight: 400; font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem); line-height: 1.05; }
.join__text { font-family: var(--serif); font-weight: 500; font-size: clamp(1.2rem, 1rem + 1vw, 1.7rem); line-height: 1.5; max-width: 46ch; color: #fff; }
.join__cta { margin-top: .6rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about__media { position: relative; max-width: 400px; justify-self: center; width: 100%; }
.about__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 12%; border-radius: 16px; box-shadow: var(--shadow); }
.about__media::before {
  content: ""; position: absolute; inset-block-start: 18px; inset-inline-start: -18px;
  width: 100%; height: 100%; border: 2px solid var(--blue); border-radius: 16px; z-index: -1;
}
.about__media--passport { max-width: 340px; justify-self: start; }
.about__media--passport img { aspect-ratio: 4 / 5; object-position: 50% 30%; border-radius: 12px; }
.about__media--passport::before { inset-block-start: 12px; inset-inline-start: auto; inset-inline-end: -12px; border-radius: 12px; }
.about__media figcaption {
  position: absolute; inset-block-end: 14px; inset-inline-start: 14px;
  background: var(--blue-900); color: #fff; font-family: var(--serif);
  padding: .45rem 1rem; font-size: .95rem; border-radius: 999px;
}
.about__text p { color: #141414; font-size: 1.1rem; }
.about__text p + p { margin-top: 1rem; }
.about__text p:first-of-type { color: var(--ink); }
.about__checks { list-style: none; padding: 0; margin-top: 1.8rem; display: grid; gap: .85rem; }
.about__checks li { display: flex; align-items: center; gap: .85rem; font-weight: 600; color: var(--blue-900); font-size: 1.06rem; }
.about__checks .tick {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: #fff; box-shadow: 0 6px 16px -8px rgba(91, 142, 220, .9);
}
.about__checks .tick svg { width: 16px; height: 16px; }

/* ============================================================
   TESTIMONIALS (one-at-a-time carousel, swipe + arrows)
   ============================================================ */
.carousel { position: relative; direction: ltr; display: flex; align-items: center; gap: clamp(.4rem, 1.5vw, 1rem); }
.carousel__viewport { flex: 1 1 auto; overflow: hidden; border-radius: 16px; touch-action: pan-y; }
.carousel__track { display: flex; align-items: stretch; will-change: transform; transition: transform .5s var(--ease); }
.carousel__track.is-dragging { transition: none; }
.carousel__track > .testi__card { flex: 0 0 100%; width: 100%; direction: rtl; }
.carousel__arrow {
  flex: none; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: #fff; color: var(--blue-900); border: 0;
  box-shadow: 0 12px 28px -14px rgba(20, 38, 84, .65);
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.carousel__arrow:hover { background: var(--blue); color: #fff; transform: scale(1.08); }
.carousel__dots { display: flex; justify-content: center; gap: .55rem; margin-top: 1.7rem; }
.carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; padding: 0; border: 0; cursor: pointer;
  background: rgba(244, 248, 255, .38); transition: background .25s var(--ease), transform .25s var(--ease);
}
.carousel__dot.active { background: #fff; transform: scale(1.3); }

.testi__card {
  background: #fff; color: var(--ink); border-radius: 16px; box-shadow: var(--shadow);
  padding: clamp(1.8rem, 4vw, 2.8rem); display: flex; flex-direction: column; gap: 1rem;
}
.testi__top { display: flex; align-items: center; gap: .9rem; }
.testi__avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex: none; background: var(--tint); border: 2px solid var(--blue-soft); }
.testi__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi__who { display: grid; gap: .15rem; }
.testi__name { font-family: var(--serif); font-weight: 700; font-size: 1.08rem; color: var(--blue-900); }
.testi__role { font-size: .86rem; color: var(--ink-faint); }
.testi__quote { color: rgba(26, 26, 26, .84); font-size: 1.05rem; line-height: 1.75; }

@media (max-width: 720px) { .carousel__arrow { display: none; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.6rem, 4vw, 3rem); align-items: start; }
.faq__list { display: grid; gap: 1rem; }
.faq__item { background: #fff; color: var(--ink); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-light); }
.faq__q { width: 100%; background: none; border: 0; cursor: pointer; display: flex; align-items: center; gap: 1rem; text-align: start; padding: 1.35rem clamp(1.2rem, 3vw, 1.9rem); }
.faq__num { font-family: var(--display); color: var(--blue); font-size: 1.05rem; flex: none; }
.faq__qt { flex: 1; font-family: var(--sans); font-weight: 700; font-size: clamp(1.12rem, 1rem + .6vw, 1.4rem); color: var(--blue-900); line-height: 1.35; }
.faq__icon { position: relative; width: 18px; height: 18px; flex: none; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; inset-inline: 0; top: 50%; height: 2.5px; background: var(--blue); border-radius: 2px; transition: transform .35s var(--ease); }
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a-inner { padding: 0 clamp(1.2rem, 3vw, 1.9rem) 1.5rem calc(clamp(1.2rem, 3vw, 1.9rem) + 1.1rem + 1rem); display: grid; gap: .8rem; }
.faq__a-inner p { color: #000; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__direct { list-style: none; padding: 0; margin-top: 2rem; display: grid; gap: 1rem; }
.contact__direct a { display: inline-flex; align-items: center; gap: .9rem; font-weight: 700; color: #fff; font-size: 1.1rem; transition: transform .25s var(--ease), color .25s; }
.contact__direct a:hover { transform: translateX(-6px); color: var(--blue-soft); }
.contact__direct svg { color: var(--blue-soft); flex: none; }
.contact__form { background: #fff; color: var(--ink); border-radius: 18px; box-shadow: var(--shadow); padding: clamp(1.7rem, 4vw, 2.6rem); display: grid; gap: 1.2rem; }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 700; color: var(--blue-900); font-size: .98rem; }
.field input, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff;
  border: 1.5px solid rgba(41, 66, 133, .25); border-radius: 10px; padding: .85rem 1rem; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91, 142, 220, .18); }
.field__error { font-size: .85rem; color: #c23b22; display: none; }
.field.invalid input, .field.invalid textarea { border-color: #c23b22; }
.field.invalid .field__error { display: block; }
.contact__sent { margin-top: .3rem; background: rgba(91, 142, 220, .14); border: 1px solid rgba(91, 142, 220, .45); color: var(--blue-900); padding: .9rem 1.1rem; border-radius: 10px; font-weight: 700; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--blue-950); color: var(--on-blue-soft); padding-block: clamp(2.6rem, 5vw, 4rem); }
.footer__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer__brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: #fff; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; }
.footer__nav a:hover, .footer__contact a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: .7rem; }
.footer__contact a { color: var(--on-blue); }
.footer__loc { display: inline-flex; align-items: center; gap: .5rem; color: var(--on-blue); }
.footer__loc svg { color: var(--blue-soft); flex: none; }
.footer__rule { height: 1px; background: var(--line-dark); margin-block: 2rem; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; font-size: .85rem; color: rgba(244, 248, 255, .5); }
.footer__credit a { color: var(--blue-soft); }
.footer__credit a:hover { color: #fff; }

/* ---------- floating WhatsApp (enlarged, labeled) ---------- */
.wa-float {
  position: fixed; inset-block-end: 24px; left: 24px; z-index: 95;
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 15px 24px 15px 19px; border-radius: 999px;
  background: #25D366; color: #fff; font-weight: 800; font-size: 1.14rem; line-height: 1;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .8);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 26px 50px -14px rgba(37, 211, 102, .92); }
.wa-float svg { flex: none; }
.wa-float__label { white-space: nowrap; }
.wa-float::before { content: ""; position: absolute; inset: 0; border-radius: 999px; border: 2px solid #25D366; animation: ring 2.6s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 720px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    grid-template-areas: "title media" "copy media";
    column-gap: clamp(2rem, 5vw, 3.5rem); align-items: start;
  }
  .hero__media { justify-self: end; align-self: center; }
  .learn__grid { grid-template-columns: 1fr 1.05fr; }
  /* קצת עליי — התמונה מעל הכותרת, מיושרת לימין (טור יחיד) */
  .about__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: .55fr 1.45fr; }
  .faq__aside { position: sticky; top: 108px; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .menu {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(41, 66, 133, .98); backdrop-filter: blur(16px);
    padding: .5rem 1.25rem 1.4rem; border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%); transition: transform .45s var(--ease);
  }
  .menu.open { transform: translateY(0); }
  .menu a { padding: 1rem .3rem; border-bottom: 1px solid var(--line-dark); }
  .menu a::after { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 520px) {
  .btn { width: 100%; }
  .footer__contact { flex-direction: column; gap: .6rem; }
}

/* ---------- mobile hero: fit above the fold (image shorter, same card design) ---------- */
@media (max-width: 899px) {
  .hero { padding-block: clamp(1rem, 3.5vw, 1.8rem); }
  .hero__grid { gap: .9rem; }
  .hero__title { font-size: clamp(1.85rem, 6.2vw, 2.6rem); line-height: 1.08; }
  /* smaller card — full image (no crop), identical frame/rounding, just scaled down */
  .hero__media { width: min(60%, 240px); }
  .hero__subtitle { font-size: 1.22rem; line-height: 1.38; }
  .hero__lead { margin-top: .7rem; font-size: .98rem; line-height: 1.55; }
  .hero__cta { margin-top: 1rem; }
}

/* ---------- "קצת עליי": הטקסט + 4 הנקודות במסך אחד, בלי גלילה ---------- */
@media (max-width: 899px) {
  #about.section { padding-block: 1.6rem; }
  .about__grid { gap: 1rem; }
  /* תמונה קומפקטית — מפנה מקום לטקסט ולנקודות */
  .about__media--passport { max-width: 150px; justify-self: start; }
  .about__text h2 { margin-bottom: .7rem !important; font-size: clamp(1.7rem, 6vw, 2.1rem); }
  .about__text p { font-size: .96rem; line-height: 1.5; }
  .about__text p + p { margin-top: .55rem; }
  /* 4 הנקודות בשתי עמודות — חוסך חצי מהגובה */
  .about__checks { margin-top: 1rem; grid-template-columns: 1fr 1fr; gap: .6rem .7rem; }
  .about__checks li { font-size: .92rem; gap: .5rem; line-height: 1.3; }
  .about__checks .tick { width: 24px; height: 24px; }
  .about__checks .tick svg { width: 13px; height: 13px; }
}

/* ---------- כפתור "קבעו שיעור היכרות" נשאר גלוי ולא מוסתר ע"י כפתור הוואטסאפ ---------- */
@media (max-width: 899px) {
  /* הכפתור הצף מתכווץ לעיגול אייקון בלבד, בפינה הנגדית לכפתור ה-CTA */
  .wa-float { padding: 14px; gap: 0; inset-block-end: 16px; left: 16px; }
  .wa-float__label { display: none; }
  /* ה-CTA ברוחב תוכן ומיושר לימין, כך שהכפתור הצף (משמאל למטה) לא יכסה אותו */
  .hero__cta .btn { width: auto; }
  .hero__cta { display: flex; justify-content: flex-start; }
  /* מרווח בתחתית ההירו כדי שהכפתור לא ייחתך בקצה המסך הראשון */
  .hero { padding-block-end: 5.5rem; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .rline > span { opacity: 1 !important; transform: none !important; }
  main { animation: none; }
}
