/* ===================================================================
   Beita Marketing v2 — Additive tokens + components
   Loaded AFTER main.css. Scoped under `body.v2` to avoid leaking
   into auth/donate/portal pages.
   =================================================================== */

/* v2 tokens — overlay on top of main.css when body.v2 is set */
body.v2 {
  /* Brand */
  --primary:       #2D2D70;
  --primary-soft:  #4A47A3;
  --primary-tint:  #EDECF7;
  --accent:        #0057B8;
  --accent-soft:   #4D9DE6;
  --accent-tint:   #E8F1FB;

  /* Surfaces */
  --surface:       #FAF7F2;
  --surface-2:     #FFFFFF;
  --surface-warm:  #F4EFE6;

  /* Ink */
  --ink:           #1A1A2E;
  --ink-soft:      #4A4A6A;
  --ink-mute:      #8A8AA8;

  /* Hairlines */
  --hairline:        rgba(26,26,46,.08);
  --hairline-strong: rgba(26,26,46,.16);

  /* Typography */
  --font-display: 'Rubik', 'Heebo', system-ui, sans-serif;
  --font-serif:   'Frank Ruhl Libre', 'David Libre', Georgia, serif;
  --font-body:    'Heebo', 'Inter', sans-serif;

  /* Type scale (additive — does not override main.css values) */
  --fs-hero-h1:    76px;  --fw-hero-h1: 900;  --ls-hero-h1: -.045em;
  --fs-product-h1: 68px;
  --fs-section-h2: 56px;
  --fs-product-h2: 50px;
  --fs-eyebrow:    13px;
  --fs-body-lg:    19px;

  /* Spacing */
  --section-py-v2: 120px;
  --container-max-v2: 1240px;
  --container-px-v2:  32px;

  /* Shadows */
  --shadow-card-v2:  0 1px 0 rgba(255,255,255,.6) inset,
                     0 30px 60px -20px rgba(26,26,46,.22);
  --shadow-hover-v2: 0 20px 40px -12px rgba(26,26,46,.16);

  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
}

@media (max-width: 1024px) {
  body.v2 {
    --section-py-v2: 80px;
    --fs-hero-h1: 52px;
    --fs-product-h1: 46px;
    --fs-section-h2: 40px;
    --fs-product-h2: 36px;
    --container-px-v2: 24px;
  }
}

@media (max-width: 640px) {
  body.v2 {
    --section-py-v2: 56px;
    --fs-hero-h1: 38px;
    --fs-product-h1: 34px;
    --fs-section-h2: 30px;
    --fs-product-h2: 28px;
    --container-px-v2: 16px;
    --fs-body-lg: 17px;
  }
}

/* v2 layout utilities */
body.v2 .container { max-width: var(--container-max-v2); padding-inline: var(--container-px-v2); margin-inline: auto; }
body.v2 .container-tight { max-width: 1080px; padding-inline: var(--container-px-v2); margin-inline: auto; }
body.v2 .container-narrow { max-width: 880px; padding-inline: var(--container-px-v2); margin-inline: auto; }
body.v2 .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-eyebrow); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--accent);
}
body.v2 .serif { font-family: var(--font-serif); }
body.v2 section[data-v2-section] { padding-block: var(--section-py-v2); }

/* prefers-reduced-motion baseline */
@media (prefers-reduced-motion: reduce) {
  body.v2 *, body.v2 *::before, body.v2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ─── NAV v2 ──────────────────────────────────────────────────── */
body.v2 .nav {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
}
body.v2 .nav-inner { height: 72px; }
body.v2 .nav-logo {
  font-family: 'Heebo', sans-serif;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--ink);
  font-size: 22px;
}
body.v2 .nav-item {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 15px;
}
body.v2 .nav-item:hover { color: var(--ink); }
body.v2 .nav-login { color: var(--ink); background: transparent; }
body.v2 .nav-cta {
  background: var(--ink);
  color: var(--surface-2);
  border-radius: 10px;
  font-weight: 700;
  padding: 10px 18px;
}
body.v2 .nav-cta:hover { background: var(--primary); }

/* Mega menu v2 */
body.v2 .mega-panel {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  box-shadow: var(--shadow-card-v2);
}
body.v2 .mega-item-title { color: var(--ink); font-weight: 700; }
body.v2 .mega-item-desc { color: var(--ink-soft); }
body.v2 .mega-item-features { display: flex; flex-wrap: wrap; gap: 6px 12px; margin-top: 6px; font-size: 12px; color: var(--ink-mute); }
body.v2 .mega-item-features span { display: inline-flex; align-items: center; }
body.v2 .mega-item-features span::before { content: '·'; margin-inline-end: 6px; color: var(--hairline-strong); }
body.v2 .mega-item-features span:first-child::before { display: none; }
body.v2 .mega-promo {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--surface-2);
  border-radius: 18px;
}
body.v2 .mega-promo h3 { color: var(--surface-2); }
body.v2 .mega-promo-btn {
  background: var(--surface-2);
  color: var(--primary);
  font-weight: 700;
}

/* Footer v2 */
body.v2 .footer {
  background: var(--ink);
  color: var(--surface-2);
}
body.v2 .footer-col-title { color: var(--surface-2); font-weight: 700; letter-spacing: -.01em; }
body.v2 .footer-link { color: rgba(255,255,255,.65); }
body.v2 .footer-link:hover { color: var(--surface-2); }
body.v2 .footer-bottom { border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.55); }
body.v2 .footer-brand-desc { color: rgba(255,255,255,.70); }

