@font-face { font-family: 'Heebo'; src: url('fonts/Heebo/Heebo-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Heebo'; src: url('fonts/Heebo/Heebo-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Heebo'; src: url('fonts/Heebo/Heebo-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Heebo'; src: url('fonts/Heebo/Heebo-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Assistant'; src: url('fonts/Assistant/Assistant-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Assistant'; src: url('fonts/Assistant/Assistant-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Assistant'; src: url('fonts/Assistant/Assistant-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Assistant'; src: url('fonts/Assistant/Assistant-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }

:root {
  --turquoise: #40B8BB;
  --magenta: #BC67A5;
  --yellow: #FDCC67;
  --green: #9AC879;
  --sand: #D1C29B;
  --charcoal: #3C3C3B;
  --blue-grey: #5B6489;
  --white: #FFFDF9;
  --sand-light: #F5EFE1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  color: var(--charcoal);
  direction: rtl;
  overflow-x: hidden;
  background-color: var(--white);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(64,184,187,0.12), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(188,103,165,0.11), transparent 42%),
    radial-gradient(circle at 18% 88%, rgba(91,100,137,0.12), transparent 42%),
    radial-gradient(circle at 90% 82%, rgba(154,200,121,0.12), transparent 42%);
  background-attachment: fixed;
  background-size: cover;
}

h1, h2, h3, .nav-logo, .btn {
  font-family: 'Assistant', 'Heebo', sans-serif;
  font-weight: 800;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

/* ===== GLASS UTILITY ===== */
.glass {
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 8px 32px rgba(60,60,59,0.08);
  border-radius: 24px;
}
.glass-dark {
  background: rgba(60,60,59,0.28);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.nav.scrolled {
  background: rgba(255, 253, 249, 0.7);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 2px 16px rgba(60,60,59,0.08);
  padding: 9px 0;
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo-wrap { display: flex; flex-direction: column; gap: 4px; }
/* white by default: the nav sits transparent over the dark hero image at first, so
   the logo's true navy/magenta colors would be nearly invisible there -- a
   brightness(0) invert(1) filter flattens it to solid white. Once .nav.scrolled
   kicks in (light background), the filter lifts and the real logo colors show. */
.nav-logo-img {
  height: 27px; width: auto; display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,0.4));
  transition: filter .3s ease;
}
.nav.scrolled .nav-logo-img { filter: none; }
.nav-logo-sub { font-family: 'Assistant', sans-serif; font-weight: 600; font-size: 11px; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; line-height: 1; text-shadow: 0 1px 6px rgba(0,0,0,0.4); transition: color .3s ease; }
.nav.scrolled .nav-logo-sub { color: var(--blue-grey); text-shadow: none; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--charcoal); text-decoration: none; font-weight: 500; font-size: 15px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--turquoise); }
.nav-cta { padding: 10px 20px !important; font-size: 14px !important; transition: opacity .3s ease, transform .3s ease; }
.nav-cta.nav-cta-hide { opacity: 0; transform: translateY(-6px); pointer-events: none; }

.nowrap { white-space: nowrap; }

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ===== BUTTONS =====
   Two treatments, both with a glossy top highlight + inner shading for a real
   3D pill feel (matches the "liquid glass" language used elsewhere on the
   page): E = amber/gold gradient with navy text, the default everywhere;
   F = dark navy with a thin gold border + gold text, reserved for buttons
   that sit on light backgrounds (nav, the popup form) where a navy fill
   reads with more contrast than gold would against a light backdrop. */
.btn {
  position: relative; overflow: hidden;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  padding: 16px 36px;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
  border: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.btn-primary, .btn-final {
  background: linear-gradient(180deg, #E4BA55 0%, #C88F26 100%);
  color: #1E2340;
  box-shadow: 0 10px 24px rgba(180,130,30,0.45), inset 0 -3px 6px rgba(120,80,10,0.35), inset 0 1px 1px rgba(255,255,255,0.7);
}
.btn-primary:hover, .btn-final:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(180,130,30,0.55), inset 0 -3px 6px rgba(120,80,10,0.35), inset 0 1px 1px rgba(255,255,255,0.7);
}
.btn-lg { font-size: 18px; padding: 18px 42px; }
.btn-final { font-size: 20px; padding: 20px 52px; }
.btn-final:hover { transform: translateY(-3px) scale(1.03); }

/* F: navy + gold outline, for buttons on light backgrounds */
.nav-cta, .cta-modal-submit {
  background: linear-gradient(180deg, #2A2F52 0%, #1E2340 100%) !important;
  color: #FDCC67 !important;
  border: 1.5px solid #E8B94A !important;
  box-shadow: 0 10px 22px rgba(20,22,45,0.3), inset 0 -3px 6px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.15) !important;
}
.nav-cta::before, .cta-modal-submit::before {
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 50%);
}
.nav-cta:hover, .cta-modal-submit:hover {
  box-shadow: 0 14px 28px rgba(20,22,45,0.4), inset 0 -3px 6px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.15) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #1E2340 url('assets/hero-bg.jpg') center 40% / cover no-repeat;
  padding: 120px 24px 80px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 64px));
}
/* darkens the text zone so white type stays legible over the busy/bright parts of the art */
.hero-scrim {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(20,22,45,0.72) 0%, rgba(20,22,45,0.38) 55%, rgba(20,22,45,0) 80%),
    linear-gradient(180deg, rgba(20,22,45,0.35) 0%, rgba(20,22,45,0.15) 30%, rgba(20,22,45,0.15) 70%, rgba(20,22,45,0.55) 100%);
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 860px; }
.hero-kicker {
  display: inline-block;
  font-family: 'Assistant', sans-serif; font-weight: 700; font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.95); margin: 0 auto 18px;
  background: rgba(20,22,45,0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 7px 20px;
  border-radius: 100px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-h1 {
  color: var(--white);
  font-size: clamp(38px, 7.5vw, 64px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 26px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.8);
}
.hero-sub {
  color: #fff;
  font-size: clamp(18px, 2.6vw, 23px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 44px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.hero-cta-lead { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: 0 0 auto; box-shadow: 0 0 6px rgba(154,200,121,0.8); }
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero-sub { font-size: 17px; margin-bottom: 34px; }
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 1; color: rgba(255,255,255,0.7);
}
.scroll-hint svg { animation: scrollbounce 1.8s ease-in-out infinite; display: block; }
@keyframes scrollbounce { 0%,100% { transform: translateY(0); opacity: .6; } 50% { transform: translateY(8px); opacity: 1; } }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-tight-top { padding-top: 40px; }
@media (max-width: 700px) {
  .section { padding: 52px 0; }
  .section-tight-top { padding-top: 20px; }
  .scene-transition { padding: 20px 0; }
  .finale-divider { margin: 40px auto; }
  .section-finale { clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%); }
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 36px));
    /* shorter than the full screen on purpose: the diagonal edge + a peek of the
       next section stay visible before any scrolling, signalling there's more below */
    min-height: 88svh;
  }
}

/* dynamic transition beat between sections */
.scene-transition {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 32px 0;
}
.scene-transition::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 140px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--turquoise), var(--magenta), var(--yellow), transparent);
  background-size: 200% 100%;
  animation: sceneFlow 3s linear infinite;
  opacity: 0.55;
}
.scene-transition span {
  position: relative; z-index: 1;
  width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--magenta));
  animation: scenePulse 1.6s ease-in-out infinite;
}
.scene-transition span:nth-child(2) { animation-delay: .2s; background: linear-gradient(135deg, var(--magenta), var(--yellow)); }
.scene-transition span:nth-child(3) { animation-delay: .4s; background: linear-gradient(135deg, var(--yellow), var(--green)); }
@keyframes scenePulse {
  0%, 100% { transform: scale(0.7); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}
@keyframes sceneFlow { to { background-position: -200% 0; } }
.scene-transition-light::before { opacity: 0.8; }
.scene-transition-light span { box-shadow: 0 0 8px rgba(255,255,255,0.6); }

/* ===== SECTION BACKGROUND SYSTEM =====
   Two confident treatments only -- the plain cream body default ("light"), and a
   dark navy gradient matching the finale ("dark") -- alternating so no two
   consecutive sections share one. Earlier pastel in-between tints (a yellowish
   sand, a pale lavender) read as too washed-out/uniform, so this replaces them
   with the same light/dark contrast the finale already uses successfully. */
.bg-dark-navy {
  background: linear-gradient(180deg, #1E2340 0%, #252B47 100%);
}
.bg-dark-navy .h2-dark { color: var(--white); }
.bg-dark-navy .body-dark { color: rgba(255,255,255,0.92); }
.bg-dark-navy .body-dark-emph { color: var(--yellow); }
.bg-dark-navy .scrollytell-lead { color: var(--white); }
.bg-dark-navy .value-total { color: var(--white); }
.bg-dark-navy .value-total-amount { color: var(--yellow); }
.bg-dark-navy .price-explain { color: rgba(255,255,255,0.92); }
.bg-dark-navy .price-explain strong, .bg-dark-navy .price-explain em { color: var(--yellow); }
.bg-dark-navy .price-payments { color: rgba(255,255,255,0.9); }
.bg-dark-navy .price-big { color: var(--yellow); }
/* glass cards inside a dark section get more opaque so text on top keeps strong
   contrast, instead of relying on backdrop-filter picking up the dark backdrop */
.bg-dark-navy .glass { background: rgba(255,255,255,0.88); }
#transformation.bg-dark-navy { padding-top: 110px; }
@media (max-width: 700px) {
  #reframe { padding-bottom: 20px; }
  #transformation.bg-dark-navy { padding-top: 56px; }
}
.section-transition-line {
  text-align: center; font-style: normal; color: var(--charcoal);
  font-size: 19px; font-weight: 500; margin-bottom: 40px;
}
.transition-logo-img {
  display: block; height: clamp(46px, 7vw, 70px); width: auto;
  margin: 18px auto; max-width: 90%;
}

.h2-dark, .h2-light {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 28px;
}
.h2-dark { color: var(--charcoal); }
.h2-light { color: var(--white); }
.h2-xl { font-size: clamp(30px, 4.2vw, 46px); }
@media (max-width: 600px) {
  #included h2.h2-xl { text-align: center; }
}

.body-light { color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.8; margin-bottom: 18px; }
.body-dark { font-size: 18px; line-height: 1.85; color: var(--charcoal); margin-bottom: 16px; text-align: center; }
.body-dark-emph { color: var(--magenta); font-weight: 700; font-size: 20px; }
.body-dark-question { font-style: italic; font-size: 20px; margin-top: 28px; }

/* ===== RECOGNITION ===== */
.flow-text {
  text-align: center;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.9;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.flow-text-big { font-size: clamp(20px, 2.6vw, 26px); font-weight: 600; }
.hl { color: var(--magenta); font-size: 1.08em; font-weight: 700; }

/* ===== STICKY STACKING CARDS (מה קורה אחרי) ===== */
/* pure CSS: each card is `position: sticky` with a slightly larger `top` offset
   than the one before it. As you scroll, each card catches and holds at its own
   offset while the next one slides up and covers it, leaving a thin sliver of
   the previous card peeking out — a physical "stack" forming as you scroll down.
   No JS, and unlike a swipeable carousel there's no card-like affordance that
   invites a sideways gesture — the only thing that moves it is page scroll. */
/* the lead question stays pinned on screen for the whole card-stacking scroll --
   only the cards underneath it change. It sits in its own sticky layer above
   .stack-wrap, at a top offset small enough to clear the fixed nav. */
.stack-heading {
  position: sticky; top: 92px; z-index: 5;
  text-align: center; margin-bottom: 0;
}
.scrollytell-lead {
  text-align: center; max-width: 640px; margin: 0 auto; padding: 0 24px;
  color: var(--charcoal); font-size: clamp(20px, 3vw, 28px); font-weight: 600;
  line-height: 1.5; margin-bottom: 22px;
}
.scrollytell-pinned-question {
  text-align: center; color: var(--magenta);
  font-size: clamp(24px, 3.6vw, 34px); font-weight: 800;
}
/* .stack-scene bounds the sticky heading's containing block tightly around
   itself + the cards, with no section padding included -- otherwise the heading
   would stay pinned through the section's own trailing bottom padding too,
   visibly overlapping the next section's content before finally letting go. */
.stack-scene { position: relative; }
.stack-wrap { position: relative; max-width: 640px; margin: 0 auto; padding: 4px 24px 12px; }
.stack-item {
  position: sticky;
  height: 70vh;
  display: flex; align-items: center; justify-content: center;
}
.stack-item:nth-child(1) { top: 210px; }
.stack-item:nth-child(2) { top: 226px; }
.stack-item:nth-child(3) { top: 242px; }
.stack-item:nth-child(4) { top: 258px; }
.stack-item:nth-child(5) { top: 274px; }
/* soft liquid-glass cards, each with a small accent dot + tinted glow instead of
   a hard flat block -- rounder, lighter, matches the glass language used everywhere
   else on the page rather than reading as a stiff, dated paper-card component */
.stack-card {
  position: relative;
  width: 100%; border-radius: 32px;
  padding: 48px 38px 42px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 24px 60px -14px var(--card-glow), inset 0 1px 1px rgba(255,255,255,0.9);
}
.stack-card-dot {
  display: block; width: 14px; height: 14px; border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--card-accent);
  box-shadow: 0 0 0 7px var(--card-ring);
}
.stack-card p {
  position: relative; z-index: 1; margin: 0; color: var(--charcoal);
  font-size: clamp(19px, 2.4vw, 24px); font-weight: 700; line-height: 1.6;
}
.stack-card--1 { --card-accent: var(--turquoise); --card-glow: rgba(64,184,187,0.32); --card-ring: rgba(64,184,187,0.16); }
.stack-card--2 { --card-accent: var(--magenta); --card-glow: rgba(188,103,165,0.32); --card-ring: rgba(188,103,165,0.16); }
.stack-card--3 { --card-accent: #D6A332; --card-glow: rgba(214,163,50,0.32); --card-ring: rgba(214,163,50,0.16); }
.stack-card--4 { --card-accent: var(--green); --card-glow: rgba(154,200,121,0.32); --card-ring: rgba(154,200,121,0.16); }
.stack-card--5 { --card-accent: var(--blue-grey); --card-glow: rgba(91,100,137,0.32); --card-ring: rgba(91,100,137,0.16); }
@media (max-width: 700px) {
  .stack-heading { top: 76px; }
  .stack-item { height: 50vh; }
  .stack-item:nth-child(1) { top: 150px; }
  .stack-item:nth-child(2) { top: 164px; }
  .stack-item:nth-child(3) { top: 178px; }
  .stack-item:nth-child(4) { top: 192px; }
  .stack-item:nth-child(5) { top: 206px; }
  .stack-card { padding: 36px 26px 30px; border-radius: 26px; }
}

/* ===== STORY ===== */
.story-grid { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; margin-top: 32px; }
@media (max-width: 760px) { .story-grid { grid-template-columns: 1fr; } }
.story-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 16px 40px rgba(60,60,59,0.15);
}
@media (max-width: 760px) {
  .story-photo-wrap { max-width: 190px; margin: 0 auto; }
}
.story-greeting { font-size: clamp(22px, 3vw, 28px); margin-bottom: 16px; }
.story-text p { font-size: 17px; line-height: 1.85; margin-bottom: 18px; color: var(--charcoal); }
.authenticity-box {
  background: rgba(188,103,165,0.08);
  border-right: 4px solid var(--magenta);
  padding: 22px 24px;
  border-radius: 12px;
  font-style: italic;
}

/* ===== INCLUDED / GRID ===== */
.item-card-main {
  display: flex; align-items: center; gap: 28px;
  padding: 36px 32px; margin-top: 32px;
  border: 1.5px solid rgba(64,184,187,0.4) !important;
  box-shadow: 0 12px 40px rgba(64,184,187,0.15) !important;
}
@media (max-width: 600px) { .item-card-main { flex-direction: column; text-align: center; } }
.item-visual-main {
  flex: 0 0 auto; width: 220px; height: 165px; border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(60,60,59,0.18);
}
.item-visual-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 600px) { .item-visual-main { width: 100%; max-width: 320px; height: auto; aspect-ratio: 4/3; } }
.item-card-main-text h3 { font-size: 24px; margin: 6px 0 10px; }
.item-card-main-text p { font-size: 16px; font-weight: 500; color: var(--blue-grey); line-height: 1.6; }
.bonus-label {
  text-align: center; color: var(--blue-grey); font-weight: 600; font-size: 15px;
  margin: 40px 0 8px;
}

/* ===== BONUS COVERFLOW (native port, no React/shadcn needed for a plain-JS site) ===== */
.bonus-coverflow { margin-top: 24px; }
.bonus-coverflow-frame {
  position: relative;
  overflow: hidden;
  padding: 24px 56px 44px;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  perspective: 1200px;
}
.bonus-coverflow-frame:active { cursor: grabbing; }
/* soft colorful aura behind the glass cards, so their transparency has something to reveal */
.bonus-coverflow-frame::before {
  content: '';
  position: absolute;
  inset: -60px 5%;
  background:
    radial-gradient(circle at 28% 35%, rgba(64,184,187,0.22), transparent 62%),
    radial-gradient(circle at 74% 65%, rgba(188,103,165,0.2), transparent 62%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.bonus-coverflow-track {
  position: relative;
  z-index: 1;
  height: 380px;
  transform-style: preserve-3d;
}
.bonus-coverflow-track .item-card {
  position: absolute;
  top: 0; left: 50%;
  width: clamp(230px, 62vw, 300px);
  height: 380px;
  padding: 30px 26px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.9),
    inset 0 -18px 30px rgba(255,255,255,0.12),
    0 20px 45px rgba(60,60,59,0.14);
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
  user-select: none;
  will-change: transform, opacity;
}
/* liquid-glass specular highlight: a bright sheen along the top edge, like light catching curved glass */
.bonus-coverflow-track .item-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 24%);
  pointer-events: none;
}
.bonus-coverflow-track .item-card::after {
  content: '';
  position: absolute;
  top: 0; left: 14%; right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95), transparent);
  pointer-events: none;
}
.bonus-coverflow-track .item-card.is-active {
  border-color: rgba(255,255,255,0.85);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,1),
    inset 0 -18px 34px rgba(255,255,255,0.18),
    0 24px 55px rgba(60,60,59,0.18),
    0 0 40px rgba(255,255,255,0.5);
}
.bonus-coverflow-track .item-card:hover {
  background: rgba(255,255,255,0.32);
}
@media (max-width: 600px) {
  .bonus-coverflow-frame { padding: 20px 8px 40px; }
}

