/* ==========================================================================
   Momento landing — mobile-first, RTL Hebrew, brand palette sampled from
   the m. logo (orange) + the app's soft-gray canvas.
   ========================================================================== */

:root {
  /* Brand palette per Yael 2026-07-23: primary #FE5220, near-black #1E1A17,
     background #F5F4F9. Derived tints (orange-deep / orange-soft) shifted
     to harmonize with the new primary. */
  --orange:            #FE5220;
  --orange-deep:       #E64716;
  --orange-soft:       #FFECE5;
  --ink:               #1E1A17;
  --ink-mute:          #4a4644;
  --text-mute:         #6b7280;
  --bg:                #F5F4F9;
  --white:             #ffffff;
  --border:            #e5e7eb;
  --border-strong:     #d1d5db;
  --shadow-sm:         0 1px 2px rgba(17, 24, 39, .06), 0 1px 3px rgba(17, 24, 39, .06);
  --shadow-md:         0 10px 30px -12px rgba(17, 24, 39, .18), 0 4px 10px -6px rgba(17, 24, 39, .08);
  --shadow-lg:         0 30px 60px -30px rgba(17, 24, 39, .30), 0 12px 24px -12px rgba(17, 24, 39, .10);
  --radius-sm:         8px;
  --radius:            14px;
  --radius-lg:         22px;
  --radius-phone:      42px;
  --container:         1160px;
  --gap:               clamp(20px, 3vw, 40px);
  --pad-block:         clamp(56px, 9vw, 120px);
  --transition:        180ms cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  /* Yael 2026-07-25: base bumped 17→18px for typical marketing-site
     readability. All clamp()-based scales in .section-body / cards ride
     up proportionally. */
  margin: 0;
  /* Assistant (from Google Fonts) is Hebrew-only — its .woff2 has no Latin
     glyphs. Inter next covers Latin (email addresses, "Momento", etc.) with
     a geometric-sans design that visually matches Assistant's weight/feel.
     Per-glyph substitution: browser uses Assistant for Hebrew code points,
     Inter for Latin, system-ui as ultimate safety net. */
  font-family: 'Assistant', 'Inter', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; }
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 40px);
}
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.section {
  padding-block: var(--pad-block);
  background: var(--white);
}
.section.section-alt { background: var(--bg); }

.section-headline {
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.section-body {
  /* Generous spacing per Yael 2026-07-23 — more breathing room between
     paragraphs than the original 12px margin. Combined with splitting
     wall-of-text bodies into multiple <p>s, gives a calm reading rhythm. */
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-mute);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 720px;
}
.section-body:last-child { margin-bottom: 0; }
/* Punchline paragraphs — slightly bigger, near-ink, semi-bold. Used for
   short one-line closers ("פחות להתפזר. יותר להתגלות." etc). */
.section-body.section-body-emphasis {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 21px);
  margin-top: 8px;
}
.text-orange { color: var(--orange); }

/* ---------- Brand mentions (pain section, section 1) ---------- */
/* Each brand name pairs with a small icon glyph. inline-flex keeps the
   icon+name pair as one unbreakable visual unit; RTL container handles
   direction. Icon color is orange to draw the eye. */
.brand-mention {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}
/* Catch both brand icons (fa-brands) AND solid icons (fa-solid, e.g. the
   fa-comment-dots for המלצות) — R3-3 fix: the earlier `.fa-brands`-only
   selector left solid icons rendering in inherited black. */
.brand-mention .fa-brands,
.brand-mention .fa-solid {
  color: var(--orange);
  font-size: 0.95em;
}
.pain-brands-line {
  /* Slightly larger line-height so the icon+text pairs breathe on wrap. */
  line-height: 1.9;
}

/* ---------- Feature-hook — the question opener on each feature card ---------- */
.feature-hook {
  color: var(--orange) !important;
  font-weight: 600;
  margin: 0 0 10px !important;
  font-size: 17px;
}

/* ---------- Yael 2026-07-25 review round 1: additional emphasis tiers ---------- */
/* .section-body-answer — the "reveal / answer" beat. One tier under an
   emphasized punchline: near-ink, weight 600, subtly larger than base body.
   Used on lines that flip the frame from problem→solution. */
.section-body-answer {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.55;
  margin-top: 10px;
}

/* Punchline emphasis strengthened per Yael's feedback — bigger + heavier
   than the initial round so it lands. */
.section-body.section-body-emphasis {
  color: var(--ink);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.35;
  margin-top: 16px;
}