/* Mobile nav v2 */
@media (max-width: 1024px) {
  body.v2 .nav-mobile-menu {
    background: var(--surface);
  }
  body.v2 .nav-mobile-link { color: var(--ink); }
  body.v2 .nav-mobile-cta { background: var(--ink); color: var(--surface-2); }
}

/* ─── HERO v2 ─────────────────────────────────────────────────── */
body.v2 .hero-v2 {
  position: relative;
  padding-block: 64px 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
/* Decorative drifting background tint behind the hero content */
body.v2 .hero-v2::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(circle at 80% 20%, var(--accent-tint) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, var(--primary-tint) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
  animation: drift 20s ease-in-out infinite;
}
body.v2 .hero-v2 > * { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  body.v2 .hero-v2::before { animation: none !important; }
}
body.v2 .hero-v2-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--container-max-v2);
  margin-inline: auto;
  padding-inline: var(--container-px-v2);
}
body.v2 .hero-v2-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px; color: var(--ink-soft); font-weight: 500;
  margin-bottom: 28px;
}
body.v2 .hero-v2-tag-pill {
  background: var(--accent-tint); color: var(--accent);
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 800;
}
body.v2 .hero-v2 h1 {
  font-family: var(--font-display);
  font-size: var(--fs-hero-h1);
  font-weight: var(--fw-hero-h1);
  letter-spacing: var(--ls-hero-h1);
  line-height: 0.98;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
body.v2 .hero-v2 h1 .accent { color: var(--accent); }
body.v2 .hero-v2 .hero-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 540px;
  margin-bottom: 32px;
}
body.v2 .hero-v2-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
body.v2 .btn-accent {
  background: var(--accent); color: var(--surface-2);
  font-weight: 700; font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
body.v2 .btn-accent:hover { transform: translateY(-1px); box-shadow: var(--shadow-hover-v2); }
/* Accent CTA pulse — only when not hovered, so hover-state stays crisp */
body.v2 .btn-accent:not(:hover) { animation: btn-pulse 3s ease-in-out infinite; }
body.v2 .btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--hairline-strong);
  padding: 16px 28px; border-radius: 12px; font-weight: 600;
  text-decoration: none;
}
body.v2 .hero-v2-trust { display: flex; gap: 20px; flex-wrap: wrap; color: var(--ink-mute); font-size: 14px; }

@media (max-width: 1024px) {
  body.v2 .hero-v2-inner { grid-template-columns: 1fr; gap: 32px; }
  body.v2 .hero-v2 { padding-block: 40px 24px; }
}

/* ─── LOGO STRIP v2 (Social proof) ────────────────────────────── */
body.v2 .logo-strip-v2 {
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
body.v2 .logo-strip-v2 .container { text-align: center; }
body.v2 .logo-strip-v2 .ls-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  letter-spacing: .04em;
  margin-bottom: 20px;
}
body.v2 .logo-strip-v2 .ls-eyebrow strong { color: var(--ink); font-weight: 800; }
body.v2 .logo-strip-v2 .ls-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
body.v2 .logo-strip-v2 .ls-pill {
  background: var(--primary-tint);
  color: var(--primary);
  border: 1px solid rgba(45,45,112,0.14); /* fallback for browsers without color-mix() */
  border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .2s ease, box-shadow .2s ease;
}
body.v2 .logo-strip-v2 .ls-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px -8px rgba(45,45,112,.32);
}
body.v2 .logo-strip-v2[data-v2-section] { padding-block: 48px; }

@media (max-width: 640px) {
  body.v2 .logo-strip-v2[data-v2-section] { padding-block: 36px; }
  body.v2 .logo-strip-v2 .ls-pill { font-size: 13px; padding: 8px 14px; }
}

/* ─── STORY TIMELINE v2 ("יום בחיי הגבאי") ───────────────────── */
body.v2 .story-v2 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-warm) 100%);
}
body.v2 .story-v2 .story-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
body.v2 .story-v2 .story-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .story-v2 .story-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .story-v2 .story-sub {
  color: var(--ink-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
body.v2 .story-v2 .story-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .story-v2 .story-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--hairline-strong) 0 8px,
    transparent 8px 16px
  );
  z-index: 0;
}
body.v2 .story-v2 .story-step {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 22px 20px 24px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 6px 20px -12px rgba(26,26,46,.16);
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
body.v2 .story-v2 .story-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(26,26,46,.22);
}
body.v2 .story-v2 .story-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--surface-2);
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.02em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  font-feature-settings: 'tnum';
}
body.v2 .story-v2 .story-step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.015em;
  margin: 0 0 8px;
  line-height: 1.3;
}
body.v2 .story-v2 .story-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
body.v2 .story-v2 .story-step .story-num {
  position: absolute;
  top: -10px;
  left: 16px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface-2);
  font-size: 11px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--surface);
}

@media (max-width: 1024px) {
  body.v2 .story-v2 .story-timeline { grid-template-columns: repeat(2, 1fr); }
  body.v2 .story-v2 .story-timeline::before { display: none; }
}
@media (max-width: 640px) {
  body.v2 .story-v2 .story-timeline { grid-template-columns: 1fr; gap: 16px; }
  body.v2 .story-v2 .story-head { margin-bottom: 36px; }
}