.coverflow-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.8); backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px rgba(60,60,59,0.15);
  font-size: 22px; line-height: 1; color: var(--charcoal); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 200; transition: background .2s ease, transform .2s ease;
}
.coverflow-nav:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.coverflow-prev { right: 4px; }
.coverflow-next { left: 4px; }
@media (max-width: 600px) { .coverflow-nav { display: none; } }

.coverflow-dots { display: flex; justify-content: center; gap: 8px; margin-top: 4px; }
.coverflow-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(60,60,59,0.2);
  transition: background .2s ease, transform .2s ease;
  cursor: pointer;
}
.coverflow-dots span.active { background: var(--turquoise); transform: scale(1.35); }
.item-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
  background: rgba(255,255,255,0.5);
  transition: transform .3s ease;
}
.item-card:hover .item-icon { transform: scale(1.1) rotate(-4deg); }
.item-image-placeholder {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; text-align: center; line-height: 1.3; color: var(--blue-grey);
  background: rgba(255,255,255,0.5);
  border: 1.5px dashed rgba(60,60,59,0.25);
  margin-bottom: 16px; padding: 4px;
}
.item-visual { width: 100%; height: 112px; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; }

/* --- WhatsApp-style chat mockup --- */
.item-visual-chat {
  flex-direction: column; align-items: stretch; justify-content: center; gap: 8px;
  background: #E9E3D8; border-radius: 14px; padding: 12px; box-sizing: border-box;
}
.chat-bubble { max-width: 88%; padding: 7px 11px; border-radius: 12px; font-size: 11.5px; line-height: 1.4; color: #2b2b2a; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.chat-bubble-in { align-self: flex-end; background: #fff; border-top-right-radius: 2px; }
.chat-bubble-out { align-self: flex-start; background: #DCF8C6; border-top-left-radius: 2px; }
.chat-tick { color: #4FC3F7; font-size: 10px; }

/* --- Book cover mockup --- */
.item-visual-book img { max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 10px 18px rgba(60,60,59,0.25)); }

/* --- Laptop dashboard mockup --- */
.item-visual-laptop { flex-direction: column; gap: 0; }
.laptop-screen {
  width: 90%; aspect-ratio: 16/10; background: #fff; border: 3px solid var(--charcoal);
  border-radius: 8px 8px 2px 2px; padding: 8%; box-sizing: border-box; overflow: hidden;
}
.laptop-base { width: 104%; height: 7px; background: linear-gradient(180deg,#4b4b4a,#2c2c2b); border-radius: 0 0 4px 4px; }
.dash-mini { display: flex; flex-direction: column; gap: 8%; height: 100%; }
.dash-mini-topbar { height: 14%; background: rgba(60,60,59,0.08); border-radius: 3px; }
.dash-mini-progress-track { height: 20%; background: rgba(60,60,59,0.08); border-radius: 6px; overflow: hidden; }
.dash-mini-progress-fill { width: 55%; height: 100%; background: linear-gradient(90deg, var(--turquoise), var(--magenta)); }
.dash-mini-row { height: 16%; background: rgba(60,60,59,0.10); border-radius: 4px; }
.dash-mini-row.short { width: 60%; }

/* --- AI agent chat mockup --- */
.item-visual-ai {
  flex-direction: row; align-items: center; gap: 12px;
  background: linear-gradient(135deg, rgba(64,184,187,0.12), rgba(188,103,165,0.12));
  border-radius: 14px; padding: 0 16px; box-sizing: border-box;
}
.ai-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--turquoise), var(--magenta));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 16px; box-shadow: 0 4px 10px rgba(60,60,59,0.15);
}
.ai-lines { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.ai-line { height: 8px; border-radius: 4px; background: rgba(60,60,59,0.14); }
.ai-line.short { width: 70%; }
.ai-line.shorter { width: 45%; }

/* --- Planner/template mockup --- */
.planner-card {
  width: 86%; background: #fff; border-radius: 12px; padding: 12px 14px;
  box-sizing: border-box; box-shadow: 0 6px 16px rgba(60,60,59,0.12);
  display: flex; flex-direction: column; gap: 9px;
}
.planner-dots { display: flex; justify-content: space-between; margin-bottom: 2px; }
.planner-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(60,60,59,0.15); }
.planner-dots span:nth-child(3), .planner-dots span:nth-child(5) { background: var(--turquoise); }
.planner-row { display: flex; align-items: center; gap: 8px; }
.planner-check {
  width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0;
  border: 1.5px solid rgba(60,60,59,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #fff; line-height: 1;
}
.planner-row.checked .planner-check { background: var(--green); border-color: var(--green); }
.planner-bar { flex: 1; height: 8px; border-radius: 4px; background: rgba(60,60,59,0.10); }
.planner-bar.short { flex: none; width: 55%; }

.item-card h3 { font-size: 18px; margin-bottom: 10px; }
.item-card p { font-size: 15px; font-weight: 500; color: var(--blue-grey); line-height: 1.6; margin-top: 10px; }
.value-tag {
  display: inline-flex; font-family: 'Assistant', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--turquoise); background: rgba(64,184,187,0.12);
  padding: 4px 12px; border-radius: 100px;
}

/* ===== STEPS (pinned flow cards) ===== */
.steps-flow { position: relative; margin-top: 48px; }
.steps-flow-svg { display: none; }
.flow-card {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 28px rgba(60,60,59,0.1);
  text-align: right;
  margin-bottom: 24px;
  transition: transform .35s ease, box-shadow .35s ease, opacity .5s ease;
  opacity: 0;
  transform: translateY(20px);
}
/* mobile: same idea as the desktop curved dashed path, just a straight animated
   vertical line running down behind the stacked cards instead of a curve */
@media (max-width: 699px) {
  .steps-flow::before {
    content: '';
    position: absolute; top: 16px; bottom: 16px; right: 50%; transform: translateX(50%);
    width: 2px; z-index: 0;
    background-image: repeating-linear-gradient(180deg, var(--turquoise) 0 8px, transparent 8px 18px);
    background-size: 2px 36px;
    opacity: 0.55;
    animation: pathFlowVertical 1s linear infinite;
  }
  @keyframes pathFlowVertical { to { background-position-y: -36px; } }
}
.flow-card.st-visible { opacity: 1; transform: translateY(0); }
.flow-pin { display: block; margin: 0 auto 10px; }
.flow-num {
  display: block; font-family: 'Assistant', sans-serif; font-weight: 900;
  font-size: 34px; line-height: 1; margin-bottom: 10px;
}
.flow-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--charcoal); }
.flow-card p { font-size: 15px; font-weight: 500; color: var(--blue-grey); line-height: 1.6; }

