:root {
  --bg: #fffaff;
  --bg-deep: #f4e8fb;
  --cream: #fffdfd;
  --lilac: #cba0df;
  --lilac-soft: #f0dcf8;
  --plum: #4d1265;
  --text: #2c1734;
  --muted: #7b6486;
  --pink: #c01883;
  --rose: #f3cbe8;
  --violet: #6c2089;
  --magenta: #b31978;
  --ink-purple: #321044;
  --border: rgba(108, 32, 137, 0.18);
  --surface: rgba(255, 253, 253, 0.82);
  --shadow: 0 24px 70px rgba(77, 18, 101, 0.13);
  --shadow-soft: 0 14px 34px rgba(77, 18, 101, 0.09);
  --container: 1120px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.2, 1.35, 0.34, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 138px;
  overflow-x: hidden;
}

html.has-js body {
  opacity: 0;
}

html.page-ready body {
  opacity: 1;
  transition: opacity 520ms ease;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 9%, rgba(192, 24, 131, 0.08), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(108, 32, 137, 0.1), transparent 34%),
    linear-gradient(180deg, #fff 0%, var(--bg) 34%, #fff 56%, var(--bg-deep) 100%);
  font-family: "Assistant", "Heebo", sans-serif;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(77, 18, 101, 0.12) 1.1px, transparent 1.4px),
    radial-gradient(circle at 28px 28px, rgba(192, 24, 131, 0.1) 0.9px, transparent 1.2px);
  background-size: 34px 34px, 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 74%);
  animation: textureDrift 16s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -2;
  pointer-events: none;
  opacity: 0.42;
  background:
    conic-gradient(from calc(var(--scroll-ratio, 0) * 3.6deg) at 76% 18%, transparent 0 58%, rgba(192, 24, 131, 0.16) 66%, transparent 74%),
    radial-gradient(ellipse at 9% 88%, rgba(77, 18, 101, 0.18), rgba(203, 160, 223, 0.12) 22%, transparent 43%),
    linear-gradient(116deg, transparent 18%, rgba(203, 160, 223, 0.16) 43%, transparent 67%);
  transform: translate3d(calc(var(--mouse-x, 0) * -10px), calc(var(--mouse-y, 0) * -10px), 0);
  transition: transform 600ms var(--ease);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a, label { touch-action: manipulation; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Heebo", "Assistant", sans-serif; color: var(--plum); letter-spacing: 0; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.narrow { width: min(780px, calc(100% - 32px)); }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 300;
  width: var(--scroll-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--plum), var(--magenta), var(--lilac));
}

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 400;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--plum);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(108, 32, 137, 0.12);
  background: rgba(255, 250, 255, 0.72);
  backdrop-filter: blur(18px);
  transition: background 260ms ease, box-shadow 260ms ease;
}

body.scrolled .site-header {
  background: rgba(255, 250, 255, 0.9);
  box-shadow: 0 14px 38px rgba(77, 18, 101, 0.08);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum) 0%, var(--magenta) 58%, #7e2aa0 100%);
  box-shadow: 0 14px 34px rgba(108, 32, 137, 0.22);
  font-family: "Heebo", sans-serif;
  font-weight: 900;
}

.brand strong,
.brand small { display: block; }
.brand strong { color: var(--plum); font-size: 18px; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 12px; font-weight: 800; }

.desktop-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 850;
}

.desktop-nav a:hover { color: var(--plum); }

.nav-cta {
  display: none;
  min-height: 42px;
  align-items: center;
  border-radius: 999px;
  padding: 10px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--magenta));
  font-weight: 900;
}

.section-nav {
  position: sticky;
  top: 72px;
  z-index: 90;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(108, 32, 137, 0.1);
  background: rgba(255, 250, 255, 0.78);
  backdrop-filter: blur(16px);
}

.section-nav__toggle {
  display: none;
}

.section-nav__links {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.section-nav__links::-webkit-scrollbar { display: none; }

.section-nav a {
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 13px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.section-nav a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--magenta));
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(77, 18, 101, 0.18);
}