/* Pain-section: the punch fragment after the brand-mention list.
   Larger + heavier than base body; sits inline with the list on desktop,
   wraps to new line on narrow screens. */
.pain-punch {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ink);
}

/* ---------- Image rendering — R3-1 diagnosis fix (2026-07-25) ---------- */
/* R1 added `image-rendering: crisp-edges` under the mistaken assumption
   that "crisp" = "sharp". Truth: crisp-edges is a nearest-neighbor
   filter designed for PIXEL ART; on photo content downscaled, it kills
   antialiasing and produces the exact "soft/mushy" look Yael flagged.
   Removed. Explicit `high-quality` for Chromium and `-webkit-optimize-contrast`
   for Safari — both are photo-appropriate resamplers. Modern browsers
   default to `auto` which is fine too, but declaring high-quality
   overrides any ancestor rule that may have propagated down. */
.phone-frame img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
}
@media (min-width: 900px) {
  .phone-frame { width: min(320px, 82vw); }
}

/* ---------- Captions under phone figures — R3-4 (round 3) ---------- */
/* Yael R2 wasn't enough. Going bigger again: 24-30px clamped, weight 800,
   thicker+wider orange bar. Reads as a real sub-headline, impossible to
   miss. Kept below-phone position; if this round still doesn't land we
   move them above the phones as lead-ins in round 4. */
.phone-figure figcaption {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 800;
  color: var(--ink);
  padding-block-start: 18px;
  position: relative;
  text-align: center;
  line-height: 1.25;
}
.phone-figure figcaption::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 50%;
  transform: translateX(50%);
  width: 64px;
  height: 5px;
  background: var(--orange);
  border-radius: 999px;
}

/* ---------- Without-list — POSTER moment (Yael R2-5) ---------- */
/* Rebuild: not a sidebar, not a subtle box — a standalone marketing
   beat. Centered, generous padding, orange top-and-side bars, larger
   type, near-ink content. Reads as a callout, hard to skim past. */
.without-list {
  max-width: 720px;
  margin: 56px auto 0;
  padding: clamp(32px, 5vw, 56px) clamp(28px, 5vw, 64px);
  background: var(--white);
  border: none;
  border-inline-start: 6px solid var(--orange);
  border-inline-end: 6px solid var(--orange);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -20px rgba(254, 82, 32, .18), 0 12px 24px -12px rgba(30, 26, 23, .10);
  gap: 18px;
  text-align: start;
}
.without-list li {
  font-size: clamp(20px, 2.1vw, 24px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 700;
  padding-inline-start: 42px;
}
.without-list li::before {
  background: var(--orange);
  width: 28px;
  height: 4px;
  top: 16px;
  border-radius: 999px;
}
.without-list li.without-positive {
  color: var(--orange);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  padding-block-start: 22px;
  margin-block-start: 14px;
  border-top: 2px solid rgba(254, 82, 32, .25);
}
.without-list li.without-positive::before {
  background: var(--orange);
  height: 5px;
  top: 36px;
}

/* Compact features section — trim vertical padding + tighter headline margin
   so headline + chips + 5 cards fit ~100vh at desktop widths. Targets the
   section that CONTAINS a feature-cards-magazine (works via :has, modern
   browsers only; falls back to the default padding on older browsers —
   still visible, just taller). */
.section:has(.feature-cards-magazine) {
  padding-block: clamp(40px, 5vw, 72px);
}
.section:has(.feature-cards-magazine) .section-headline {
  margin-bottom: 12px;
}

/* ---------- Features — COMPACT magazine (R6-1) ---------- */
/* Round 5 was airy but too tall; Yael wants headline + chips + 5 cards
   visible in ~100vh at 1280-1440. Big card no longer double-height —
   equal row height with the stacked pair, just WIDER (spans 2 grid
   columns in a 4-col row). All cards share smaller padding/icon/copy
   sizes; tighter gaps. */

.feature-cards-magazine {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Top row: 4-col grid so big spans 2, small1 + small2 each span 1.
   Single row height across the top → equal card heights, big just wider. */
.magazine-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.fc-big { /* natural placement — first 2-col cell */ }
.fc-small { /* natural placement — next 2 1-col cells */ }

/* Bottom row: three equal wide cards (R8 — was 2 before the 6th card was added) */
.magazine-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

/* Card base — tighter than R5 */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(30, 26, 23, 0.12), 0 4px 10px -6px rgba(30, 26, 23, 0.08);
  border-color: transparent;
}
.feature-card h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}
.feature-card p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.45;
}
.feature-card p + p { margin-top: 8px; }