@media (min-width: 700px) {
  .steps-flow { height: 780px; }
  .steps-flow-svg {
    display: block; position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0;
  }
  .steps-flow-line {
    stroke: var(--turquoise);
    stroke-width: 2.5;
    stroke-dasharray: 9 9;
    opacity: 0.5;
    animation: pathFlowCurve 1.2s linear infinite;
  }
  @keyframes pathFlowCurve { to { stroke-dashoffset: -18; } }
  .flow-card {
    position: absolute; width: 300px; margin-bottom: 0; z-index: 1;
  }
  .flow-card.st-visible:hover { transform: translateY(-4px) scale(1.03) rotate(0deg) !important; box-shadow: 0 16px 36px rgba(60,60,59,0.16); }
  .flow-card-1 { top: 0; right: 0; }
  .flow-card-1.st-visible { transform: rotate(-3deg); }
  .flow-card-2 { top: 220px; left: 0; }
  .flow-card-2.st-visible { transform: rotate(3deg); }
  .flow-card-3 { top: 460px; right: 30px; }
  .flow-card-3.st-visible { transform: rotate(-2deg); }
}

/* ===== TESTIMONIALS ===== */
.test-tag { display: block; text-align: center; font-size: 12px; font-weight: 800; color: var(--turquoise); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 20px; align-items: stretch; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card { padding: 32px 28px 26px; display: flex; flex-direction: column; }
.testimonial-mark { font-size: 46px; font-weight: 800; color: var(--turquoise); opacity: 0.25; line-height: 1; margin-bottom: -8px; font-family: Georgia, serif; }
.testimonial-quote { font-size: 17px; font-weight: 700; line-height: 1.55; color: var(--charcoal); margin-bottom: 10px; }
.testimonial-body { font-size: 14px; font-weight: 500; line-height: 1.7; color: var(--blue-grey); flex-grow: 1; margin-bottom: 20px; }
@media (max-width: 700px) {
  .testimonial-quote { font-size: 18px; line-height: 1.5; }
  .testimonial-body { font-size: 15.5px; line-height: 1.75; color: var(--charcoal); }
}
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid rgba(60,60,59,0.12); padding-top: 16px; margin-top: auto; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-placeholder { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; background: rgba(60,60,59,0.08); border: 1px solid rgba(60,60,59,0.12); }
.testimonial-name-wrap { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.testimonial-role { font-weight: 500; color: var(--blue-grey); font-size: 12.5px; }

/* ===== INVESTMENT ===== */
.value-stack { max-width: 640px; margin: 36px auto 0; padding: 8px 28px; }
.value-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid rgba(60,60,59,0.1);
  font-size: 16px;
}
.value-row:last-child { border-bottom: none; }
.value-amount {
  display: inline-flex; font-weight: 800; font-size: 15px; white-space: nowrap; margin-right: 12px;
  color: var(--white); background: var(--turquoise);
  padding: 6px 14px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(64,184,187,0.35);
}
.value-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 20px 28px; margin-top: 14px; border-top: 2px solid var(--charcoal);
  font-size: 20px; font-weight: 800; max-width: 640px; margin-inline: auto;
}
.value-total-amount { color: var(--magenta); font-size: 28px; }
.price-explain { text-align: center; max-width: 560px; margin: 36px auto 0; font-size: 17px; line-height: 1.8; color: var(--charcoal); }
.price-explain strong, .price-explain em { color: var(--magenta); font-style: normal; font-weight: 800; }
.price-explain p:last-child { font-size: 24px; margin-top: 6px; }
.price-ladder { text-align: center; margin-top: 20px; }
.strike { text-decoration: line-through; opacity: 0.7; }
.price-big { font-size: 44px; font-weight: 900; color: var(--turquoise); font-family: 'Assistant', sans-serif; display: block; margin-top: 8px; }
.price-payments { font-size: 18px; font-weight: 700; color: var(--blue-grey); margin: 8px 0 28px; }

