/* ═══════════════════════════════════════════════════════════
   אפיקי אשראי – Boutique Design System
   (bone / royal / blossom language)
   ═══════════════════════════════════════════════════════════ */

:root {
  --royal-deep: #081C38;
  --royal: #0F2C54;
  --purple: #1B5FBF;
  --purple-soft: #4A8EE8;
  --blossom: #AFD6FF;
  --blossom-soft: #EDF4FC;
  --bone: #FAFAFA;
  --hot: #1B8FE8;
  --ink: #081C38;
  --ink-55: rgba(8, 28, 56, .55);
  --ink-75: rgba(8, 28, 56, .78);
  --bone-60: rgba(250, 250, 250, .6);
  --bone-80: rgba(250, 250, 250, .8);
  --wa: #25D366;
  --wa-dark: #1DA851;
  --danger: #E0455A;
  --success: #1FA36B;

  /* aliases for legacy inner pages */
  --navy-900: var(--royal-deep);
  --navy-800: var(--royal);
  --gray-500: var(--ink-55);
  --blue-600: var(--purple);

  --font-body: 'Assistant', 'Heebo', 'Rubik', system-ui, sans-serif;
  --font-display: 'Heebo', 'Rubik', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --r: 12px;
  --r-lg: 24px;
  --header-h: 64px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bone);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
::selection { background: var(--purple); color: var(--bone); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ─── Accessibility ─── */
.skip-link {
  position: fixed; top: -60px; right: 16px; z-index: 3000;
  background: var(--royal-deep); color: var(--bone);
  padding: 12px 22px; border-radius: 0 0 var(--r) var(--r);
  transition: top .2s;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--hot); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .preloader { display: none !important; }
}

/* ─── Preloader ─── */
.preloader {
  position: fixed; inset: 0; z-index: 5000;
  display: grid; place-items: center;
  background: var(--purple);
  transition: opacity .6s ease, visibility .6s;
}
.preloader img { width: min(260px, 55vw); opacity: 0; animation: preIn .8s ease forwards .15s; }
@keyframes preIn { to { opacity: 1; } }
.preloader.done { opacity: 0; visibility: hidden; }

/* מצב צילום לבדיקות בלבד */
body.flat-test .hero { min-height: auto; padding-block: 140px 90px; }
body.flat-test .reveal { opacity: 1; transform: none; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .48s; }

/* ─── Micro label (mono eyebrow) ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  color: var(--ink-55);
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: currentColor; opacity: .6; }
.on-dark .eyebrow, .eyebrow.light { color: var(--bone-60); }
.on-blossom .eyebrow { color: rgba(8, 28, 56, .6); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; line-height: 1;
  padding: 15px 30px;
  border-radius: 9999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--royal-deep); color: var(--bone); }
.btn-primary:hover { background: var(--purple); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(8, 28, 56, .3); }
.btn-hot { background: var(--hot); color: #fff; }
.btn-hot:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(27, 143, 232, .4); }
.btn-blossom { background: var(--blossom); color: var(--royal-deep); }
.btn-blossom:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(8, 28, 56, .25); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, .35); }
.btn-outline {
  border: 1.5px solid rgba(8, 28, 56, .35); color: var(--royal-deep);
}
.btn-outline:hover { border-color: var(--royal-deep); background: rgba(8, 28, 56, .05); transform: translateY(-3px); }
.btn-outline-light { border: 1.5px solid rgba(250, 250, 250, .4); color: var(--bone); }
.btn-outline-light:hover { border-color: var(--bone); background: rgba(250, 250, 250, .1); transform: translateY(-3px); }
.btn-ghost { color: var(--bone); border: 1.5px solid rgba(250, 250, 250, .25); border-radius: 9999px; }
.btn-ghost:hover { background: rgba(250, 250, 250, .12); }

/* ═══════════════ HEADER ═══════════════ */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 1000;
  height: var(--header-h);
  background: var(--royal-deep);
  border-bottom: 1px solid rgba(250, 250, 250, .08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(8, 28, 56, .35); }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  gap: 18px;
}
.nav-side { display: flex; align-items: center; gap: 2px; }
.nav-side.start { justify-content: flex-start; }
.nav-side.end { justify-content: flex-end; }
.nav-side a:not(.btn) {
  padding: 8px 13px;
  color: var(--bone-80);
  font-weight: 600; font-size: .95rem;
  border-radius: 9999px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-side a:not(.btn):hover, .nav-side a.active:not(.btn) { color: var(--bone); background: rgba(250, 250, 250, .1); }
.nav-side .btn-whatsapp { margin-inline-start: 10px; }
.header-logo { display: grid; place-items: center; padding: 6px 10px; }
.header-logo img { width: 150px; height: auto; }

/* legacy header layout (legal pages: logo + actions only) */
.header-inner > .header-logo:first-child { grid-column: 1; justify-self: start; }
.header-inner > .header-actions { grid-column: 3; justify-self: end; }

.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: rgba(250, 250, 250, .1);
  padding: 12px 10px;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--bone); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav sheet */
