/* ═══════════════════════════════════════════════════════════════════
   שמר הלוי — Landing Page CSS
   Brand tokens live in :root. Everything else derives from them.
   ═══════════════════════════════════════════════════════════════════ */

/* ══════════ FONTS: Discovery (same face as kahlonprojects.co.il) ══════════
   Only three real weights ship (300 / 600 / 900). The ranges below map the
   weights used across this page onto them, so the browser never has to
   synthesise a fake bold. */
@font-face {
  font-family: 'Discovery';
  src: url('assets/fonts/Discovery_Fs-Light.woff2') format('woff2'),
       url('assets/fonts/Discovery_Fs-Light.woff') format('woff');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Discovery';
  src: url('assets/fonts/Discovery_Fs-Demibold.woff2') format('woff2'),
       url('assets/fonts/Discovery_Fs-Demibold.woff') format('woff');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Discovery';
  src: url('assets/fonts/Discovery_Fs-Black.woff2') format('woff2'),
       url('assets/fonts/Discovery_Fs-Black.woff') format('woff');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ══ BRAND (taken from shemer-law.co.il) ══ */
  --brand: #C01029;
  --brand-dark: #8B0C1E;
  --accent: #E41331;

  /* ══ HERO / DARK SECTIONS ══ */
  --hero-bg-1: #210307;
  --hero-bg-2: #650816;
  --hero-bg-3: #B50F27;
  /* same three stops as rgb triplets, so the hero overlay can add alpha */
  --hero-rgb-1: 33, 3, 7;
  --hero-rgb-2: 101, 8, 22;
  --hero-rgb-3: 181, 15, 39;
  /* how opaque the brand gradient sits over the hero photo (lower = more photo) */
  --hero-veil: 0.82;
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255,255,255,0.78);

  /* ══ LIGHT / CONTENT ══ */
  --bg: #ffffff;
  --bg-alt: #FAF6F5;
  --text: #1A1416;
  --text-muted: #55494B;
  --text-light: #8A7E80;
  --border: #E9E1E1;

  /* ══ TYPOGRAPHY ══ */
  --font-body: 'Discovery', 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-head: 'Discovery', 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ══ SPACING ══ */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 40px;
  --sp-xxl: 64px;
  --sp-xxxl: 96px;

  /* ══ RADIUS & SHADOW ══ */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(26,20,22,0.06);
  --shadow: 0 8px 30px rgba(26,20,22,0.08);
  --shadow-lg: 0 20px 60px rgba(26,20,22,0.14);

  --header-h: 72px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════ RESET ══════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--brand); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ══════════ LAYOUT ══════════ */
.lp-container { max-width: 1180px; margin: 0 auto; padding: 0 var(--sp-lg); }
.lp-container-narrow { max-width: 760px; }

.lp-section { padding: var(--sp-xxxl) 0; }
.lp-section-light { background: var(--bg-alt); }
.lp-section-dark {
  background: linear-gradient(150deg, var(--hero-bg-1), var(--hero-bg-2) 55%, var(--hero-bg-3));
  color: var(--hero-text);
  position: relative;
  overflow: hidden;
}
/* Atmosphere photo behind a red section: sits under a translucent copy of the
   same brand gradient, and fades out at the edges so no hard seam shows. */
.lp-section-photo {
  position: absolute;
  inset: 0;
  background-image: var(--bg-d);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.30;
  pointer-events: none;
  z-index: 0;
}
.lp-section-dark > .lp-container,
.lp-section-form > .lp-container { position: relative; z-index: 1; }
.lp-section-dark h2, .lp-section-dark h3 { color: var(--hero-text); }
.lp-section-dark p { color: var(--hero-text-muted); }

.lp-section-title {
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  text-align: center;
  margin-bottom: var(--sp-xl);
  letter-spacing: -0.01em;
}
.lp-center { text-align: center; margin-top: var(--sp-xl); }

/* Intro paragraph under a section title: centred and width-limited so the
   line length stays readable instead of spanning the whole container. */