/* ─── BENTO GRID v2 (6 feature tiles) ─────────────────────────── */
body.v2 .bento-v2 {
  background: var(--surface);
}
body.v2 .bento-v2 .bento-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
body.v2 .bento-v2 .bento-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .bento-v2 .bento-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .bento-v2 .bento-sub {
  color: var(--ink-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
/* RTL: grid-column counts right→left. Layout: 4-col / 4-row grid.
   Tile A (wide top-right):       cols 3-4  row 1
   Tile B (wide top-left):        cols 1-2  row 1
   Tile C (tall middle-right):    col 4     rows 2-3
   Tile D (medium middle-mid):    cols 2-3  row 2
   Tile E (medium middle-left):   col 1     rows 2-3
   Tile F (wide bottom):          cols 2-3  row 3   */
body.v2 .bento-v2 .bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}
body.v2 .bento-v2 .bento-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.v2 .bento-v2 .bento-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -20px rgba(26,26,46,.22);
  border-color: var(--hairline-strong);
}
body.v2 .bento-v2 .bento-tile .bento-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--primary-tint);
  color: var(--primary);
  margin-bottom: 6px;
}
body.v2 .bento-v2 .bento-tile .bento-icon i { width: 24px; height: 24px; }
body.v2 .bento-v2 .bento-tile h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
body.v2 .bento-v2 .bento-tile p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
body.v2 .bento-v2 .bento-tile .bento-arrow {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
body.v2 .bento-v2 .bento-tile .bento-arrow i { width: 14px; height: 14px; }

/* Tile placements + accent tints */
body.v2 .bento-v2 .bento-tile.tile-a { grid-column: 3 / 5; grid-row: 1 / 2; }
body.v2 .bento-v2 .bento-tile.tile-b { grid-column: 1 / 3; grid-row: 1 / 2; }
body.v2 .bento-v2 .bento-tile.tile-c { grid-column: 4 / 5; grid-row: 2 / 4; background: var(--accent-tint); /* fallback for browsers without color-mix() */ background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 10%, var(--surface-2)) 0%, var(--surface-2) 70%); }
body.v2 .bento-v2 .bento-tile.tile-d { grid-column: 2 / 4; grid-row: 2 / 3; }
body.v2 .bento-v2 .bento-tile.tile-e { grid-column: 1 / 2; grid-row: 2 / 4; background: var(--primary-tint); /* fallback for browsers without color-mix() */ background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 8%, var(--surface-2)) 0%, var(--surface-2) 70%); }
body.v2 .bento-v2 .bento-tile.tile-f { grid-column: 2 / 4; grid-row: 3 / 4; }

/* Per-tile icon tints */
body.v2 .bento-v2 .bento-tile.tile-b .bento-icon { background: var(--accent-tint); color: var(--accent); }
body.v2 .bento-v2 .bento-tile.tile-d .bento-icon { background: #FEF3C7; color: #92400E; }
body.v2 .bento-v2 .bento-tile.tile-e .bento-icon { background: #FCE7F3; color: #BE185D; }
body.v2 .bento-v2 .bento-tile.tile-f .bento-icon { background: #DCFCE7; color: #166534; }

@media (max-width: 1024px) {
  body.v2 .bento-v2 .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  body.v2 .bento-v2 .bento-tile.tile-a,
  body.v2 .bento-v2 .bento-tile.tile-b,
  body.v2 .bento-v2 .bento-tile.tile-c,
  body.v2 .bento-v2 .bento-tile.tile-d,
  body.v2 .bento-v2 .bento-tile.tile-e,
  body.v2 .bento-v2 .bento-tile.tile-f {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  body.v2 .bento-v2 .bento-grid { grid-template-columns: 1fr; gap: 12px; }
  body.v2 .bento-v2 .bento-head { margin-bottom: 36px; }
}

/* ─── STATS BAND v2 (dark KPI strip) ──────────────────────────── */
body.v2 .stats-v2 {
  position: relative;
  background: var(--ink);
  color: var(--surface-2);
  overflow: hidden;
}
body.v2 .stats-v2::before,
body.v2 .stats-v2::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
body.v2 .stats-v2::before {
  width: 360px; height: 360px;
  background: rgba(45,45,112,0.5); /* fallback for browsers without color-mix() */
  background: color-mix(in srgb, var(--primary) 50%, transparent);
  top: -120px; right: -100px;
  opacity: .55;
}
body.v2 .stats-v2::after {
  width: 380px; height: 380px;
  background: rgba(0,87,184,0.45); /* fallback for browsers without color-mix() */
  background: color-mix(in srgb, var(--accent) 45%, transparent);
  bottom: -140px; left: -120px;
  opacity: .45;
}
body.v2 .stats-v2 .container { position: relative; z-index: 1; }
body.v2 .stats-v2 .stats-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
body.v2 .stats-v2 .stats-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 12px;
}
body.v2 .stats-v2 .stats-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--surface-2);
  margin: 0 0 12px;
  text-wrap: balance;
}
body.v2 .stats-v2 .stats-sub {
  color: rgba(255,255,255,.72);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
body.v2 .stats-v2 .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .stats-v2 .stat-cell {
  text-align: center;
  padding: 28px 18px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
body.v2 .stats-v2 .stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--surface-2);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
body.v2 .stats-v2 .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  body.v2 .stats-v2 .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  body.v2 .stats-v2 .stat-value { font-size: 40px; }
}
@media (max-width: 640px) {
  body.v2 .stats-v2 .stat-cell { padding: 22px 14px; }
  body.v2 .stats-v2 .stat-value { font-size: 34px; }
  body.v2 .stats-v2 .stats-head { margin-bottom: 32px; }
}

/* ─── PRODUCT SHOWCASE ROWS v2 ────────────────────────────────── */
body.v2 .product-showcase-v2 {
  background: var(--surface);
}
body.v2 .product-showcase-v2 + .product-showcase-v2 {
  padding-top: 0;
}
body.v2 .product-showcase-v2 .ps-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: var(--container-max-v2);
  margin-inline: auto;
  padding-inline: var(--container-px-v2);
}
body.v2 .product-showcase-v2.reversed .ps-row { direction: ltr; }
body.v2 .product-showcase-v2.reversed .ps-row > * { direction: rtl; }

