:root {
  --ink: #0c2428;
  --ink-soft: #3a555a;
  --teal: #0f6b73;
  --teal-deep: #08444a;
  --teal-mid: #1a858f;
  --mint: #d7ebe8;
  --mist: #eef4f3;
  --paper: #f7faf9;
  --line: rgba(12, 36, 40, 0.1);
  --gold: #b8893a;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 68, 74, 0.14);
  --radius: 18px;
  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --display: "El Messiri", "IBM Plex Sans Arabic", serif;
  --container: min(1120px, calc(100% - 2rem));
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background-color: var(--paper);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(1200px 600px at 100% -10%, rgba(26, 133, 143, 0.12), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(184, 137, 58, 0.08), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--mist) 40%, var(--paper));
  line-height: 1.75;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.skip {
  position: absolute;
  inset-inline-start: -999px;
  top: 0;
  background: var(--teal-deep);
  color: white;
  padding: .75rem 1rem;
  z-index: 100;
}
.skip:focus { inset-inline-start: 1rem; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .85rem 1.45rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 68, 74, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(8, 68, 74, 0.36); }
.btn-light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-wa {
  background: #1fad52;
  color: #fff;
  border-color: #1a9a48;
  box-shadow: 0 10px 24px rgba(31, 173, 82, 0.28);
}
.btn-wa:hover {
  background: #189647;
  box-shadow: 0 14px 30px rgba(31, 173, 82, 0.36);
}
.btn-wa .icon {
  width: 1.15rem;
  height: 1.15rem;
  color: #fff;
}
.btn-sm {
  padding: .55rem 1rem;
  font-size: .9rem;
}
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-header-sm {
  padding: .55rem 1rem;
  font-size: .88rem;
  min-height: 40px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(247, 250, 249, 0.82);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: visible;
  padding-block: .35rem;
}
.site-header.is-scrolled {
  background: rgba(247, 250, 249, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 28px rgba(8, 68, 74, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}
.brand.brand-logo-only {
  flex: 0 0 auto;
  max-width: none;
  overflow: visible;
  padding-block: .15rem;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}
.brand.brand-logo-only img {
  width: auto;
  height: 70px;
  max-width: min(160px, 48vw);
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  overflow: visible;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.brand-text strong {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  white-space: nowrap;
}
.brand-text em {
  font-style: normal;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 600;
}

.nav {
  display: none;
  gap: 1rem;
  font-size: .92rem;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding: .25rem 0;
  transition: color .2s ease;
}
.nav a:hover { color: var(--teal-deep); }
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal-mid);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }
.header-actions { display: none; gap: .55rem; }

.header-mobile-tools {
  display: flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease;
  transform-origin: center;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.drawer-open { overflow: hidden; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(6, 28, 32, 0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  z-index: 100;
  width: min(88vw, 360px);
  background:
    radial-gradient(420px 240px at 100% 0%, rgba(26, 133, 143, 0.16), transparent 60%),
    linear-gradient(180deg, #f7faf9, #eef4f3);
  box-shadow: 12px 0 40px rgba(8, 68, 74, 0.18);
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.35rem;
}
html[dir="rtl"] .mobile-drawer {
  transform: translateX(110%);
  box-shadow: -12px 0 40px rgba(8, 68, 74, 0.18);
}
.mobile-drawer.is-open { transform: translateX(0) !important; }

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.drawer-close span {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.drawer-close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.drawer-close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer-nav {
  display: grid;
  gap: .25rem;
  padding: 1rem 0;
  overflow: auto;
  flex: 1;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem .85rem;
  border-radius: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.drawer-nav a span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(15, 107, 115, 0.1);
  color: var(--teal-deep);
  font-size: .75rem;
  font-weight: 700;
}
.drawer-nav a:hover,
.drawer-nav a:active {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-3px);
}
html[dir="ltr"] .drawer-nav a:hover { transform: translateX(3px); }

.drawer-foot {
  display: grid;
  gap: .65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.drawer-foot .btn { width: 100%; }
.drawer-foot p {
  margin: .15rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: .85rem;
}


.hero {
  position: relative;
  min-height: clamp(480px, 88svh, 760px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 24, 28, 0.45) 0%, rgba(6, 34, 38, 0.62) 42%, rgba(5, 22, 26, 0.9) 100%),
    radial-gradient(ellipse at center, rgba(5, 22, 26, 0.25) 0%, rgba(5, 22, 26, 0.55) 70%);
}

.hero-content,
.hero .hero-content {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(92vw, 720px);
  max-width: 720px;
  margin: 0 auto;
  margin-inline: auto;
  padding: 5rem 1rem 4rem;
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  inset-inline: auto;
}

.hero-kicker {
  margin: 0 auto .9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  max-width: min(100%, 22rem);
  padding: .55rem .95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  color: #eaf7f5;
  line-height: 1.25;
  text-align: start;
}
.hero-kicker-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .12rem;
  min-width: 0;
}
.kicker-brand {
  font-size: .95rem;
  font-weight: 700;
}
.kicker-subbrand {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(234, 247, 245, 0.88);
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #6fd3c4;
  box-shadow: 0 0 0 6px rgba(111, 211, 196, 0.22);
  animation: waPulse 2s ease-in-out infinite;
}

.hero h1 {
  margin: 0 auto .85rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 1.15rem + 2.4vw, 3.05rem);
  line-height: 1.4;
  font-weight: 700;
  max-width: 16em;
  text-align: center;
}
.hero-title-main,
.hero-title-sub { display: block; }
.hero-title-sub {
  margin-top: .12em;
  color: rgba(255, 255, 255, 0.96);
}

.hero-lead {
  margin: 0 auto 1.25rem;
  font-size: clamp(.98rem, .9rem + .45vw, 1.15rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 32em;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
}

.hero-cta {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: stretch;
  gap: .65rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}
.hero-cta .btn {
  width: 100%;
  max-width: none;
  justify-content: center;
  white-space: normal;
  text-align: center;
  line-height: 1.4;
  padding: .95rem 1.15rem;
  min-height: 3.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.2;
}

.hero-scroll {
  position: absolute;
  bottom: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: none;
  place-items: center;
  color: #fff;
  background: rgba(8, 68, 74, 0.72);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease;
}
.hero-scroll svg {
  display: block;
  animation: scrollBounce 1.5s ease-in-out infinite;
}
.hero-scroll:hover {
  background: rgba(15, 107, 115, 0.95);
  transform: translateX(-50%) translateY(-2px);
}

@media (max-width: 480px) {
  :root {
    --container: min(1120px, calc(100% - 1.25rem));
  }
  .brand {
    flex: 1 1 auto;
    max-width: calc(100% - 7.5rem);
  }
  .brand.brand-logo-only {
    flex: 0 0 auto;
    max-width: none;
  }
  .brand img {
    width: 38px;
    height: 38px;
  }
  .brand.brand-logo-only img {
    width: auto;
    height: 62px;
    max-width: min(150px, 50vw);
  }
  .brand-text em { display: none; }
  .brand-text strong {
    font-size: .86rem;
    letter-spacing: 0;
  }
  .brand-prefix { display: none; }
  .btn-header-sm {
    padding: .5rem .7rem;
    font-size: .8rem;
  }
  .hero {
    min-height: calc(100svh - 4.25rem);
    align-items: center;
  }
  .hero-content {
    padding: 2.75rem .75rem 5.75rem;
    width: min(100%, 820px);
  }
  .hero-kicker {
    max-width: min(100%, 17.5rem);
    padding: .5rem .8rem;
  }
  .kicker-brand { font-size: .88rem; }
  .kicker-subbrand { font-size: .76rem; }
  .hero h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.9rem);
    max-width: none;
  }
  .hero-lead {
    max-width: none;
    font-size: .95rem;
    margin-bottom: 1.1rem;
  }
  .hero-meta { gap: .35rem; }
  .hero-meta li {
    font-size: .76rem;
    padding: .35rem .55rem;
  }
  .trust-strip { margin-top: 0; }
  .trust-grid {
    gap: .75rem;
    padding: 1rem;
  }
  .trust-item {
    gap: .45rem;
    padding: .2rem;
  }
  .trust-item strong { font-size: 1rem; }
  .trust-item span { font-size: .8rem; }
  .section { padding: 3.25rem 0; }
  .section-head { margin-bottom: 1.75rem; }
  .inline-cta,
  .wa-strip {
    padding: 1rem 1.05rem;
  }
  .price-card .btn { width: 100%; }
  .cta-inner {
    padding: 1.6rem 1.15rem;
  }
  .cta-inner .hero-cta {
    max-width: none;
  }
}

@media (min-width: 480px) and (max-width: 639.98px) {
  .hero-cta {
    max-width: 26rem;
  }
}

@media (min-width: 640px) {
  .inline-cta .btn,
  .wa-strip .btn,
  .mid-cta-inner .btn {
    width: auto;
  }
  .hero-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 34rem;
  }
  .path-grid,
  .pain-grid,
  .why-grid,
  .exercise-grid,
  .service-rail,
  .service-rail-6,
  .price-grid,
  .program-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 767.98px) {
  .hero-content { padding: 5.5rem 0 3.75rem; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.trust-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  backdrop-filter: blur(10px);
}
.trust-grid div {
  display: grid;
  gap: .15rem;
  padding: .35rem .5rem;
}
.trust-grid strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--teal-deep);
}
.trust-grid span {
  color: var(--ink-soft);
  font-size: .92rem;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.section-tint {
  background:
    linear-gradient(180deg, rgba(215, 235, 232, 0.45), rgba(238, 244, 243, 0.2));
}
.section-deep {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(26, 133, 143, 0.35), transparent 60%),
    linear-gradient(160deg, #083b40, #0c555c 55%, #0a3d42);
  color: #f3fbfa;
}

.section-behavior {
  position: relative;
  color: #f3fbfa;
  background:
    radial-gradient(640px 320px at 0% 100%, rgba(184, 137, 58, 0.22), transparent 55%),
    radial-gradient(720px 380px at 100% 0%, rgba(26, 133, 143, 0.4), transparent 58%),
    linear-gradient(155deg, #062f33 0%, #0a4a50 48%, #0c3a32 100%);
  overflow: hidden;
}
.section-behavior::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  pointer-events: none;
}
.section-behavior > .container { position: relative; z-index: 1; }

.behavior-path {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
  counter-reset: none;
}
.behavior-path li {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    "num body";
  column-gap: 1rem;
  row-gap: .35rem;
  padding: 1.15rem 1.2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.behavior-path li:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 137, 58, 0.45);
  background: rgba(255, 255, 255, 0.09);
}
.behavior-num {
  grid-area: num;
  align-self: start;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: .15rem;
}
.behavior-path h3 {
  grid-area: title;
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  color: #fff;
}
.behavior-path p {
  grid-area: body;
  margin: 0;
  color: rgba(243, 251, 250, 0.78);
  font-size: .95rem;
}