.section-shell {
  position: relative;
  overflow: clip;
  padding: 92px 0;
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 22% auto auto -12%;
  width: 48vw;
  height: 1px;
  pointer-events: none;
  opacity: 0.22;
  background: linear-gradient(90deg, transparent, var(--lilac), var(--magenta), transparent);
  transform: rotate(-10deg) translateX(calc(var(--section-drift, 0) * 1px));
}

.hero {
  overflow: hidden;
  padding: 80px 0 96px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 54px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 232, 251, 0.72)),
    radial-gradient(circle at 0 100%, rgba(192, 24, 131, 0.08), transparent 45%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.54) 46%, transparent 64%);
  transform: translateX(120%) skewX(-16deg);
  animation: glassSweep 6.8s ease-in-out infinite;
}

.topline,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--violet);
  font-size: 15px;
  font-weight: 900;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5.8vw, 4.85rem);
  line-height: 1.04;
  font-weight: 900;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 4.1vw, 3.35rem);
  line-height: 1.14;
  font-weight: 900;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 590px;
  color: var(--plum);
  font-size: 22px;
  font-weight: 850;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 28px;
}

.hero-points span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.hero-points span:hover {
  transform: translateY(-3px) rotate(-1deg);
  background: #fff;
  box-shadow: 0 14px 28px rgba(77, 18, 101, 0.1);
}

.trust-line {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% 7% -4%;
  z-index: 0;
  border-radius: 42% 58% 46% 54% / 36% 38% 62% 64%;
  background:
    linear-gradient(180deg, rgba(77, 18, 101, 0.08), rgba(192, 24, 131, 0.18)),
    url("assets/NEW%20HERO%20SHELY.png") center 28% / cover no-repeat;
  filter: blur(22px) saturate(1.24);
  opacity: 0.54;
  transform: scale(1.08);
  animation: heroEcho 8s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  inset: 1% -8% 1%;
  z-index: 0;
  border-radius: 46%;
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at 46% 48%, rgba(203, 160, 223, 0.82), transparent 44%),
    radial-gradient(circle at 70% 26%, rgba(192, 24, 131, 0.42), transparent 36%),
    radial-gradient(circle at 26% 72%, rgba(77, 18, 101, 0.24), transparent 36%);
  filter: blur(30px);
  animation: glowBreath 7s ease-in-out infinite alternate;
}

.hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: min(540px, 100%);
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 42% 58% 46% 54% / 36% 38% 62% 64%;
  background: #fff;
  box-shadow:
    0 34px 95px rgba(77, 18, 101, 0.24),
    0 0 0 12px rgba(255, 255, 255, 0.34),
    0 0 74px rgba(192, 24, 131, 0.18);
  animation: imageFloat 7s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease), box-shadow 400ms ease;
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 8%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 42%, rgba(77, 18, 101, 0.16));
  mix-blend-mode: screen;
}

.hero-frame img {
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(1.08) contrast(1.03);
}

.hero-wave {
  position: absolute;
  right: -18px;
  top: 8%;
  z-index: 1;
  width: 190px;
  fill: none;
  stroke: rgba(108, 32, 137, 0.34);
  stroke-width: 5;
  stroke-linecap: round;
}

.sparkle {
  position: absolute;
  z-index: 2;
  color: var(--magenta);
  font-size: 30px;
  animation: sparklePulse 3.6s ease-in-out infinite;
}

.sparkle-one { top: 10%; left: 7%; }
.sparkle-two { right: 10%; bottom: 9%; animation-delay: -1.4s; }

.soft-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.48;
}

.orb-one {
  width: 180px;
  height: 180px;
  top: 90px;
  right: 7%;
  background: rgba(192, 24, 131, 0.24);
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: 4%;
  left: 7%;
  background: rgba(108, 32, 137, 0.18);
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, filter 220ms ease;
}

.btn:hover { transform: translateY(-2px) scale(1.01); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn::after {
  content: "";
  position: absolute;
  inset: -35% auto -35% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-180%) rotate(18deg);
  transition: transform 520ms var(--ease);
}