body.v2 .product-showcase-v2 .ps-text { max-width: 520px; }
body.v2 .product-showcase-v2 .ps-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .product-showcase-v2 .ps-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-product-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.04;
  color: var(--ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
body.v2 .product-showcase-v2 .ps-lead {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 26px;
}
body.v2 .product-showcase-v2 .ps-bullets {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column;
  gap: 14px;
}
body.v2 .product-showcase-v2 .ps-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
body.v2 .product-showcase-v2 .ps-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-tint) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230057B8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 14px no-repeat;
  margin-top: 1px;
}
body.v2 .product-showcase-v2 .ps-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  padding: 12px 22px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-strong);
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body.v2 .product-showcase-v2 .ps-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover-v2);
  border-color: var(--accent);
}
body.v2 .product-showcase-v2 .ps-cta i { width: 16px; height: 16px; }

body.v2 .product-showcase-v2 .ps-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  body.v2 .product-showcase-v2 .ps-visual {
    transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
    transition: transform .35s ease;
  }
  body.v2 .product-showcase-v2.reversed .ps-visual {
    transform: perspective(1200px) rotateY(3deg) rotateX(1.5deg);
  }
  body.v2 .product-showcase-v2 .ps-visual:hover {
    transform: perspective(1200px) rotateY(-1.5deg) rotateX(.75deg);
  }
  body.v2 .product-showcase-v2.reversed .ps-visual:hover {
    transform: perspective(1200px) rotateY(1.5deg) rotateX(.75deg);
  }
}

@media (max-width: 1024px) {
  body.v2 .product-showcase-v2 .ps-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  /* Mobile: text first, mockup below — ALWAYS */
  body.v2 .product-showcase-v2 .ps-text { order: 1; max-width: 100%; }
  body.v2 .product-showcase-v2 .ps-visual { order: 2; }
  body.v2 .product-showcase-v2.reversed .ps-row { direction: rtl; }
}

/* ─── TESTIMONIALS v2 ─────────────────────────────────────────── */
body.v2 .testimonials-v2 {
  background: var(--surface-warm);
}
body.v2 .testimonials-v2 .tm-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
body.v2 .testimonials-v2 .tm-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
body.v2 .testimonials-v2 .tm-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
body.v2 .testimonials-v2 .tm-sub {
  color: var(--ink-soft);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  margin: 0;
}
body.v2 .testimonials-v2 .tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
body.v2 .testimonials-v2 .tm-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 6px 20px -16px rgba(26,26,46,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
body.v2 .testimonials-v2 .tm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -18px rgba(26,26,46,.22);
}
body.v2 .testimonials-v2 .tm-card::before {
  content: "\201D"; /* RTL closing quote */
  position: absolute;
  top: 4px; right: 18px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 700;
  color: var(--primary-tint);
  line-height: 1;
  pointer-events: none;
}
body.v2 .testimonials-v2 .tm-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0;
  position: relative;
  z-index: 1;
}
body.v2 .testimonials-v2 .tm-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
body.v2 .testimonials-v2 .tm-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--surface-2);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.v2 .testimonials-v2 .tm-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
body.v2 .testimonials-v2 .tm-role {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  body.v2 .testimonials-v2 .tm-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* Mobile: horizontal swipe with snap */
  body.v2 .testimonials-v2 .tm-grid {
    display: flex;
    flex-direction: row;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-inline: calc(var(--container-px-v2) * -1);
    padding-inline: var(--container-px-v2);
  }
  body.v2 .testimonials-v2 .tm-card {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }
  body.v2 .testimonials-v2 .tm-head { margin-bottom: 32px; }
}

/* ===================================================================
   Israel Map — synagogue locations across the country
   =================================================================== */
