/* ==========================================================================
   Forty Rent — Marketing skin v2 (marketing-v2.css) · redesign 2026-08
   ==========================================================================
   Warm-light "paper" system, adapted from the approved reference direction:
   warm grey canvas, near-black warm ink, cream, one lime accent, orange
   reserved exclusively for the hero world (dots, pills, leader lines).
   Floating liquid-glass nav islands. Editorial numbered sections. One dark
   inverse section for rhythm.

   CONTRACT
   - Standalone: does NOT import or depend on marketing.css / motion.css.
   - Namespace: every token and class is prefixed --m2- / .m2-.
   - RTL-first: logical properties throughout; the ONE exception is .fw-pill,
     anchored with a physical `left` because the hero engine positions pills
     in canvas (LTR) pixel space.
   - Fonts: Frank Ruhl Libre (display serif) + Heebo (body) + IBM Plex Mono
     (labels/numbers) — the brand trio, unchanged by the reskin.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@400;500;700&family=Heebo:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap");

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  color-scheme: light;

  /* surfaces */
  --m2-bg: #d7d7d0;            /* warm grey canvas */
  --m2-cream: #f4f4e7;         /* raised warm surface */
  --m2-card: #fdfcfa;          /* card / panel */
  --m2-dark: #1a1614;          /* inverse section bg */
  --m2-dark-elev: #241f1b;

  /* ink */
  --m2-ink: #1a1614;
  --m2-ink-dim: rgba(26, 22, 20, 0.7);
  --m2-ink-faint: rgba(26, 22, 20, 0.45);
  --m2-cream-text: #f4f4e7;
  --m2-cream-dim: rgba(244, 244, 231, 0.72);
  --m2-cream-faint: rgba(244, 244, 231, 0.45);

  /* accents */
  --m2-lime: #e2e67d;          /* the one interface accent */
  --m2-lime-deep: #cdd15b;
  --m2-orange: #ff7733;        /* hero world only */
  --m2-green: #6aa878;         /* the world's "free" ball green */

  /* lines */
  --m2-border: rgba(26, 22, 20, 0.1);
  --m2-border-strong: rgba(26, 22, 20, 0.18);
  --m2-border-dark: rgba(244, 244, 231, 0.14);

  /* glass */
  --m2-glass: rgba(232, 232, 232, 0.67);
  --m2-glass-edge: linear-gradient(122deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.45) 40%, rgba(255, 255, 255, 0.05) 78%);

  /* type */
  --m2-serif: "Frank Ruhl Libre", Georgia, serif;
  --m2-sans: "Heebo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --m2-mono: "IBM Plex Mono", Menlo, Consolas, monospace;

  /* spacing */
  --m2-s1: 0.25rem; --m2-s2: 0.5rem; --m2-s3: 0.75rem; --m2-s4: 1rem;
  --m2-s5: 1.5rem; --m2-s6: 2rem; --m2-s7: 3rem; --m2-s8: 4rem;
  --m2-s9: 6rem; --m2-s10: 8rem;

  /* radii */
  --m2-r-sm: 8px; --m2-r-md: 14px; --m2-r-lg: 20px; --m2-r-full: 999px;

  /* shadow */
  --m2-shadow-card: 0 1px 2px rgba(26, 22, 20, 0.05), 0 12px 32px rgba(26, 22, 20, 0.07);
  --m2-shadow-float: 0 20px 60px rgba(26, 22, 20, 0.16);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* author display rules (.m2-btn etc.) must never defeat the hidden attribute */