/* Big card — SAME padding/typography as small (per Yael "just wider").
   Only visual difference is the wider grid cell. */
/* (no fc-big overrides) */

/* Compact icon badge — matches app design language, sized for the tighter cards */
.feature-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.fc-big .feature-icon-badge {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

/* Below 900px the magazine collapses to single-column stack */
@media (max-width: 900px) {
  .magazine-top { grid-template-columns: 1fr; }
  .magazine-bottom { grid-template-columns: 1fr; }
}

/* ---------- Footer wordmark — real logotype SVG (R5-2) ---------- */
/* Uses assets/logo-mark-footer.svg (extracted from Yael's Momento.svg
   source, recolored to brand orange m + white dot). Pixel-accurate to
   the real logo — no more CSS approximations of the m+dot integration.
   Source order in HTML is [text, mark]; RTL flex puts text at
   inline-start (RIGHT) and mark at inline-end (LEFT) → matches header
   composition. */
/* R7 — footer wordmark now uses IDENTICAL DOM+CSS as the header:
   .wordmark base rules (font-size 22px, gap 8px, align-items center) +
   .wordmark-mark base rule (34x34 img). No footer-specific size overrides.
   The only footer-scoped rule is the color flip on .wordmark-to (line 841
   further down) which turns "to" white against the dark footer bg. */
.wordmark-footer {
  overflow: visible;
  padding-block: 4px;
}

/* ---------- Nav / header ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-block-end: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 14px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.wordmark-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.wordmark-text { color: var(--orange); }
.wordmark-to   { color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), background-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(242, 99, 51, .55);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -10px rgba(242, 99, 51, .65);
}
.btn-primary:active { transform: translateY(0); }
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 18px 32px; font-size: 19px; }

/* ---------- HERO ---------- */
.hero {
  padding-block: clamp(64px, 10vw, 120px);
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero-headline {
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero-sub {
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--ink-mute);
  margin: 0 0 28px;
  line-height: 1.55;
}
.hero-trust {
  margin: 14px 0 0;
  color: var(--text-mute);
  font-size: 15px;
}
.hero-visual { display: flex; justify-content: center; }

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
  }
  .hero-visual { justify-content: flex-start; }
}

/* ---------- Phone frame — slimmed (Yael R4-1) ---------- */
/* Was: 12px chunky bezel, 42px radius, heavy shadow + inset border.
   Now: Apple-marketing-style thin bezel, tighter radius, softer shadow.
   Applied uniformly — every phone mockup shares this frame. */
.phone-frame {
  position: relative;
  width: min(280px, 78vw);
  aspect-ratio: 1206 / 2622;
  background: #111;
  border-radius: 34px;
  padding: 6px;
  box-shadow: 0 24px 48px -24px rgba(30, 26, 23, 0.18), 0 8px 16px -8px rgba(30, 26, 23, 0.10);
  transition: transform var(--transition);
}
.phone-frame:hover { transform: translateY(-4px); }
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.phone-notch {
  position: absolute;
  top: 14px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
}
.phone-frame-sm {
  width: min(200px, 60vw);
}

/* ---------- Phone figure + caption ---------- */
.phone-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
}
.phone-figure figcaption {
  font-weight: 600;
  color: var(--ink-mute);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Section 3: two phones ---------- */
.two-phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 56px;
  justify-items: center;
}
@media (min-width: 768px) {
  .two-phones {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* ---------- Section 4: category chips ---------- */
.category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 32px 0 32px;
}
.category-chips li {
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.category-chips li:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: var(--orange-soft);
}

/* ---------- Section 5: booking flow ---------- */
.booking-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 56px 0 40px;
  justify-items: center;
  align-items: center;
}
.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.flow-arrow {
  color: var(--orange);
  font-size: 32px;
  font-weight: 800;
  transform: rotate(-90deg);
}
@media (min-width: 900px) {
  .booking-flow {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
  }
  .flow-arrow { transform: none; }
}

.without-list {
  max-width: 560px;
  margin: 40px auto 0;
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.without-list li {
  font-size: 17px;
  color: var(--ink-mute);
  padding-inline-start: 32px;
  position: relative;
}
.without-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 22px;
  height: 2px;
  background: var(--border-strong);
  border-radius: 999px;
}
.without-list li.without-positive {
  margin-top: 10px;
  color: var(--orange);
  font-weight: 800;
  font-size: 19px;
}
.without-list li.without-positive::before {
  background: var(--orange);
  height: 3px;
  top: 12px;
}