body.v2 .israel-map-v2 {
  background: var(--surface);
}
body.v2 .israel-map-v2 .im-head {
  text-align: center;
  margin-bottom: 56px;
}
body.v2 .israel-map-v2 .im-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .israel-map-v2 .im-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 14px;
}
body.v2 .israel-map-v2 .im-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}
body.v2 .israel-map-v2 .im-stage {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
  aspect-ratio: 1 / 2;
  background:
    radial-gradient(circle at 30% 35%, rgba(0,87,184,.05), transparent 55%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface-warm) 100%);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  box-shadow: var(--shadow-card-v2);
  overflow: hidden;
}
body.v2 .israel-map-v2 .im-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
body.v2 .israel-map-v2 .im-svg path {
  fill: var(--primary-tint);
  stroke: var(--primary);
  stroke-width: 1.5;
  stroke-linejoin: round;
}
body.v2 .israel-map-v2 .im-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 0 4px rgba(0, 87, 184, .18),
    0 4px 10px rgba(0, 87, 184, .35);
}
body.v2 .israel-map-v2 .im-dot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .35;
  animation: im-pulse 3s ease-out infinite;
}
body.v2 .israel-map-v2 .im-dot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--accent-soft);
  opacity: .55;
  animation: im-pulse 3s ease-out 1.5s infinite;
}
@keyframes im-pulse {
  0%   { transform: scale(0.6); opacity: .6; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
body.v2 .israel-map-v2 .im-label {
  position: absolute;
  transform: translate(-50%, calc(-50% - 22px));
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(26,26,46,.08);
  pointer-events: none;
}
body.v2 .israel-map-v2 .im-pin { position: absolute; }

/* Each pin positions its dot + label as a group */
body.v2 .israel-map-v2 .im-pin > .im-dot,
body.v2 .israel-map-v2 .im-pin > .im-label {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
}
body.v2 .israel-map-v2 .im-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-mute);
}

@media (prefers-reduced-motion: reduce) {
  body.v2 .israel-map-v2 .im-dot::before,
  body.v2 .israel-map-v2 .im-dot::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 640px) {
  body.v2 .israel-map-v2 .im-stage {
    max-width: 360px;
    border-radius: 20px;
  }
  body.v2 .israel-map-v2 .im-label {
    font-size: 11px;
    padding: 3px 8px;
  }
  body.v2 .israel-map-v2 .im-dot {
    width: 11px;
    height: 11px;
  }
  body.v2 .israel-map-v2 .im-head { margin-bottom: 36px; }
}

/* ===================================================================
   Integrations strip — names only (no logos / no trademarks)
   =================================================================== */
body.v2 .integrations-v2 {
  background: var(--surface-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
body.v2 .integrations-v2 .ig-head {
  text-align: center;
  margin-bottom: 48px;
}
body.v2 .integrations-v2 .ig-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .integrations-v2 .ig-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 14px;
}
body.v2 .integrations-v2 .ig-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
body.v2 .integrations-v2 .ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
body.v2 .integrations-v2 .ig-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.v2 .integrations-v2 .ig-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover-v2);
  border-color: var(--hairline-strong);
}
body.v2 .integrations-v2 .ig-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.005em;
  margin-bottom: 8px;
}
body.v2 .integrations-v2 .ig-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-tint);
  border-radius: 999px;
  padding: 4px 10px;
}
body.v2 .integrations-v2 .ig-status.is-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.18);
}
body.v2 .integrations-v2 .ig-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-mute);
}

@media (max-width: 900px) {
  body.v2 .integrations-v2 .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body.v2 .integrations-v2 .ig-card { padding: 18px 14px; }
  body.v2 .integrations-v2 .ig-name { font-size: 15.5px; }
}

/* ===================================================================
   Pricing teaser — 3 tiers, sourced from /pricing.html
   =================================================================== */