.lp-section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.8;
  max-width: 720px;
  margin: calc(-1 * var(--sp-lg)) auto var(--sp-xxl);
}
.lp-section-sub strong { color: var(--text); font-weight: 700; }
.lp-section-dark .lp-section-sub { color: var(--hero-text-muted); }
.lp-section-dark .lp-section-sub strong { color: #fff; }
.lp-section-form .lp-section-sub { color: var(--hero-text-muted); }


/* ══════════ BUTTONS ══════════ */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
}
.lp-btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  box-shadow: 0 8px 22px rgba(192,16,41,0.28);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(192,16,41,0.36);
  color: #fff;
}
.lp-btn-onbrand { background: #fff; color: var(--brand); }
.lp-btn-onbrand:hover { background: #fff; color: var(--brand-dark); transform: translateY(-2px); }
.lp-btn-sm { padding: 9px 20px; font-size: 0.92rem; }
.lp-btn-large { padding: 17px 36px; font-size: 1.05rem; }
.lp-btn-full { width: 100%; }
/* SVG chevron: always points left (forward in RTL), unlike ‹ which bidi-mirrors */
.lp-arrow { flex-shrink: 0; transition: transform 0.25s ease; }
.lp-btn:hover .lp-arrow { transform: translateX(-3px); }
.lp-btn-submit {
  background: var(--hero-bg-1);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-size: 1rem;
}
.lp-btn-submit:hover { background: var(--brand); color: #fff; }

/* ══════════ STICKY HEADER ══════════ */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(33,3,7,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.lp-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;   /* logo centred, no CTA in the bar */
  gap: var(--sp-md);
}
.lp-header-cta { display: none; }
.lp-header-logo img { height: 42px; width: auto; }

/* ══════════ 1. HERO ══════════ */
.lp-hero {
  color: var(--hero-text);
  padding: var(--sp-xxl) 0 var(--sp-xxxl);
  position: relative;
  overflow: hidden;
  background-color: var(--hero-bg-1);
}
/* Layer 1 — the photograph (desktop crop by default, portrait crop on phones) */
.lp-hero-photo {
  position: absolute;
  inset: 0;
  background-image: var(--bg-d);
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
/* Layer 2 — the brand gradient, translucent so the photo reads through it */
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.10) 0%, transparent 48%),
    linear-gradient(150deg,
      rgba(var(--hero-rgb-1), calc(var(--hero-veil) + 0.08)) 0%,
      rgba(var(--hero-rgb-2), var(--hero-veil)) 52%,
      rgba(var(--hero-rgb-3), calc(var(--hero-veil) - 0.06)) 100%);
  pointer-events: none;
  z-index: 1;
}
.lp-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.lp-hero-headline {
  font-size: clamp(1.9rem, 4.4vw, 3.15rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: var(--sp-lg);
  color: #fff;
  letter-spacing: -0.015em;
}
/* Forced two-line headline: each span owns its own line at every width */
.lp-hl-line { display: block; }
.lp-hl { color: #FFC7CE; }

/* Section title split onto two balanced lines on narrow screens */
.lp-title-break span { display: inline; }
.lp-hero-subheadline {
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  color: #fff;
  opacity: 0.95;
  margin: 0 auto var(--sp-md);
  max-width: 720px;
}
.lp-hero-checks {
  list-style: none;
  /* a fixed grid instead of wrapped flex, so the six ticks line up in columns
     rather than each item sizing itself to its own text length */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px var(--sp-lg);
  text-align: start;
  max-width: 900px;
  margin: 0 auto var(--sp-xl);
}
.lp-hero-checks li {
  position: relative;
  padding-inline-start: 30px;
  color: #fff;
  font-weight: 500;
  line-height: 1.45;
}
.lp-hero-checks li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-hero-actions {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}

/* ══════════ 2. STATS ══════════ */
.lp-section-stats { padding: var(--sp-xxl) 0; }
.lp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-lg);
  margin-bottom: var(--sp-xxl);
}
.lp-stat {
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.lp-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.1;
}
.lp-stat-label { display: block; color: var(--text-muted); font-size: 0.98rem; margin-top: 6px; }

/* ── Clients strip ── */
.lp-clients-title {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: var(--sp-lg);
}
/* A real scroll container so it can be swiped/dragged, with a JS auto-advance
   on top. direction:ltr keeps scrollLeft semantics consistent across browsers
   (the strip holds logos, so reading direction does not apply to it). */
.lp-marquee {
  direction: ltr;
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--sp-md) 0;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee::-webkit-scrollbar { display: none; }
.lp-marquee.is-dragging { cursor: grabbing; }
.lp-marquee-track {
  display: flex;
  gap: var(--sp-xl);
  width: max-content;
}
.lp-logo-slot {
  flex: 0 0 auto;
  min-width: 155px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.88rem;
  background: #fff;
  user-select: none;
}

/* ══════════ 3. TESTIMONIAL SLIDER ══════════ */
.lp-slider { max-width: 820px; margin: 0 auto; }
.lp-slider-viewport { overflow: hidden; }
.lp-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.lp-slide {
  flex: 0 0 100%;
  padding: var(--sp-xl);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.lp-slide-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  color: #C4B7B9;               /* placeholder silhouette tint */
}
.lp-slide-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-stars { color: #E8A33D; letter-spacing: 3px; margin-bottom: var(--sp-md); text-align: center; }
.lp-slide-text, .lp-slide-author { text-align: center; }
.lp-slide-text { font-size: 1.08rem; line-height: 1.8; margin-bottom: var(--sp-lg); color: var(--text); }
.lp-slide-author strong { display: block; color: var(--text); }
.lp-slide-author span { color: var(--text-light); font-size: 0.9rem; }

.lp-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  margin-top: var(--sp-lg);
}
.lp-slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lp-slider-btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.lp-slider-btn svg { display: block; }
.lp-slider-dots { display: flex; gap: 8px; }
.lp-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  padding: 0;
}
.lp-slider-dot.is-active { background: var(--brand); width: 26px; border-radius: 20px; }

