/* ── Portfolio Navigation Bar ───────────────── */
.pflio-bar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 40px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: rgba(10, 10, 20, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 13px;
  box-sizing: border-box;
}
.pflio-bar a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.pflio-bar a:hover { color: #ffffff; }
.pflio-bar a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.5);
  outline-offset: 3px;
  border-radius: 3px;
}
.pflio-bar__back:hover .pflio-bar__arrow { margin-right: 4px; }
.pflio-bar__arrow { display: inline-block; transition: margin 0.2s ease; }
.pflio-bar__label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.pflio-bar__diamond {
  color: rgba(255, 255, 255, 0.25);
  margin-right: 6px;
  font-size: 10px;
}
.pflio-bar__arrow-right {
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 4px;
}
.pflio-bar__all:hover .pflio-bar__arrow-right { transform: translateX(3px); }
.pflio-bar__all-short { display: none; }

@media (max-width: 600px) {
  .pflio-bar { height: 44px; padding: 0 16px; }
  .pflio-bar__all-text { display: none; }
  .pflio-bar__all-short { display: inline; }
}
@media (max-width: 480px) {
  .pflio-bar__label { display: none; }
}
body { padding-top: 40px; }
@media (max-width: 600px) { body { padding-top: 44px; } }
/* ── End Portfolio Navigation Bar ───────────── */

/* ═══════════════════════════════════════════════
   SPEAK UP LONDON — Landing Page
   Warm orange + deep navy · Plus Jakarta Sans
   Mobile-first · BEM-inspired · CSS custom props
═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --orange:       #FF6B35;
  --orange-lt:    #FF8C62;
  --orange-dk:    #D95F28;
  --orange-bg:    #FFF3EE;
  --navy:         #1A1A2E;
  --navy-2:       #252540;
  --white:        #FFFFFF;
  --off-white:    #FFF8F4;
  --text:         #1A1A2E;
  --text-muted:   #6B6B8A;
  --border:       rgba(26,26,46,.12);
  --border-focus: rgba(255,107,53,.6);
  --font:         'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h:     68px;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --shadow-sm:    0 2px 10px rgba(0,0,0,.07);
  --shadow-md:    0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.15);
  --transition:   240ms cubic-bezier(.4,0,.2,1);
  --sp-xs: .5rem; --sp-sm: 1rem; --sp-md: 1.5rem;
  --sp-lg: 2.5rem; --sp-xl: 4rem; --sp-2xl: 6rem;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 100%; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: clamp(1rem, 1.05vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Skip link ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--orange); color: var(--white);
  padding: .5em 1em; font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ── Focus ring ── */
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ── Container ── */
.container { width: min(92%, 1200px); margin-inline: auto; }

/* ── Typography utilities ── */
.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: .75rem;
}
.eyebrow--dark { color: var(--orange-dk); }
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: var(--sp-md);
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: var(--sp-md);
}

/* ── Section base ── */
.section { padding-block: var(--sp-2xl); }
.section--light { background: var(--off-white); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(26,26,46,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,53,.2);
}
.site-header__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.logo {
  display: flex; align-items: center; gap: .75rem;
}
.logo__icon { flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__name {
  font-size: 1rem; font-weight: 800;
  letter-spacing: .05em; color: var(--white);
}
.logo__city {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--orange);
}
.header__tagline {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: none;
}
@media (min-width: 640px) { .header__tagline { display: block; } }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .85em 2em;
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  letter-spacing: .02em; border: 2px solid transparent;
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--orange-dk); color: var(--white);
  border-color: var(--orange-dk);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--orange); border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,.35);
}
.btn--full { width: 100%; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,53,.45); }
  50% { box-shadow: 0 0 0 10px rgba(255,107,53,0); }
}
.btn--pulse { animation: pulse-btn 2.8s ease-in-out infinite; }
.btn--pulse:hover { animation: none; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORMS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.lead-form { width: 100%; }
.form-row { display: grid; gap: .75rem; }
@media (min-width: 580px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label {
  font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; color: var(--text-muted);
}
.form-input {
  padding: .75em 1em;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: #ABABC4; }
.form-input:focus {
  border-color: var(--orange); outline: none;
  box-shadow: 0 0 0 3px rgba(255,107,53,.18);
}
.form-input[aria-invalid="true"] {
  border-color: #E53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,.12);
}
.form-error {
  font-size: .78rem; font-weight: 600; color: #D32F2F;
  min-height: 1.1em; display: block;
}
.form-note {
  font-size: .78rem; color: rgba(255,255,255,.5);
  text-align: center; margin-top: .5rem;
}
.lead-form:not(.lead-form--dark) .form-note { color: var(--text-muted); }

/* Dark form variant (hero, on navy bg) */
.lead-form--dark .form-label { color: rgba(255,255,255,.7); }
.lead-form--dark .form-input {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.lead-form--dark .form-input::placeholder { color: rgba(255,255,255,.4); }
.lead-form--dark .form-input:focus {
  border-color: var(--orange-lt);
  box-shadow: 0 0 0 3px rgba(255,140,98,.2);
  background: rgba(255,255,255,.14);
}

/* Success state */
.form-success { width: 100%; }
.success-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(255,107,53,.12); border: 1.5px solid rgba(255,107,53,.3);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  color: var(--white);
}
.lead-form:not(.lead-form--dark) + .form-success .success-card,
.success-card--lg {
  background: var(--orange-bg); border-color: rgba(255,107,53,.4);
  color: var(--navy);
}
.success-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; flex-shrink: 0;
  background: var(--orange); color: var(--white);
  border-radius: 50%; font-size: 1rem; font-weight: 900;
}
.success-card p { font-size: .9rem; margin-top: .25rem; color: inherit; opacity: .85; }
.success-card strong { font-size: 1rem; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  background: var(--navy);
  padding-top: calc(var(--header-h) + var(--sp-xl));
  padding-bottom: var(--sp-xl);
  position: relative; overflow: hidden;
}
/* Subtle warm glow */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%; width: 60%; height: 80%;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid; gap: var(--sp-2xl); align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .hero { padding-block: 0; min-height: 100svh; display: flex; align-items: center; padding-top: var(--header-h); }
}

/* Hero content */
.hero__content { position: relative; z-index: 1; }
.hero__content .eyebrow { color: var(--orange-lt); }

.hero__headline {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: var(--sp-md);
  letter-spacing: -.01em;
}
/* Animated underline on keyword */
.hero__em {
  font-style: normal; color: var(--orange); position: relative;
  display: inline-block;
}
.hero__em::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  border-radius: 3px;
  animation: underline-in .9s cubic-bezier(.4,0,.2,1) forwards .4s;
}
@keyframes underline-in { to { width: 100%; } }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.75); margin-bottom: var(--sp-lg);
  max-width: 52ch; line-height: 1.7;
}
.hero__content .lead-form { margin-bottom: 0; }