.m2-root [hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.m2-root {
  background: var(--m2-bg);
  color: var(--m2-ink);
  font-family: var(--m2-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.m2-root a { color: inherit; text-decoration: none; }
.m2-root [dir="ltr"] { unicode-bidi: isolate; }
.m2-root img, .m2-root svg { display: block; max-width: 100%; }

.skip-link {
  position: absolute; inset-inline-start: -999px; top: 8px; z-index: 200;
  background: var(--m2-ink); color: var(--m2-cream-text);
  padding: 8px 18px; border-radius: var(--m2-r-full); font-size: 14px;
}
.skip-link:focus { inset-inline-start: 8px; }

/* --------------------------------------------------------------------------
   3. Nav — floating liquid-glass islands
   -------------------------------------------------------------------------- */
.m2-nav {
  position: sticky; top: 0; z-index: 50;
  padding: 16px 28px 0;
  pointer-events: none;
}
.m2-nav-row { position: relative; height: 48px; max-width: 1440px; margin: 0 auto; }
.m2-nav-row > * { pointer-events: auto; }

.m2-isl {
  position: absolute; top: 0;
  background: var(--m2-glass);
  backdrop-filter: blur(10px) saturate(180%) brightness(1.06);
  -webkit-backdrop-filter: blur(10px) saturate(180%) brightness(1.06);
  border-radius: var(--m2-r-full);
  /* contour in the world's free-ball green (Sani, 2026-08-05) */
  border: 1px solid var(--m2-green);
  box-shadow: inset 0 0 10px rgba(26, 22, 20, 0.06), 0 6px 24px rgba(26, 22, 20, 0.08);
}
.m2-isl::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  padding: 0.5px; pointer-events: none;
  background: var(--m2-glass-edge);
  opacity: 0.5;                /* the white sheen stays, under the green line */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}

.m2-isl-links { inset-inline-start: 0; padding: 5px; }
.m2-isl-links ul { position: relative; display: flex; list-style: none; align-items: center; white-space: nowrap; }
.m2-isl-links a {
  display: block; padding: 7px 15px; font-size: 14px; font-weight: 400;
  color: var(--m2-ink-dim); border-radius: var(--m2-r-full);
  position: relative; z-index: 1; transition: color 200ms ease;
}
.m2-isl-links a:hover { color: var(--m2-ink); }
.m2-nav-hl {
  position: absolute; top: 50%; left: 0; z-index: 0;
  width: 0; height: 0; opacity: 0; border-radius: var(--m2-r-full);
  background: rgba(26, 22, 20, 0.06);
  transform: translateY(-50%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
              width 360ms cubic-bezier(0.22, 1, 0.36, 1),
              height 360ms cubic-bezier(0.22, 1, 0.36, 1),
              opacity 200ms ease;
}

.m2-isl-brand {
  inset-inline-start: 50%; transform: translateX(50%);
  display: flex; align-items: center; gap: 10px; padding: 8px 20px;
}
.m2-isl-brand img { height: 22px; }
.m2-isl-brand strong {
  font-family: var(--m2-serif); font-weight: 700; font-size: 17px;
  color: var(--m2-ink); letter-spacing: 0.01em; white-space: nowrap;
}

.m2-isl-actions { inset-inline-end: 0; display: flex; align-items: center; gap: 6px; padding: 5px; }
.m2-isl-actions .m2-nav-link { padding: 7px 14px; font-size: 14px; color: var(--m2-ink-dim); transition: color 200ms ease; }
.m2-isl-actions .m2-nav-link:hover { color: var(--m2-ink); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.m2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-family: inherit;
  border-radius: var(--m2-r-full);
  padding: 12px 26px; font-size: 15px; font-weight: 500;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.m2-btn-sm { padding: 8px 18px; font-size: 14px; }
/* .m2-root prefix: outranks the `.m2-root a { color: inherit }` reset,
   which otherwise paints button text ink-on-ink */
.m2-root .m2-btn-primary, .m2-btn-primary { background: var(--m2-ink); color: var(--m2-cream-text); }
.m2-root .m2-btn-primary:hover { background: #2e2722; }
.m2-root .m2-btn-ghost, .m2-btn-ghost { background: transparent; border: 1px solid var(--m2-border-strong); color: var(--m2-ink); }
.m2-root .m2-btn-ghost:hover { border-color: var(--m2-ink); }
.m2-root .m2-btn-lime, .m2-btn-lime { background: var(--m2-lime); color: var(--m2-ink); }
.m2-root .m2-btn-lime:hover { background: var(--m2-lime-deep); }
.m2-btn:focus-visible, .m2-root a:focus-visible {
  outline: 2px solid var(--m2-ink); outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   5. Layout & section chrome
   -------------------------------------------------------------------------- */
.m2-container { max-width: 1200px; margin: 0 auto; padding-inline: 48px; }
.m2-section { padding-block: var(--m2-s10); }
.m2-section-sm { padding-block: var(--m2-s8); }

.m2-sec-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; }
.m2-sec-num { font-family: var(--m2-mono); font-size: 12px; color: var(--m2-ink-faint); letter-spacing: 0.1em; }
.m2-eyebrow {
  font-family: var(--m2-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; color: var(--m2-ink-dim);
}
.m2-root h1, .m2-root h2 { font-family: var(--m2-serif); font-weight: 500; letter-spacing: -0.015em; }
.m2-root h2 { font-size: clamp(30px, 3.4vw, 44px); line-height: 1.16; max-width: 40rem; margin-bottom: var(--m2-s4); }
.m2-lead { color: var(--m2-ink-dim); font-size: 17px; max-width: 44rem; }

/* dark inverse section */
.m2-inverse { background: var(--m2-dark); color: var(--m2-cream-text); }
.m2-inverse .m2-eyebrow { color: var(--m2-cream-dim); }
.m2-inverse .m2-sec-num { color: var(--m2-cream-faint); }
.m2-inverse .m2-lead { color: var(--m2-cream-dim); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.m2-hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 88vh; display: flex; flex-direction: column; justify-content: center;
}
.m2-hero-canvas, .m2-hero-labels { position: absolute; inset: 0; }
.m2-hero-canvas { width: 100%; height: 100%; display: block; z-index: 0; }
.m2-hero-labels { pointer-events: none; z-index: 2; }
.m2-hero-content {
  position: relative; z-index: 3; pointer-events: none;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 120px 48px 64px;
}
.m2-hero-content a, .m2-hero-content button { pointer-events: auto; }
.m2-hero-copy { max-width: 40rem; }
.m2-hero-copy .m2-eyebrow { margin-bottom: 24px; }
.m2-root h1 {
  font-size: clamp(40px, 5vw, 62px); line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.m2-hero-copy .m2-lead { margin-bottom: 40px; }
.m2-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.m2-hero-hint {
  margin-top: 32px; font-family: var(--m2-mono); font-size: 11px;
  letter-spacing: 0.1em; color: var(--m2-ink-faint);
}

/* world pills — engine overlay (physical left: canvas pixel space is LTR) */
.fw-pill {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 7px; white-space: nowrap;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.05);
  -webkit-backdrop-filter: blur(14px) saturate(1.05);
  border: 1px solid rgba(26, 22, 20, 0.08);
  font-family: var(--m2-sans); font-size: 12.5px; font-weight: 500; color: var(--m2-ink);
  transition: opacity 400ms ease;
  will-change: transform, opacity;
}
.fw-pill i {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--m2-orange); flex-shrink: 0;
}
.fw-pill b {
  font-family: var(--m2-mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.08em; color: var(--m2-ink-dim);
}

/* --------------------------------------------------------------------------
   7. Cards, tiles, grids
   -------------------------------------------------------------------------- */
.m2-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.m2-card {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); padding: 32px 30px;
  box-shadow: var(--m2-shadow-card);
}
.m2-card-title { font-family: var(--m2-sans); font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.m2-card-body { font-size: 14.5px; color: var(--m2-ink-dim); }
.m2-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--m2-cream); border: 1px solid var(--m2-border);
  color: var(--m2-ink); margin-bottom: 18px;
}
.m2-card-icon svg { width: 22px; height: 22px; }

/* bento tiles on the dark section */
.m2-bento { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.m2-tile {
  background: var(--m2-dark-elev); border: 1px solid var(--m2-border-dark);
  border-radius: var(--m2-r-md); padding: 26px 24px;
}
.m2-tile .m2-card-title { color: var(--m2-cream-text); }
.m2-tile .m2-card-body { color: var(--m2-cream-dim); }
.m2-tile .m2-card-icon {
  background: rgba(244, 244, 231, 0.06); border-color: var(--m2-border-dark);
  color: var(--m2-lime);
}
.m2-tile--hi { border-color: rgba(226, 230, 125, 0.4); }
.m2-tile--hi .m2-card-title::after {
  content: "כלול בבסיס"; font-family: var(--m2-mono); font-weight: 500;
  font-size: 10px; letter-spacing: 0.1em; color: var(--m2-ink);
  background: var(--m2-lime); border-radius: 5px; padding: 3px 8px;
  margin-inline-start: 10px; vertical-align: 2px;
}

/* --------------------------------------------------------------------------
   8. Journey flow (owner / renter tracks)
   -------------------------------------------------------------------------- */
.m2-flow-wrap { display: grid; gap: var(--m2-s6); }
.m2-flow-track {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-lg); padding: 30px;
  box-shadow: var(--m2-shadow-card);
}
.m2-flow-track-title { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; margin-bottom: 24px; }
.m2-flow-chip {
  font-family: var(--m2-mono); font-weight: 500; font-size: 11px;
  letter-spacing: 0.1em; background: var(--m2-lime); color: var(--m2-ink);
  border-radius: 6px; padding: 4px 10px;
}
.m2-flow { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 18px; counter-reset: m2step; }
.m2-flow-step { counter-increment: m2step; position: relative; padding-top: 4px; }
.m2-flow-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.m2-flow-num::before {
  content: "0" counter(m2step);
  font-family: var(--m2-mono); font-size: 12px; color: var(--m2-ink-faint);
  letter-spacing: 0.08em;
}
.m2-flow-icon { width: 20px; height: 20px; color: var(--m2-ink); }
.m2-flow-step h4 { font-size: 14.5px; font-weight: 600; margin-bottom: 6px; }
.m2-flow-step p { font-size: 13.5px; color: var(--m2-ink-dim); }

/* --------------------------------------------------------------------------
   9. Forms
   -------------------------------------------------------------------------- */
.m2-field { display: grid; gap: 6px; }
.m2-field label { font-weight: 600; font-size: 13.5px; }
.m2-input {
  width: 100%; padding: 11px 14px; font-family: inherit; font-size: 14.5px;
  color: var(--m2-ink); background: var(--m2-card);
  border: 1px solid var(--m2-border-strong); border-radius: var(--m2-r-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.m2-input:focus {
  outline: none; border-color: var(--m2-ink);
  box-shadow: 0 0 0 3px rgba(226, 230, 125, 0.5);
}
.m2-form-error { margin: 0; font-size: 13.5px; font-weight: 600; color: #a4321c; }

/* --------------------------------------------------------------------------
   10. Footer
   -------------------------------------------------------------------------- */
.m2-footer { border-top: 1px solid var(--m2-border); }
.m2-footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 48px 36px; }
.m2-foot-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--m2-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--m2-ink-dim); margin-bottom: 36px;
}
.m2-foot-status::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--m2-lime-deep);
}
.m2-foot-statement {
  font-family: var(--m2-serif); font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px); line-height: 1.25;
  max-width: 34rem; margin-bottom: 44px;
}
.m2-foot-cols { display: flex; flex-wrap: wrap; gap: 60px; margin-bottom: 44px; }
.m2-foot-col .m2-foot-h {
  font-family: var(--m2-mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--m2-ink-faint); margin-bottom: 13px;
}
.m2-foot-col a { display: block; font-size: 14px; color: var(--m2-ink-dim); margin-bottom: 8px; }
.m2-foot-col a:hover { color: var(--m2-ink); }
.m2-foot-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--m2-border); padding-top: 22px;
  font-family: var(--m2-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: var(--m2-ink-faint);
}