/* ══════════ 4. PAIN ══════════ */
.lp-pain-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.lp-pain-text p {
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.lp-pain-text p + p { margin-top: var(--sp-md); }
.lp-solution-banner {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  padding: var(--sp-xl) var(--sp-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  /* one short line lives here, so keep the box tight instead of full-bleed */
  max-width: 620px;
  margin: var(--sp-xl) auto 0;
}
.lp-solution-banner strong { display: block; font-size: 1.15rem; line-height: 1.5; margin-bottom: var(--sp-lg); }
.lp-solution-banner span { display: block; opacity: 0.9; margin-bottom: var(--sp-lg); }

/* ══════════ 5. INDUSTRY CARDS ══════════ */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-lg);
}
.lp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.lp-card-media {
  aspect-ratio: 16 / 10;
  background-color: var(--hero-bg-2);
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}
.lp-card:hover .lp-card-media { transform: scale(1.04); }
.lp-card-body { padding: var(--sp-lg); }
.lp-card h3 { font-size: 1.16rem; margin-bottom: var(--sp-sm); color: var(--brand); }
.lp-card p { color: var(--text-muted); font-size: 0.96rem; }
/* Catch-all tile: same footprint as an industry card, brand-filled instead of
   a photo, and vertically centred so it balances the cards beside it. */
.lp-card-cta {
  background: linear-gradient(150deg, var(--brand), var(--accent));
  border-color: transparent;
  color: #fff;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(192,16,41,0.22);
}
.lp-card-cta:hover { border-color: transparent; }
.lp-card-cta .lp-card-body { text-align: center; padding: var(--sp-xl) var(--sp-lg); }
.lp-card-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: var(--sp-sm); }
.lp-card-cta p { color: rgba(255,255,255,0.9); margin-bottom: var(--sp-lg); }
.lp-card-cta .lp-btn {
  width: 100%;
  font-size: 0.92rem;
  padding: 14px 16px;
}

/* ══════════ 7. PROCESS TIMELINE ══════════ */
.lp-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
}
.lp-tl-step { text-align: center; position: relative; padding: 0 6px; }
/* Each step draws the segment to the NEXT dot, so the rail starts at dot 1
   and stops exactly at the last dot instead of overshooting the row. */
.lp-tl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 21px;                              /* centre of the 44px dot */
  inset-inline-start: 50%;                /* begin at this dot's centre */
  width: calc(100% + var(--sp-md));       /* reach the next dot's centre */
  height: 2px;
  background: rgba(255,255,255,0.22);
  z-index: 0;
}
.lp-tl-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 auto var(--sp-lg);
  position: relative;
  z-index: 1;
}
/* reserve two lines for every title so the paragraphs start on one baseline */
.lp-tl-step h3 { font-size: 1rem; margin-bottom: 8px; min-height: 2.5em; }
.lp-tl-step p { font-size: 0.88rem; line-height: 1.65; }