.mobile-nav {
  position: fixed; top: var(--header-h); inset-inline: 0; bottom: 0;
  z-index: 999;
  background: var(--royal-deep);
  padding: 30px 8% 40px;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, transform .3s, visibility .3s;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a {
  display: block;
  color: var(--bone);
  font-size: 1.5rem; font-weight: 800;
  font-family: var(--font-display);
  padding: 16px 4px;
  border-bottom: 1px solid rgba(250, 250, 250, .1);
}
.mobile-nav a.active { color: var(--blossom); }
.mobile-nav .btn { margin-top: 26px; font-size: 1.05rem; }
body.nav-lock { overflow: hidden; }

/* ═══════════════ HERO (home) ═══════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--bone);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 40px) 0 40px;
  overflow: hidden;
}
.hero-deco {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-deco .blob {
  position: absolute;
  width: 560px; height: 560px;
  background: var(--blossom);
  opacity: .5;
  filter: blur(90px);
  border-radius: 50%;
  top: -180px; inset-inline-start: -160px;
  animation: blobFloat 16s ease-in-out infinite alternate;
}
.hero-deco .blob-b {
  width: 420px; height: 420px;
  background: rgba(27, 95, 191, .28);
  top: auto; bottom: -140px; inset-inline-start: auto; inset-inline-end: -120px;
  animation-delay: -7s;
}
@keyframes blobFloat { to { transform: translateY(-40px) scale(1.07); } }

.hero-inner { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 48px;
  align-items: center;
}
.hero-media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  background:
    radial-gradient(420px 320px at 70% 18%, rgba(255, 255, 255, .55), transparent 60%),
    linear-gradient(165deg, var(--blossom) 0%, #8FC2FF 55%, var(--purple-soft) 100%);
  box-shadow: 0 30px 70px rgba(8, 28, 56, .28);
}
.hero-media img {
  position: absolute; inset-inline: 0; bottom: 0;
  width: 100%; height: 92%;
  object-fit: contain;
  object-position: bottom center;
}
.hero-media.photo img {
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-media .badge {
  position: absolute; top: 16px; inset-inline-start: 16px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .2em;
  background: rgba(250, 250, 250, .9);
  color: var(--royal-deep);
  border-radius: 9999px;
  padding: 8px 15px;
}
.hero-media .badge-b {
  top: auto; inset-inline-start: auto;
  bottom: 16px; inset-inline-end: 16px;
  background: var(--royal-deep); color: var(--blossom);
}
.hero .eyebrow { margin-bottom: 26px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: .95;
  letter-spacing: -.02em;
  color: var(--purple);
  margin-bottom: 10px;
}
.hero-title em { font-style: normal; color: var(--hot); }
.hero-sub {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  color: var(--royal-deep);
  margin-bottom: 22px;
  max-width: 720px;
}
.hero-lede {
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  color: var(--ink-75);
  max-width: 560px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 52px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: flex; flex-direction: column; gap: 2px;
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .1);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 14px 22px;
  box-shadow: 0 8px 24px rgba(8, 28, 56, .06);
}
.chip strong {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.35rem; line-height: 1.1;
  color: var(--royal-deep);
}
.chip span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--ink-55); }
.chip.hl { background: var(--royal-deep); border-color: var(--royal-deep); }
.chip.hl strong { color: var(--blossom); }
.chip.hl span { color: var(--bone-60); }

.scroll-cue {
  position: absolute; bottom: 22px; inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .25em;
  color: var(--ink-55);
}
.scroll-cue::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(var(--ink-55), transparent);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 50% { transform: translateY(6px); opacity: .4; } }

/* ═══════════════ TICKER ═══════════════ */
.ticker {
  background: var(--royal-deep);
  border-block: 1px solid rgba(250, 250, 250, .08);
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: flex; gap: 0;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 13px; letter-spacing: .35em;
  color: var(--blossom);
  white-space: nowrap;
  padding-inline-end: 18px;
}
.ticker-track span::after { content: '·'; padding-inline-start: 18px; color: var(--bone-60); }
@keyframes tickerMove { to { transform: translateX(50%); } }

/* ═══════════════ SECTIONS ═══════════════ */
.section { padding: 100px 0; position: relative; }
.section-bone { background: var(--bone); }
.section-royal { background: var(--royal-deep); color: var(--bone); }
.section-blossom { background: var(--blossom); color: var(--royal-deep); }
.section-blush { background: var(--blossom-soft); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.section-royal .section-title { color: var(--bone); }
.section-royal .section-title em, .section-title em { font-style: normal; color: var(--purple); }
.section-royal .section-title em { color: var(--blossom); }
.section-blossom .section-title em { color: var(--purple); }
.section-head p { color: var(--ink-75); font-size: 1.08rem; }
.section-royal .section-head p { color: var(--bone-80); }
.section-blossom .section-head p { color: var(--ink-75); }

/* ═══════════════ TRIAD CARDS ═══════════════ */
.triad-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.triad-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .09);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 36px 30px 30px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.triad-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(8, 28, 56, .14); }
.triad-num {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .2em;
  color: var(--hot);
  display: block; margin-bottom: 20px;
}
.triad-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.6rem; line-height: 1.1;
  margin-bottom: 12px;
  color: var(--royal-deep);
}
.triad-card > p { color: var(--ink-75); font-size: .98rem; margin-bottom: 18px; }
.triad-list { display: grid; gap: 9px; margin-bottom: 24px; }
.triad-list li { display: flex; gap: 10px; align-items: baseline; font-size: .93rem; color: var(--ink-75); }
.triad-list li::before { content: '←'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.triad-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--purple);
  transition: gap var(--transition), color var(--transition);
}
.triad-link:hover { gap: 13px; color: var(--hot); }
.triad-card::after {
  content: '';
  position: absolute; top: 0; inset-inline-end: 0;
  width: 90px; height: 90px;
  background: var(--blossom);
  opacity: .35;
  border-radius: 0 0 0 100%;
  transition: transform var(--transition), opacity var(--transition);
}
.triad-card:hover::after { transform: scale(1.35); opacity: .55; }