/* ===== QUALIFICATION ===== */
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .qual-grid { grid-template-columns: 1fr; } }
.qual-col { padding: 32px; border-width: 2px !important; }
.qual-yes { border-color: rgba(154,200,121,0.6) !important; }
.qual-no { border-color: rgba(188,103,165,0.45) !important; }
.qual-col h3 { font-size: 19px; margin-bottom: 16px; }
.neg-word { color: var(--magenta); font-weight: 900; text-decoration: underline; text-decoration-color: rgba(188,103,165,0.4); }
.qual-col ul { padding-right: 20px; display: flex; flex-direction: column; gap: 12px; list-style: disc; }
.qual-col li { font-size: 15px; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { margin-top: 32px; padding: 8px 28px; }
.faq-item { border-bottom: 1px solid rgba(60,60,59,0.15); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; background: none; border: none; text-align: right;
  font-family: 'Assistant', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--charcoal); padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-toggle { font-size: 22px; color: var(--magenta); transition: transform .3s ease; flex: 0 0 auto; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding-bottom: 20px; color: var(--blue-grey); font-size: 15px; font-weight: 500; line-height: 1.7; }
.faq-a p a { color: var(--turquoise); text-decoration: underline; font-weight: 700; }

/* ===== FINALE (close + final CTA share one background) ===== */
.section-finale {
  background: linear-gradient(165deg, #1E2340 0%, #252B47 45%, var(--magenta) 100%);
  text-align: center;
  clip-path: polygon(0 56px, 100% 0, 100% 100%, 0 100%);
  padding-top: 140px;
}
@media (max-width: 700px) { .section-finale { padding-top: 84px; } }
.close-text { color: rgba(255,255,255,0.95); font-weight: 600; font-size: clamp(19px, 2.4vw, 26px); line-height: 1.85; }
.close-highlight { color: var(--yellow); font-weight: 700; }
.finale-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.25); margin: 64px auto; }
.section-finale .h2-light { margin-bottom: 32px; }
.final-note { color: rgba(255,255,255,0.9); margin-top: 20px; font-size: 16px; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { text-align: center; padding: 32px; }
.footer-sig { font-family: 'Assistant', sans-serif; font-weight: 800; font-size: 20px; color: var(--charcoal); margin-top: 10px; }
.footer-logo { height: 48px; width: auto; }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CTA MODAL (name+email capture before handing off to Calendly) ===== */
.cta-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,22,45,0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.cta-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cta-modal {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--white);
  border-radius: 28px;
  padding: 58px 32px 32px;
  box-shadow: 0 30px 70px rgba(20,22,45,0.35);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform .25s ease;
}
.cta-modal-overlay.open .cta-modal { transform: translateY(0) scale(1); }
.cta-modal-close {
  position: absolute; top: 16px; left: 16px;
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(60,60,59,0.08); color: var(--charcoal);
  font-size: 20px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.cta-modal-close:hover { background: rgba(60,60,59,0.16); }
.cta-modal-title { font-size: clamp(21px, 3vw, 26px); margin-bottom: 8px; color: var(--charcoal); }
.cta-modal-sub { font-size: 15px; font-weight: 500; color: var(--blue-grey); margin-bottom: 26px; }
.cta-modal-form { display: flex; flex-direction: column; gap: 16px; text-align: right; }
.cta-modal-label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 700; color: var(--charcoal); }
.cta-modal-label input {
  font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 400;
  padding: 13px 16px; border-radius: 14px;
  border: 1.5px solid rgba(60,60,59,0.15);
  background: var(--sand-light);
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.cta-modal-label input:focus { border-color: var(--turquoise); background: var(--white); }
.cta-modal-submit { margin-top: 6px; width: 100%; text-align: center; }
.cta-modal-submit:disabled { opacity: 0.65; cursor: default; transform: none !important; }
@media (max-width: 480px) {
  .cta-modal { padding: 32px 22px 26px; border-radius: 22px; }
}
