/* ================================================
   MEDFIT — by Dr. med. Susanne Kallich
   Brand: Pink #EE1B92, Teal #ADD4D9, Off-white
   ================================================ */

/* ---------- Reset & Variables ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand palette */
  --pink: #EE1B92;
  --pink-dark: #C8157A;
  --pink-soft: #FDE2F1;
  --pink-glow: rgba(238, 27, 146, 0.15);
  --teal: #ADD4D9;
  --teal-soft: #E4EFF1;
  --teal-light: #F0F7F8;
  --ink: #15161B;
  --ink-soft: #3D3F47;
  --ink-mute: #707380;
  --paper: #FFFBF7;
  --paper-warm: #FAF5EE;
  --line: #E8E2D8;
  --line-dark: #D4CCBE;

  /* Typography */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

h1 { font-size: clamp(2.5rem, 5.5vw + 0.5rem, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw + 0.5rem, 3.4rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.4rem, 1.5vw + 0.7rem, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.01em; font-variation-settings: "opsz" 14; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--pink);
}

.lede {
  font-size: clamp(1.05rem, 0.7vw + 0.9rem, 1.25rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}

em { font-style: italic; color: var(--pink); font-weight: 500; }

/* ---------- Layout ---------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.wrap--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

section {
  padding: var(--space-10) 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: var(--space-9) 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: var(--radius-pill);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
}

.btn--primary {
  background: var(--pink);
  color: white;
  box-shadow: 0 6px 20px -8px rgba(238, 27, 146, 0.6);
}
.btn--primary:hover {
  background: var(--pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(238, 27, 146, 0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: white;
}

.btn--white {
  background: white;
  color: var(--ink);
  border-color: var(--line);
}
.btn--white:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  background: rgba(255, 251, 247, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 0.85rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.nav__logo img {
  height: 56px;
  width: auto;
  transition: height 0.4s var(--ease), transform 0.4s var(--ease);
}
.nav.scrolled .nav__logo img { height: 44px; }
.nav__logo:hover img { transform: scale(1.04); }

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--pink); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
}

.nav__menu {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__menu span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}

@media (max-width: 968px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__menu { display: flex; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh; width: 100%;
  max-width: 380px;
  background: var(--paper);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-left: 1px solid var(--line);
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.drawer a:last-child { border-bottom: none; }
.drawer__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: var(--ink);
}
.drawer__cta {
  margin-top: 1rem;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  border: none !important;
  background: var(--pink);
  color: white !important;
  text-align: center;
  padding: 1rem !important;
  border-radius: var(--radius-pill) !important;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.scrim.active { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, var(--teal-light) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
}

.hero__title {
  margin: 1.4rem 0 1.6rem;
}

.hero__title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 500;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal-soft);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 12px 32px -16px rgba(0,0,0,0.25);
  max-width: 75%;
}
.hero__badge-dot {
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pink-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero__badge-text {
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 500;
}
.hero__badge-text strong { display: block; font-size: 0.9rem; }

@media (max-width: 868px) {
  .hero { padding: 7rem 0 3rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { aspect-ratio: 5 / 4; max-width: 520px; }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--ink);
  padding: 2.5rem 0;
  color: white;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.trust-item__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--pink);
  line-height: 1;
  font-variation-settings: "opsz" 60;
}
.trust-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.35;
}

@media (max-width: 768px) {
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---------- Section: Problem ---------- */
.problem {
  background: var(--paper);
  text-align: center;
}

.problem__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw + 1rem, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 28ch;
  margin: 1.5rem auto 2rem;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}

.problem__quote span {
  position: relative;
  color: var(--pink);
}

.problem__quote span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 0.35em;
  background: var(--pink-soft);
  z-index: -1;
}

.problem__attribution {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-top: 1.5rem;
}
.problem__attribution strong { color: var(--ink); font-weight: 600; }

/* ---------- Section: For Whom ---------- */
.audience {
  background: var(--teal-light);
  position: relative;
}