/* ═══════════════ SERVICE ROWS (services page) ═══════════════ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.svc-card {
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .09);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(8, 28, 56, .12); }
.svc-card .triad-num { margin-bottom: 14px; }
.svc-card h3 { font-family: var(--font-display); font-weight: 900; font-size: 1.35rem; margin-bottom: 10px; }
.svc-card p { color: var(--ink-75); font-size: .96rem; margin-bottom: 12px; }
.svc-meta {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px;
}
.svc-meta span {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em;
  background: var(--blossom-soft);
  color: var(--royal);
  border-radius: 9999px;
  padding: 6px 13px;
}

/* ═══════════════ STEPS (royal) ═══════════════ */
.steps-flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: st; }
.step-b {
  background: var(--royal);
  border: 1px solid rgba(250, 250, 250, .1);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 28px 22px;
  transition: transform var(--transition), background var(--transition);
}
.step-b:hover { transform: translateY(-6px); background: #16376A; }
.step-b .n {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--blossom);
  display: block; margin-bottom: 16px;
}
.step-b h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; color: var(--bone); }
.step-b p { font-size: .89rem; color: var(--bone-80); }

/* ═══════════════ TEAM ═══════════════ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 860px; margin-inline: auto; }
.team-card {
  background: #fff;
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(8, 28, 56, .09);
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(8, 28, 56, .14); }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; background: var(--blossom-soft); }
.team-card figcaption { padding: 20px 22px 24px; }
.team-card strong { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; display: block; }
.team-card .role { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; color: var(--ink-55); display: block; margin: 6px 0 10px; }
.team-card p { color: var(--ink-75); font-size: .93rem; }
.section-royal .team-card { background: var(--royal); border-color: rgba(250,250,250,.12); }
.section-royal .team-card strong { color: var(--bone); }
.section-royal .team-card .role { color: var(--blossom); }
.section-royal .team-card p { color: var(--bone-80); }

/* ═══════════════ FORMS ═══════════════ */
.lead-card {
  background: #fff;
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  box-shadow: 0 30px 70px rgba(8, 28, 56, .18);
  padding: 36px 32px 28px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.lead-card::before {
  content: '';
  position: absolute; inset-inline: 0; top: 0; height: 5px;
  background: linear-gradient(90deg, var(--purple), var(--hot), var(--blossom));
}
.lead-card-head { text-align: center; margin-bottom: 22px; }
.lead-card-head h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 900; line-height: 1.3; margin-bottom: 6px; }
.lead-card-head p { color: var(--ink-55); font-size: .95rem; }