body.v2 .pricing-teaser-v2 {
  background: var(--surface);
}
body.v2 .pricing-teaser-v2 .pt-head {
  text-align: center;
  margin-bottom: 56px;
}
body.v2 .pricing-teaser-v2 .pt-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .pricing-teaser-v2 .pt-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 14px;
}
body.v2 .pricing-teaser-v2 .pt-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
body.v2 .pricing-teaser-v2 .pt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
}
body.v2 .pricing-teaser-v2 .pt-card {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
body.v2 .pricing-teaser-v2 .pt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover-v2);
}
body.v2 .pricing-teaser-v2 .pt-card.is-featured {
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--primary-tint) 100%);
  border: 1.5px solid var(--primary-soft);
  transform: scale(1.04);
  box-shadow:
    0 24px 60px -16px rgba(45, 45, 112, .35),
    0 0 0 1px rgba(45, 45, 112, .08);
}
body.v2 .pricing-teaser-v2 .pt-card.is-featured:hover {
  transform: scale(1.04) translateY(-4px);
}
body.v2 .pricing-teaser-v2 .pt-badge {
  position: absolute;
  top: -14px;
  inset-inline-end: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .02em;
  box-shadow: 0 6px 16px rgba(45,45,112,.32);
}
body.v2 .pricing-teaser-v2 .pt-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
body.v2 .pricing-teaser-v2 .pt-blurb {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.55;
  min-height: 42px;
}
body.v2 .pricing-teaser-v2 .pt-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
body.v2 .pricing-teaser-v2 .pt-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1;
}
body.v2 .pricing-teaser-v2 .pt-period {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
body.v2 .pricing-teaser-v2 .pt-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 22px;
  min-height: 18px;
}
body.v2 .pricing-teaser-v2 .pt-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  margin-bottom: 22px;
}
body.v2 .pricing-teaser-v2 .pt-cta:hover {
  background: var(--primary-tint);
}
body.v2 .pricing-teaser-v2 .pt-card.is-featured .pt-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(45,45,112,.28);
}
body.v2 .pricing-teaser-v2 .pt-card.is-featured .pt-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(45,45,112,.36);
}
body.v2 .pricing-teaser-v2 .pt-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.v2 .pricing-teaser-v2 .pt-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
body.v2 .pricing-teaser-v2 .pt-features li::before {
  content: "";
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--accent-tint);
  background-image: linear-gradient(135deg, var(--accent) 0%, var(--accent) 50%, transparent 50%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 7px, #000 8px);
  mask: radial-gradient(circle at 50% 50%, transparent 7px, #000 8px);
  /* Falls back to a tinted dot via background — mask polishes it into a ring on supported browsers. */
}
body.v2 .pricing-teaser-v2 .pt-foot {
  text-align: center;
  margin-top: 40px;
}
body.v2 .pricing-teaser-v2 .pt-foot a {
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s ease;
}
body.v2 .pricing-teaser-v2 .pt-foot a:hover {
  border-color: var(--accent);
}

@media (max-width: 960px) {
  body.v2 .pricing-teaser-v2 .pt-grid { grid-template-columns: 1fr; max-width: 480px; }
  body.v2 .pricing-teaser-v2 .pt-card.is-featured { transform: none; }
  body.v2 .pricing-teaser-v2 .pt-card.is-featured:hover { transform: translateY(-4px); }
}
@media (max-width: 480px) {
  body.v2 .pricing-teaser-v2 .pt-card { padding: 26px 22px; }
  body.v2 .pricing-teaser-v2 .pt-price { font-size: 38px; }
}

/* ===================================================================
   FAQ accordion — native <details>
   =================================================================== */
body.v2 .faq-v2 {
  background: var(--surface-2);
}
body.v2 .faq-v2 .fq-head {
  text-align: center;
  margin-bottom: 48px;
}
body.v2 .faq-v2 .fq-eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: 14px;
}
body.v2 .faq-v2 .fq-h2 {
  font-family: var(--font-display);
  font-size: var(--fs-section-h2);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.08;
  margin: 0 0 14px;
}
body.v2 .faq-v2 .fq-sub {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}
body.v2 .faq-v2 .fq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body.v2 .faq-v2 details {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.v2 .faq-v2 details[open] {
  border-color: var(--hairline-strong);
  box-shadow: 0 8px 24px rgba(26,26,46,.08);
}
body.v2 .faq-v2 summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  user-select: none;
}
body.v2 .faq-v2 summary::-webkit-details-marker { display: none; }
body.v2 .faq-v2 summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-tint);
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
body.v2 .faq-v2 details[open] summary::after {
  content: "−";
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}
body.v2 .faq-v2 .fq-body {
  padding: 0 24px 22px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
body.v2 .faq-v2 .fq-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: var(--ink-mute);
}
body.v2 .faq-v2 .fq-foot a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}
body.v2 .faq-v2 .fq-foot a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  body.v2 .faq-v2 summary { padding: 16px 18px; font-size: 15.5px; }
  body.v2 .faq-v2 .fq-body { padding: 0 18px 18px; font-size: 14.5px; }
}

/* ===================================================================
   Final CTA — gradient close-out
   =================================================================== */
body.v2 .final-cta-v2 {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.v2 .final-cta-v2 .fc-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
body.v2 .final-cta-v2 .fc-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #fff;
}
body.v2 .final-cta-v2 .fc-h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.92);
}
body.v2 .final-cta-v2 .fc-sub {
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  max-width: 580px;
  margin: 0 auto 32px;
}
body.v2 .final-cta-v2 .fc-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
body.v2 .final-cta-v2 .fc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
body.v2 .final-cta-v2 .fc-btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
body.v2 .final-cta-v2 .fc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.24);
}
body.v2 .final-cta-v2 .fc-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
body.v2 .final-cta-v2 .fc-btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
body.v2 .final-cta-v2 .fc-meta {
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}

@media (max-width: 640px) {
  body.v2 .final-cta-v2 .fc-btn { width: 100%; height: 52px; padding: 0 22px; }
  body.v2 .final-cta-v2 .fc-actions { flex-direction: column; gap: 10px; max-width: 320px; margin-inline: auto; margin-bottom: 22px; }
}

/* ===================================================================
   Scroll-reveal — opt-in via `.reveal`, hook lives in marketing-v2.js
   =================================================================== */
body.v2 .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .6s var(--ease, ease-out),
    transform .6s var(--ease, ease-out);
}
body.v2 .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  body.v2 .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===================================================================
   PRICING v2 — re-skin of /pricing.html
   Overrides existing class names; data stays untouched.
   =================================================================== */