.section__header {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.section__header h2 { margin-top: 0.7rem; }

@media (max-width: 768px) {
  .section__header { grid-template-columns: 1fr; gap: 1rem; }
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-card {
  background: white;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.audience-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,0.12);
}

.audience-card__icon {
  width: 44px;
  height: 44px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--pink);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.audience-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .audience__grid { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .audience__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- How it works ---------- */
.how {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.how__bg {
  position: absolute;
  right: -10%;
  top: 0;
  width: 60%;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-3deg);
}
.how__bg img { width: 100%; }

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.how-step {
  position: relative;
  padding: 2rem 1.5rem;
}

.how-step__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: "opsz" 144;
  display: block;
  margin-bottom: 1.2rem;
}

.how-step h3 {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.how-step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .how__steps { grid-template-columns: 1fr; }
  .how-step { padding: 1rem 0; border-top: 1px solid var(--line); }
  .how-step:first-child { border-top: none; }
}

/* ---------- Modules ---------- */
.modules {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.modules .eyebrow { color: var(--pink); }
.modules h2 { color: white; }
.modules .lede { color: rgba(255,255,255,0.75); }

.modules__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(238, 27, 146, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(238, 27, 146, 0.05) 0%, transparent 35%);
}
/* keep old selector working in case any caches exist */
.modules__bg { display: none; }

.modules__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.module {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.module:hover {
  border-color: var(--pink);
  background: rgba(238, 27, 146, 0.08);
}

.module__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
  font-style: normal;
  font-weight: 500;
}

.module h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.module ul {
  list-style: none;
  padding: 0;
}

.module li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.module li:first-child { border-top: none; }
.module li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}

.modules__note {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .modules__list { grid-template-columns: 1fr; }
}

/* ---------- About Dr. Kallich ---------- */
.about {
  background: var(--paper-warm);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about__photo {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--teal-soft);
  position: relative;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  pointer-events: none;
}

/* Full-width credentials grid below the photo+body row */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line-dark);
}
.credentials-col {
  background: white;
  padding: 2rem 2rem;
  border-radius: var(--radius);
  position: relative;
}
.credentials-col__icon {
  width: 44px;
  height: 44px;
  background: var(--pink-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1.2rem;
}
.credentials-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  text-transform: none;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}
.credentials-col ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.credentials-col li {
  padding: 0.65rem 0;
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.credentials-col li:first-child { border-top: none; }
.credentials-col li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EE1B92'%3E%3Cpath d='M6.5 11L3 7.5l1-1 2.5 2.5L12 3.5l1 1z'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 868px) {
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__photo { max-width: 480px; }
  .credentials-grid { grid-template-columns: 1fr; }
}

.about__signature {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  font-variation-settings: "opsz" 14;
}
.about__signature span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about__body p {
  color: var(--ink-soft);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.about__body p:first-of-type {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.about__pullquote {
  position: relative;
  margin: 0 0 2rem;
  padding: 1.6rem 1.8rem 1.6rem 2.4rem;
  background: white;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--ink);
  border-left: 3px solid var(--pink);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 24px -16px rgba(0,0,0,0.1);
}
.about__pullquote::before {
  content: '"';
  position: absolute;
  top: 0.3rem;
  left: 0.7rem;
  font-size: 3rem;
  font-family: var(--font-display);
  color: var(--pink);
  line-height: 1;
  font-style: normal;
  opacity: 0.45;
}

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin: 2rem 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-fact {
  padding: 1.1rem 1.2rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.about-fact:last-child { border-right: none; }
.about-fact__label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pink);
}
.about-fact__value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 14;
}
@media (max-width: 640px) {
  .about__facts { grid-template-columns: 1fr; }
  .about-fact {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .about-fact:last-child { border-bottom: none; }
}

.credentials {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}
.credentials h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
  font-weight: 600;
}
.credentials ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
.credentials li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.credentials li::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 868px) {
  .about__photo { max-width: 480px; }
}

/* ---------- Pricing ---------- */
.pricing {
  background: var(--paper);
  position: relative;
}

.pricing__header { text-align: center; margin-bottom: 4rem; }
.pricing__header .eyebrow { justify-content: center; }
.pricing__header h2 { margin: 1rem 0 1.5rem; }
.pricing__header .lede { margin: 0 auto; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s var(--ease);
}
.plan:hover {
  border-color: var(--ink);
}

.plan--featured {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.03);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3);
}
.plan--featured:hover { border-color: var(--pink); }

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}
.plan--featured .plan__name { color: white; }