.lead-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: .88rem; }
.field label span[aria-hidden] { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid rgba(8, 28, 56, .14);
  background: var(--bone);
  border-radius: var(--r);
  padding: 12px 15px;
  font-size: .96rem;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.field textarea { resize: vertical; min-height: 58px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(8, 28, 56, .35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(27, 95, 191, .15);
}
.field.invalid input, .field.invalid select { border-color: var(--danger); background: #FFF6F7; }
.field-error { color: var(--danger); font-size: .8rem; display: none; }
.field.invalid .field-error { display: block; }
.captcha-field .captcha-q { color: var(--purple); font-weight: 800; }
.consent-field { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.consent-field input { width: 19px; height: 19px; margin-top: 3px; accent-color: var(--purple); }
.consent-field label { font-weight: 400; font-size: .84rem; color: var(--ink-55); line-height: 1.5; }
.consent-field label a { color: var(--purple); font-weight: 700; text-decoration: underline; }
.consent-field .field-error { grid-column: 1 / -1; }
.hp-field {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.form-note { text-align: center; font-size: .82rem; color: var(--ink-55); }
.form-status { text-align: center; font-weight: 700; font-size: .95rem; display: none; }
.form-status.ok { display: block; color: var(--success); }
.form-status.err { display: block; color: var(--danger); }

/* blossom form split */
.blossom-split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.blossom-split .big-note {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--royal-deep);
  margin: 14px 0 18px;
}
.blossom-split .big-note em { font-style: normal; color: var(--purple); }
.blossom-split p { color: var(--ink-75); margin-bottom: 22px; max-width: 460px; }
.contact-quick { display: grid; gap: 10px; max-width: 380px; }
.contact-quick a {
  display: flex; align-items: center; gap: 13px;
  background: rgba(250, 250, 250, .55);
  border: 1px solid rgba(8, 28, 56, .12);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 13px 18px;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.contact-quick a:hover { background: #fff; transform: translateX(-5px); }
.contact-quick .ic {
  width: 38px; height: 38px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--royal-deep); color: var(--blossom);
}
.contact-quick .ic.wa { background: var(--wa); color: #fff; }

/* ═══════════════ VIDEOS ═══════════════ */
.video-facade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--royal-deep);
  box-shadow: 0 20px 50px rgba(8, 28, 56, .25);
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity var(--transition); }
.video-facade:hover img { transform: scale(1.05); opacity: .85; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.play-btn {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px;
  display: grid; place-items: center;
  background: var(--blossom); color: var(--royal-deep);
  border-radius: 50%;
  box-shadow: 0 10px 34px rgba(8, 28, 56, .4);
  transition: transform var(--transition), background var(--transition), color var(--transition);
  padding-inline-start: 4px;
}
.video-facade:hover .play-btn { transform: scale(1.12); background: var(--hot); color: #fff; }
.video-card .play-btn { width: 52px; height: 52px; }
.video-card h3 { font-size: .95rem; font-weight: 700; margin-top: 13px; line-height: 1.45; }
.section-royal .video-card h3 { color: var(--bone-80); }

.featured-video {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center;
}
.featured-panel .video-facade {
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
}
.sound-hint {
  position: absolute; bottom: 14px; inset-inline-start: 14px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  background: rgba(8, 28, 56, .75);
  color: var(--bone);
  border-radius: 9999px;
  padding: 9px 16px;
  pointer-events: none;
}

/* ─── Reels (9:16 vertical videos) ─── */
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--royal);
  border: 1px solid rgba(250, 250, 250, .12);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.reel-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0, 0, 0, .35); border-color: rgba(175, 214, 255, .5); }
.reel-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.reel-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  pointer-events: none; /* לחיצה נתפסת בכרטיס: קליק ראשון מדליק סאונד */
}
.reel-card.sound iframe { pointer-events: auto; }
.reel-mute {
  position: absolute; bottom: 10px; inset-inline-start: 10px;
  z-index: 3;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(8, 28, 56, .75);
  color: var(--bone);
  pointer-events: none;
}
.reels-carousel .carousel-slide { padding: 4px 7px; }
.featured-video-text h3, .featured-video-text h2 {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 900; margin-bottom: 13px; line-height: 1.15;
}
.featured-video-text p { color: var(--bone-80); margin-bottom: 24px; }

/* ═══════════════ CAROUSEL ═══════════════ */
.carousel { position: relative; padding-bottom: 44px; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; transition: transform .55s cubic-bezier(.4, 0, .2, 1); will-change: transform; }
.carousel-slide { flex: 0 0 33.3334%; padding: 4px 9px; min-width: 0; }
.carousel-btn {
  position: absolute; top: 42%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blossom); color: var(--royal-deep);
  box-shadow: 0 10px 26px rgba(8, 28, 56, .3);
  z-index: 5;
  transition: background var(--transition), color var(--transition), transform var(--transition), opacity var(--transition);
}
.carousel-btn:hover { background: var(--hot); color: #fff; transform: translateY(-50%) scale(1.07); }
.carousel-btn[disabled] { opacity: .35; pointer-events: none; }
.carousel-prev { inset-inline-start: -10px; }
.carousel-next { inset-inline-end: -10px; }
.carousel-dots { position: absolute; bottom: 4px; inset-inline: 0; display: flex; justify-content: center; gap: 8px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 9999px; background: rgba(8, 28, 56, .25); transition: width var(--transition), background var(--transition); }
.section-royal .carousel-dots button { background: rgba(250, 250, 250, .3); }
.carousel-dots button.active { width: 26px; background: var(--purple); }
.section-royal .carousel-dots button.active { background: var(--blossom); }

/* ═══════════════ FAQ ═══════════════ */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .1);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item[open] { box-shadow: 0 18px 44px rgba(8, 28, 56, .12); border-color: rgba(27, 95, 191, .35); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.05rem;
  cursor: pointer; list-style: none;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--purple); }