.behavior-focus {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}
.behavior-focus h3 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: #9fd5d1;
}
.behavior-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.behavior-chips li {
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 251, 250, 0.92);
  font-size: .88rem;
}

.behavior-cta {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.behavior-cta .wa-strip-text strong { color: #fff; }
.behavior-cta .wa-strip-text span { color: rgba(243, 251, 250, 0.78); }

.service-item .text-link {
  display: inline-block;
  margin-top: .75rem;
}

@media (min-width: 768px) {
  .behavior-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .behavior-focus {
    grid-template-columns: 1.2fr .8fr;
    gap: 2rem;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .behavior-path {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .behavior-path li {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "body";
    row-gap: .55rem;
    min-height: 100%;
  }
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}
.section-head.light .eyebrow { color: #9fd5d1; }
.section-head.light h2,
.section-head.light p { color: #f3fbfa; }
.section-head h2 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.3;
}
.section-head p { margin: 0; color: var(--ink-soft); font-size: 1.05rem; }
.eyebrow {
  margin: 0 0 .55rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: .04em;
}

.service-rail {
  display: grid;
  gap: 1rem;
}
.service-item {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(15, 107, 115, 0.28);
}
.service-item.is-live {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(215, 235, 232, 0.65));
  border-color: rgba(15, 107, 115, 0.25);
}
.service-item h3 {
  margin: .65rem 0 .45rem;
  font-family: var(--display);
  font-size: 1.35rem;
}
.service-item p { margin: 0; color: var(--ink-soft); }
.tag {
  display: inline-flex;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(15, 107, 115, 0.12);
  color: var(--teal-deep);
  font-size: .8rem;
  font-weight: 600;
}
.tag-soon {
  background: rgba(184, 137, 58, 0.15);
  color: #8a6424;
}

.pain-grid {
  display: grid;
  gap: 1rem;
}
.pain-grid article {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-inline-start: 4px solid var(--teal-mid);
}
.pain-grid h3 {
  margin: 0 0 .45rem;
  font-family: var(--display);
  font-size: 1.2rem;
}
.pain-grid p { margin: 0; color: var(--ink-soft); }

.inline-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(215, 235, 232, 0.9), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(15, 107, 115, 0.18);
}
.inline-cta p { margin: 0; max-width: 46ch; }
.inline-cta .btn {
  width: 100%;
}
.wa-strip .btn,
.science-note .btn,
.mid-cta-inner .btn {
  width: 100%;
}

.wa-strip {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  padding: 1.15rem 1.35rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #128c3d 0%, #1fad52 55%, #25d366 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(18, 140, 61, 0.22);
}
.wa-strip-soft {
  background: linear-gradient(135deg, rgba(31, 173, 82, 0.1), rgba(255, 255, 255, 0.95));
  color: var(--ink);
  border: 1px solid rgba(31, 173, 82, 0.28);
  box-shadow: none;
}
.wa-strip-text {
  display: grid;
  gap: .25rem;
  min-width: min(100%, 18rem);
}
.wa-strip-text strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
}
.wa-strip-text span {
  font-size: .95rem;
  opacity: .92;
}
.wa-strip-soft .wa-strip-text span { color: var(--ink-soft); opacity: 1; }
.wa-strip .btn-wa {
  background: #fff;
  color: #128c3d;
  border-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.wa-strip .btn-wa .icon { color: #128c3d; }
.wa-strip .btn-wa:hover {
  background: #f3fff7;
  color: #0f7a35;
}
.wa-strip-soft .btn-wa {
  background: #1fad52;
  color: #fff;
  border-color: #1a9a48;
}
.wa-strip-soft .btn-wa .icon { color: #fff; }

.promise { padding-block: clamp(3rem, 6vw, 4.5rem); }
.promise-inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.promise-inner h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.35;
}
.promise-inner p {
  margin: 0;
  color: rgba(243, 251, 250, 0.88);
  font-size: 1.08rem;
}

.service-rail-6 { grid-template-columns: 1fr; }

.text-link {
  display: inline-block;
  margin-top: .75rem;
  color: var(--teal-deep);
  font-weight: 600;
}
.text-link:hover { color: var(--teal-mid); }

.journey-list {
  display: grid;
  gap: .85rem;
}
.journey-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}
.journey-list span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
}
.journey-list h3 {
  margin: 0 0 .15rem;
  font-family: var(--display);
  font-size: 1.1rem;
}
.journey-list p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

.path-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.path-grid li {
  padding: 1.25rem 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease;
}
.path-grid li:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 107, 115, 0.28);
}
.path-num {
  display: inline-block;
  margin-bottom: .65rem;
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
}
.path-grid h3 {
  margin: 0 0 .45rem;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.35;
}
.path-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .98rem;
  line-height: 1.75;
}