.plan__sub {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}
.plan--featured .plan__sub { color: rgba(255,255,255,0.65); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.plan__price-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.plan--featured .plan__price-num { color: white; }
.plan__price-unit {
  font-size: 0.92rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.plan--featured .plan__price-unit { color: rgba(255,255,255,0.7); }

.plan__total {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-bottom: 0.6rem;
}
.plan--featured .plan__total { color: rgba(255,255,255,0.6); }

.plan__save {
  display: inline-flex;
  background: var(--pink-soft);
  color: var(--pink-dark);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
}
.plan--featured .plan__save { background: rgba(238,27,146,0.2); color: white; }

.plan__features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.plan__features li {
  padding: 0.7rem 0;
  font-size: 0.93rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.plan--featured .plan__features li {
  border-top-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.plan__features li:first-child { border-top: none; }
.plan__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EE1B92'%3E%3Cpath d='M6.5 11L3 7.5l1-1 2.5 2.5L12 3.5l1 1z'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan .btn {
  width: 100%;
  padding: 1rem;
}

@media (max-width: 868px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
}

/* ============================================
   SALES OPTIMIZATION ELEMENTS
   ============================================ */

/* ---------- pricing guarantee (payment row) ---------- */
.pricing__guarantee {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.guarantee__row {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
}

/* ---------- Quick Overview Section (between trust strip and quote) ---------- */
.overview {
  background: var(--paper);
  position: relative;
}
.overview__header {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.overview__header .eyebrow {
  display: inline-flex;
  justify-content: center;
}
.overview__header h2 {
  margin: 1rem 0 1.4rem;
}
.overview__header .lede {
  margin: 0 auto;
}

.overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.overview-card {
  background: white;
  padding: 2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.overview-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.overview-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.12);
}
.overview-card:hover::after {
  transform: scaleX(1);
}
.overview-card__icon {
  width: 44px;
  height: 44px;
  background: var(--pink-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  margin-bottom: 1.2rem;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.overview-card:hover .overview-card__icon {
  background: var(--pink);
  color: white;
  transform: rotate(-6deg) scale(1.08);
}
.overview-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.overview-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.overview__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
.overview__cta .btn {
  font-size: 1rem;
  padding: 1.05rem 1.9rem;
}
.overview__cta-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
}

@media (max-width: 1024px) {
  .overview__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .overview__grid { grid-template-columns: 1fr; }
}

/* ---------- Pricing Teaser Strip (after trust strip) ---------- */
.teaser-strip {
  padding: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.teaser-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  flex-wrap: wrap;
}
.teaser-strip__left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex-grow: 1;
}
.teaser-strip__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
}
.teaser-strip__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.teaser-strip__price strong {
  color: var(--pink);
  font-weight: 600;
}
.teaser-strip__small {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: 0;
}
.teaser-strip__cta {
  flex-shrink: 0;
  padding: 0.75rem 1.4rem;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .teaser-strip__inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; }
  .teaser-strip__small { display: block; margin-top: 0.2rem; font-size: 0.8rem; }
  .teaser-strip__cta { width: 100%; }
}

/* ---------- Pricing trust badges row ---------- */
.pricing__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin: -1rem 0 3rem;
  padding: 1.2rem;
  background: var(--paper-warm);
  border-radius: var(--radius);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.trust-badge svg { color: var(--pink); flex-shrink: 0; }
.trust-badge strong { color: var(--ink); font-weight: 600; }
@media (max-width: 768px) {
  .pricing__trust { gap: 0.7rem 1.2rem; }
  .trust-badge { font-size: 0.85rem; }
}

/* ---------- Plan card enhancements (sales) ---------- */
.plan__price-original {
  font-size: 1rem;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  margin-right: 0.4rem;
  align-self: center;
}
.plan--featured .plan__price-original { color: rgba(255,255,255,0.55); }

.plan__save--featured {
  background: var(--pink) !important;
  color: white !important;
}

.plan__sub-cta {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.plan__sub-cta::before {
  content: '✓';
  color: var(--pink);
  font-weight: 700;
}
.plan--featured .plan__sub-cta { color: rgba(255,255,255,0.6); }
.plan--featured .plan__sub-cta::before { color: var(--pink); }

.plan__badge--quiet {
  background: var(--ink) !important;
  color: white !important;
}

.plan__features li strong {
  font-weight: 700;
  color: inherit;
}

/* ---------- Sticky bottom CTA bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ink);
  color: white;
  padding: 0.85rem 0;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -8px 24px -8px rgba(0,0,0,0.2);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta.dismissed {
  display: none;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex-grow: 1;
}
.sticky-cta__text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.01em;
}
.sticky-cta__text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.sticky-cta__btn {
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.sticky-cta__close {
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.sticky-cta__close:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}
@media (max-width: 640px) {
  .sticky-cta__inner { gap: 0.6rem; }
  .sticky-cta__text strong { font-size: 0.9rem; }
  .sticky-cta__text span { font-size: 0.74rem; }
  .sticky-cta__btn { padding: 0.6rem 1rem; font-size: 0.82rem; }
  .sticky-cta__close { display: none; }
}
.guarantee__row {
  font-size: 0.92rem;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.guarantee__row strong { color: var(--ink); font-weight: 600; }

.guarantee__methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pay-icon {
  width: 56px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  flex-shrink: 0;
}
.pay-icon:hover {
  transform: translateY(-2px);
  border-color: var(--ink-mute);
}
.pay-icon svg, .pay-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--teal-light);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--pink);
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.testimonial__author-name {
  font-weight: 600;
  font-size: 0.93rem;
}
.testimonial__author-meta {
  font-size: 0.82rem;
  color: var(--ink-mute);
}

@media (max-width: 868px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--paper);
}

.faq__list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-item__q:hover { color: var(--pink); }

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s var(--ease);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.faq-item__icon::before { width: 12px; height: 1.5px; }
.faq-item__icon::after { width: 1.5px; height: 12px; }

.faq-item.open .faq-item__icon {
  background: var(--pink);
  border-color: var(--pink);
}
.faq-item.open .faq-item__icon::before,
.faq-item.open .faq-item__icon::after { background: white; }
.faq-item.open .faq-item__icon::after { transform: scaleY(0); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item__a-inner {
  padding: 0 0 1.6rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}

/* ---------- Final CTA ---------- */
.cta {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
}
.cta__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  top: -150px;
  left: 20%;
  animation: blobFloat1 18s ease-in-out infinite;
}
.cta__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #6B1845 0%, transparent 70%);
  bottom: -100px;
  right: 10%;
  animation: blobFloat2 22s ease-in-out infinite;
}
.cta__blob--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 75%);
  top: 40%;
  left: -100px;
  opacity: 0.35;
  animation: blobFloat3 26s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(120px, 60px) scale(1.15); }
  66% { transform: translate(-80px, 100px) scale(0.92); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-150px, -120px) scale(1.2); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(200px, -60px) scale(1.3); }
  80% { transform: translate(80px, 80px) scale(0.85); }
}