.faq-chevron {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blossom); color: var(--royal-deep);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), background var(--transition), color var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); background: var(--purple); color: #fff; }
.faq-answer { padding: 0 24px 22px; color: var(--ink-75); }
.faq-answer p { animation: faqIn .4s cubic-bezier(.16, 1, .3, 1); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ═══════════════ PAGE HERO (inner pages) ═══════════════ */
.page-hero {
  background: var(--royal-deep);
  color: var(--bone);
  padding: calc(var(--header-h) + 70px) 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .eyebrow { color: var(--bone-60); margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.015em;
  color: var(--blossom);
  margin-bottom: 14px;
}
.page-hero .lede { font-size: 1.1rem; color: var(--bone-80); max-width: 640px; }
.page-hero::after {
  content: '';
  position: absolute; bottom: -120px; inset-inline-end: -80px;
  width: 340px; height: 340px;
  background: var(--purple);
  opacity: .35;
  border-radius: 50%;
  filter: blur(70px);
}
.legal-hero { background: var(--royal-deep); }

/* ═══════════════ PROSE (about page) ═══════════════ */
.prose { max-width: 760px; }
.prose p { color: var(--ink-75); margin-bottom: 16px; font-size: 1.04rem; }
.prose h2 { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; margin: 34px 0 12px; }
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 46px 0; }
.stat-box {
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .09);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 24px 20px;
  text-align: center;
}
.stat-box strong {
  font-family: var(--font-display);
  font-weight: 900; font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--purple);
  display: block; line-height: 1.1;
}
.stat-box span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; color: var(--ink-55); }