.mid-cta {
  padding: 0 0 clamp(3rem, 6vw, 4rem);
}
.mid-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(184, 137, 58, 0.22), transparent 55%),
    linear-gradient(145deg, #0a4c52, #12727b);
  color: #fff;
  box-shadow: var(--shadow);
}
.mid-cta-inner .eyebrow { color: #c9ebe7; }
.mid-cta-inner h2 {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.mid-cta-inner p { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 46ch; }

.proof-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr);
}
.reviews-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.reviews-score {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .25rem;
}
.reviews-score strong {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--teal-deep);
}
.reviews-score em {
  font-style: normal;
  font-size: .8rem;
  color: var(--ink-soft);
}
.reviews-summary > p {
  margin: 0;
  flex: 1 1 12rem;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.65;
  min-width: 0;
}
.stars {
  display: inline-block;
  color: #c9971a;
  font-size: 1.05rem;
  letter-spacing: .12em;
  line-height: 1;
  font-family: Arial, sans-serif;
}
.stars-sm {
  font-size: .95rem;
  letter-spacing: .1em;
}
.review-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.2rem 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.review-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  min-width: 0;
}
.review-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--teal-deep);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
.review-meta {
  min-width: 0;
  display: grid;
  gap: .15rem;
}
.review-meta strong {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
}
.review-meta span {
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.review-card > p {
  margin: 0;
  width: 100%;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.review-foot {
  width: 100%;
  margin-top: .15rem;
  padding-top: .7rem;
  border-top: 1px solid rgba(12, 36, 40, 0.08);
}
.review-foot span {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--teal-deep);
  background: rgba(15, 107, 115, 0.08);
  border-radius: 999px;
  padding: .3rem .65rem;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 800px;
}
.faq-list details {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--display);
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details p {
  margin: .75rem 0 0;
  color: var(--ink-soft);
}

.price-grid {
  display: grid;
  gap: 1rem;
}
.price-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  display: grid;
  gap: .65rem;
  align-content: start;
}
.price-card.is-featured {
  background: linear-gradient(160deg, rgba(215, 235, 232, 0.95), rgba(255, 255, 255, 0.95));
  border-color: rgba(15, 107, 115, 0.28);
  box-shadow: var(--shadow);
}
.price-label {
  margin: 0;
  color: var(--teal);
  font-weight: 600;
  font-size: .9rem;
}
.price-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
}
.price-value {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: .35rem;
  color: var(--teal-deep);
}
.price-value strong {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
}
.price-value span { font-weight: 600; }
.price-card > p { margin: 0; color: var(--ink-soft); }
.price-note {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  max-width: 70ch;
}