@media (prefers-reduced-motion: reduce) {
  .cta__blob { animation: none; }
}

.cta::before {
  display: none;
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  font-size: clamp(2.2rem, 4vw + 0.5rem, 3.8rem);
  margin: 1.2rem 0 1.5rem;
}
.cta h2 em { color: var(--pink); }

.cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

.cta .eyebrow { color: var(--pink); justify-content: center; display: inline-flex; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img { height: 44px; margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.9rem; line-height: 1.55; max-width: 28ch; }

.footer__col h4 {
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.6rem; }
.footer__col a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--pink); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 868px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: span 2; }
}

/* ============================================
   PREMIUM ANIMATIONS
   ============================================ */

/* ---------- Scroll Reveal (improved) ---------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
html.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Variants for different reveal directions */
html.js .reveal--left { transform: translateX(-40px); }
html.js .reveal--left.in { transform: translateX(0); }
html.js .reveal--right { transform: translateX(40px); }
html.js .reveal--right.in { transform: translateX(0); }
html.js .reveal--scale { transform: translateY(20px) scale(0.96); }
html.js .reveal--scale.in { transform: translateY(0) scale(1); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal--left,
  html.js .reveal--right,
  html.js .reveal--scale {
    opacity: 1; transform: none; transition: none;
  }
}