.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card {
  background: var(--royal);
  border: 1px solid rgba(250, 250, 250, .1);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 26px 22px;
}
.value-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--blossom); margin-bottom: 8px; }
.value-card p { font-size: .9rem; color: var(--bone-80); }

/* ═══════════════ ARTICLES ═══════════════ */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(8, 28, 56, .09);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 30px 26px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.article-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(8, 28, 56, .13); }
.article-card .cat {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  color: var(--hot);
  display: block; margin-bottom: 16px;
}
.article-card h2, .article-card h3 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem; line-height: 1.2;
  margin-bottom: 10px;
  color: var(--royal-deep);
}
.article-card p { color: var(--ink-75); font-size: .95rem; flex-grow: 1; margin-bottom: 18px; }
.article-card .triad-link { margin-top: auto; }

.article-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--ink-55);
  margin-bottom: 26px;
}
.article-body { max-width: 760px; }
.article-body h2 {
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.55rem; line-height: 1.2;
  margin: 40px 0 14px;
  color: var(--royal-deep);
}
.article-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; margin: 26px 0 10px; }
.article-body p { color: var(--ink-75); margin-bottom: 15px; font-size: 1.03rem; }
.article-body ul, .article-body ol { margin: 0 0 15px; padding-inline-start: 4px; display: grid; gap: 9px; }
.article-body ul li { display: flex; gap: 10px; align-items: baseline; color: var(--ink-75); }
.article-body ul li::before { content: '←'; color: var(--purple); font-weight: 700; flex-shrink: 0; }
.article-body ol { counter-reset: st; }
.article-body ol li { display: flex; gap: 12px; align-items: baseline; color: var(--ink-75); counter-increment: st; }
.article-body ol li::before {
  content: '0' counter(st);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--hot); flex-shrink: 0;
}
.callout {
  background: var(--blossom-soft);
  border-inline-start: 4px solid var(--purple);
  border-radius: 0 var(--r) 0 var(--r);
  padding: 18px 22px;
  margin: 24px 0;
  color: var(--ink-75);
}
.callout strong { color: var(--royal-deep); }
.article-cta {
  background: var(--royal-deep);
  color: var(--bone);
  border-radius: 0 var(--r-lg) 0 var(--r-lg);
  padding: 30px 28px;
  margin-top: 44px;
}
.article-cta h2 { font-family: var(--font-display); font-weight: 900; font-size: 1.4rem; margin-bottom: 8px; color: var(--blossom); }
.article-cta p { color: var(--bone-80); margin-bottom: 18px; }