/* --------------------------------------------------------------------------
   11. Sub-page hero — no world canvas, tighter rhythm
   -------------------------------------------------------------------------- */
.m2-subhero { padding: 120px 0 24px; }
.m2-subhero .m2-eyebrow { margin-bottom: 20px; }
.m2-subhero h1 { font-size: clamp(34px, 4.2vw, 52px); max-width: 44rem; }
.m2-subhero .m2-lead { margin-top: 18px; }
.m2-subhero .m2-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* --------------------------------------------------------------------------
   12. Device frame + status vignette (light skin, world status colours)
   -------------------------------------------------------------------------- */
.m2-device {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); overflow: hidden; box-shadow: var(--m2-shadow-card);
  max-width: 560px;
}
.m2-device-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-bottom: 1px solid var(--m2-border);
  background: var(--m2-cream);
}
.m2-device-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--m2-border-strong); }
.m2-device-title {
  margin-inline-start: auto; font-family: var(--m2-mono);
  font-size: 11px; letter-spacing: 0.06em; color: var(--m2-ink-dim);
}
.m2-device-body { padding: 20px; }
.m2-vignette-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }
.m2-vignette-cell { height: 30px; border-radius: 7px; border: 1px solid var(--m2-border); }
.m2-vignette-cell[data-status="free"] { background: rgba(106, 168, 120, 0.2); border-color: rgba(106, 168, 120, 0.55); }
.m2-vignette-cell[data-status="booked"] { background: var(--m2-orange); border-color: var(--m2-orange); }
.m2-vignette-cell[data-status="blocked"] {
  background: repeating-linear-gradient(45deg, var(--m2-cream), var(--m2-cream) 5px, rgba(26, 22, 20, 0.07) 5px, rgba(26, 22, 20, 0.07) 10px);
}
.m2-vignette-legend { display: flex; gap: 18px; margin-top: 14px; font-size: 13px; color: var(--m2-ink-dim); }
.m2-vignette-legend-item { display: inline-flex; align-items: center; gap: 7px; }
.m2-vignette-legend-dot { width: 11px; height: 11px; border-radius: 4px; border: 1px solid var(--m2-border); }
.m2-vignette-legend-dot[data-status="free"] { background: rgba(106, 168, 120, 0.35); border-color: rgba(106, 168, 120, 0.6); }
.m2-vignette-legend-dot[data-status="booked"] { background: var(--m2-orange); border-color: var(--m2-orange); }
.m2-vignette-legend-dot[data-status="blocked"] {
  background: repeating-linear-gradient(45deg, var(--m2-cream), var(--m2-cream) 3px, rgba(26, 22, 20, 0.1) 3px, rgba(26, 22, 20, 0.1) 6px);
}
.m2-visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* --------------------------------------------------------------------------
   13. Tables (light)
   -------------------------------------------------------------------------- */