/* ---------- Hero parallax & word-reveal ---------- */
html.js .hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em) rotate(2deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .hero__title.in .word {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
html.js .hero__visual {
  transition: transform 0.4s var(--ease);
}

/* Subtle floating animation on hero badge */
.hero__badge {
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------- Trust strip count-up effect ---------- */
.trust-item__num {
  display: inline-block;
}
html.js .trust-item__num {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js .trust-item.in .trust-item__num {
  opacity: 1;
  transform: translateY(0);
}
html.js .trust-item__label {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease) 0.15s, transform 0.7s var(--ease) 0.15s;
}
html.js .trust-item.in .trust-item__label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Audience cards: stagger + hover lift ---------- */
.audience-card {
  cursor: default;
}
.audience-card:hover .audience-card__icon {
  background: var(--pink);
  color: white;
  transform: rotate(-8deg) scale(1.08);
}
.audience-card__icon {
  transition: all 0.4s var(--ease);
}
.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, var(--pink-soft) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  border-radius: var(--radius);
}
.audience-card:hover::before { opacity: 0.5; }
.audience-card > * { position: relative; z-index: 1; }

/* ---------- How-step: animated number ---------- */
.how-step {
  position: relative;
  transition: transform 0.4s var(--ease);
}
.how-step:hover {
  transform: translateY(-4px);
}
.how-step__num {
  position: relative;
  display: inline-block;
  transition: transform 0.6s var(--ease), color 0.4s var(--ease);
}
.how-step:hover .how-step__num {
  transform: scale(1.1) rotate(-3deg);
}
.how-step__num::after {
  content: '';
  position: absolute;
  bottom: 0.3em;
  left: 0;
  width: 100%;
  height: 0.18em;
  background: var(--pink-soft);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease) 0.1s;
}
.how-step.in .how-step__num::after {
  transform: scaleX(1);
}

/* ---------- Module hover ---------- */
.module {
  transition: all 0.5s var(--ease);
  cursor: default;
}
.module:hover {
  transform: translateY(-6px);
}
.module li {
  transition: padding-left 0.3s var(--ease), color 0.3s var(--ease);
}
.module:hover li {
  padding-left: 0.4rem;
  color: rgba(255,255,255,0.95);
}

/* ---------- About photo zoom ---------- */
.about__photo img {
  transition: transform 1.2s var(--ease);
}
.about__photo:hover img { transform: scale(1.04); }

/* ---------- Pricing plan animations ---------- */
.plan {
  transition: all 0.5s var(--ease);
}
.plan:not(.plan--featured):hover {
  transform: translateY(-8px);
  border-color: var(--ink);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.18);
}
.plan--featured {
  animation: featuredPulse 6s ease-in-out infinite;
}
@keyframes featuredPulse {
  0%, 100% { box-shadow: 0 30px 60px -25px rgba(0,0,0,0.3); }
  50% { box-shadow: 0 30px 60px -20px rgba(238, 27, 146, 0.35); }
}
.plan__features li {
  transition: transform 0.3s var(--ease);
}
.plan:hover .plan__features li {
  transform: translateX(2px);
}

/* ---------- Testimonial cards ---------- */
.testimonial {
  transition: all 0.4s var(--ease);
  cursor: default;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -18px rgba(0,0,0,0.14);
}
.testimonial__avatar {
  transition: transform 0.4s var(--ease);
}
.testimonial:hover .testimonial__avatar {
  transform: scale(1.08) rotate(-5deg);
}

/* ---------- FAQ smooth open ---------- */
.faq-item__q {
  transition: padding-left 0.3s var(--ease);
}
.faq-item.open .faq-item__q {
  padding-left: 0.5rem;
}

/* ---------- Button magnetic feel ---------- */
.btn {
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--ease), height 0.5s var(--ease);
  pointer-events: none;
}
.btn:hover::before {
  width: 350px;
  height: 350px;
}
.btn--primary::before { background: rgba(255,255,255,0.18); }
.btn--ghost::before { background: rgba(0,0,0,0.04); }
.btn > * { position: relative; z-index: 1; }

/* ---------- Marquee strip (between sections) ---------- */
.marquee {
  background: var(--ink);
  color: white;
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "SOFT" 50;
  font-style: italic;
}
.marquee__item::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Scroll-down indicator (hero) ---------- */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-mute);
  opacity: 0.7;
  pointer-events: none;
}
.scroll-cue__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--pink) 30%, var(--pink) 70%, transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 18px;
  background: linear-gradient(180deg, transparent, white);
  animation: scrollDot 2s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { top: -18px; }
  100% { top: 36px; }
}
@media (max-width: 768px) {
  .scroll-cue { display: none; }
}

/* ---------- Section dividers — pink dot trail ---------- */
.dot-divider {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: -1px 0;
  background: var(--paper);
}
.dot-divider span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.3;
}
.dot-divider span:nth-child(2) { opacity: 0.5; }
.dot-divider span:nth-child(3) { opacity: 1; }
.dot-divider span:nth-child(4) { opacity: 0.5; }
.dot-divider span:nth-child(5) { opacity: 0.3; }

/* ---------- Eyebrow line animation ---------- */
.eyebrow::before {
  transition: width 0.5s var(--ease);
}
.reveal.in .eyebrow::before,
.reveal.in.eyebrow::before {
  animation: eyebrowGrow 0.8s var(--ease) forwards;
}
@keyframes eyebrowGrow {
  0% { width: 0; }
  100% { width: 28px; }
}

/* ---------- Grain texture overlay (subtle) ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Legal Page Styling ---------- */
.legal {
  padding: 9rem 0 4rem;
  background: var(--paper);
}
.legal h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 1.5rem;
}
.legal h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.legal h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.8rem 0 0.7rem;
  color: var(--ink);
  letter-spacing: 0;
}
.legal p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  font-size: 0.97rem;
}
.legal ul {
  margin: 0.8rem 0 1.2rem 1.2rem;
  color: var(--ink-soft);
}
.legal li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
  font-size: 0.97rem;
}
.legal a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.legal__back:hover { color: var(--pink); }

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