/* Hero visual */
.hero__visual { display: none; }
@media (min-width: 1024px) {
  .hero__visual {
    display: block; position: relative; z-index: 1;
    align-self: stretch; display: flex; align-items: center;
  }
}
.hero__img-wrap {
  position: relative; border-radius: var(--radius-md);
  overflow: visible; width: 100%;
}
.hero__img {
  width: 100%; height: 560px; object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: var(--white); color: var(--navy);
  border-radius: 40px; padding: .55em 1.1em;
  font-size: .82rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,.16);
  white-space: nowrap; display: flex; align-items: center; gap: .4rem;
  animation: badge-float 4s ease-in-out infinite;
}
.hero__badge--top { top: 1.5rem; right: -1.25rem; }
.hero__badge--bottom {
  bottom: 2.5rem; left: -1.25rem;
  animation-delay: -2s;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAIN POINTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pain__grid {
  display: grid; gap: 1.5rem;
  margin-top: var(--sp-lg);
}
@media (min-width: 640px) { .pain__grid { grid-template-columns: repeat(3, 1fr); } }

.pain__card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.pain__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--orange);
}
.pain__icon { font-size: 2.2rem; margin-bottom: 1rem; line-height: 1; }
.pain__title {
  font-size: 1.1rem; font-weight: 700; color: var(--navy);
  margin-bottom: .5rem;
}
.pain__card p { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOW IT WORKS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.how__steps {
  display: grid; gap: 2.5rem;
  margin-top: var(--sp-lg);
}
@media (min-width: 768px) {
  .how__steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start; gap: 1rem;
  }
}
.how__step { text-align: center; }
.how__step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.5rem; height: 3.5rem;
  background: var(--orange-bg); color: var(--orange);
  font-size: 1.1rem; font-weight: 800; letter-spacing: .04em;
  border-radius: 50%; border: 2px solid var(--orange);
  margin: 0 auto var(--sp-sm);
}
.how__step-title {
  font-size: 1.15rem; font-weight: 700; color: var(--navy);
  margin-bottom: .5rem;
}
.how__step p { font-size: .92rem; color: var(--text-muted); max-width: 22ch; margin-inline: auto; }
.how__arrow {
  display: none;
  align-self: start; padding-top: 1.5rem;
  color: var(--orange); opacity: .5; font-size: 1.5rem;
}
@media (min-width: 768px) { .how__arrow { display: block; } }
.how__arrow::after { content: '→'; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROOF BAR
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proof-bar {
  background: var(--orange); color: var(--white);
  padding-block: var(--sp-lg);
}
.proof-bar__grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: var(--sp-md) var(--sp-lg);
}
.proof-bar__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.proof-bar__num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; line-height: 1.1;
}
.proof-bar__label {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .85; margin-top: .15rem;
}
.proof-bar__divider {
  width: 1px; height: 2.5rem;
  background: rgba(255,255,255,.3);
  display: none;
}
@media (min-width: 640px) { .proof-bar__divider { display: block; } }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.tgrid {
  display: grid; gap: 1.5rem;
  margin-top: var(--sp-lg);
}
@media (min-width: 768px) { .tgrid { grid-template-columns: repeat(3, 1fr); } }