.exercise-grid {
  display: grid;
  gap: 1rem;
}
.exercise-grid article {
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}
.exercise-grid h3 {
  margin: 0 0 .4rem;
  font-family: var(--display);
  font-size: 1.15rem;
}
.exercise-grid p { margin: 0; color: var(--ink-soft); }

.program-list {
  display: grid;
  gap: 1rem;
}
.program-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}
.program-list .num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  padding-top: .2rem;
}
.program-list h3 {
  margin: 0 0 .35rem;
  font-family: var(--display);
  font-size: 1.25rem;
}
.program-list p { margin: 0; color: var(--ink-soft); }

.condition-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .75rem;
}
.condition-grid li {
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 560;
  position: relative;
  padding-inline-start: 1.6rem;
}
.condition-grid li::before {
  content: "";
  position: absolute;
  inset-inline-start: .7rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-mid);
  transform: translateY(-50%);
}

.team-layout {
  display: grid;
  gap: 1.25rem;
}
.team-feature {
  padding: 1.75rem 1.4rem;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.team-feature .role {
  margin: 0 0 .35rem;
  color: #9fd5d1;
  font-weight: 600;
}
.team-feature h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.team-feature .years {
  margin: .35rem 0 1rem;
  color: #f0d39a;
  font-weight: 600;
}
.team-feature p { margin: 0 0 1rem; color: rgba(243, 251, 250, 0.88); }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.chips li {
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: .9rem;
}
.team-side { display: grid; gap: 1rem; }
.side-block {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.side-block h4 {
  margin: 0 0 .4rem;
  font-family: var(--display);
  font-size: 1.2rem;
}
.side-block .role {
  margin: 0 0 .25rem;
  color: #9fd5d1;
  font-weight: 600;
  font-size: .88rem;
}
.side-block p { margin: 0; color: rgba(243, 251, 250, 0.82); }
.side-block .soon { color: #f0d39a; }

.about-grid .section-head { margin-bottom: 1.5rem; }
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}
.values div {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  text-align: center;
  font-family: var(--display);
}

.why-grid {
  display: grid;
  gap: 1rem;
}
.why-grid article {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}
.why-grid h3 {
  margin: 0 0 .4rem;
  font-family: var(--display);
  font-size: 1.2rem;
}
.why-grid p { margin: 0; color: var(--ink-soft); }

.cta-band {
  padding-top: 2rem;
}
.cta-inner {
  padding: clamp(2.2rem, 5vw, 3.5rem);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(600px 280px at 0% 0%, rgba(184, 137, 58, 0.18), transparent 55%),
    linear-gradient(145deg, #0a4c52, #0f6b73 60%, #0a3d42);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-inner .eyebrow { color: #c9ebe7; }
.cta-inner h2 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}
.cta-inner > p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}
.address {
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: .95rem;
}

.site-footer {
  margin-top: 1rem;
  background:
    radial-gradient(700px 320px at 100% 0%, rgba(26, 133, 143, 0.18), transparent 60%),
    linear-gradient(180deg, #0a3d42, #072f33);
  color: rgba(243, 251, 250, 0.9);
  border-top: none;
  padding: 0 0 calc(5.5rem + env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  gap: 2rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
}
.footer-brand p {
  margin: 1rem 0 1.1rem;
  color: rgba(243, 251, 250, 0.75);
  max-width: 34ch;
  line-height: 1.8;
}
.footer-brand .brand-logo-only {
  display: inline-flex;
}
.footer-brand .brand-logo-only img {
  width: auto;
  height: 84px;
  max-width: 200px;
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.footer-brand .brand-text strong { color: #fff; }
.footer-brand .brand-text em { color: #9fd5d1; }
.footer-social {
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}
.footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.footer-social a .icon {
  width: 1.45rem;
  height: 1.45rem;
  color: #ffffff;
}
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}
.footer-social a.is-whatsapp {
  background: #25d366;
  border-color: #1ebe57;
  color: #fff;
}
.footer-social a.is-whatsapp:hover { background: #1fbf5a; }
.footer-social a.is-phone {
  background: #1a858f;
  border-color: #14939e;
  color: #fff;
}
.footer-social a.is-phone:hover { background: #157780; }
.footer-social a.is-location {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.footer-social a.is-location:hover { background: rgba(255, 255, 255, 0.28); }

.contact-lines .icon {
  color: #b7ebe4;
  margin-top: .15rem;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: #fff;
}
.footer-col ul {
  display: grid;
  gap: .55rem;
}
.footer-col a {
  color: rgba(243, 251, 250, 0.78);
  transition: color .2s ease;
}
.footer-col a:hover { color: #fff; }
.contact-lines li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(243, 251, 250, 0.78);
}
.footer-cta {
  margin-top: 1rem;
  width: 100%;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 1.1rem 0 1.4rem;
  font-size: .9rem;
  color: rgba(243, 251, 250, 0.65);
}
.footer-bottom-inner p { margin: 0; }
.footer-seo { color: rgba(243, 251, 250, 0.5); font-size: .82rem; }

.float-wa {
  position: fixed;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f9d4d 0%, #25d366 55%, #3adf7a 100%);
  box-shadow:
    0 10px 28px rgba(18, 140, 61, 0.42),
    0 0 0 0 rgba(37, 211, 102, 0.45);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: waGlow 2.6s ease-in-out infinite;
  -webkit-tap-highlight-color: transparent;
}
.float-wa:hover,
.float-wa:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(18, 140, 61, 0.5);
  animation: none;
  outline: none;
}
.float-wa-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.float-wa-icon svg {
  display: block;
}
.float-wa-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}
.float-wa-copy strong {
  font-size: .98rem;
  font-weight: 700;
  font-family: var(--display);
}
.float-wa-copy em {
  font-style: normal;
  font-size: .75rem;
  opacity: .92;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .hero {
    min-height: calc(100svh - 4.25rem);
  }
  .hero-content,
  .hero .hero-content {
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
  }
  .trust-strip {
    margin-top: .35rem;
  }
  .hero-scroll {
    display: none;
  }
  .float-wa {
    inset-inline: max(.9rem, env(safe-area-inset-left)) max(.9rem, env(safe-area-inset-right));
    bottom: max(.95rem, env(safe-area-inset-bottom));
    width: auto;
    max-width: none;
    min-height: 60px;
    padding: .5rem 1.15rem .5rem .5rem;
    justify-content: flex-start;
    gap: .85rem;
    border-radius: 18px;
  }
  .float-wa-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #128c3d;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .float-wa-copy {
    display: flex;
    text-align: start;
  }
  .float-wa-copy strong {
    font-size: 1.05rem;
  }
  .float-wa-copy em {
    font-size: .78rem;
  }
  .header-mobile-tools .btn-wa {
    gap: .35rem;
    padding: .55rem .9rem;
    font-size: .86rem;
    min-height: 42px;
    box-shadow: 0 8px 18px rgba(31, 173, 82, 0.28);
  }
  .header-mobile-tools .btn-wa .icon {
    width: 1.05rem;
    height: 1.05rem;
  }
  .site-footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom));
  }
}

/* Desktop / tablet: compact pill corner */
@media (min-width: 768px) {
  .float-wa {
    bottom: max(1.25rem, env(safe-area-inset-bottom));
    inset-inline-start: max(1.15rem, env(safe-area-inset-left));
    inset-inline-end: auto;
    min-height: 56px;
    padding: .4rem 1rem .4rem .4rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Icons system */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  flex-shrink: 0;
  color: var(--teal-deep);
}
.icon-xs { width: 0.95rem; height: 0.95rem; color: currentColor; }
.icon-sm { width: 1.1rem; height: 1.1rem; }
.icon-lg { width: 1.55rem; height: 1.55rem; }
.icon-service {
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: .55rem;
  color: var(--teal);
}
.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(15, 107, 115, 0.1);
  color: var(--teal-deep);
  margin-bottom: .75rem;
}
.icon-badge .icon { width: 1.35rem; height: 1.35rem; color: inherit; }
.icon-badge.light {
  background: rgba(255, 255, 255, 0.12);
  color: #9fd5d1;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .35rem .5rem;
  min-width: 0;
}
.trust-item > div { min-width: 0; }
.trust-item .icon {
  margin-top: .2rem;
  color: var(--teal);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--teal-deep);
  line-height: 1.3;
}
.trust-item span {
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.45;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.service-item .icon-service { display: block; }

.condition-grid li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding-inline-start: 1.15rem;
}
.condition-grid li::before { display: none; }
.condition-grid .icon { color: var(--teal-mid); }

.values div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
}
.values .icon { color: var(--teal); }

.quote-icon {
  margin-bottom: .55rem;
  color: var(--teal);
  opacity: .7;
}
.quote-icon .icon { width: 1.5rem; height: 1.5rem; color: inherit; }

.pain-grid article,
.exercise-grid article,
.why-grid article {
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-grid article:hover,
.exercise-grid article:hover,
.why-grid article:hover,
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 500;
}
.faq-list details[open] summary::after { content: "–"; }

.price-card .price-label {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: .75; }
  50% { transform: translateY(5px); opacity: 1; }
}
@keyframes scrollDot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}
@keyframes waPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes waGlow {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(18, 140, 61, 0.42),
      0 0 0 0 rgba(37, 211, 102, 0.35);
  }
  50% {
    box-shadow:
      0 12px 30px rgba(18, 140, 61, 0.48),
      0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    flex-wrap: nowrap;
    gap: .7rem;
    font-size: .86rem;
  }
  .header-actions { display: flex; }
  .header-actions .btn {
    white-space: nowrap;
    padding: .7rem 1.05rem;
    font-size: .88rem;
  }
  .header-mobile-tools { display: none; }
  .drawer-overlay,
  .mobile-drawer { display: none !important; }
  .header-inner { min-height: 78px; gap: .5rem; }
  .brand img { width: 48px; height: 48px; }
  .brand.brand-logo-only img { width: auto; height: 74px; max-width: 170px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text em { font-size: .85rem; display: block; }
  .hero {
    min-height: min(92vh, 860px);
    place-items: center;
  }
  .hero-content,
  .hero .hero-content {
    width: min(90vw, 720px);
    max-width: 720px;
    margin: 0 auto;
    margin-inline: auto;
    padding: 6.5rem 1rem 5.5rem;
    text-align: center;
    justify-items: center;
  }
  .hero-kicker { font-size: 1rem; }
  .hero h1 {
    font-size: clamp(2.15rem, 1.4rem + 1.6vw, 3rem);
    max-width: 15em;
    text-align: center;
  }
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 36rem;
  }
  .hero-cta .btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 11.5rem;
    max-width: none;
    padding: 1rem 1.35rem;
  }
  .hero-scroll {
    display: grid;
    bottom: 4.75rem;
  }
  .hero-meta li { font-size: .88rem; }
  .trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 1.4rem 1.6rem; }
  .condition-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-layout { grid-template-columns: 1.35fr 1fr; }
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .mid-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .mid-cta-inner .btn { width: auto; flex-shrink: 0; }
  .inline-cta .btn,
  .wa-strip .btn { width: auto; }
  .price-card.is-featured { grid-column: 1 / -1; }
  .nav a[href="#journey"],
  .nav a[href="articles.html"] { display: none; }
}

@media (min-width: 1024px) {
  :root {
    --container: min(1120px, calc(100% - 2.5rem));
  }
  .nav {
    gap: 1rem;
    font-size: .92rem;
  }
  .nav a[href="#journey"],
  .nav a[href="articles.html"] { display: inline; }
  .header-actions .btn {
    padding: .85rem 1.3rem;
    font-size: .95rem;
  }
  .brand img { width: 52px; height: 52px; }
  .brand.brand-logo-only img { width: auto; height: 78px; max-width: 180px; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-text em { font-size: .9rem; }
  .service-rail { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-rail-6 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .program-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .condition-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .path-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .exercise-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-card.is-featured { grid-column: auto; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .hero-content,
  .hero .hero-content {
    max-width: 720px;
    margin-inline: auto;
    padding-bottom: 6.25rem;
    text-align: center;
    justify-items: center;
  }
  .hero-lead { max-width: 32em; margin-inline: auto; }
  .hero-cta .btn { white-space: nowrap; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