.btn:hover::after {
  transform: translateX(520%) rotate(18deg);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--plum) 0%, var(--magenta) 62%, #7a2398 100%);
  box-shadow: 0 16px 36px rgba(77, 18, 101, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(77, 18, 101, 0.3), 0 0 0 7px rgba(203, 160, 223, 0.28);
}

.btn-soft {
  color: var(--plum);
  background: var(--lilac-soft);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p,
.story-grid p,
.fit,
.form-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.story-card,
.fit-card {
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: clamp(26px, 5vw, 56px);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(244, 232, 251, 0.72)),
    radial-gradient(circle at 100% 0, rgba(192, 24, 131, 0.08), transparent 40%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.story-title {
  display: grid;
  gap: 22px;
  margin-bottom: 30px;
}

blockquote {
  margin: 0;
  border-right: 4px solid var(--pink);
  border-radius: 24px;
  padding: 20px;
  color: var(--plum);
  background: linear-gradient(135deg, rgba(240, 220, 248, 0.86), rgba(255, 255, 255, 0.78));
  font-size: 22px;
  font-weight: 900;
}

.story-grid {
  display: grid;
  gap: 16px;
}

.story-grid article,
.benefit-card,
.pricing-card,
.faq-item {
  border: 1px solid var(--border);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(250, 242, 253, 0.74));
  box-shadow: var(--shadow-soft);
  transition: transform 260ms var(--ease), box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.story-grid article {
  padding: 22px;
}

.story-grid article:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(108, 32, 137, 0.3);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 48px rgba(77, 18, 101, 0.13);
}

.micro-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  border: 1px solid rgba(108, 32, 137, 0.16);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  transition: transform 260ms var(--ease), box-shadow 260ms ease, background 260ms ease;
}

.micro-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(77, 18, 101, 0.1);
}

.micro-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--magenta));
}

.centered-cta {
  width: min(720px, 100%);
  margin-inline: auto;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(244, 232, 251, 0.5)),
    radial-gradient(circle at 4% 92%, rgba(77, 18, 101, 0.08), transparent 34%);
}

.tracks {
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 250, 255, 0.72), rgba(244, 232, 251, 0.5) 48%, rgba(255, 250, 255, 0.78)),
    radial-gradient(circle at 12% 90%, rgba(77, 18, 101, 0.18), transparent 34%),
    url("assets/tracks-workout-bg.jpeg") center 46% / cover no-repeat;
}

.tracks::before {
  inset: 0;
  width: auto;
  height: auto;
  opacity: 1;
  background:
    radial-gradient(ellipse at 8% 12%, rgba(255, 255, 255, 0.58), transparent 34%),
    radial-gradient(ellipse at 92% 10%, rgba(108, 32, 137, 0.22), transparent 24%),
    radial-gradient(ellipse at 0 100%, rgba(77, 18, 101, 0.24), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 250, 255, 0.24), rgba(255, 255, 255, 0.62));
  transform: none;
  z-index: -1;
}

.tracks::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 12px 12px, rgba(255, 255, 255, 0.78) 1.2px, transparent 1.6px),
    radial-gradient(circle at 18px 18px, rgba(77, 18, 101, 0.12) 1px, transparent 1.5px);
  background-size: 28px 28px, 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 100%);
}

.tracks .section-head {
  border-radius: 32px;
  padding: clamp(18px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 60px rgba(77, 18, 101, 0.1);
  backdrop-filter: blur(14px);
}

.benefit-grid {
  display: grid;
  gap: 14px;
}

.benefit-card {
  padding: 22px;
  transform: perspective(800px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
}

.benefit-card:hover {
  transform: perspective(800px) translateY(-4px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  box-shadow: 0 20px 48px rgba(77, 18, 101, 0.13);
}

.benefit-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 16px;
  color: var(--plum);
  background: linear-gradient(135deg, rgba(77, 18, 101, 0.1), rgba(192, 24, 131, 0.1), #fff);
  font-size: 22px;
  font-weight: 900;
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  gap: 20px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 232, 251, 0.78));
  backdrop-filter: blur(16px);
  transform: perspective(1000px) rotateX(calc(var(--tilt-y, 0) * -0.7deg)) rotateY(calc(var(--tilt-x, 0) * 0.7deg));
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 16%, rgba(108, 32, 137, 0.16), transparent 38%);
  transition: transform 520ms var(--ease), opacity 320ms ease;
}