.tcard {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 2rem 1.75rem; border: 1.5px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__stars {
  color: #F59E0B; font-size: 1rem; letter-spacing: .1em;
  margin-bottom: .85rem;
}
.tcard__quote {
  font-size: .93rem; line-height: 1.7;
  color: var(--text); font-style: italic;
  flex: 1; margin-bottom: 1.5rem;
}
.tcard__footer {
  display: flex; align-items: center; gap: .85rem;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.tcard__avatar {
  width: 2.75rem; height: 2.75rem; flex-shrink: 0;
  background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
}
.tcard__info { display: flex; flex-direction: column; gap: .1rem; }
.tcard__info strong { font-size: .9rem; color: var(--navy); }
.tcard__info span { font-size: .78rem; color: var(--text-muted); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHAT'S INCLUDED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.included__inner {
  display: grid; gap: var(--sp-2xl); align-items: center;
}
@media (min-width: 900px) {
  .included__inner { grid-template-columns: 1fr 1fr; }
}
.included__list { display: flex; flex-direction: column; gap: .85rem; margin-top: var(--sp-md); }
.included__item {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .97rem; color: var(--text); line-height: 1.5;
}
.included__check {
  flex-shrink: 0; width: 1.5rem; height: 1.5rem;
  background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; margin-top: .1rem;
}
.included__img-col { display: none; }
@media (min-width: 900px) { .included__img-col { display: block; } }
.included__img {
  width: 100%; height: 480px; object-fit: cover; object-position: top;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   URGENCY BANNER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.urgency {
  background: var(--navy-2);
  padding-block: var(--sp-lg);
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}
.urgency__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-md); text-align: center;
}
@media (min-width: 768px) {
  .urgency__inner { flex-direction: row; justify-content: center; gap: var(--sp-xl); }
}
.urgency__text {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white);
}
.urgency__text strong { color: var(--orange); }

.countdown {
  display: flex; align-items: center; gap: .4rem;
}
.countdown__unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255,255,255,.07); border-radius: var(--radius-sm);
  padding: .4rem .75rem; min-width: 3.5rem;
}
.countdown__val {
  font-size: 1.6rem; font-weight: 800; color: var(--orange);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); margin-top: .1rem;
}
.countdown__sep {
  font-size: 1.6rem; font-weight: 800; color: var(--orange);
  align-self: flex-start; padding-top: .35rem; line-height: 1;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FINAL CTA
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.final-cta {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.final-cta__inner {
  display: grid; gap: var(--sp-2xl); align-items: center;
}
@media (min-width: 900px) {
  .final-cta__inner { grid-template-columns: 1fr 1fr; }
}
.final-cta__bullets {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: var(--sp-md);
}
.final-cta__bullets li {
  font-size: .95rem; font-weight: 600; color: var(--text-muted);
  display: flex; align-items: center; gap: .5rem;
}
.final-cta__form-col {
  background: var(--off-white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.final-cta__form-col .form-label { color: var(--text-muted); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--navy);
  padding-block: var(--sp-lg);
  text-align: center;
}
.site-footer__inner p {
  font-size: .82rem; color: rgba(255,255,255,.45);
}
.site-footer a {
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-footer a:hover { color: var(--orange); border-bottom-color: var(--orange); }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHATSAPP STICKY (mobile only)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wa-sticky {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 200;
  display: flex; align-items: center; gap: .6rem;
  background: #25D366; color: var(--white);
  padding: .7em 1.2em; border-radius: 40px;
  font-size: .88rem; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-sticky:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
@media (min-width: 768px) { .wa-sticky { display: none; } }
@media print { .wa-sticky { display: none; } }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL ANIMATIONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* Stagger children in grids */
.pain__grid .reveal:nth-child(2) { transition-delay: .1s; }
.pain__grid .reveal:nth-child(3) { transition-delay: .2s; }
.tgrid .reveal:nth-child(2) { transition-delay: .1s; }
.tgrid .reveal:nth-child(3) { transition-delay: .2s; }
.how__steps .reveal:nth-child(3) { transition-delay: .1s; }
.how__steps .reveal:nth-child(5) { transition-delay: .2s; }
.included__list .reveal:nth-child(2) { transition-delay: .07s; }
.included__list .reveal:nth-child(3) { transition-delay: .14s; }
.included__list .reveal:nth-child(4) { transition-delay: .21s; }
.included__list .reveal:nth-child(5) { transition-delay: .28s; }
.included__list .reveal:nth-child(6) { transition-delay: .35s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__em::after { animation: none; width: 100%; }
  .btn--pulse { animation: none; }
  .hero__badge { animation: none; }
  html { scroll-behavior: auto; }
}