/* Pricing hero */
body.v2 .pricing-hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  padding-block: clamp(72px, 9vw, 120px) clamp(40px, 5vw, 64px);
  text-align: center;
  border-bottom: 1px solid var(--hairline);
}
body.v2 .pricing-hero .container { max-width: 980px; }
body.v2 .pricing-hero .eyebrow {
  margin-bottom: 18px;
}
body.v2 .pricing-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 18px;
}
body.v2 .pricing-hero .pricing-hero-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: currentColor;
  display: inline;
}
body.v2 .pricing-hero p {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* Cards section background */
body.v2 .pricing-cards-section {
  background: var(--surface);
  padding-block: clamp(48px, 7vw, 96px);
}

/* Monthly / Yearly toggle */
body.v2 .toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 28px;
}
body.v2 .toggle-pill {
  display: inline-flex;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 1px 2px rgba(26,26,46,.04);
}
body.v2 .toggle-opt {
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 9px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
body.v2 .toggle-opt:hover { color: var(--ink); }
body.v2 .toggle-opt.on {
  background: var(--ink);
  color: var(--surface-2);
}
body.v2 .toggle-save {
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 5px 10px;
  border-radius: 999px;
}

/* Trial + trust banners (v2 reskinning) */
body.v2 .trial-banner-v2 {
  max-width: 880px;
  margin: 0 auto 28px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 1px 3px rgba(26,26,46,.04);
}
body.v2 .trial-banner-v2 .tb-head {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
body.v2 .trial-banner-v2 .tb-head i {
  width: 22px; height: 22px; color: var(--accent);
}
body.v2 .trial-banner-v2 .tb-head strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  font-weight: 800;
}
body.v2 .trial-banner-v2 .tb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 22px;
  color: var(--ink-soft);
  font-size: 14px;
}
body.v2 .trial-banner-v2 .tb-grid span { display: inline-flex; align-items: center; gap: 8px; }
body.v2 .trial-banner-v2 .tb-grid i {
  width: 16px; height: 16px; color: var(--accent); flex-shrink: 0;
}
body.v2 .trial-banner-v2 .tb-foot {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: var(--ink-mute);
}

body.v2 .trust-banner-v2 {
  background: linear-gradient(90deg, var(--accent-tint) 0%, #F0F9FF 100%);
  border: 1px solid rgba(0, 87, 184, .15);
  border-radius: 16px;
  padding: 18px 24px;
  margin: 0 auto 44px;
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: var(--primary);
}
body.v2 .trust-banner-v2 .tb-item {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600;
}
body.v2 .trust-banner-v2 .tb-item i {
  width: 18px; height: 18px; color: var(--accent);
}
body.v2 .trust-banner-v2 .tb-sep { color: var(--ink-mute); }

/* Pricing grid */
body.v2 .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 980px) {
  body.v2 .pricing-grid { grid-template-columns: 1fr; max-width: 480px; gap: 20px; }
}

/* Pricing card */
body.v2 .pricing-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset,
              0 14px 36px -20px rgba(26,26,46,.18);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.v2 .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-v2);
  border-color: var(--hairline-strong);
}
body.v2 .pricing-card.featured {
  border: 1.5px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(0,87,184,.02), rgba(255,255,255,1) 40%),
    var(--surface-2);
  animation: plan-glow 3s ease-in-out infinite;
}
@media (min-width: 981px) {
  body.v2 .pricing-card.featured { transform: scale(1.05); }
  body.v2 .pricing-card.featured:hover { transform: scale(1.05) translateY(-4px); }
}

body.v2 .pricing-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,87,184,.28);
}

body.v2 .plan-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
body.v2 .plan-icon i { width: 26px; height: 26px; }
body.v2 .plan-icon.pi-blue { background: var(--accent-tint); color: var(--accent); }
body.v2 .plan-icon.pi-purple { background: var(--primary-tint); color: var(--primary); }
body.v2 .plan-icon.pi-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

body.v2 .plan-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
body.v2 .plan-desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 22px;
  min-height: 42px;
}
body.v2 .plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
body.v2 .plan-price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}
body.v2 .plan-period {
  font-size: 15px;
  color: var(--ink-mute);
  font-weight: 500;
}
body.v2 .plan-note {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  min-height: 18px;
  margin-bottom: 22px;
}

body.v2 .plan-btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
body.v2 .plan-btn-primary {
  background: var(--ink);
  color: var(--surface-2);
}
body.v2 .plan-btn-primary:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(45,45,112,.28);
}
body.v2 .plan-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline-strong);
}
body.v2 .plan-btn-outline:hover {
  border-color: var(--ink);
  background: var(--surface);
}

body.v2 .plan-divider {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: 22px 0;
}

body.v2 .plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.v2 .plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
body.v2 .plan-features li i {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

/* Guarantees row */
body.v2 .guarantees {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 42px;
  font-size: 14px;
  color: var(--ink-soft);
}
body.v2 .guarantees span {
  display: inline-flex; align-items: center; gap: 8px;
}
body.v2 .guarantees i {
  width: 16px; height: 16px;
  color: var(--accent);
}

/* Comparison table */
body.v2 .compare-table-wrap {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 16px;
  border-radius: 18px;
}
body.v2 .compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 600px;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
}
body.v2 .compare-table th,
body.v2 .compare-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
body.v2 .compare-table th {
  background: var(--surface);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
  position: sticky; top: 0;
  letter-spacing: -.01em;
}
body.v2 .compare-table td:first-child,
body.v2 .compare-table th:first-child {
  text-align: right;
  position: sticky; right: 0;
  background: var(--surface-2);
  font-weight: 600;
  color: var(--ink);
  z-index: 1;
}
body.v2 .compare-table th:first-child { background: var(--surface); }
body.v2 .compare-table tr.group-header td {
  background: var(--accent-tint);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  padding: 12px 18px;
  font-size: 13.5px;
  letter-spacing: .02em;
}
body.v2 .compare-table .check-yes {
  color: var(--accent);
  display: inline-flex;
}
body.v2 .compare-table .check-no { color: var(--ink-mute); }
body.v2 .compare-table .featured-col {
  background: rgba(0, 87, 184, .04);
}
body.v2 .compare-table tr:last-child td { border-bottom: 0; }