.pricing-card.accent::before {
  background: radial-gradient(circle at 16% 16%, rgba(192, 24, 131, 0.16), transparent 38%);
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card:hover {
  transform: perspective(1000px) translateY(-5px) rotateX(calc(var(--tilt-y, 0) * -0.7deg)) rotateY(calc(var(--tilt-x, 0) * 0.7deg));
  box-shadow: 0 28px 72px rgba(77, 18, 101, 0.15);
}

.pricing-card:hover::before {
  opacity: 0.92;
  transform: scale(1.2) translate3d(4%, -4%, 0);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--plum);
  background: var(--lilac-soft);
  font-size: 14px;
  font-weight: 900;
}

.accent .badge {
  background: rgba(243, 203, 232, 0.9);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  color: var(--text);
  font-weight: 800;
}

.pricing-card li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-inline-end: 9px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--plum), var(--magenta));
  font-size: 13px;
}

.results-gallery {
  display: grid;
  gap: 16px;
}

.result-card {
  position: relative;
  isolation: isolate;
  min-height: 0;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(244, 232, 251, 0.78)),
    radial-gradient(circle at 18% 14%, rgba(192, 24, 131, 0.18), transparent 36%);
  box-shadow: var(--shadow-soft);
  transform: perspective(1000px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  transition: transform 380ms var(--ease), box-shadow 320ms ease, border-color 320ms ease, filter 320ms ease;
}

.result-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(192, 24, 131, 0.38), rgba(108, 32, 137, 0.3), rgba(255, 255, 255, 0));
  transition: opacity 300ms ease;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 22px;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.36) 46%, transparent 62%);
  mix-blend-mode: screen;
  transform: translateX(120%) skewX(-14deg);
  transition: transform 720ms var(--ease);
}

.result-card:hover {
  border-color: rgba(108, 32, 137, 0.34);
  box-shadow: 0 28px 78px rgba(77, 18, 101, 0.18);
  filter: saturate(1.04);
  transform: perspective(1000px) translateY(-8px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
}

.result-card:hover::before {
  opacity: 1;
}

.result-card:hover::after {
  transform: translateX(-120%) skewX(-14deg);
}

.result-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 22px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(108, 32, 137, 0.08);
  transition: transform 620ms var(--ease), filter 360ms ease;
}

.result-card video {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(108, 32, 137, 0.08);
  display: block;
}

.result-card:hover img {
  transform: scale(1.018);
}

.result-card.testimonial img {
  object-fit: contain;
  object-position: center top;
  background: #fff;
}

.result-card:nth-child(1) {
  aspect-ratio: 1.24 / 1;
}

.result-card:nth-child(2),
.result-card:nth-child(3),
.result-card.video-card,
.result-card.testimonial {
  aspect-ratio: 0.56 / 1;
}

.result-card span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform 260ms var(--ease), background 260ms ease;
}

.result-card:hover span {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.95);
}

.fit-check {
  padding-top: 72px;
}

.fit-card {
  display: grid;
  gap: 28px;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  color: var(--plum);
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 13px 15px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(108, 32, 137, 0.52);
  background: #fff;
  box-shadow: 0 0 0 5px rgba(203, 160, 223, 0.28), 0 12px 24px rgba(77, 18, 101, 0.08);
  transform: translateY(-1px);
}

.lead-form textarea { resize: vertical; }

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--plum);
  background: transparent;
  text-align: right;
  font-weight: 900;
}

.faq-item button::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--plum);
  background: var(--lilac-soft);
  transition: transform 220ms ease;
}

.faq-item.open button::after { transform: rotate(45deg); }

.faq-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms var(--ease), opacity 260ms ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  padding: 42px 0 104px;
}