.m2-table {
  width: 100%; border-collapse: collapse;
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); overflow: hidden;
}
.m2-table th, .m2-table td {
  text-align: start; padding: 11px 18px;
  border-bottom: 1px solid var(--m2-border); font-size: 14px;
}
.m2-table th {
  font-family: var(--m2-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--m2-ink-faint); background: var(--m2-cream); font-weight: 500;
}
.m2-table tbody tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------------------------
   14. Injected-content contract — class names emitted by js/pages/*
   controllers (vertical-rooms live demo, roi calculator). DO NOT rename:
   the JS builds these exact classes; here they just wear the new skin.
   -------------------------------------------------------------------------- */
.m2-root .mkt-tile {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); padding: 26px 24px;
  box-shadow: var(--m2-shadow-card);
}
.m2-root .mkt-card-title { font-weight: 600; font-size: 16.5px; color: var(--m2-ink); margin-bottom: 8px; }
.m2-root .mkt-card-body { font-size: 14px; color: var(--m2-ink-dim); margin-top: 6px; }
.m2-root .mkt-room-price {
  font-family: var(--m2-serif); font-weight: 700; font-size: 22px;
  color: var(--m2-ink); margin-top: 10px;
}
.m2-root .mkt-tag-list { display: flex; flex-wrap: wrap; gap: 7px; list-style: none; margin: 10px 0 0; padding: 0; }
.m2-root .mkt-tag {
  font-size: 12px; color: var(--m2-ink-dim); background: var(--m2-cream);
  border: 1px solid var(--m2-border); border-radius: var(--m2-r-full); padding: 3px 11px;
}
.m2-root .mkt-empty-state { color: var(--m2-ink-faint); font-size: 14px; }
.m2-root .mkt-package-card {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); padding: 22px; text-align: center;
  box-shadow: var(--m2-shadow-card);
}
.m2-root .mkt-package-hours { font-size: 13.5px; color: var(--m2-ink-dim); }
.m2-root .mkt-package-price { font-family: var(--m2-serif); font-weight: 700; font-size: 26px; color: var(--m2-ink); }
.m2-package-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 14px; }
.m2-policy-box {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-inline-start: 3px solid var(--m2-lime-deep);
  border-radius: var(--m2-r-sm); padding: 20px 22px;
}
.m2-root .roi-result-card {
  background: var(--m2-card); border: 1px solid var(--m2-border);
  border-radius: var(--m2-r-md); padding: 22px; text-align: center;
  box-shadow: var(--m2-shadow-card);
}
.m2-root .roi-result-value {
  font-family: var(--m2-serif); font-weight: 700; font-size: 30px;
  direction: ltr; unicode-bidi: isolate;
}
.m2-root .roi-result-value[data-negative="true"] { color: #a4321c; }
.m2-root .roi-result-value[data-negative="false"] { color: #47764f; }
.m2-root .roi-result-label { color: var(--m2-ink-dim); font-size: 13.5px; margin-top: 8px; }

/* presentation mode (marketing-flow.js toggles this body class) */
body.mkt-flow-presenting .m2-nav,
body.mkt-flow-presenting .m2-footer { display: none; }

/* nav account hooks */
.m2-nav-greeting { font-size: 13px; color: var(--m2-ink-dim); padding-inline: 10px; white-space: nowrap; }
.m2-isl-links a[aria-current="page"] { color: var(--m2-ink); font-weight: 500; }

/* --------------------------------------------------------------------------
   15. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .m2-isl-links { display: none; }
  .m2-container, .m2-hero-content { padding-inline: 24px; }
  .m2-hero { min-height: 0; }
  .m2-hero-content { padding-top: 96px; }
  .m2-section { padding-block: var(--m2-s8); }
  .m2-footer-inner { padding: 48px 24px 28px; }
}