/* FAQ details (override the inline pricing.html chevron with v2 chevron) */
body.v2 #faq details {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px 24px 20px 56px;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}
body.v2 #faq details[open] {
  border-color: var(--hairline-strong);
  box-shadow: 0 8px 24px rgba(26,26,46,.06);
}
body.v2 #faq summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  cursor: pointer;
  position: relative;
}
body.v2 #faq summary::-webkit-details-marker { display: none; }
body.v2 #faq summary::before {
  content: "+";
  position: absolute;
  inset-inline-start: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
body.v2 #faq details[open] summary::before {
  content: "−";
  background: var(--accent);
  color: #fff;
}
body.v2 #faq details > div {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 640px) {
  body.v2 #faq details { padding: 18px 20px 18px 48px; }
  body.v2 #faq summary { font-size: 15.5px; }
  body.v2 #faq summary::before { inset-inline-start: -32px; width: 22px; height: 22px; font-size: 16px; }
}

/* Bottom CTA section — re-skin gradient + button colors */
body.v2 .cta-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(64px, 8vw, 120px);
  text-align: center;
  color: #fff;
}
body.v2 .cta-section .cta-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  z-index: 0;
}
body.v2 .cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
body.v2 .cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: #fff;
}
body.v2 .cta-section p {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 28px;
}
body.v2 .cta-section .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
body.v2 .cta-section .btn-primary {
  background: #fff;
  color: var(--primary);
  border: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
body.v2 .cta-section .btn-primary:hover {
  background: var(--surface);
  transform: translateY(-2px);
}
body.v2 .cta-section .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
}
body.v2 .cta-section .btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
@media (max-width: 640px) {
  body.v2 .cta-section .cta-row { flex-direction: column; max-width: 320px; margin-inline: auto; }
  body.v2 .cta-section .btn-primary,
  body.v2 .cta-section .btn-secondary { width: 100%; }
}

/* Pricing testimonials override */
body.v2 .pricing-cards-section + section[style*="F8FAFC"] {
  background: var(--surface) !important;
}

/* Featured-card glow keyframes (global per CSS spec) */
@keyframes plan-glow {
  0%, 100% { box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 14px 36px -20px rgba(0,87,184,.28); }
  50%      { box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 20px 50px -16px rgba(0,87,184,.42); }
}

/* ─── ANIMATIONS v2 ─── */
/* @keyframes are global by CSS spec — cannot be scoped under body.v2.
   Animation APPLICATIONS are scoped via body.v2 selectors. */

/* Gentle vertical bob (~6s) for floating UI elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* Slower bob (~10s) for secondary floating elements */
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Subtle parallax drift for hero/background decorations */
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(8px, -6px) scale(1.02); }
  66%      { transform: translate(-5px, 4px) scale(0.98); }
}

/* Soft pulse glow for accent CTA buttons */
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 1px 0 rgba(255,255,255,.22) inset,
                0 8px 20px color-mix(in srgb, var(--accent) 35%, transparent);
  }
  50% {
    box-shadow: 0 1px 0 rgba(255,255,255,.22) inset,
                0 12px 30px color-mix(in srgb, var(--accent) 50%, transparent);
  }
}

/* Shimmer for stat counters on reveal (sweeps highlight band) */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* Outer ring pulse on dots (used by play buttons / map dots) */
@keyframes ringpulse {
  0%   { transform: scale(.92); opacity: .9; }
  100% { transform: scale(1.3);  opacity: 0; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  body.v2 .dash-float-1,
  body.v2 .dash-float-2,
  body.v2 .hero-v2::before,
  body.v2 .btn-accent:not(:hover),
  body.v2 .stats-v2.reveal.is-in .stat-value {
    animation: none !important;
  }
}

/* ───────────── Footer 6-column layout (Item 5) ───────────── */
body.v2 .footer-grid { grid-template-columns: 1.5fr repeat(5, 1fr); }
@media (max-width: 960px) { body.v2 .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { body.v2 .footer-grid { grid-template-columns: 1fr; } }

/* ───────────── Latest updates row (Item 9) ───────────── */
body.v2 .update-card { background: var(--surface-2); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px 22px; transition: transform .2s, box-shadow .2s; height: 100%; }
body.v2 .update-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover-v2); }
body.v2 .update-date { font-size: 12px; color: var(--ink-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
body.v2 .update-title { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
body.v2 .update-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 14px; }
body.v2 .update-link { font-size: 13px; color: var(--accent); font-weight: 700; }

/* ───────────── Logo strip — community-type cards (Item 8) ───────────── */
body.v2 .shul-card {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
body.v2 .shul-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-v2); }
body.v2 .shul-city { font-size: 14px; font-weight: 800; color: var(--ink); margin-bottom: 4px; }
body.v2 .shul-name { font-size: 11px; color: var(--ink-mute); font-weight: 500; }