.footer-inner {
  display: grid;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 232, 251, 0.78));
  box-shadow: var(--shadow-soft);
}

.footer-inner strong {
  color: var(--plum);
  font-family: "Heebo", sans-serif;
  font-size: 24px;
}

.footer-inner p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.mobile-sticky {
  position: fixed;
  right: 14px;
  left: 14px;
  bottom: 12px;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 260ms var(--ease);
}

.show-sticky .mobile-sticky {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky .btn {
  width: 100%;
  min-height: 50px;
}

.wa-icon {
  width: 22px;
  height: 22px;
  margin-inline-end: 8px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.97) rotateX(5deg);
  filter: blur(8px);
  transition: opacity 620ms ease, transform 820ms var(--ease-spring), filter 760ms ease;
  transform-origin: 50% 80%;
}

.has-js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes glowBreath {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(16px, -12px, 0); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0) rotate(-0.35deg); }
  50% { transform: translateY(-10px) rotate(0.45deg); }
}

@keyframes sparklePulse {
  0%, 100% { opacity: 0.44; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes heroEcho {
  from { opacity: 0.4; transform: scale(1.04) translate3d(0, 4px, 0); }
  to { opacity: 0.62; transform: scale(1.12) translate3d(10px, -8px, 0); }
}

@keyframes textureDrift {
  from { background-position: 0 0; }
  to { background-position: 68px 34px; }
}

@keyframes glassSweep {
  0%, 28% { transform: translateX(120%) skewX(-16deg); }
  45%, 100% { transform: translateX(-120%) skewX(-16deg); }
}

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

@media (min-width: 720px) {
  .mobile-sticky {
    display: none;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .result-card:nth-child(1) {
    grid-column: span 2;
  }

  .footer-inner {
    grid-template-columns: 1fr auto auto;
  }
}

@media (min-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  }

  .story-title {
    grid-template-columns: 1fr 0.75fr;
    align-items: start;
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
  }

  .result-card:nth-child(1) {
    grid-column: span 2;
  }

  .fit-card {
    grid-template-columns: 0.82fr 1fr;
    align-items: center;
  }
}

@media (max-width: 719px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    background:
      radial-gradient(circle at 16% 4%, rgba(192, 24, 131, 0.09), transparent 30%),
      linear-gradient(180deg, #fff 0%, var(--bg) 38%, var(--bg-deep) 100%);
  }

  .container,
  .narrow {
    width: auto;
    margin-right: 15px;
    margin-left: 24px;
  }

  .header-inner {
    min-height: 64px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }

  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }

  .section-nav {
    position: fixed;
    top: 54%;
    left: 6px;
    right: auto;
    z-index: 115;
    width: 48px;
    max-height: min(386px, calc(100vh - 162px));
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    overflow: visible;
    padding: 6px;
    border: 1px solid rgba(108, 32, 137, 0.16);
    border-radius: 22px;
    background: rgba(255, 250, 255, 0.66);
    box-shadow: 0 18px 46px rgba(77, 18, 101, 0.12);
    backdrop-filter: blur(18px) saturate(1.18);
    transform: translateY(-50%);
    scrollbar-width: none;
    pointer-events: none;
  }

  .section-nav a {
    width: 100%;
    min-height: 34px;
    justify-content: center;
    border-radius: 14px;
    padding: 0;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: 0 8px 18px rgba(77, 18, 101, 0.05);
    font-size: 0;
    line-height: 1.05;
    text-align: center;
    white-space: normal;
    pointer-events: auto;
  }

  .section-nav a::before {
    font-size: 10px;
    font-weight: 950;
    line-height: 1;
  }

  .section-nav a[href="#story"]::before { content: "סיפ"; }
  .section-nav a[href="#process"]::before { content: "דרך"; }
  .section-nav a[href="#tracks"]::before { content: "מס"; }
  .section-nav a[href="#results"]::before { content: "עד"; }
  .section-nav a[href="#fit-check"]::before { content: "בדק"; }

  .section-nav a.active {
    transform: none;
    box-shadow: 0 10px 22px rgba(77, 18, 101, 0.2);
  }

  .section-nav {
    position: sticky;
    top: 64px;
    left: auto;
    right: auto;
    width: auto;
    max-height: none;
    display: block;
    padding: 8px 15px;
    border: 0;
    border-bottom: 1px solid rgba(108, 32, 137, 0.14);
    border-radius: 0;
    background: rgba(255, 250, 255, 0.9);
    box-shadow: 0 16px 36px rgba(77, 18, 101, 0.1);
    transform: none;
    pointer-events: auto;
  }

  .section-nav__toggle {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(108, 32, 137, 0.18);
    border-radius: 18px;
    padding: 10px 14px;
    color: var(--plum);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 24px rgba(77, 18, 101, 0.08);
    font-weight: 950;
  }

  .section-nav__chevron {
    width: 10px;
    height: 10px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 180ms ease;
  }

  .section-nav.is-open .section-nav__chevron {
    transform: rotate(135deg);
  }

  .section-nav__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 240ms var(--ease), opacity 180ms ease, transform 220ms var(--ease), padding 180ms ease;
  }

  .section-nav.is-open .section-nav__links {
    max-height: 280px;
    padding-top: 8px;
    opacity: 1;
    transform: translateY(0);
  }

  .section-nav a {
    min-height: 42px;
    justify-content: flex-start;
    border-radius: 16px;
    padding: 9px 14px;
    font-size: 15px;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
  }

  .section-nav a::before {
    content: none !important;
  }

  .section-shell {
    padding: 58px 0;
  }

  .hero {
    padding: 34px 0 50px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    padding: 22px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2.2rem, 9.4vw, 2.9rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.78rem, 7.6vw, 2.3rem);
    line-height: 1.16;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p,
  .story-grid p,
  .fit,
  .form-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
  }

  .hero-points {
    display: grid;
    gap: 8px;
    margin: 20px 0 24px;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-frame {
    width: min(360px, 94vw);
    border-radius: 38% 62% 46% 54% / 36% 38% 62% 64%;
    box-shadow:
      0 26px 72px rgba(77, 18, 101, 0.24),
      0 0 0 8px rgba(255, 255, 255, 0.32),
      0 0 54px rgba(192, 24, 131, 0.18);
  }

  .hero-visual::before {
    inset: -6% 4% -3%;
    filter: blur(18px) saturate(1.2);
  }

  .hero-frame img {
    aspect-ratio: 0.82;
    object-position: center 26%;
  }

  .story-card,
  .fit-card {
    border-radius: 28px;
    padding: 22px;
  }

  .story-grid article,
  .benefit-card,
  .pricing-card {
    border-radius: 22px;
  }

  .story-grid,
  .benefit-grid,
  .pricing-grid,
  .faq-list,
  .results-gallery {
    gap: 12px;
  }

  .tracks {
    background-position: center top;
  }

  .tracks .section-head {
    border-radius: 28px;
    padding: 22px 18px;
  }

  .micro-cta {
    border-radius: 24px;
    padding: 14px;
  }

  .micro-cta a {
    width: 100%;
    justify-content: center;
  }

  .results-gallery {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding: 0;
  }

  .results-gallery::-webkit-scrollbar {
    display: none;
  }

  .result-card {
    width: 100%;
    scroll-snap-align: none;
  }

  .result-card.testimonial {
    min-width: 0;
  }

  .result-card:nth-child(1) {
    grid-column: auto;
    min-width: 0;
  }

  .has-js .reveal {
    transform: translateY(18px) scale(0.99);
    filter: blur(2px);
    transition-duration: 420ms, 520ms, 420ms;
  }

  .has-js .reveal.visible {
    transform: none;
  }

  .hero-frame,
  .hero-glow,
  .sparkle {
    animation-duration: 9s;
  }

  .mobile-sticky {
    right: 15px;
    left: 15px;
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .mobile-sticky .btn {
    min-height: 54px;
    box-shadow: 0 16px 44px rgba(77, 18, 101, 0.24);
  }

  main {
    padding-bottom: 18px;
  }

  .site-footer {
    padding-bottom: 118px;
  }
}