/* ══════════ 10. FIVE REASONS ══════════ */
.lp-reasons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
}
.lp-reason {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  transition: var(--transition);
}
.lp-reason:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.lp-reason-num {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  opacity: 0.9;
}
.lp-reason h3 { font-size: 1.02rem; margin-bottom: var(--sp-sm); }
.lp-reason p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ══════════ 11. FIT / NOT FIT ══════════ */
.lp-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: stretch;
}
.lp-fit-card {
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.lp-fit-card h3 { font-size: 1.5rem; text-align: center; margin-bottom: var(--sp-sm); }
.lp-fit-lead { text-align: center; margin-bottom: var(--sp-lg); opacity: 0.8; }
.lp-fit-card ul { list-style: none; }
.lp-fit-card li {
  position: relative;
  padding: var(--sp-md) 0;
  padding-inline-start: 34px;
  font-size: 0.97rem;
  line-height: 1.6;
}
.lp-fit-card li + li { border-top: 1px solid currentColor; }
.lp-fit-card li::before {
  position: absolute;
  inset-inline-start: 0;
  top: calc(var(--sp-md) + 2px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
}
.lp-fit-no {
  background: #210307;
  color: rgba(255,255,255,0.86);
}
.lp-fit-no h3 { color: #fff; }
.lp-fit-no li + li { border-top-color: rgba(255,255,255,0.14); }
.lp-fit-no li::before { content: '✕'; background: rgba(255,255,255,0.14); color: #fff; }
.lp-fit-yes {
  background: linear-gradient(150deg, var(--brand), var(--accent));
  color: rgba(255,255,255,0.94);
  box-shadow: 0 16px 44px rgba(192,16,41,0.28);
}
.lp-fit-yes h3 { color: #fff; }
.lp-fit-yes li + li { border-top-color: rgba(255,255,255,0.22); }
.lp-fit-yes li::before { content: '✓'; background: rgba(255,255,255,0.26); color: #fff; }

/* ══════════ 7. DOCUMENTS ══════════ */

/* ══════════ 13. FAQ ══════════ */
.lp-faq { display: flex; flex-direction: column; gap: 10px; }
.lp-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.lp-faq-item:hover { border-color: #D9C9C9; }
.lp-faq-item[open] { background: #fff; border-color: var(--brand); box-shadow: var(--shadow-sm); }
.lp-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: var(--sp-lg);
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-q {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  transition: var(--transition);
}
.lp-faq-item[open] .lp-faq-q { color: var(--brand); }
/* round +/× toggle chip on the inline-end (left in RTL) */
.lp-faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-alt);
  position: relative;
  transition: var(--transition);
}
.lp-faq-icon::before,
.lp-faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand);
  border-radius: 2px;
  transition: var(--transition);
}
.lp-faq-icon::before { width: 13px; height: 2px; transform: translate(-50%, -50%); }
.lp-faq-icon::after  { width: 2px; height: 13px; transform: translate(-50%, -50%); }
.lp-faq-item[open] .lp-faq-icon { background: var(--brand); }
.lp-faq-item[open] .lp-faq-icon::before { background: #fff; }
.lp-faq-item[open] .lp-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); background: #fff; }
.lp-faq-a {
  padding: 0 var(--sp-lg) var(--sp-lg);
  margin-top: calc(-1 * var(--sp-sm));
}
.lp-faq-a p { color: var(--text-muted); line-height: 1.75; }

/* ══════════ 14. FINAL CTA + FORM ══════════ */
.lp-section-form {
  background: linear-gradient(150deg, var(--hero-bg-1), var(--hero-bg-2) 55%, var(--hero-bg-3));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lp-section-form .lp-section-title { color: #fff; }
/* keep the intro clearly narrower than the card so it reads as a centred block */
.lp-section-form .lp-section-sub { max-width: 600px; margin-bottom: var(--sp-xl); }

/* Minimal underline-style form on a white card */
.lp-form {
  background: #fff;
  padding: var(--sp-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.lp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg) var(--sp-xl);
  margin-bottom: 0;
}
.lp-field-row + .lp-field-row { margin-top: var(--sp-lg); }
.lp-field-row-full { grid-template-columns: 1fr; }
.lp-field { display: block; }
.lp-field > span {
  display: block;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.lp-field input,
.lp-field textarea,
.lp-field select {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid #C9C2C3;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}
.lp-field input::placeholder,
.lp-field textarea::placeholder { color: #A9A0A2; }
/* The whole form is RTL. Without this, a Latin/numeric value makes the browser
   flip the field to LTR on its own and the text drifts to the far edge. */
.lp-field input,
.lp-field textarea,
.lp-field select {
  direction: rtl;
  text-align: right;
}
.lp-field select {
  appearance: none;
  /* RTL: the caret sits on the left edge, so reserve the padding there too */
  background-image:
    linear-gradient(45deg, transparent 50%, var(--brand) 50%),
    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: 2px calc(50% + 1px), 7px calc(50% + 1px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-inline-end: 24px;
  cursor: pointer;
}
.lp-field input:focus,
.lp-field textarea:focus,
.lp-field select:focus {
  outline: none;
  border-bottom-color: var(--brand);
  border-bottom-width: 2px;
  padding-bottom: 9px;
}
.lp-field textarea { resize: vertical; min-height: 52px; }
.lp-form .lp-btn-submit { margin-top: var(--sp-xl); }
.lp-form-disclaimer {
  color: var(--text-light);
  font-size: 0.83rem;
  text-align: center;
  margin-top: var(--sp-md);
}
.lp-form-error-msg {
  color: #C01029;
  background: #FBE8EB;
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.9rem;
  margin-top: 10px;
  text-align: center;
}

/* ══════════ FOOTER ══════════ */
.lp-footer {
  background: var(--hero-bg-1);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-xxl) 0 var(--sp-xl);
}
.lp-footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--sp-lg);
}
.lp-footer-logo { height: 48px; width: auto; margin-bottom: var(--sp-md); }
.lp-footer-about { font-size: 0.92rem; line-height: 1.7; max-width: 420px; }
.lp-footer-col h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: var(--sp-md);
}
.lp-footer-details { list-style: none; }
.lp-footer-details li {
  font-size: 0.92rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.lp-footer-details li span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  font-weight: 600;
}
.lp-footer-details a { color: rgba(255,255,255,0.85); }
.lp-footer-details a:hover { color: #fff; }
.lp-footer-copy { font-size: 0.85rem; text-align: center; }
.lp-footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  max-width: 620px;
  margin: var(--sp-sm) auto 0;
  line-height: 1.6;
  text-align: center;
}

/* ══════════ MOBILE STICKY CTA ══════════ */

/* ══════════ REVEAL ══════════ */
.lp-card, .lp-tl-step, .lp-stat, .lp-faq-item, .lp-reason {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.lp-visible { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-card, .lp-tl-step, .lp-stat, .lp-faq-item, .lp-reason {
    opacity: 1;
    transform: none;
  }
  .lp-slider-track { transition: none; }
}

/* ══════════ LAPTOP ══════════ */
@media (max-width: 1180px) {
  .lp-reasons { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════ TABLET ══════════ */
@media (max-width: 980px) {
  .lp-hero-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 620px; }
  .lp-footer-top { grid-template-columns: 1fr 1fr; }
  .lp-footer-brand { grid-column: 1 / -1; }
  .lp-timeline { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl) var(--sp-md); }
  .lp-tl-step:not(:last-child)::before { display: none; }
  .lp-fit { grid-template-columns: 1fr; }
  /* the "it fits you" card leads on mobile */
  .lp-fit-yes { order: -1; }
}

/* ══════════ MOBILE ══════════ */
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .lp-section { padding: var(--sp-xxl) 0; }
  .lp-hero { padding: var(--sp-xl) 0 var(--sp-xxl); }
  .lp-header-logo img { height: 32px; }
  .lp-title-break span { display: block; }
  /* the final CTA heading must hold one line on a phone */
  .lp-section-form .lp-section-title {
    font-size: clamp(1.05rem, 5.1vw, 1.5rem);
    white-space: nowrap;
    letter-spacing: -0.02em;
  }
  .lp-btn-submit { padding: 12px 20px; font-size: 0.95rem; }
  .lp-hero-actions .lp-btn { width: 100%; }
  .lp-hero-checks { grid-template-columns: 1fr; max-width: 100%; }
  /* a wide photo in a tall box crops to a sliver — use the portrait variants */
  .lp-hero-photo,
  .lp-section-photo { background-image: var(--bg-m); }
  .lp-hero-photo { background-position: center top; }
  .lp-hero-checks li { margin-bottom: 10px; }
  .lp-timeline { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .lp-tl-step { text-align: start; display: grid; grid-template-columns: 44px 1fr; gap: var(--sp-md); }
  /* stacked on mobile: the horizontal connector would point nowhere */
  .lp-tl-step:not(:last-child)::before { display: none; }
  .lp-tl-dot { margin: 0; grid-row: span 2; }
  .lp-tl-step h3 { align-self: center; min-height: 0; }
  .lp-tl-step p { grid-column: 2; }
  .lp-reasons { grid-template-columns: 1fr; }
  .lp-field-row { grid-template-columns: 1fr; gap: var(--sp-lg); }
  .lp-form { padding: var(--sp-xl) var(--sp-lg); }
  .lp-fit-card { padding: var(--sp-lg) var(--sp-md); }
  
  .lp-footer-top { grid-template-columns: 1fr; gap: var(--sp-lg); text-align: center; }
  .lp-footer-logo { margin-inline: auto; }
  .lp-footer-about { margin-inline: auto; }
  .lp-solution-banner { padding: var(--sp-lg) var(--sp-md); }
  .lp-solution-banner .lp-btn,
  .lp-center .lp-btn { width: 100%; }
  
  
}