/* ---------- Section 6: features ---------- */
.feature-chips {
  /* R6-1 — tighter margins to help section fit ~100vh at 1280-1440 */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 28px;
  max-width: 900px;
}
.feature-chips li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-mute);
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}
.feature-chips li:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.feature-card p {
  margin: 0;
  color: var(--ink-mute);
  font-size: 16px;
}
.feature-card-visual {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .feature-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card-wide { grid-column: span 2; }
  .feature-card-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
  }
  .feature-card-wide .feature-card-visual { margin-top: 0; }
}
@media (min-width: 1024px) {
  .feature-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-card-wide {
    grid-column: span 3;
  }
}

/* ---------- Section 7: spontaneous ---------- */
.spontaneous-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.spontaneous-visual { display: flex; justify-content: center; }
@media (min-width: 900px) {
  .spontaneous-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* ---------- Section 8: pricing ---------- */
/* ---------- Section 6b: compact trust strip (R8 → R8.1) ----------
   Slim horizontal strip between "התפנה תור" (white) and pricing (gray).
   Warm orange-soft bg reads as a positive bridge. R8.1 tuning per Yael:
   readable type (title 20/700, body 17), body { flex:1 } so each item
   fills its grid cell — otherwise the inline content hugs the start and
   the visual gaps between columns look uneven despite equal 1fr tracks.
   Padding-block bumped so it breathes without becoming a tall section. */
.trust-strip-section {
  background: var(--orange-soft);
  padding-block: 48px;
}
.trust-strip-headline {
  margin: 0 0 26px;
  font-size: clamp(20px, 2.6vw, 24px);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--white);
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.trust-body {
  flex: 1;
  min-width: 0;
}
.trust-body h4 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.trust-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-mute);
}
@media (max-width: 780px) {
  .trust-strip { grid-template-columns: 1fr; gap: 20px; }
  .trust-strip-section { padding-block: 36px; }
}

/* ---------- Section 8: FAQ (R8, native details/summary) ----------
   Zero-JS accordion using native <details>. Closed by default so the
   section stays short; each item opens independently. Chevron rotates
   180° on [open]. Content remains crawlable — search engines index
   <details> children as visible text. */
.faq-list {
  max-width: 720px;
  margin: 32px auto 0;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
  border-color: var(--orange);
  box-shadow: 0 8px 24px -16px rgba(30, 26, 23, 0.12);
}
.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q-text { flex: 1; }
.faq-chev {
  color: var(--orange);
  font-size: 14px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-a {
  padding: 0 22px 20px;
}
.faq-a p {
  margin: 0 0 8px;
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.6;
}
.faq-a p:last-child { margin-bottom: 0; }
@media (max-width: 780px) {
  .faq-q { padding: 16px 18px; font-size: 17px; }
  .faq-a { padding: 0 18px 18px; }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px clamp(24px, 4vw, 48px);
  max-width: 480px;
  margin: 32px auto 0;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.pricing-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: 72px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-unit {
  font-size: 20px;
  color: var(--ink-mute);
  font-weight: 600;
}
.pricing-trial {
  margin: 0 0 24px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.pricing-without {
  text-align: start;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}
.pricing-without li {
  padding-inline-start: 26px;
  position: relative;
  color: var(--ink-mute);
  font-size: 16px;
}
.pricing-without li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}
.pricing-terms {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--text-mute);
}

/* ---------- Section 9: final CTA ---------- */
.final-cta-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--orange-soft) 100%);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #d1d5db;
  padding-block: 56px 40px;
}
.footer-inner {
  display: grid;
  gap: 24px;
  text-align: center;
}
.wordmark-footer {
  justify-self: center;
  color: #fff;
}
.wordmark-footer .wordmark-to { color: #fff; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  font-size: 15px;
}
.footer-links a {
  color: #d1d5db;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-contact-heading {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer-contact { margin: 0; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: var(--orange); }
.footer-whatsapp { margin: 0; font-size: 15px; color: #d1d5db; }
.footer-whatsapp a {
  color: #d1d5db;
  transition: color var(--transition);
  display: inline-flex;
  align-items: baseline;
}
.footer-whatsapp a:hover { color: var(--orange); }
.footer-whatsapp .fa-whatsapp {
  color: #25D366;
  font-size: 17px;
  transition: color var(--transition);
}
.footer-whatsapp a:hover .fa-whatsapp { color: var(--orange); }
.footer-copy {
  margin: 8px 0 0;
  font-size: 13px;
  color: #9ca3af;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