@media (max-width: 1080px) { .article-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; } }

/* ═══════════════ SOCIAL ═══════════════ */
.social-icons { display: flex; gap: 10px; }
.social-icons a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(250, 250, 250, .1);
  border: 1px solid rgba(250, 250, 250, .16);
  color: var(--bone);
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.social-icons a:hover { background: var(--blossom); color: var(--royal-deep); transform: translateY(-4px); }
.social-strip { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; }
.social-strip .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; color: var(--bone-60); }

/* ═══════════════ CTA BAND ═══════════════ */
.cta-final { text-align: center; }
.cta-final .big {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: .98;
  color: var(--bone);
  margin: 16px 0 12px;
}
.cta-final .big em { font-style: normal; color: var(--blossom); }
.cta-final p { color: var(--bone-80); max-width: 560px; margin: 0 auto 30px; }
.cta-final .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ═══════════════ FOOTER ═══════════════ */
.site-footer { background: var(--royal-deep); color: var(--bone-80); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer-brand img { width: 180px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 20px; max-width: 340px; }
.site-footer h3, .site-footer .footer-h {
  color: var(--blossom);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .22em;
  font-weight: 600;
  margin-bottom: 18px;
}
.site-footer ul { display: grid; gap: 11px; }
.site-footer a { font-size: .93rem; transition: color var(--transition); }
.site-footer a:hover { color: var(--blossom); }
.footer-contact .btn { margin-top: 20px; }
.footer-bottom { border-top: 1px solid rgba(250, 250, 250, .1); padding: 22px 0; }
.footer-bottom p { font-size: .8rem; color: var(--bone-60); line-height: 1.7; }

/* ═══════════════ FLOATING ═══════════════ */
.float-wa {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 900;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waBounce 3.4s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes waBounce { 0%, 100% { transform: translateY(0); } 8% { transform: translateY(-9px); } 16% { transform: translateY(0); } }

.back-top {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 900;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--royal-deep); color: var(--blossom);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(8, 28, 56, .35);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
}
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top:hover { background: var(--purple); color: #fff; }

/* ═══════════════ LEGAL PAGES ═══════════════ */
.legal-body a { color: var(--purple); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1080px) {
  .nav-side a:not(.btn) { padding: 8px 9px; font-size: .88rem; }
  .triad-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .steps-flow { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-slide { flex-basis: 50%; }
  .svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-media { order: -1; max-width: 380px; aspect-ratio: 1 / 1.05; }
  .hero { padding-top: calc(var(--header-h) + 28px); }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .nav-side { display: none; }
  .header-logo { justify-self: center; }
  .hamburger { display: flex; }
  .header-wa-mini {
    display: grid; place-items: center;
    width: 44px; height: 44px;
    background: var(--wa); color: #fff; border-radius: 50%;
  }
  .blossom-split, .featured-video { grid-template-columns: 1fr; gap: 34px; }
  .team-grid { grid-template-columns: 1fr; max-width: 460px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) {
  .header-wa-mini { display: none; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .hero { min-height: 92dvh; }
  .steps-flow { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-slide { flex-basis: 100%; }
  .carousel-prev { inset-inline-start: 2px; }
  .carousel-next { inset-inline-end: 2px; }
  .lead-card { padding: 28px 22px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; inset-inline-start: 18px; }
  .back-top { bottom: 18px; inset-inline-end: 18px; }
  .hero-chips { gap: 9px; }
  .chip { padding: 11px 16px; }
  .chip strong { font-size: 1.1rem; }
  .scroll-cue { display: none; }
}
