:root {
  --navy: #0d365c;
  --navy-deep: #082542;
  --green: #4ade80;
  --green-deep: #22c55e;
  --paper: #ffffff;
  --mist: #eef2f7;
  --text: #2d3748;
  --muted: #65758b;
  --border: #d9e2ec;
  --warm: #f7f3ee;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 20px 0 auto;
  z-index: 40;
  padding: 0 24px;
}

.nav-shell {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 68px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(8, 37, 66, 0.42);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(6, 24, 44, 0.12);
}

.site-header.light .nav-shell,
body:not(.home) .nav-shell {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-color: rgba(217, 226, 236, 0.85);
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  font-size: 1.2rem;
}

.brand span {
  color: var(--green);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  place-items: center;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}

.nav-item {
  position: relative;
  padding: 4px 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  color: inherit;
  opacity: 0.94;
}

.nav-link:hover,
.nav-item:focus-within > .nav-link {
  background: rgba(74, 222, 128, 0.12);
  opacity: 1;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 50;
  min-width: 250px;
  transform: translate(-50%, 8px);
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 28px 80px rgba(8, 37, 66, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: 160ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown,
.nav-item.menu-open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text);
}

.dropdown a:hover {
  background: var(--mist);
  color: var(--navy);
}

.nav-item.has-dropdown > .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.7;
}

.dropdown::before {
  content: "";
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  line-height: 1;
  transition: 180ms ease;
  cursor: pointer;
}

.btn.primary {
  background: var(--green);
  color: #072f1a;
}

.btn.primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}

.btn.light {
  background: #fff;
  color: var(--navy);
}

.btn.ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn.navy {
  background: var(--navy);
  color: #fff;
}

.section {
  padding: 112px 24px;
}

body:not(.home) .section {
  padding: 96px 24px;
}

.section.compact {
  padding: 80px 24px;
}

.section.alt {
  background:
    radial-gradient(circle at 8% 12%, rgba(74, 222, 128, 0.08), transparent 28%),
    var(--mist);
}

.section.warm {
  background: var(--warm);
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero .eyebrow,
.cta .eyebrow,
.page-hero.navy .eyebrow {
  color: var(--green);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  max-width: 840px;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  max-width: 860px;
}

body:not(.home) h2 {
  font-size: clamp(2.15rem, 3.7vw, 4rem);
  max-width: 760px;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.lead {
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  max-width: 700px;
}

.green-text {
  color: var(--green);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: stretch;
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(400px, 0.86fr);
  min-height: 100svh;
}

.hero-copy {
  padding: 132px 24px 42px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-copy::before {
  content: "";
  width: 84px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--green);
}

.hero h1 {
  color: #fff;
  max-width: 940px;
  font-size: clamp(3.4rem, 5.55vw, 5.85rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image {
  position: relative;
  min-height: 540px;
}

.hero-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 0.92), rgba(8, 37, 66, 0.24) 45%, rgba(8, 37, 66, 0.1)),
    linear-gradient(0deg, rgba(8, 37, 66, 0.32), rgba(8, 37, 66, 0));
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  max-width: 820px;
}

.proof-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
}

.proof-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.proof-label {
  display: block;
}

.proof-icon {
  width: 58px;
  height: 58px;
  margin-top: 12px;
  border-radius: 50%;
  object-fit: contain;
  opacity: 0.86;
  box-shadow: none;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 72px;
}

.service-line {
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.service-line p {
  margin-top: 16px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--navy);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.image-frame {
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
  position: relative;
}

.image-frame img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.cred-list,
.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.cred-list li,
.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--text);
}

.cred-list li::before,
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--green);
}

.resources-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  margin-top: 58px;
}

.resource-card {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.resource-card.featured {
  min-height: 620px;
}

.resource-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.resource-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.82), rgba(8, 37, 66, 0.08) 62%);
}

.resource-info {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 28px;
  color: #fff;
}

.resource-info .eyebrow {
  color: #fff;
}

.resource-info h3 {
  color: #fff;
}

.resource-info p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
}

.stack {
  display: grid;
  gap: 28px;
}

.article-card {
  padding: 34px;
  min-height: 296px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.testimonial {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(8, 37, 66, 0.05);
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mist);
  color: var(--navy);
  font-weight: 850;
}

.rating {
  margin-top: 22px;
  color: var(--green-deep);
  font-weight: 850;
  letter-spacing: 0.05em;
}

.logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  color: #6f7d8d;
  font-weight: 850;
  filter: grayscale(1);
  opacity: 0.78;
}

.cta {
  padding: 120px 24px;
  background: var(--navy-deep);
  color: #fff;
}

.cta h2 {
  color: #fff;
}

.cta .lead {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 78px 24px 28px;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 54px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  width: min(190px, 100%);
  margin-bottom: 18px;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.95rem;
}

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

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

.legal {
  display: flex;
  gap: 18px;
}

.page-hero {
  padding: 154px 24px 92px;
  background:
    linear-gradient(135deg, #f7f9fc 0%, var(--mist) 54%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -180px;
  top: 74px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 50%;
}

.page-hero.navy {
  background: var(--navy-deep);
  color: #fff;
}

.page-hero.navy h1,
.page-hero.navy .lead {
  color: #fff;
}

.page-hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 4.2vw, 4.85rem);
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero .image-frame img {
  aspect-ratio: 4 / 3;
}

.page-hero .image-frame {
  align-self: center;
  box-shadow: 0 28px 90px rgba(8, 37, 66, 0.08);
}

.page-hero.navy::after {
  border-color: rgba(255, 255, 255, 0.08);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #082542;
  box-shadow: 0 18px 50px rgba(8, 37, 66, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.contact-method strong {
  color: var(--navy);
}

.contact-method span {
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.four-col {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.content-block {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.content-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
  opacity: 0;
  transition: opacity 180ms ease;
}

.content-block:hover {
  border-color: rgba(13, 54, 92, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(8, 37, 66, 0.08);
}

.content-block:hover::before {
  opacity: 1;
}

.content-block h3 {
  margin-bottom: 14px;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  padding-left: 20px;
  margin: 16px 0 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 52px;
}

.section-heading .lead {
  max-width: 430px;
  margin-top: 0;
}

.section-heading h2 + .lead {
  max-width: 620px;
  margin-top: 18px;
}

.pillar {
  padding: 0 22px 30px 0;
  border-bottom: 1px solid var(--border);
}

.pillar .number {
  display: block;
  margin-bottom: 46px;
  color: var(--green-deep);
  font-weight: 850;
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 48px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.timeline-item span {
  color: var(--muted);
  font-weight: 750;
}

.note {
  max-width: 800px;
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.signature {
  display: block;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 850;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 16px;
}

.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.step::before {
  content: "0" counter(step);
  color: var(--green-deep);
  font-weight: 850;
  font-size: 1.1rem;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.topic-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.topic-cloud span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 52px;
  align-items: start;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 34px;
  background: #fff;
}

.form-grid {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 750;
}

/* 2026 visual refresh */
body {
  background:
    linear-gradient(90deg, rgba(13, 54, 92, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 54, 92, 0.035) 1px, transparent 1px),
    #fff;
  background-size: 64px 64px;
}

.site-header {
  inset: 18px 0 auto;
}

.nav-shell {
  max-width: min(var(--max), calc(100vw - 48px));
  min-height: 72px;
  padding: 0 16px 0 22px;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(8, 37, 66, 0.55);
  box-shadow: 0 30px 100px rgba(8, 37, 66, 0.2);
}

body:not(.home) .nav-shell,
.site-header.light .nav-shell {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 100px rgba(8, 37, 66, 0.12);
}

.brand {
  font-size: 1.28rem;
}

.nav-link {
  font-weight: 750;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 54px;
  padding: 0 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(8, 37, 66, 0.1);
}

.btn::after {
  content: "->";
  display: inline-flex;
  margin-left: 12px;
  transition: transform 180ms ease;
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--green), #86efac);
}

.btn.light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.btn.navy {
  background: linear-gradient(135deg, var(--navy), #124a78);
}

.home .hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy-deep);
}

.home .hero-grid {
  display: block;
  min-height: 100svh;
}

.home .hero-copy {
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  padding: 132px 24px 40px;
  justify-content: center;
}

.home .hero-copy::before {
  width: 120px;
  height: 4px;
  margin-bottom: 26px;
}

.home .hero h1 {
  max-width: 980px;
  font-size: clamp(3.8rem, 7.2vw, 7.8rem);
  line-height: 0.9;
}

.home .hero .lead {
  max-width: 780px;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
}

.home .hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home .hero-image img {
  height: 100%;
  object-position: 92% center;
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 0.98) 0%, rgba(8, 37, 66, 0.86) 39%, rgba(8, 37, 66, 0.34) 66%, rgba(8, 37, 66, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.32), rgba(8, 37, 66, 0.04));
}

.home .hero-proof {
  margin-top: 36px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.proof-item {
  border-top-color: rgba(74, 222, 128, 0.5);
}

.page-hero {
  min-height: 78svh;
  display: grid;
  align-items: center;
  padding-top: 138px;
  padding-bottom: 86px;
}

.page-hero-grid {
  max-width: min(var(--max), calc(100vw - 48px));
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.page-hero h1 {
  font-size: clamp(3rem, 4.6vw, 5.45rem);
  line-height: 0.9;
}

.page-hero .lead {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.page-hero .image-frame {
  transform: rotate(-1deg);
  box-shadow: 0 34px 110px rgba(8, 37, 66, 0.18);
}

.page-hero .image-frame img {
  aspect-ratio: 16 / 11;
}

.section {
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-heading {
  align-items: center;
}

.solution-grid {
  gap: 18px;
}

.service-line {
  min-height: 310px;
  padding: 30px;
  border: 1px solid rgba(217, 226, 236, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 247, 0.66)),
    #fff;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  position: relative;
  overflow: hidden;
}

.solution-grid .service-line {
  padding-top: 188px;
}

.solution-grid .service-line::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 132px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 360ms ease;
}

.solution-grid .service-line::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 132px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.28), transparent 70%);
  pointer-events: none;
}

.solution-grid .service-line:nth-child(1)::before {
  background-image: url("../images/health-coaching-grocery.jpg");
  background-position: 48% 26%;
}

.solution-grid .service-line:nth-child(2)::before {
  background-image: url("../images/corporate-wellness-trainer-malaysia.jpg");
  background-position: 52% 18%;
}

.solution-grid .service-line:nth-child(3)::before {
  background-image: url("../images/community-fitness-group.jpg");
  background-position: 50% 45%;
}

.solution-grid .service-line:nth-child(4)::before {
  background-image: url("../images/personal-training-support.png");
  background-position: 50% 38%;
}

.service-line:hover {
  transform: translateY(-6px);
  border-color: rgba(74, 222, 128, 0.7);
  box-shadow: 0 28px 80px rgba(8, 37, 66, 0.12);
}

.solution-grid .service-line:hover::before {
  transform: scale(1.05);
}

.service-line h3 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.service-line p {
  font-size: 1rem;
}

.split {
  gap: clamp(44px, 7vw, 96px);
}

.image-frame {
  box-shadow: 0 24px 90px rgba(8, 37, 66, 0.12);
}

.image-frame img {
  aspect-ratio: 16 / 11;
}

.resources-layout {
  gap: 18px;
}

.resource-card.featured {
  min-height: 680px;
}

.article-card,
.testimonial,
.contact-panel,
.note {
  box-shadow: 0 24px 80px rgba(8, 37, 66, 0.08);
}

.testimonial {
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(8, 37, 66, 0.13);
}

.logos {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(74, 222, 128, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), #0d365c);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.site-footer {
  background:
    linear-gradient(120deg, rgba(74, 222, 128, 0.12), transparent 28%),
    var(--navy-deep);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .eyebrow,
.hero h1,
.hero .lead,
.hero-actions,
.hero-proof,
.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero .actions {
  animation: heroRise 680ms ease both;
}

.hero h1,
.page-hero h1 {
  animation-delay: 80ms;
}

.hero .lead,
.page-hero .lead {
  animation-delay: 170ms;
}

.hero-actions,
.page-hero .actions {
  animation-delay: 260ms;
}

.hero-proof {
  animation-delay: 340ms;
}

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

@media (max-width: 980px) {
  .home .hero-copy {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .home .hero-image {
    position: relative;
    min-height: 48svh;
  }

  .home .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .page-hero-grid {
    max-width: var(--max);
    grid-template-columns: 1fr;
  }

  .page-hero .image-frame {
    transform: none;
  }

  .service-line {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0 12px;
  }

  .nav-shell {
    max-width: none;
  }

  .home .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 4rem);
    line-height: 0.96;
  }

  .home .hero-proof {
    padding: 12px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Original TINKAFIT-inspired creative direction */
:root {
  --navy: #111111;
  --navy-deep: #090909;
  --green: #8fbc7a;
  --green-deep: #6fa85e;
  --mist: #f7f7f3;
  --text: #1f1f1f;
  --muted: #656565;
  --border: #e4e4de;
}

body {
  background: #fff;
  color: var(--text);
}

.site-header {
  inset: 0 0 auto;
  padding: 0;
}

.nav-shell,
.site-header.light .nav-shell,
body:not(.home) .nav-shell {
  max-width: none;
  min-height: 96px;
  border: 0;
  border-radius: 0;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111;
  font-style: italic;
  font-weight: 850;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background:
    linear-gradient(135deg, #111 0 45%, transparent 45%),
    linear-gradient(45deg, transparent 0 45%, #111 45% 62%, transparent 62%),
    radial-gradient(circle at 72% 22%, #111 0 4px, transparent 4px);
  transform: skew(-8deg);
}

.main-nav {
  gap: 18px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.nav-link {
  min-height: 44px;
  font-weight: 650;
}

.nav-link:hover,
.nav-item:focus-within > .nav-link,
.nav-item.menu-open > .nav-link {
  background: transparent;
  color: var(--green-deep);
}

.dropdown {
  border-color: rgba(17, 17, 17, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.btn {
  min-height: 52px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.btn.primary,
.btn.navy {
  color: #fff;
  background: #111;
}

.btn.primary:hover,
.btn.navy:hover {
  background: var(--green-deep);
}

.btn.light {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.12);
  color: #111;
}

.home .hero {
  background: #000;
}

.home .hero-copy {
  max-width: none;
  padding: 142px 7vw 52px;
  justify-content: end;
}

.home .hero-copy::before {
  display: none;
}

.home .hero h1 {
  max-width: 820px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(3.1rem, 6vw, 6.4rem);
  line-height: 1.02;
}

.home .hero .lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.home .hero-image img {
  object-position: center;
  filter: saturate(0.92) contrast(1.05);
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.24) 55%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.04));
}

.home .hero-proof {
  max-width: 900px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.proof-item {
  border-top-color: rgba(143, 188, 122, 0.75);
}

.page-hero {
  background: #fff;
  min-height: 82svh;
}

.page-hero.navy {
  background: #090909;
}

.page-hero h1 {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0.96;
}

.page-hero .image-frame {
  transform: none;
  border-radius: 0;
  box-shadow: none;
}

.page-hero .image-frame img {
  aspect-ratio: 16 / 10;
}

.section {
  background: #fff;
}

.section.alt {
  background: var(--mist);
}

.eyebrow {
  color: var(--green);
}

.hero .eyebrow,
.cta .eyebrow,
.page-hero.navy .eyebrow {
  color: var(--green);
}

h1,
h2,
h3 {
  color: #111;
}

.hero h1,
.page-hero.navy h1,
.page-hero.navy .lead,
.cta h2 {
  color: #fff;
}

h2,
body:not(.home) h2 {
  font-weight: 550;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.solution-grid {
  align-items: start;
}

.solution-grid .service-line {
  min-height: auto;
  padding: 178px 20px 0;
  text-align: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.solution-grid .service-line::before {
  top: 0;
  left: 50%;
  right: auto;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  transform: translateX(-50%);
  border: 12px solid #e8ece4;
  box-shadow: inset 0 0 0 10px rgba(143, 188, 122, 0.18);
}

.solution-grid .service-line::after {
  display: none;
}

.solution-grid .service-line:hover {
  transform: translateY(-8px);
  box-shadow: none;
}

.solution-grid .service-line:hover::before {
  transform: translateX(-50%) scale(1.05);
}

.service-line h3 {
  font-weight: 550;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1.5vw, 1.55rem);
}

.service-line p {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.content-block,
.testimonial,
.contact-panel,
.note,
.article-card {
  border-radius: 0;
  box-shadow: none;
}

.content-block:hover,
.testimonial:hover {
  box-shadow: none;
}

.image-frame {
  border-radius: 0;
}

.resource-card,
.resource-card.featured {
  border-radius: 0;
}

.logos {
  border-radius: 0;
  background: #fff;
}

.cta {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.5)),
    url("../images/fitness-coaching.png") center / cover;
}

.cta::before {
  border-radius: 0;
}

.site-footer {
  background: #090909;
}

.whatsapp-float {
  background: #2fb85f;
  color: #fff;
}

@media (max-width: 980px) {
  .nav-shell,
  .site-header.light .nav-shell,
  body:not(.home) .nav-shell {
    min-height: 74px;
    padding: 0 18px;
  }

  .main-nav {
    text-transform: none;
    letter-spacing: 0;
  }

  .home .hero-copy {
    justify-content: center;
    padding-top: 118px;
  }
}

/* Final direction: premium kinetic wellness, based on the original brief */
:root {
  --navy: #0d365c;
  --navy-deep: #082542;
  --green: #4ade80;
  --green-deep: #22c55e;
  --paper: #ffffff;
  --mist: #eef2f7;
  --text: #2d3748;
  --muted: #64748b;
  --border: #d9e2ec;
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(74, 222, 128, 0.13), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(13, 54, 92, 0.1), transparent 30%),
    #fff;
}

.site-header {
  inset: 20px 0 auto;
  padding: 0 24px;
}

.nav-shell,
.site-header.light .nav-shell,
body:not(.home) .nav-shell {
  max-width: min(var(--max), calc(100vw - 48px));
  min-height: 72px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(8, 37, 66, 0.58);
  color: #fff;
  box-shadow: 0 28px 80px rgba(8, 37, 66, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.light .nav-shell,
body:not(.home) .nav-shell {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  border-color: rgba(217, 226, 236, 0.9);
}

.brand {
  display: inline-block;
  gap: 0;
  color: inherit;
  font-style: normal;
  font-weight: 850;
}

.brand::before {
  display: none;
}

.main-nav {
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.nav-link:hover,
.nav-item:focus-within > .nav-link,
.nav-item.menu-open > .nav-link {
  background: rgba(74, 222, 128, 0.14);
  color: inherit;
}

.btn {
  min-height: 54px;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.96rem;
  box-shadow: 0 18px 46px rgba(8, 37, 66, 0.14);
}

.btn.primary {
  color: #072f1a;
  background: linear-gradient(135deg, var(--green), #9af2b5);
}

.btn.navy {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #15517f);
}

.btn.light {
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-color: transparent;
}

.home .hero {
  background: var(--navy-deep);
}

.home .hero-copy {
  max-width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 132px 0 40px;
  justify-content: center;
}

.home .hero-copy::before {
  display: block;
  width: 110px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--green);
}

.home .hero h1 {
  max-width: 1040px;
  font-weight: 850;
  text-transform: none;
  font-size: clamp(3.5rem, 6.35vw, 6.8rem);
  line-height: 0.92;
}

.home .hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.home .hero-image img {
  object-position: 82% center;
  filter: saturate(1.02) contrast(1.02);
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 0.98), rgba(8, 37, 66, 0.9) 38%, rgba(8, 37, 66, 0.32) 70%, rgba(8, 37, 66, 0.12)),
    linear-gradient(0deg, rgba(8, 37, 66, 0.32), rgba(8, 37, 66, 0.04));
}

.home .hero-proof {
  max-width: 860px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.proof-item {
  border-top-color: rgba(74, 222, 128, 0.55);
}

.page-hero {
  min-height: 80svh;
  background:
    radial-gradient(circle at 76% 20%, rgba(74, 222, 128, 0.16), transparent 26%),
    linear-gradient(135deg, #f8fafc 0%, var(--mist) 58%, #fff 100%);
}

.page-hero.navy {
  background:
    radial-gradient(circle at 86% 18%, rgba(74, 222, 128, 0.2), transparent 26%),
    var(--navy-deep);
}

.page-hero h1 {
  color: var(--navy);
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
  font-size: clamp(3rem, 4.7vw, 5.55rem);
  line-height: 0.92;
}

.page-hero.navy h1,
.page-hero.navy .lead {
  color: #fff;
}

.page-hero .image-frame {
  border-radius: 8px;
  transform: rotate(-1deg);
  box-shadow: 0 36px 110px rgba(8, 37, 66, 0.18);
}

.page-hero .image-frame img,
.image-frame img {
  aspect-ratio: 16 / 11;
}

.section {
  background: #fff;
}

.section.alt {
  background:
    radial-gradient(circle at 8% 16%, rgba(74, 222, 128, 0.1), transparent 28%),
    var(--mist);
}

h1,
h2,
h3 {
  color: var(--navy);
}

.hero h1,
.cta h2 {
  color: #fff;
}

h2,
body:not(.home) h2 {
  font-weight: 850;
  text-transform: none;
  letter-spacing: 0;
}

.solution-grid .service-line {
  min-height: 430px;
  padding: 188px 30px 30px;
  text-align: left;
  border: 1px solid rgba(217, 226, 236, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.7)),
    #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.06);
}

.solution-grid .service-line::before {
  top: 16px;
  left: 16px;
  right: 16px;
  width: auto;
  height: 132px;
  border: 0;
  border-radius: 8px;
  transform: none;
  box-shadow: none;
}

.solution-grid .service-line::after {
  display: block;
}

.solution-grid .service-line:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.14);
}

.solution-grid .service-line:hover::before {
  transform: scale(1.045);
}

.service-line h3 {
  text-transform: none;
  font-weight: 850;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.service-line p {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.content-block,
.testimonial,
.contact-panel,
.note,
.article-card {
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(8, 37, 66, 0.08);
}

.content-block:hover,
.testimonial:hover {
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.13);
}

.image-frame,
.resource-card,
.resource-card.featured {
  border-radius: 8px;
}

.logos {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.cta {
  background:
    linear-gradient(120deg, rgba(74, 222, 128, 0.16), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.site-footer {
  background:
    linear-gradient(120deg, rgba(74, 222, 128, 0.12), transparent 28%),
    var(--navy-deep);
}

.whatsapp-float {
  background: #25d366;
  color: #082542;
}

@media (max-width: 980px) {
  .nav-shell,
  .site-header.light .nav-shell,
  body:not(.home) .nav-shell {
    min-height: 68px;
    padding: 0 14px;
  }

  .home .hero-copy {
    max-width: none;
    padding: 128px 24px 42px;
  }

  .page-hero .image-frame {
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: grid;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-shell.open .main-nav,
  .nav-shell.open .nav-cta {
    display: flex;
  }

  .nav-shell.open {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .nav-shell.open .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-shell.open .nav-cta {
    grid-column: 1 / -1;
  }

  .nav-item,
  .nav-link {
    width: 100%;
  }

  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    margin: 0 0 8px 12px;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .split.reverse,
  .resources-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 138px 24px 40px;
  }

  .hero-image {
    min-height: 46svh;
  }

  .hero-proof,
  .solution-grid,
  .four-col,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .three-col,
  .two-col {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lead {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 12px 0 auto;
    padding: 0 12px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 0 12px;
  }

  .section,
  .section.compact,
  .cta {
    padding: 72px 18px;
  }

  .page-hero {
    padding: 128px 18px 72px;
  }

  .hero-proof,
  .solution-grid,
  .four-col,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .timeline-item,
  .step {
    grid-template-columns: 1fr;
  }

  .resource-card.featured {
    min-height: 460px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal {
    flex-wrap: wrap;
  }
}

/* Homepage maximalism prototype */
.home {
  background:
    radial-gradient(circle at 12% 18%, rgba(74, 222, 128, 0.24), transparent 20%),
    radial-gradient(circle at 86% 8%, rgba(13, 54, 92, 0.18), transparent 24%),
    linear-gradient(135deg, #f8fbff, #eef2f7 42%, #ffffff);
}

.home .hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 18% 30%, rgba(74, 222, 128, 0.28), transparent 22%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.14), transparent 18%),
    var(--navy-deep);
}

.home .hero::before,
.home .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.home .hero::before {
  width: 360px;
  height: 360px;
  right: 7vw;
  top: 18svh;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(74, 222, 128, 0.045),
    inset 0 0 0 28px rgba(255, 255, 255, 0.035);
  animation: maxFloat 8s ease-in-out infinite;
}

.home .hero::after {
  left: 0;
  right: 0;
  bottom: 28px;
  height: 42px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 1px, transparent 1px 72px);
  opacity: 0.32;
}

.home .hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 122px;
}

.home .hero-copy::before {
  width: 156px;
  height: 6px;
  background: linear-gradient(90deg, var(--green), #fff, var(--green));
  box-shadow: 0 0 44px rgba(74, 222, 128, 0.65);
}

.home .hero h1 {
  max-width: 1120px;
  font-size: clamp(3.7rem, 6.75vw, 7.4rem);
  line-height: 0.88;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.home .hero h1 .green-text {
  display: inline;
  color: transparent;
  background: linear-gradient(105deg, #4ade80, #d9ffe8 38%, #4ade80 78%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 26px rgba(74, 222, 128, 0.2));
}

.home .hero .lead {
  max-width: 760px;
  padding-left: 20px;
  border-left: 4px solid var(--green);
}

.home .hero-actions {
  gap: 16px;
}

.home .btn {
  border-radius: 999px;
  min-height: 58px;
  padding-inline: 28px;
}

.home .btn.primary {
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.4), 0 22px 60px rgba(74, 222, 128, 0.24);
}

.home .btn.light {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.home .hero-image {
  overflow: hidden;
}

.home .hero-image img {
  transform: scale(1.08);
  object-position: 78% center;
  animation: imagePulse 9s ease-in-out infinite alternate;
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 1), rgba(8, 37, 66, 0.9) 33%, rgba(8, 37, 66, 0.34) 68%, rgba(8, 37, 66, 0.1)),
    linear-gradient(0deg, rgba(8, 37, 66, 0.42), rgba(8, 37, 66, 0.04));
}

.home .hero-proof {
  position: relative;
  max-width: 930px;
  border-radius: 8px;
  border-color: rgba(74, 222, 128, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.home .proof-item strong {
  color: var(--green);
}

.home .section:first-of-type {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 222, 128, 0.18), transparent 20%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

.home .section:first-of-type::before {
  content: "TINKAFIT / WELLNESS / PERFORMANCE / COMMUNITY";
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 28px;
  color: rgba(13, 54, 92, 0.055);
  font-size: clamp(3.8rem, 10vw, 10rem);
  font-weight: 850;
  white-space: nowrap;
}

.home .section:first-of-type .container {
  position: relative;
}

.home .section:first-of-type h2 {
  max-width: 1040px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.92;
}

.home .solution-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr 0.95fr;
  gap: 18px;
}

.home .solution-grid .service-line {
  min-height: 450px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(238, 242, 247, 0.66)),
    #fff;
  backdrop-filter: blur(14px);
}

.home .solution-grid .service-line:nth-child(2) {
  transform: translateY(28px);
}

.home .solution-grid .service-line:nth-child(3) {
  transform: translateY(-18px);
}

.home .solution-grid .service-line:nth-child(2):hover,
.home .solution-grid .service-line:nth-child(3):hover {
  transform: translateY(-8px);
}

.home .solution-grid .service-line::before,
.home .solution-grid .service-line::after {
  height: 150px;
}

.home .solution-grid .service-line {
  padding-top: 196px;
}

.home .service-line h3 {
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  line-height: 0.98;
}

@keyframes maxFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(18px) rotate(6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes imagePulse {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.12);
  }
}

@media (max-width: 980px) {
  .home .hero h1 {
    font-size: clamp(2.75rem, 8.8vw, 4.6rem);
  }

  .home .hero::before {
    width: 220px;
    height: 220px;
    right: -70px;
  }

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

  .home .solution-grid .service-line:nth-child(2),
  .home .solution-grid .service-line:nth-child(3) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .home .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  .home .solution-grid {
    grid-template-columns: 1fr;
  }

  .home .solution-grid .service-line {
    min-height: auto;
  }
}

/* Homepage clean iteration: compact copy, bigger photos */
.home {
  background: #fff;
}

.home .hero {
  background: var(--navy-deep);
}

.home .hero::before,
.home .hero::after {
  display: none;
}

.home .hero-copy {
  padding-top: 126px;
  padding-bottom: 34px;
}

.home .hero-copy::before {
  width: 92px;
  height: 4px;
  margin-bottom: 22px;
  box-shadow: none;
  background: var(--green);
}

.home .hero h1 {
  max-width: 760px;
  font-size: clamp(3.05rem, 5.15vw, 5.35rem);
  line-height: 0.96;
  text-shadow: none;
}

.home .hero h1 .green-text {
  display: block;
  color: var(--green);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
}

.home .hero h1 span:not(.green-text) {
  display: block;
}

.home .hero .lead {
  max-width: 560px;
  padding-left: 0;
  border-left: 0;
  margin-top: 20px;
}

.home .hero-actions {
  margin-top: 20px;
}

.home .btn {
  min-height: 52px;
  padding-inline: 24px;
  border-radius: 8px;
}

.home .hero-image img {
  transform: none;
  animation: none;
  object-position: 82% center;
}

.home .hero-proof {
  max-width: 660px;
  padding: 8px 10px;
  margin-top: 14px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(14px);
}

.home .proof-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding-top: 0;
  border-top: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.68);
}

.home .proof-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  margin-top: 0;
  opacity: 0.9;
}

.home .proof-label {
  display: block;
  min-width: 0;
  text-align: left;
}

.home .proof-item strong {
  margin-bottom: 1px;
  color: #fff;
  font-size: 0.82rem;
}

.home .section:first-of-type {
  background: #fff;
}

.home .section:first-of-type::before {
  display: none;
}

.home .section:first-of-type h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.home .solution-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.home .solution-grid .service-line {
  min-height: 420px;
  padding: 220px 24px 28px;
  transform: none;
}

.home .solution-grid .service-line:nth-child(2),
.home .solution-grid .service-line:nth-child(3) {
  transform: none;
}

.home .solution-grid .service-line:nth-child(2):hover,
.home .solution-grid .service-line:nth-child(3):hover,
.home .solution-grid .service-line:hover {
  transform: translateY(-5px);
}

.home .solution-grid .service-line::before,
.home .solution-grid .service-line::after {
  height: 184px;
}

.home .service-line h3 {
  max-width: 360px;
  font-size: clamp(1.35rem, 1.9vw, 2rem);
  line-height: 1;
}

.home .service-line p {
  max-width: 280px;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .home .hero h1 {
    max-width: 680px;
    font-size: clamp(2.75rem, 8.8vw, 4.6rem);
  }

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

  .home .solution-grid .service-line {
    min-height: 430px;
    padding-top: 240px;
  }

  .home .solution-grid .service-line::before,
  .home .solution-grid .service-line::after {
    height: 204px;
  }
}

@media (max-width: 640px) {
  .home .hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.35rem);
  }

  .home .solution-grid .service-line {
    min-height: auto;
    padding: 236px 24px 26px;
  }

  .home .solution-grid .service-line::before,
  .home .solution-grid .service-line::after {
    height: 196px;
  }
}

/* Contact page alignment refinement */
.contact-section {
  padding-top: clamp(76px, 8vw, 116px);
}

.contact-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.contact-section-head .eyebrow {
  margin-bottom: 0;
}

.contact-section-head h2 {
  max-width: 760px;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 0.94;
}

.contact-section-head .lead {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(34px, 5vw, 66px);
  align-items: start;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-option-card {
  min-height: 178px;
  padding: 28px;
}

.contact-option-card h3 {
  max-width: 260px;
  font-size: clamp(1.45rem, 1.7vw, 2rem);
  line-height: 1.02;
}

.contact-option-card p {
  margin-top: 18px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact-options-grid .contact-method {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.contact-layout .contact-panel {
  margin-top: 0;
  padding: clamp(30px, 4vw, 46px);
}

@media (min-width: 1081px) {
  .contact-layout {
    align-items: stretch;
  }

  .contact-options-grid {
    height: 100%;
    grid-template-rows: minmax(240px, 1fr) minmax(240px, 1fr) auto;
  }

  .contact-options-grid .contact-method {
    align-self: end;
  }
}

@media (max-width: 1080px) {
  .contact-section-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-section-head .eyebrow {
    margin-bottom: 0;
  }

  .contact-section-head .lead {
    max-width: 680px;
    margin: 0;
  }
}

@media (max-width: 680px) {
  .contact-section {
    padding-top: 58px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    min-height: auto;
  }
}

/* Contact hero: homepage-style full-bleed consultation image */
.contact-page .contact-hero {
  position: relative;
  display: grid;
  align-items: stretch;
  min-height: 100svh;
  padding: 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(74, 222, 128, 0.28), transparent 22%),
    radial-gradient(circle at 78% 26%, rgba(255, 255, 255, 0.14), transparent 18%),
    var(--navy-deep);
}

.contact-page .contact-hero::before,
.contact-page .contact-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.contact-page .contact-hero::before {
  width: 360px;
  height: 360px;
  right: 7vw;
  top: 18svh;
  border: 1px solid rgba(74, 222, 128, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(74, 222, 128, 0.045),
    inset 0 0 0 28px rgba(255, 255, 255, 0.035);
  animation: maxFloat 8s ease-in-out infinite;
}

.contact-page .contact-hero::after {
  left: 0;
  right: 0;
  bottom: 28px;
  height: 42px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0 1px, transparent 1px 72px);
  opacity: 0.26;
}

.contact-page .contact-hero-grid {
  display: block;
  width: 100%;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: auto;
}

.contact-page .contact-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  max-width: 760px;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 46px;
}

.contact-page .contact-hero-copy::before {
  content: none;
}

.contact-page .contact-hero .eyebrow {
  color: var(--green);
}

.contact-page .contact-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(3.1rem, 5.8vw, 6.1rem);
  line-height: 0.94;
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.contact-page .contact-hero .lead {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.contact-page .contact-hero-actions {
  gap: 16px;
}

.contact-page .contact-hero .btn {
  min-height: 58px;
  padding-inline: 28px;
  border-radius: 999px;
}

.contact-page .contact-hero .btn.primary {
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.4), 0 22px 60px rgba(74, 222, 128, 0.24);
}

.contact-page .contact-hero .btn.light {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.contact-page .contact-hero-image {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.contact-page .contact-hero-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 74% center;
  border-radius: 0;
  filter: contrast(1.08) saturate(1.04) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
}

.contact-page .contact-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #082542 0%, rgba(8, 37, 66, 0.98) 33%, rgba(8, 37, 66, 0.72) 48%, rgba(8, 37, 66, 0.18) 66%, rgba(8, 37, 66, 0.02) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.28), rgba(8, 37, 66, 0.02) 54%);
}

@media (max-width: 980px) {
  .contact-page .contact-hero h1 {
    max-width: 680px;
    font-size: clamp(2.65rem, 7.8vw, 4.8rem);
  }

  .contact-page .contact-hero-copy {
    max-width: 680px;
  }

  .contact-page .contact-hero-image img {
    object-position: 68% center;
  }
}

@media (max-width: 760px) {
  .contact-page .contact-hero {
    min-height: 100svh;
    padding: 0;
    background:
      linear-gradient(180deg, #061f38 0%, #082542 68%, #0a2c4f 100%);
  }

  .contact-page .contact-hero-grid {
    min-height: 100svh;
    overflow: hidden;
  }

  .contact-page .contact-hero::before,
  .contact-page .contact-hero::after {
    display: none;
  }

  .contact-page .contact-hero-image {
    inset: 0;
  }

  .contact-page .contact-hero-image img {
    object-position: 84% top;
    transform: scale(1.04);
    transform-origin: 84% top;
  }

  .contact-page .contact-hero-image::after {
    background:
      linear-gradient(90deg, rgba(8, 37, 66, 0.98) 0%, rgba(8, 37, 66, 0.86) 38%, rgba(8, 37, 66, 0.42) 66%, rgba(8, 37, 66, 0.08) 100%),
      linear-gradient(180deg, rgba(8, 37, 66, 0.04) 0%, rgba(8, 37, 66, 0.08) 46%, #082542 100%);
  }

  .contact-page .contact-hero-copy {
    width: min(64vw, 250px);
    max-width: none;
    min-height: 100svh;
    margin: 0;
    padding: 116px 0 88px 18px;
  }

  .contact-page .contact-hero-copy::before {
    content: none;
  }

  .contact-page .contact-hero h1 {
    max-width: 100%;
    font-size: clamp(1.5rem, 6.4vw, 2.08rem);
    line-height: 1.02;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
  }

  .contact-page .contact-hero .lead {
    max-width: 216px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    line-height: 1.45;
  }

  .contact-page .contact-hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .contact-page .contact-hero .btn {
    min-height: 34px;
    padding-inline: 11px;
    border-radius: 7px;
    font-size: 0.68rem;
    line-height: 1;
    white-space: nowrap;
  }
}

/* Subtle card typography pass */
.text-link {
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  color: rgba(13, 54, 92, 0.58);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: none;
  letter-spacing: 0;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 10px;
  background: currentColor;
  opacity: 0.55;
  transition: width 180ms ease, opacity 180ms ease;
}

.text-link:hover {
  color: var(--navy);
}

.text-link:hover::after {
  width: 28px;
  opacity: 1;
}

.home .service-line h3 {
  font-size: clamp(1.2rem, 1.45vw, 1.55rem);
  line-height: 1.08;
}

.home .hero + .section h2,
.home .section:first-of-type h2 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  line-height: 1;
}

.home .hero + .section.reveal,
.home .service-line.reveal {
  opacity: 1;
  transform: none;
}

.home .service-line p {
  max-width: 300px;
  margin-top: 14px;
  color: rgba(45, 55, 72, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home .solution-grid .service-line {
  padding-bottom: 24px;
}

.content-block h3 {
  font-size: clamp(1.18rem, 1.4vw, 1.55rem);
  line-height: 1.1;
}

.contact-section-head h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.1vw, 4.35rem);
  line-height: 0.98;
}

.contact-option-card {
  min-height: 200px;
}

.contact-option-card h3 {
  max-width: 240px;
  font-size: clamp(1.18rem, 1.35vw, 1.5rem);
  line-height: 1.08;
}

.contact-option-card p {
  margin-top: 14px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.contact-option-card.reveal {
  opacity: 1;
  transform: none;
}

.contact-options-grid .contact-method {
  border-color: #25d366;
  background: #25d366;
  color: #073b1f;
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.2);
}

.contact-options-grid .contact-method strong,
.contact-options-grid .contact-method span {
  color: #073b1f;
}

.contact-options-grid .contact-method > span:last-child {
  display: inline-grid;
  place-items: center;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  font-weight: 750;
  line-height: 1.18;
  text-align: center;
}

@media (min-width: 1081px) {
  .contact-options-grid {
    gap: 20px;
  }

  .contact-option-card {
    min-height: 240px;
    padding: 32px;
  }

  .contact-option-card h3 {
    max-width: none;
    font-size: clamp(1rem, 1.12vw, 1.18rem);
    white-space: nowrap;
  }

  .contact-option-card p {
    max-width: 285px;
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .contact-options-grid .contact-method {
    min-height: 116px;
    padding: 28px 32px;
  }

  .contact-options-grid .contact-method > span:first-child {
    max-width: 360px;
  }
}

/* Inner page hero title refinement */
.page-hero h1 {
  max-width: 680px;
  font-size: clamp(2.65rem, 3.65vw, 4.45rem);
  line-height: 0.98;
  text-wrap: balance;
}

.page-hero .lead {
  max-width: 650px;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
}

.page-hero .actions {
  margin-top: 24px;
}

.page-hero .eyebrow + h1 {
  max-width: 600px;
}

.page-hero.navy .lead {
  max-width: 580px;
}

@media (max-width: 980px) {
  .page-hero h1 {
    font-size: clamp(2.45rem, 8vw, 4.1rem);
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* About page personal note frame */
.section.warm .container {
  display: flex;
  justify-content: center;
}

.section.warm .note {
  position: relative;
  max-width: 980px;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.72)),
    #fff;
  box-shadow: 0 34px 100px rgba(8, 37, 66, 0.12);
  overflow: hidden;
}

.section.warm .note::before {
  content: "“";
  position: absolute;
  top: 18px;
  right: clamp(28px, 5vw, 64px);
  color: rgba(74, 222, 128, 0.28);
  font-size: clamp(6rem, 12vw, 12rem);
  font-weight: 850;
  line-height: 0.8;
}

.section.warm .note::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.section.warm .note .eyebrow,
.section.warm .note h2,
.section.warm .note .lead,
.section.warm .note .signature {
  position: relative;
  z-index: 1;
}

.section.warm .note h2 {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
}

.section.warm .note .lead {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(45, 55, 72, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.section.warm .note .signature {
  width: fit-content;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 2px solid var(--green);
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .section.warm .note {
    padding: 34px 24px;
  }

  .section.warm .note::after {
    inset: 10px;
  }
}

/* About page moving credentials band */
.credential-marquee-section {
  background: #fff;
  overflow: hidden;
}

.credential-band {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 37, 66, 0.98), rgba(13, 54, 92, 0.9)),
    var(--navy-deep);
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.14);
  overflow: hidden;
}

.credential-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(74, 222, 128, 0.16), transparent 34%),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.06) 48% 49%, transparent 49%);
  pointer-events: none;
}

.credential-band-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.credential-band-head .eyebrow {
  margin-bottom: 10px;
  color: var(--green);
}

.credential-band-head h2 {
  max-width: 640px;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1;
}

.credential-marquee {
  position: relative;
  z-index: 1;
  margin-inline: calc(clamp(30px, 5vw, 54px) * -1);
  overflow: hidden;
}

.credential-marquee::before,
.credential-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
}

.credential-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy-deep), transparent);
}

.credential-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 54, 92, 0.96), transparent);
}

.credential-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 4px 0;
  animation: credentialMarquee 26s linear infinite;
}

.credential-logo {
  min-width: clamp(190px, 20vw, 270px);
  min-height: 108px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  font-weight: 850;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.credential-logo small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes credentialMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

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

@media (max-width: 760px) {
  .credential-band-head {
    display: block;
  }

  .credential-marquee::before,
  .credential-marquee::after {
    width: 54px;
  }
}

/* Health coaching approach card design */
.approach-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff, #f8fbfd);
}

.approach-section::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 92px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  transform: rotate(12deg);
}

.approach-section::after {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 78px;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.approach-section .container {
  position: relative;
  z-index: 1;
}

.approach-grid {
  align-items: stretch;
}

.approach-section .approach-card {
  position: relative;
  min-height: 360px;
  padding: 30px 28px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.72)),
    #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.07);
  overflow: hidden;
}

.approach-section .approach-card::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
}

.approach-section .approach-card::after {
  content: attr(data-step);
  position: absolute;
  right: 24px;
  bottom: 14px;
  color: rgba(13, 54, 92, 0.07);
  font-size: 4.6rem;
  font-weight: 850;
  line-height: 1;
}

.approach-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 76px;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(74, 222, 128, 0.12);
  color: var(--navy);
}

.approach-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-section .approach-card h3 {
  max-width: 260px;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.approach-section .approach-card p {
  max-width: 260px;
  margin-top: 14px;
  color: rgba(45, 55, 72, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .approach-section::before {
    width: 120px;
    height: 120px;
    opacity: 0.6;
  }

  .approach-icon {
    margin-bottom: 42px;
  }

  .approach-section .approach-card {
    min-height: 300px;
  }
}

/* Compact trust-strip refinement */
.credential-marquee-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.credential-band {
  max-width: 1040px;
  margin: 0 auto;
  padding: 28px 30px 30px;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.12);
}

.credential-band-head {
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

.credential-band-head .eyebrow {
  min-width: 210px;
  margin-bottom: 0;
  font-size: 0.68rem;
}

.credential-band-head h2 {
  max-width: 520px;
  font-size: clamp(1.45rem, 2.35vw, 2.35rem);
  line-height: 1.04;
}

.credential-marquee {
  margin-inline: -30px;
}

.credential-marquee::before,
.credential-marquee::after {
  width: 74px;
}

.credential-track {
  gap: 12px;
  animation-duration: 30s;
}

.credential-logo {
  min-width: clamp(150px, 15vw, 210px);
  min-height: 76px;
  padding: 16px 18px;
  gap: 6px;
  font-size: clamp(0.95rem, 1.2vw, 1.18rem);
}

.credential-logo small {
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}

.home #partners {
  padding-top: 46px;
  padding-bottom: 46px;
}

.home #partners.reveal {
  opacity: 1;
  transform: none;
}

.home .logos {
  min-height: 82px;
  padding: 0 30px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 247, 0.72)),
    #fff;
  box-shadow: 0 18px 56px rgba(8, 37, 66, 0.06);
  opacity: 1;
  color: rgba(13, 54, 92, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

@media (max-width: 760px) {
  .credential-band {
    padding: 24px 20px 26px;
  }

  .credential-band-head .eyebrow {
    min-width: 0;
    margin-bottom: 10px;
  }

  .credential-marquee {
    margin-inline: -20px;
  }

  .home .logos {
    min-height: auto;
    padding: 22px;
  }
}

.credential-band .credential-band-head h2 {
  max-width: 500px;
  color: #fff;
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  line-height: 1.06;
  letter-spacing: 0;
  text-transform: none;
}

.credential-band .credential-band-head {
  margin-bottom: 18px;
}

.credential-band {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Softer credential animation */
.credential-band {
  isolation: isolate;
}

.credential-band::after {
  display: none;
}

.credential-band-head,
.credential-marquee {
  position: relative;
  z-index: 1;
}

.credential-marquee::before,
.credential-marquee::after {
  display: none;
}

.credential-track {
  width: 100%;
  justify-content: space-between;
  gap: 12px;
  transform: translateX(0);
  animation: none;
}

.credential-logo:nth-child(n + 5) {
  display: none;
}

.credential-logo {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  animation: none;
}

.credential-logo::after {
  display: none;
}

.credential-logo:nth-child(2) {
  animation-delay: 0.7s;
}

.credential-logo:nth-child(3) {
  animation-delay: 1.4s;
}

.credential-logo:nth-child(4) {
  animation-delay: 2.1s;
}

@keyframes credentialSoftSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes credentialTrackDrift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(24px);
  }
}

@keyframes credentialCardFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.075);
  }
  50% {
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(74, 222, 128, 0.42);
    background: rgba(255, 255, 255, 0.13);
  }
}

@keyframes credentialCardSweep {
  0%,
  28% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(120%);
  }
}

/* Compact homepage about block */
.home .section.alt .split {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(54px, 6vw, 92px);
}

.home .section.alt .split > div:first-child {
  max-width: 560px;
}

.home .section.alt .split h2 {
  max-width: 540px;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.02;
}

.home .section.alt .split .lead {
  max-width: 500px;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.65;
}

.home .section.alt .split .cred-list {
  gap: 12px;
  margin-top: 24px;
}

.home .section.alt .split .cred-list li {
  font-size: 0.9rem;
  line-height: 1.55;
}

.home .section.alt .split .image-frame {
  align-self: center;
}

.home .section.alt .split .image-frame img {
  aspect-ratio: 16 / 11;
}

@media (max-width: 980px) {
  .home .section.alt .split {
    grid-template-columns: 1fr;
  }

  .home .section.alt .split h2 {
    max-width: 680px;
  }
}

/* Consistent site title scale, excluding the homepage main hero */
:root {
  --site-title-size: clamp(2rem, 3.25vw, 3.35rem);
}

.section h2,
.section-heading h2,
body:not(.home) .section h2,
.home .hero + .section h2,
.page-hero h1,
.contact-section-head h2,
.cta h2 {
  font-size: var(--site-title-size);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.home .hero h1 {
  font-size: clamp(3.05rem, 5.15vw, 5.35rem);
  line-height: 0.96;
}

.credential-band .credential-band-head h2 {
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
}

.credential-band-head .credential-title {
  max-width: 440px;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem) !important;
  line-height: 1.08 !important;
}

section.credential-marquee-section .credential-band .credential-band-head .credential-title {
  font-size: clamp(1.25rem, 1.8vw, 1.75rem) !important;
  line-height: 1.08 !important;
}

/* Static credential board redesign */
.credential-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(8, 37, 66, 0.98), rgba(13, 54, 92, 0.92)),
    var(--navy-deep);
}

.credential-band-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0;
}

.credential-band-head .eyebrow {
  min-width: 0;
}

.credential-band-head .credential-title {
  max-width: 290px;
}

.credential-marquee {
  margin-inline: 0;
  overflow: visible;
}

.credential-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 100%;
}

.credential-logo {
  min-height: 96px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.055));
}

.credential-logo small {
  color: var(--green);
}

@media (max-width: 980px) {
  .credential-band {
    grid-template-columns: 1fr;
  }

  .credential-band-head .credential-title {
    max-width: 520px;
  }

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

/* Connected visual journey for the homepage support section */
.home .hero + .section {
  background:
    radial-gradient(circle at 10% 12%, rgba(74, 222, 128, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.home .hero + .section .container {
  max-width: var(--max);
}

.home .solution-grid {
  position: relative;
  gap: 24px;
  align-items: stretch;
  margin-top: 46px;
}

.home .solution-grid::before {
  content: "";
  position: absolute;
  top: 148px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.55), transparent);
  pointer-events: none;
}

.home .solution-grid .service-line {
  min-height: 390px;
  padding: 238px 24px 28px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 242, 247, 0.96));
  box-shadow: 0 20px 60px rgba(8, 37, 66, 0.08);
  overflow: visible;
}

.home .solution-grid .service-line::before {
  top: 0;
  left: 0;
  right: 0;
  height: 212px;
  border-radius: 8px 8px 0 0;
  background-size: cover;
  background-position: center;
}

.home .solution-grid .service-line::after {
  top: 0;
  left: 0;
  right: 0;
  height: 212px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(8, 37, 66, 0.02), rgba(8, 37, 66, 0.35));
}

.home .service-line h3 {
  max-width: 260px;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
}

.home .service-line p {
  max-width: 310px;
}

.flow-arrow {
  position: absolute;
  z-index: 3;
  top: 132px;
  right: -42px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 8px solid #f4f8fb;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(13, 54, 92, 0.18);
}

.home .solution-grid .service-line:last-child .flow-arrow {
  display: none;
}

@media (max-width: 980px) {
  .home .solution-grid::before,
  .flow-arrow {
    display: none;
  }

  .home .solution-grid {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .home .solution-grid .service-line {
    min-height: auto;
    padding-top: 230px;
  }
}

/* Stronger visual version: full-image connected support flow */
.home .hero + .section {
  padding-block: 110px;
  background:
    radial-gradient(circle at 18% 12%, rgba(74, 222, 128, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #edf4f7 100%);
}

.home .solution-grid {
  gap: 18px;
  margin-top: 50px;
}

.home .solution-grid::before {
  top: 50%;
  left: 6%;
  right: 6%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.76), transparent);
}

.home .solution-grid .service-line {
  min-height: 500px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 28px 90px rgba(8, 37, 66, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.home .solution-grid .service-line::before {
  inset: 0;
  height: auto;
  border-radius: 8px;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.home .solution-grid .service-line:nth-child(4)::before {
  background-position: 50% 38%;
}

.home .solution-grid .service-line::after {
  inset: 0;
  height: auto;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(8, 37, 66, 0.05) 0%, rgba(8, 37, 66, 0.28) 40%, rgba(8, 37, 66, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 37, 66, 0.28), transparent 58%);
}

.home .solution-grid .service-line:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 110px rgba(8, 37, 66, 0.24);
}

.home .solution-grid .service-line:hover::before {
  transform: scale(1.1);
}

.home .service-line h3,
.home .service-line p,
.home .service-line .text-link {
  position: relative;
  z-index: 2;
}

.home .service-line h3 {
  max-width: 280px;
  margin: 0;
  padding: 0 24px;
  color: #fff;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1;
}

.home .service-line p {
  max-width: 300px;
  margin: 14px 0 0;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
}

.home .service-line .text-link {
  width: fit-content;
  margin: 22px 24px 28px;
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 800;
}

.home .service-line .text-link::after {
  width: 24px;
  height: 2px;
  margin-left: 12px;
  opacity: 0.85;
}

.home .service-line .text-link:hover::after {
  width: 34px;
}

.home .solution-grid .service-line::marker {
  content: "";
}

.home .solution-grid .service-line {
  counter-increment: support-step;
}

.home .solution-grid {
  counter-reset: support-step;
}

.home .solution-grid .service-line h3::before {
  content: "0" counter(support-step);
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.flow-arrow {
  top: calc(50% - 27px);
  right: -35px;
  width: 54px;
  height: 54px;
  border: 7px solid #edf4f7;
  background: var(--green);
}

/* Homepage Services: remove connector bubbles between vertical cards */
.home .solution-grid::before,
.home .solution-grid .flow-arrow {
  display: none;
}

@media (max-width: 980px) {
  .home .solution-grid .service-line {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .home .hero + .section {
    padding-block: 78px;
  }

  .home .solution-grid .service-line {
    min-height: 420px;
  }
}

/* Homepage about section: oversized image wash fading into text */
.home .section.alt {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(74, 222, 128, 0.12), transparent 28%),
    #eef2f7;
}

.home .section.alt .split {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  align-items: center;
  gap: 0;
}

.home .section.alt .split > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.home .section.alt .split .image-frame {
  position: absolute;
  z-index: 1;
  top: -160px;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  bottom: -160px;
  width: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home .section.alt .split .image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #eef2f7 0%, rgba(238, 242, 247, 0.98) 30%, rgba(238, 242, 247, 0.78) 42%, rgba(238, 242, 247, 0.32) 54%, transparent 68%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.08), transparent 42%);
  pointer-events: none;
}

.home .section.alt .split .image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 72% center;
  transform: none;
}

.home .section.alt .split .image-frame:hover img {
  transform: none;
}

@media (max-width: 980px) {
  .home .section.alt {
    min-height: auto;
    padding-bottom: 0;
  }

  .home .section.alt .split {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home .section.alt .split .image-frame {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: calc(100% + 36px);
    height: 420px;
    margin-inline: -18px;
    border-radius: 0;
  }

  .home .section.alt .split .image-frame::before {
    background: linear-gradient(180deg, #eef2f7 0%, rgba(238, 242, 247, 0.14) 34%, transparent 70%);
  }
}

@media (min-width: 981px) {
  .home .section.alt:not(#testimonials) {
    min-height: 920px;
    padding-block: 0;
    display: flex;
    align-items: stretch;
  }

  .home .section.alt:not(#testimonials) > .container {
    display: flex;
    align-items: stretch;
    width: 100%;
    max-width: var(--max);
  }

  .home .section.alt:not(#testimonials) .split {
    display: flex;
    align-items: center;
    min-height: 920px;
    width: 100%;
    padding-block: 0;
    box-sizing: border-box;
  }

  .home .section.alt:not(#testimonials) .split .image-frame {
    top: 0;
    bottom: 0;
    height: 100%;
    min-height: 920px;
  }
}

/* Premium unframed partner logo strip */
.home #partners {
  padding-block: 24px;
  background: #fff;
}

.home .logos {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.partner-logo-strip {
  display: block;
  width: min(92vw, 1040px);
  height: auto;
  object-fit: contain;
}

.partner-logo {
  position: relative;
  min-height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(13, 54, 92, 0.66);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 180ms ease, transform 180ms ease;
}

.partner-logo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--green);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.partner-logo:hover {
  color: var(--navy);
  transform: translateY(-2px);
}

.partner-logo:hover::after {
  width: 42px;
}

.partner-logo i {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
}

.partner-logo i::before,
.partner-logo i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  opacity: 0.62;
}

.partner-logo.sharp i::before {
  border-radius: 50%;
}

.partner-logo.sharp i::after {
  inset: 11px 6px;
  border-width: 2px 0;
  transform: rotate(-18deg);
}

.partner-logo.fitia i::before {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.partner-logo.fitia i::after {
  inset: 12px;
  border-radius: 50%;
  background: currentColor;
}

.partner-logo.life i::before {
  inset: 10px 4px;
  border-width: 3px 0;
}

.partner-logo.life i::after {
  inset: 6px 10px;
  border-width: 0 3px;
}

.partner-logo.fanka i::before {
  inset: 4px 10px;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.partner-logo.fanka i::after {
  inset: 16px 5px 6px;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.partner-logo.linieax i::before {
  inset: 7px;
  border-radius: 4px;
  transform: rotate(45deg);
}

.partner-logo.linieax i::after {
  inset: 14px 5px;
  border-width: 2px 0 0;
  transform: rotate(-22deg);
}

@media (max-width: 880px) {
  .home .logos {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .home .logos::-webkit-scrollbar {
    display: none;
  }

  .partner-logo-strip {
    width: 980px;
    max-width: none;
  }

  .partner-logo {
    min-height: 64px;
    justify-content: flex-start;
  }
}

/* About page hero: same cinematic image treatment as homepage */
.about-hero {
  min-height: 100svh;
  padding: 160px 24px 76px;
  display: grid;
  align-items: center;
  background: var(--navy-deep);
  isolation: isolate;
}

.about-hero::after {
  display: none;
}

.about-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 242, 247, 0.99) 0%, rgba(238, 242, 247, 0.97) 42%, rgba(238, 242, 247, 0.72) 58%, rgba(238, 242, 247, 0.28) 74%, rgba(238, 242, 247, 0.04) 90%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.16), rgba(8, 37, 66, 0.02) 56%);
  pointer-events: none;
}

.about-hero .page-hero-grid {
  width: 100%;
  grid-template-columns: minmax(0, 0.56fr) minmax(0, 0.44fr);
  min-height: calc(100svh - 236px);
  gap: 0;
  position: static;
}

.about-hero .page-hero-grid > div:first-child {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.about-hero .page-hero-grid > div:first-child::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -36px -72px -34px -30px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(238, 242, 247, 0.95) 0%, rgba(238, 242, 247, 0.82) 58%, rgba(238, 242, 247, 0) 100%);
}

.about-hero .eyebrow {
  color: var(--navy);
}

.about-hero h1 {
  max-width: 720px;
  color: var(--navy);
  font-size: clamp(3.15rem, 5.6vw, 6rem);
  line-height: 0.94;
}

.about-hero .lead {
  max-width: 600px;
  color: rgba(8, 37, 66, 0.82);
}

.page-hero.navy.about-hero .eyebrow {
  color: var(--navy);
}

.page-hero.navy.about-hero h1 {
  color: var(--navy);
}

.page-hero.navy.about-hero .lead {
  color: rgba(8, 37, 66, 0.9);
}

.about-hero .image-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 0;
  background: var(--navy-deep);
  box-shadow: none;
}

.about-hero .image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 72% center;
  transform: none;
}

.about-hero .image-frame:hover img {
  transform: none;
}

@media (max-width: 980px) {
  .about-hero {
    min-height: auto;
    padding: 140px 20px 84px;
  }

  .about-hero .page-hero-grid {
    min-height: 680px;
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .about-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 37, 66, 0.98), rgba(8, 37, 66, 0.72)),
      linear-gradient(0deg, rgba(8, 37, 66, 0.82), rgba(8, 37, 66, 0.16));
  }
}

/* About story section: full faded image treatment */
.story-wash {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #eef2f7;
}

.story-wash .split.reverse {
  position: relative;
  min-height: 560px;
  display: block;
}

.story-wash .split.reverse > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 56px 0;
}

.story-wash .image-frame {
  position: absolute;
  z-index: 1;
  inset: -80px calc(50% - 50vw) -80px 34%;
  border-radius: 0;
  background:
    radial-gradient(circle at 68% 46%, rgba(74, 222, 128, 0.1), transparent 34%),
    transparent;
  box-shadow: none;
}

.story-wash .image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, #eef2f7 0%, rgba(238, 242, 247, 0.62) 18%, rgba(238, 242, 247, 0.08) 32%, transparent 42%);
  pointer-events: none;
}

.story-wash .image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: 88% center;
  filter: contrast(1.08) saturate(1.06);
  transform: none;
}

.story-wash .image-frame:hover img {
  transform: none;
}

@media (max-width: 980px) {
  .story-wash {
    min-height: auto;
  }

  .story-wash .split.reverse {
    min-height: auto;
  }

  .story-wash .split.reverse > div:last-child {
    padding: 0;
  }

  .story-wash .image-frame {
    position: relative;
    inset: auto;
    width: calc(100% + 36px);
    height: 420px;
    margin: 42px -18px 0;
  }

  .story-wash .image-frame::before {
    background: linear-gradient(180deg, rgba(238, 242, 247, 0.1), #eef2f7 100%);
  }
}

/* About approach pillars: connected transformation flow */
.pillar-flow {
  position: relative;
  gap: 28px;
}

.pillar-flow .pillar {
  position: relative;
  min-height: 320px;
  padding: 26px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.72)),
    #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.07);
  overflow: visible;
  transform-origin: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.pillar-flow .pillar:hover,
.pillar-flow .pillar:focus-within {
  z-index: 4;
  border-color: rgba(74, 222, 128, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(238, 242, 247, 0.82)),
    #fff;
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.13);
  transform: translateY(-8px) scale(1.035);
}

.pillar-flow .pillar::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px auto;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 50%;
  opacity: 0.7;
  pointer-events: none;
}

.pillar-flow .pillar:not(:last-child)::after {
  display: none;
}

.pillar-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.pillar-flow .pillar .number {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  display: block;
  margin-bottom: 0;
  color: rgba(13, 54, 92, 0.16);
  font-size: 3.65rem;
  font-weight: 850;
  line-height: 0.86;
  letter-spacing: 0;
  pointer-events: none;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  padding: 14px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.1);
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-flow .pillar h3 {
  position: relative;
  z-index: 2;
  max-width: 230px;
  margin-top: 0;
  font-size: clamp(1.3rem, 1.65vw, 1.85rem);
  line-height: 1.05;
}

.pillar-flow .pillar p {
  position: relative;
  z-index: 2;
  margin-top: 16px;
  color: rgba(45, 55, 72, 0.72);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .pillar-flow .pillar:not(:last-child)::after {
    display: none;
  }

  .pillar-flow .pillar {
    min-height: auto;
  }
}

/* About credentials: visual certification grid */
#credentials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(74, 222, 128, 0.15), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

#credentials::before {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  top: 92px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 50%;
}

.credential-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
}

.credential-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.74)),
    #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.07);
  overflow: hidden;
}

.credential-card.featured {
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.16), transparent 38%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.credential-card.wide {
  grid-column: span 2;
  min-height: 220px;
}

.credential-mark {
  width: fit-content;
  min-width: 88px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(74, 222, 128, 0.11);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.credential-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credential-card.featured .credential-mark {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.credential-year {
  position: absolute;
  top: 26px;
  right: 26px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.credential-card.featured .credential-year {
  color: var(--green);
  background: rgba(255, 255, 255, 0.1);
}

.credential-card.featured h3 {
  color: #fff;
}

.credential-card h3 {
  max-width: 270px;
  margin-top: 48px;
  font-size: clamp(1.22rem, 1.55vw, 1.7rem);
  line-height: 1.06;
}

.credential-card p {
  max-width: 320px;
  margin-top: 14px;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.94rem;
  line-height: 1.58;
}

.credential-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.credential-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(74, 222, 128, 0.24);
  border-radius: 50%;
}

@media (max-width: 980px) {
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .credential-card.wide {
    grid-column: auto;
  }
}

/* About personal note: full editorial image section */
.section.warm {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(74, 222, 128, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

.section.warm .container {
  max-width: 100%;
  display: block;
  padding-inline: 0;
}

.section.warm .note {
  position: relative;
  min-height: 720px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(84px, 9vw, 136px) max(24px, calc((100vw - var(--max)) / 2));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 34%, rgba(244, 248, 251, 0.76) 56%, rgba(244, 248, 251, 0.12) 100%);
  box-shadow: none;
  overflow: hidden;
}

.note-image {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 42%;
}

.note-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 24%, rgba(244, 248, 251, 0.24) 56%, rgba(244, 248, 251, 0.04) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.16), rgba(8, 37, 66, 0.02) 58%),
    radial-gradient(circle at 78% 18%, rgba(74, 222, 128, 0.12), transparent 32%);
}

.note-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 32%;
  filter: saturate(0.96) contrast(1.02);
}

.section.warm .note::before {
  display: none;
}

.section.warm .note::after {
  display: none;
}

.section.warm .note .eyebrow,
.section.warm .note h2,
.section.warm .note .lead,
.section.warm .note .signature {
  position: relative;
  z-index: 2;
}

.section.warm .note h2 {
  max-width: 560px;
}

.section.warm .note .lead {
  max-width: 650px;
}

@media (max-width: 760px) {
  .section.warm .note {
    min-height: auto;
    padding: 78px 24px 360px;
    background: linear-gradient(180deg, #ffffff, #f4f8fb);
  }

  .note-image {
    inset: auto 0 0;
    height: 340px;
  }

  .note-image::before {
    background: linear-gradient(180deg, #ffffff 0%, rgba(244, 248, 251, 0.18) 42%, transparent 100%);
  }
}

/* Resource section product pair and richer article copy */
.article-card .micro-copy {
  max-width: 440px;
  margin-top: 14px;
  color: rgba(45, 55, 72, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bottle-card {
  min-height: 320px;
  background:
    radial-gradient(circle at 30% 18%, rgba(74, 222, 128, 0.16), transparent 28%),
    linear-gradient(135deg, #f8fafc, #eef2f7);
}

.bottle-card::after {
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.72), rgba(8, 37, 66, 0.06) 62%);
}

.bottle-pair {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.bottle-pair figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.bottle-pair figure + figure {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.bottle-pair img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottle-pair figure:first-child img {
  object-position: 50% 58%;
}

.bottle-pair figure:last-child img {
  object-position: 50% 58%;
}

.bottle-pair figcaption {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
}

.bottle-card .resource-info {
  max-width: 420px;
}

.black-bottle-card img {
  object-position: 50% 58%;
}

/* About photo gallery */
.photo-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(74, 222, 128, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff, #f4f8fb);
}

.gallery-head {
  max-width: 720px;
  margin-bottom: clamp(30px, 5vw, 58px);
}

.gallery-head h2 {
  margin-top: 14px;
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
}

.gallery-head p {
  max-width: 610px;
  margin-top: 18px;
  color: rgba(45, 55, 72, 0.72);
  font-size: 1.03rem;
  line-height: 1.7;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 112px;
  grid-auto-flow: dense;
  gap: 16px;
  width: 100%;
}

.gallery-card {
  position: relative;
  grid-column: span 3;
  grid-row: span 2;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 24px 80px rgba(8, 37, 66, 0.12);
}

.gallery-card-large {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-card-panorama {
  grid-column: span 8;
  grid-row: span 3;
}

.gallery-card-feature {
  grid-column: span 4;
  grid-row: span 3;
}

.gallery-card-wide {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-card-tall {
  grid-column: span 3;
  grid-row: span 2;
}

.photo-gallery .gallery-card:nth-child(2) {
  grid-column: span 4;
  grid-row: span 3;
}

.photo-gallery .gallery-card:nth-child(4) {
  grid-column: span 6;
  grid-row: span 3;
}

.photo-gallery .gallery-card:nth-child(5),
.photo-gallery .gallery-card:nth-child(6),
.photo-gallery .gallery-card:nth-child(7),
.photo-gallery .gallery-card:nth-child(8) {
  grid-column: span 3;
  grid-row: span 2;
}

.photo-gallery .gallery-card:nth-child(9),
.photo-gallery .gallery-card:nth-child(10),
.photo-gallery .gallery-card:nth-child(11) {
  grid-column: span 4;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.015);
  filter: saturate(1.04) contrast(1.02);
  transition: transform 520ms ease, filter 520ms ease;
}

.gallery-card-panorama img {
  object-position: center center;
}

.gallery-card-feature img {
  object-position: 52% center;
}

.photo-gallery .gallery-card:nth-child(3) img {
  object-position: center 42%;
}

.photo-gallery .gallery-card:nth-child(6) img {
  object-position: 56% center;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 37, 66, 0) 46%, rgba(8, 37, 66, 0.72)),
    linear-gradient(90deg, rgba(8, 37, 66, 0.12), rgba(8, 37, 66, 0));
  opacity: 0.9;
}

.gallery-card figcaption {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

@media (max-width: 980px) {
  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .photo-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall {
    flex: 0 0 82vw;
    height: 360px;
    scroll-snap-align: start;
  }
}

/* About professional development showcase redesign */
.credential-marquee-section {
  background:
    linear-gradient(180deg, #fff, #f4f8fb);
}

.development-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(74, 222, 128, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(8, 37, 66, 0.16);
}

.development-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.development-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
}

.development-copy .eyebrow {
  color: var(--green);
}

.development-copy h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 3.5rem);
  line-height: 0.98;
}

.development-copy p {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.development-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.development-tile {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  overflow: hidden;
}

.development-tile::before {
  display: none;
}

.development-tile::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(74, 222, 128, 0.22);
  border-radius: 50%;
}

.development-tile small {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.development-tile strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(1.18rem, 1.6vw, 1.65rem);
  line-height: 1;
}

.development-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.development-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 9px;
  border: 1px solid rgba(74, 222, 128, 0.5);
  border-radius: 8px;
  color: var(--green);
  background: rgba(74, 222, 128, 0.1);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 860px) {
  .development-showcase {
    grid-template-columns: 1fr;
  }

  .development-copy {
    min-height: auto;
  }
}

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

/* Homepage hero portrait framing */
.home .hero-image img {
  width: auto;
  max-width: none;
  object-position: right top;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  image-rendering: auto;
  margin-left: auto;
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 1) 0%, rgba(8, 37, 66, 0.98) 46%, rgba(8, 37, 66, 0.82) 62%, rgba(8, 37, 66, 0.4) 82%, rgba(8, 37, 66, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.38), rgba(8, 37, 66, 0.06));
}

@media (max-width: 980px) {
  .home .hero-image img {
    object-position: center top;
    transform: none;
  }
}

/* Professional horizontal testimonial rail */
.home #testimonials {
  overflow: hidden;
}

.home #testimonials .container {
  max-width: var(--max);
}

.home #testimonials h2 {
  max-width: 620px;
}

.testimonial-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
}

.testimonial-control {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13, 54, 92, 0.16);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(8, 37, 66, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.testimonial-control:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.7);
  background: var(--green);
}

.home .testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 420px);
  grid-template-columns: none;
  gap: 22px;
  margin-top: 46px;
  margin-inline: calc((100vw - min(var(--max), 100vw - 48px)) / -2);
  padding: 6px calc((100vw - min(var(--max), 100vw - 48px)) / 2 + 24px) 26px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 54, 92, 0.26) transparent;
}

.home .testimonial-grid::-webkit-scrollbar {
  height: 8px;
}

.home .testimonial-grid::-webkit-scrollbar-track {
  background: transparent;
}

.home .testimonial-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(13, 54, 92, 0.24);
}

.home .testimonial {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  scroll-snap-align: start;
  border: 1px solid rgba(13, 54, 92, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.94));
}

.home .testimonial::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 24px;
  color: rgba(74, 222, 128, 0.18);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.home .testimonial .person {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.home .avatar {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 32px rgba(8, 37, 66, 0.18);
}

.home .testimonial:nth-child(1) .avatar {
  object-position: 42% 42%;
}

.home .testimonial:nth-child(2) .avatar {
  object-position: 58% 42%;
}

.home .testimonial:nth-child(3) .avatar {
  object-position: 58% 36%;
}

.home .testimonial:nth-child(4) .avatar {
  object-position: 42% 42%;
}

.home .testimonial:nth-child(5) .avatar {
  object-position: 54% 34%;
}

.home .person strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.home .person p {
  margin: 3px 0 0;
  color: rgba(45, 55, 72, 0.62);
  font-size: 0.84rem;
}

.stars {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  color: #d9a441;
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.home .testimonial > p {
  position: relative;
  z-index: 1;
  color: rgba(45, 55, 72, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.home .rating {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: 24px;
  padding: 7px 11px;
  border: 1px solid rgba(74, 222, 128, 0.36);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(74, 222, 128, 0.12);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .testimonial-head {
    align-items: start;
    flex-direction: column;
  }

  .testimonial-controls {
    padding-bottom: 0;
  }

  .home .testimonial-grid {
    grid-auto-columns: minmax(286px, 84vw);
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .home .testimonial {
    min-height: 330px;
    padding: 24px;
  }
}

/* Final page close: keep CTA and footer as distinct solid bands */
.cta {
  background: var(--navy);
}

.cta::before {
  display: none;
}

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* Homepage hero: slightly calmer headline scale */
.home .hero h1 {
  max-width: 720px;
  font-size: clamp(2.8rem, 4.75vw, 4.95rem);
  line-height: 0.98;
}

/* Partner logos: separate real logo assets with full-row spacing */
.home #partners {
  padding-block: 26px;
}

.home #partners .logos {
  width: min(100%, 1180px);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 5vw, 82px);
}

.partner-logo-img {
  width: auto;
  height: 46px;
  max-width: 190px;
  object-fit: contain;
  object-position: center;
  flex: 0 1 auto;
}

.fitia-logo {
  height: 52px;
  max-width: 154px;
}

.life-logo {
  max-width: 192px;
}

.fanka-logo {
  max-width: 150px;
}

.leanix-logo {
  max-width: 154px;
}

.sharp-logo {
  max-width: 170px;
}

@media (max-width: 880px) {
  .home #partners .logos {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 4px;
    scrollbar-width: none;
  }

  .home #partners .logos::-webkit-scrollbar {
    display: none;
  }

  .partner-logo-img {
    flex: 0 0 auto;
  }
}

/* Blog and resource hub */
.blog-resource-card::after {
  background:
    linear-gradient(0deg, rgba(8, 37, 66, 0.86), rgba(8, 37, 66, 0.04) 62%),
    linear-gradient(90deg, rgba(74, 222, 128, 0.18), transparent 52%);
}

.blog-hub {
  background:
    radial-gradient(circle at 12% 10%, rgba(74, 222, 128, 0.12), transparent 28%),
    #fff;
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 0;
  margin-top: 52px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.09);
}

.blog-feature-image {
  position: relative;
  min-height: 500px;
  background: var(--navy);
  overflow: hidden;
}

.blog-feature-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.blog-feature:hover .blog-feature-image img {
  transform: scale(1.04);
}

.blog-feature-copy {
  padding: clamp(34px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-feature-copy h3 {
  max-width: 560px;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  line-height: 0.98;
}

.blog-feature-copy p {
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.blog-meta span,
.article-meta span,
.article-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(238, 242, 247, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.blog-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
}

.blog-list-heading h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.blog-list-heading > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(238, 242, 247, 0.72);
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.blog-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.66));
}

.blog-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
}

.blog-card p {
  margin: 16px 0 22px;
  color: rgba(45, 55, 72, 0.7);
}

.blog-card-media {
  padding: 0;
  overflow: hidden;
}

.blog-card-media img {
  height: 190px;
  object-fit: cover;
}

.blog-card-media .eyebrow,
.blog-card-media h3,
.blog-card-media p,
.blog-card-media .text-link {
  margin-left: 28px;
  margin-right: 28px;
}

.blog-card-media .eyebrow {
  margin-top: 26px;
}

.blog-card-media .text-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.07);
}

.product-card img {
  height: 260px;
  border-radius: 8px;
  object-fit: cover;
}

.product-card p {
  margin-top: 12px;
  color: rgba(45, 55, 72, 0.7);
}

.article-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  background:
    radial-gradient(circle at 8% 16%, rgba(74, 222, 128, 0.22), transparent 30%),
    linear-gradient(135deg, #f7fafc, #eef2f7);
}

.article-hero-copy {
  padding: 154px 24px 70px max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-back {
  width: fit-content;
  margin-bottom: 34px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.article-hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5.1vw, 5.7rem);
  line-height: 0.94;
}

.article-hero .lead {
  max-width: 640px;
}

.article-meta,
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.article-tags {
  margin-top: 14px;
}

.article-tags span {
  color: #072f1a;
  background: rgba(74, 222, 128, 0.18);
  border-color: rgba(74, 222, 128, 0.34);
}

.article-hero-image {
  position: relative;
  overflow: hidden;
}

.article-hero-image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, #eef2f7 0%, rgba(238, 242, 247, 0.72) 14%, transparent 32%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.34), transparent 42%);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 24px 120px;
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 11px;
  padding: 22px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.07);
}

.article-sidebar strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.article-sidebar a {
  color: rgba(45, 55, 72, 0.72);
  font-size: 0.92rem;
  font-weight: 750;
}

.article-sidebar a:hover {
  color: var(--green-deep);
}

.article-body {
  color: rgba(45, 55, 72, 0.84);
  font-size: 1.08rem;
  line-height: 1.84;
}

.article-body > p {
  margin-bottom: 24px;
}

.article-body section {
  scroll-margin-top: 120px;
  margin-top: 76px;
}

.article-body h2 {
  max-width: 680px;
  margin: 8px 0 22px;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1;
}

.article-body h3 {
  font-size: 1.18rem;
}

.article-step {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: #072f1a;
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-callout,
.article-cta-inline {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(74, 222, 128, 0.14), transparent 28%),
    #fff;
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.07);
}

.article-callout.soft {
  background: #f7fafc;
}

.article-callout ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-callout li + li {
  margin-top: 8px;
}

.article-table {
  display: grid;
  gap: 12px;
  margin: 34px 0;
}

.article-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.58fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background: #fff;
}

.article-table strong {
  color: var(--navy);
}

.article-cta-inline {
  background:
    radial-gradient(circle at 88% 20%, rgba(74, 222, 128, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
}

.article-cta-inline h2 {
  color: #fff;
}

.article-cta-inline p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

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

.faq-list details {
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
}

.faq-list details p {
  padding: 0 20px 20px;
}

@media (max-width: 980px) {
  .blog-feature,
  .article-hero,
  .article-shell,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .article-hero-copy {
    padding-inline: 24px;
  }

  .article-hero-image {
    min-height: 420px;
  }

  .article-sidebar {
    position: static;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .product-card,
  .article-table div {
    grid-template-columns: 1fr;
  }

  .blog-feature-image {
    min-height: 330px;
  }
}

/* Homepage hero headline: compact editorial lockup */
.home .hero h1 {
  max-width: min(900px, calc(100vw - 66.667svh - max(24px, calc((100vw - var(--max)) / 2)) - 24px));
  display: grid;
  gap: 4px;
  font-size: clamp(2.35rem, 3.95vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.home .hero h1 .hero-line {
  display: block;
}

@media (min-width: 761px) {
  .home .hero h1 .hero-line {
    white-space: nowrap;
  }
}

.home .hero h1 .green-text {
  position: relative;
  width: fit-content;
  padding-right: 0.08em;
  color: var(--green);
}

.home .hero h1 .green-text::after {
  display: none;
}

@media (max-width: 640px) {
  .home .hero h1 {
    max-width: 94vw;
    font-size: clamp(2.25rem, 12vw, 3.6rem);
  }
}

/* Homepage hero proof row: match subtitle scale with larger icons */
.home .hero-proof {
  max-width: 860px;
  margin-top: 20px;
  padding: 12px 14px;
  gap: 12px;
}

.home .proof-item {
  min-height: 72px;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 1.65vw, 1.32rem);
  line-height: 1.05;
}

.home .proof-icon {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  opacity: 1;
}

.home .proof-label {
  display: grid;
  gap: 2px;
}

.home .proof-item strong {
  color: #fff;
  font-size: inherit;
  line-height: inherit;
}

@media (max-width: 760px) {
  .home .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .proof-item {
    font-size: 1rem;
  }

  .home .proof-icon {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
}

/* Homepage hero proof row: integrated, no boxed stroke */
.home .hero-proof {
  max-width: 900px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  gap: 34px;
}

.home .proof-item {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

@media (max-width: 760px) {
  .home .hero-proof {
    gap: 18px;
  }
}

/* Homepage hero portrait: keep Tina's face clear */
.home .hero-image img {
  filter: none;
}

.home .hero-image::after {
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 1) 0%, rgba(8, 37, 66, 0.92) 34%, rgba(8, 37, 66, 0.5) 50%, rgba(8, 37, 66, 0.16) 66%, rgba(8, 37, 66, 0.02) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.14), rgba(8, 37, 66, 0) 50%);
}

/* Homepage hero: keep the field visually one solid navy. */
.home .hero,
.home .hero-image {
  background: #082542;
}

.home .hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}

.home .hero-image::after {
  z-index: 2;
  background:
    linear-gradient(90deg, #082542 0%, rgba(8, 37, 66, 0.96) 30%, rgba(8, 37, 66, 0.7) 48%, rgba(8, 37, 66, 0.24) 66%, rgba(8, 37, 66, 0) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.1), rgba(8, 37, 66, 0) 54%, rgba(8, 37, 66, 0.08));
}

/* Homepage hero: compact left-side action and proof rhythm */
.home .hero .lead {
  margin-top: 16px;
  max-width: 620px;
  padding-left: 0;
  border-left: 0;
}

.home .hero-actions {
  gap: 10px;
  margin-top: 22px;
}

.home .hero .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.home .hero-proof {
  display: flex;
  align-items: center;
  width: min(100%, calc(100vw - 66.667svh - max(24px, calc((100vw - var(--max)) / 2)) - 14px));
  max-width: 100%;
  justify-content: flex-start;
  margin-top: 18px;
  gap: clamp(18px, 2.4vw, 34px);
}

.home .proof-item {
  display: grid;
  grid-template-columns: 52px minmax(0, max-content);
  align-items: center;
  gap: 8px;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.06;
}

.home .proof-icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}

.home .proof-icon[src$="lifestyle-balance-transparent.png"] {
  clip-path: inset(0 2px 0 0);
}

.home .proof-label {
  gap: 0;
}

/* Site logo image */
.brand {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.brand img {
  display: block;
  width: min(172px, 100%);
  max-height: 44px;
  object-fit: contain;
  object-position: left center;
}

.brand::before {
  display: none !important;
}

@media (max-width: 760px) {
  .home .hero .lead {
    margin-top: 14px;
    padding-left: 0;
  }

  .home .hero-actions {
    margin-top: 18px;
  }

  .home .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 14px;
    margin-top: 18px;
  }

  .home .proof-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
    font-size: 0.96rem;
  }

  .home .proof-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

/* About hero: white portrait editorial treatment */
.page-hero.navy.about-hero {
  background: #f7f9fb;
}

.about-hero::before {
  background:
    linear-gradient(90deg, rgba(247, 249, 251, 1) 0%, rgba(247, 249, 251, 0.98) 34%, rgba(247, 249, 251, 0.86) 48%, rgba(247, 249, 251, 0.34) 66%, rgba(247, 249, 251, 0.02) 86%),
    radial-gradient(circle at 14% 48%, rgba(74, 222, 128, 0.16), transparent 28%);
}

.about-hero .page-hero-grid > div:first-child::before {
  inset: -34px -24px -34px -28px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  box-shadow: 0 28px 90px rgba(13, 54, 92, 0.08);
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.92), rgba(247, 249, 251, 0.68));
  backdrop-filter: blur(5px);
}

.about-hero h1 {
  max-width: 640px;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.97;
}

.about-hero .lead {
  max-width: 570px;
  color: rgba(8, 37, 66, 0.82);
}

.about-hero .image-frame {
  background: #f7f9fb;
}

.about-hero .image-frame img {
  object-fit: contain;
  object-position: 78% bottom;
  transform: scale(1.03);
}

@media (max-width: 980px) {
  .about-hero::before {
    background:
      linear-gradient(90deg, rgba(247, 249, 251, 0.98), rgba(247, 249, 251, 0.76)),
      linear-gradient(0deg, rgba(247, 249, 251, 0.95), rgba(247, 249, 251, 0.08));
  }

  .about-hero .image-frame img {
    object-position: 72% bottom;
    transform: scale(1.08);
  }
}

/* About story image: anatomy coaching photo */
.story-wash .image-frame img {
  object-fit: cover;
  object-position: 74% center;
  filter: contrast(1.03) saturate(1.04);
}

@media (max-width: 980px) {
  .story-wash .image-frame img {
    object-position: 68% center;
  }
}

/* About hero refinement: preserve full portrait and compact text panel */
.page-hero.navy.about-hero {
  min-height: 100svh;
  padding-top: clamp(128px, 13svh, 164px);
  padding-bottom: clamp(28px, 5svh, 58px);
}

.about-hero .page-hero-grid {
  min-height: calc(100svh - 188px);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.about-hero .page-hero-grid > div:first-child {
  max-width: 540px;
}

.about-hero .page-hero-grid > div:first-child::before {
  inset: -28px -18px -28px -24px;
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.9), rgba(247, 249, 251, 0.62));
}

.about-hero h1 {
  max-width: 520px;
  font-size: clamp(2.35rem, 4.15vw, 4.5rem);
  line-height: 1.01;
}

.about-hero .lead {
  max-width: 500px;
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.62;
}

.about-hero .actions {
  margin-top: 20px;
}

.about-hero .image-frame img {
  object-fit: contain;
  object-position: 91% bottom;
  transform: scale(0.98);
}

@media (min-width: 1200px) and (max-height: 850px) {
  .page-hero.navy.about-hero {
    padding-top: 118px;
    padding-bottom: 22px;
  }

  .about-hero .page-hero-grid {
    min-height: calc(100svh - 140px);
  }

  .about-hero .image-frame img {
    object-position: 93% bottom;
    transform: scale(0.9);
  }
}

@media (max-width: 980px) {
  .about-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero .image-frame img {
    object-position: 82% bottom;
    transform: scale(1);
  }
}

/* About hero final fit: compact copy card and show the full portrait reliably */
.page-hero.navy.about-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: clamp(118px, 12svh, 150px);
  padding-bottom: clamp(18px, 3svh, 38px);
}

.about-hero .page-hero-grid {
  min-height: calc(100svh - 150px);
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
}

.about-hero .page-hero-grid > div:first-child {
  max-width: 480px;
}

.about-hero .page-hero-grid > div:first-child::before {
  inset: -24px -14px -24px -20px;
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.88), rgba(247, 249, 251, 0.56));
}

.about-hero h1 {
  max-width: 470px;
  font-size: clamp(2.08rem, 3.55vw, 3.85rem);
  line-height: 1.02;
}

.about-hero .about-title-line {
  display: block;
  white-space: nowrap;
}

.about-hero .lead {
  max-width: 430px;
  font-size: clamp(0.92rem, 1.02vw, 1rem);
  line-height: 1.58;
}

.about-hero .image-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: 80% bottom;
  transform: translateY(-18px) scale(0.84);
  transform-origin: right bottom;
  transition: none;
}

.about-hero .image-frame:hover img {
  transform: translateY(-18px) scale(0.84);
}

.about-hero .image-frame {
  aspect-ratio: auto;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) and (max-height: 900px) {
  .page-hero.navy.about-hero {
    padding-top: 106px;
    padding-bottom: 14px;
  }

  .about-hero .page-hero-grid {
    min-height: calc(100svh - 122px);
  }

  .about-hero .image-frame img {
    object-position: 80% bottom;
    transform: translateY(-34px) scale(0.78);
  }

  .about-hero .image-frame:hover img {
    transform: translateY(-34px) scale(0.78);
  }
}

@media (max-width: 980px) {
  .about-hero h1 {
    font-size: clamp(2.3rem, 9vw, 3.7rem);
  }

  .about-hero .image-frame img {
    object-position: 88% bottom;
    transform: scale(0.94);
  }

  .about-hero .image-frame:hover img {
    transform: scale(0.94);
  }
}

/* About My Story image: keep Tina's face visible in the full-bleed wash */
.story-wash {
  background:
    linear-gradient(90deg, #eef2f7 0%, #eef2f7 46%, rgba(238, 242, 247, 0.82) 58%, rgba(238, 242, 247, 0.18) 76%),
    #eef2f7;
}

.story-wash .split.reverse > div:last-child {
  width: min(50%, 660px);
  max-width: none;
  padding: 46px 42px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 28px 80px rgba(8, 37, 66, 0.08);
  backdrop-filter: blur(10px);
}

.story-wash .image-frame {
  inset: 0 0 0 calc(50% + 24px);
}

.story-wash .image-frame::before {
  background:
    linear-gradient(90deg, #eef2f7 0%, rgba(238, 242, 247, 0.92) 12%, rgba(238, 242, 247, 0.48) 26%, transparent 42%);
}

.story-wash .image-frame img {
  object-fit: contain;
  object-position: right top;
}

.story-copy .lead:first-of-type {
  color: var(--navy);
  font-size: clamp(1.14rem, 1.6vw, 1.36rem);
  line-height: 1.44;
}

.story-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(150px, 40%);
  margin: 26px 0 22px;
  color: var(--green);
}

.story-divider span {
  height: 1px;
  flex: 1;
  background: rgba(74, 222, 128, 0.5);
}

.story-divider svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 54, 92, 0.12);
}

.story-stat {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 128px;
  padding: 0 18px;
  text-align: center;
}

.story-stat + .story-stat {
  border-left: 1px solid rgba(13, 54, 92, 0.1);
}

.story-stat svg {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  fill: none;
  stroke: var(--green-deep);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
}

.story-stat strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.story-stat span {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .story-wash .split.reverse > div:last-child {
    width: auto;
    max-width: none;
    padding: 28px;
  }

  .story-wash .image-frame {
    inset: auto;
  }

  .story-wash .image-frame img {
    object-fit: cover;
    object-position: 74% 16%;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .story-stat {
    min-height: auto;
    padding: 0;
  }

  .story-stat + .story-stat {
    padding-top: 18px;
    border-top: 1px solid rgba(13, 54, 92, 0.1);
    border-left: 0;
  }
}

/* About credentials: horizontal stacked cards */
#credentials .credential-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 920px;
  margin: 38px auto 0;
}

#credentials .credential-card,
#credentials .credential-card.wide {
  min-height: 0;
  grid-column: auto;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 2px;
  padding: 18px 22px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.7)),
    #fff;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
  will-change: transform;
}

#credentials .credential-card:hover,
#credentials .credential-card.wide:hover {
  z-index: 2;
  transform: scale(1.025);
  border-color: rgba(74, 222, 128, 0.38);
  box-shadow: 0 22px 52px rgba(13, 54, 92, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(238, 242, 247, 0.92)),
    #fff;
}

#credentials .credential-card.featured {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.7)),
    #fff;
  color: var(--navy);
}

#credentials .credential-card.featured .credential-mark {
  color: var(--navy);
  background: rgba(74, 222, 128, 0.11);
}

#credentials .credential-card.featured .credential-year {
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.12);
}

#credentials .credential-card.featured h3 {
  color: var(--navy);
}

#credentials .credential-card.featured p {
  color: rgba(45, 55, 72, 0.7);
}

#credentials .credential-mark {
  grid-column: 1;
  grid-row: 1 / 3;
  min-width: 104px;
  height: 54px;
}

#credentials .credential-year {
  grid-column: 3;
  grid-row: 1 / 3;
  position: static;
  justify-self: end;
  align-self: center;
  padding: 9px 13px;
  font-size: 0.86rem;
  white-space: nowrap;
}

#credentials .credential-card h3 {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  margin: 0;
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
}

#credentials .credential-card p {
  grid-column: 2;
  grid-row: 2;
  max-width: 620px;
  margin-top: 2px;
  font-size: 0.92rem;
}

#credentials .credential-card::after {
  right: 18px;
  bottom: auto;
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
  opacity: 0.45;
}

@media (max-width: 720px) {
  #credentials .credential-card,
  #credentials .credential-card.wide {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  #credentials .credential-mark,
  #credentials .credential-year,
  #credentials .credential-card h3,
  #credentials .credential-card p {
    grid-column: 1;
    grid-row: auto;
  }

  #credentials .credential-year {
    justify-self: start;
  }
}

/* About hero: larger knee-up portrait with homepage-style blended background */
.page-hero.navy.about-hero {
  background: #f7f9fb;
  overflow: hidden;
}

.about-hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, #f7f9fb 0%, rgba(247, 249, 251, 0.98) 32%, rgba(247, 249, 251, 0.76) 48%, rgba(247, 249, 251, 0.28) 66%, rgba(247, 249, 251, 0) 86%),
    radial-gradient(circle at 20% 54%, rgba(74, 222, 128, 0.13), transparent 30%);
}

.about-hero .page-hero-grid {
  grid-template-columns: minmax(0, 0.39fr) minmax(0, 0.61fr);
}

.about-hero .page-hero-grid > div:first-child {
  max-width: 500px;
}

.about-hero .page-hero-grid > div:first-child::before {
  background: linear-gradient(135deg, rgba(247, 249, 251, 0.9), rgba(247, 249, 251, 0.54));
}

.about-hero .image-frame {
  position: absolute;
  inset: 0;
  background: #f7f9fb;
}

.about-hero .image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #f7f9fb 0%, rgba(247, 249, 251, 0.92) 34%, rgba(247, 249, 251, 0.38) 54%, rgba(247, 249, 251, 0) 76%),
    linear-gradient(0deg, rgba(247, 249, 251, 0.52), rgba(247, 249, 251, 0) 24%);
}

.about-hero .image-frame img,
.about-hero .image-frame:hover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 72% top;
  transform: translateX(1%) scale(1.56);
  transform-origin: center top;
  transition: none;
}

@media (min-width: 1200px) and (max-height: 900px) {
  .about-hero .image-frame img,
  .about-hero .image-frame:hover img {
    object-position: 72% top;
    transform: translateX(1%) scale(1.56);
  }
}

@media (max-width: 980px) {
  .about-hero .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero .image-frame img,
  .about-hero .image-frame:hover img {
    object-position: 82% top;
    transform: scale(1.14);
  }
}

/* About page: keep section content aligned to the hero text rhythm */
.about-page .section > .container,
.about-page .page-hero-grid {
  width: 100%;
}

.about-page #credentials .credential-grid {
  max-width: 100%;
  margin: 38px 0 0;
}

.about-page .section.warm .container {
  width: 100%;
}

.about-page .cta .container {
  width: 100%;
}

.about-page .cta .lead {
  max-width: min(1040px, 100%);
}

@media (max-width: 980px) {
  .about-page .section > .container,
  .about-page .page-hero-grid {
    width: 100%;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  .nav-shell,
  .site-header.light .nav-shell,
  body:not(.home) .nav-shell {
    grid-template-columns: 150px 1fr auto;
    padding-inline: 24px;
  }

  .brand {
    font-size: 1.08rem;
  }

  .brand::before {
    width: 22px;
    height: 22px;
  }

  .main-nav {
    gap: 8px;
    font-size: 0.76rem;
  }

  .nav-link {
    padding-inline: 8px;
  }

  .nav-cta {
    min-height: 48px;
    padding-inline: 18px;
  }
}

/* ELEVA event page */
.nav-link.active {
  color: var(--green-deep);
}

.event-page {
  --green: #e8bd6f;
  --green-deep: #d9a84f;
  background: #f6f7f2;
}

.event-page .site-header .nav-shell {
  background: rgba(8, 37, 66, 0.86);
  color: #fff;
}

.event-page .btn.primary {
  background: linear-gradient(135deg, #e8bd6f, #f0ca82);
  color: #082542;
}

.event-page .btn.primary:hover {
  background: #f0ca82;
}

.eieva-hero {
  min-height: 100svh;
  padding: 126px 24px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #082542;
  color: #fff;
  isolation: isolate;
}

.eieva-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 37, 66, 0.96) 0%, rgba(8, 37, 66, 0.86) 34%, rgba(8, 37, 66, 0.48) 57%, rgba(8, 37, 66, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.46) 0%, rgba(8, 37, 66, 0.06) 44%, rgba(8, 37, 66, 0.14) 100%),
    url("../images/event/eleva-hero.png");
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.eieva-hero-bg::before,
.eieva-hero-bg::after {
  display: none;
}

.eieva-hero-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.eieva-hero-copy {
  max-width: 760px;
}

.eieva-logo-lockup {
  display: grid;
  gap: 0;
  margin: 10px 0 20px;
}

.eieva-logo-main {
  color: #e8bd6f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.82;
  letter-spacing: 0;
}

.eieva-logo-by {
  display: grid;
  grid-template-columns: minmax(34px, 1fr) auto minmax(34px, 1fr);
  align-items: center;
  gap: 18px;
  width: clamp(240px, 28vw, 340px);
  margin-top: 8px;
  margin-left: clamp(126px, 17.5vw, 210px);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Brittany", "Brittany Signature", "Brush Script MT", "Segoe Script", cursive;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.eieva-logo-by::before,
.eieva-logo-by::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
}

.eieva-hero h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.eieva-subtitle {
  margin-top: 12px;
  color: #e8bd6f;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.86);
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 650;
}

.event-meta span:last-child {
  border-right: 0;
}

.event-meta svg,
.eieva-pillar svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-page .eieva-hero .hero-actions .btn::after {
  content: none;
  display: none;
}

.event-page .eieva-hero .hero-actions .btn.primary {
  background: #e8bd6f;
  color: #082542;
  box-shadow: 0 18px 42px rgba(232, 189, 111, 0.24);
}

.event-page .eieva-hero .hero-actions .btn.primary:hover {
  background: #f0ca82;
}

.eieva-hero-visual {
  display: none;
}

.eieva-hero-visual img {
  display: none;
}

.event-section-title {
  max-width: 850px;
  margin: 0 auto 48px;
  text-align: center;
}

.event-section-title h2 {
  margin: 0 auto;
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.12;
}

.event-section-title p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
  line-height: 1.65;
}

.event-intro .event-section-title {
  max-width: 980px;
}

body.event-page .event-intro .event-section-title h2,
body.event-page .event-intro .event-section-title p {
  max-width: 920px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

body.event-page .event-intro .event-section-title h2 {
  font-weight: 850;
}

body.event-page .event-intro .event-section-title p {
  margin-top: 28px;
  color: var(--navy);
  font-weight: 400;
}

.eieva-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.eieva-pillar {
  min-height: 260px;
  padding: 34px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.eieva-pillar:last-child {
  border-right: 0;
}

.eieva-pillar svg {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  color: var(--green-deep);
}

.eieva-pillar h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.eieva-pillar p {
  margin-top: 12px;
  color: var(--muted);
}

body.event-page .event-intro .eieva-pillars-wrap {
  position: relative;
  margin-top: 58px;
  padding: clamp(24px, 4vw, 42px) 0 0;
  overflow: hidden;
  background: transparent;
  color: var(--navy);
  box-shadow: none;
}

body.event-page .event-intro .eieva-pillars-wrap::after {
  display: none;
}

body.event-page .event-intro .eieva-pillars-title {
  position: relative;
  z-index: 1;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

body.event-page .event-intro .eieva-pillars-title h2 {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.event-page .event-intro .eieva-pillars-title h2 span {
  color: #e8bd6f;
}

body.event-page .event-intro .eieva-pillars-title p {
  max-width: none;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillars {
  position: relative;
  z-index: 1;
  border: 0;
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillar {
  min-height: 0;
  padding: 0 clamp(20px, 2.4vw, 34px);
  border-right: 1px solid rgba(13, 54, 92, 0.14);
  color: var(--navy);
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillar:last-child {
  border-right: 0;
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillar svg {
  width: clamp(68px, 6.5vw, 88px);
  height: clamp(68px, 6.5vw, 88px);
  margin-bottom: 22px;
  padding: 17px;
  border-radius: 50%;
  background: #e8bd6f;
  color: #0d365c;
  filter: drop-shadow(0 0 20px rgba(232, 189, 111, 0.42));
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillar h3 {
  color: var(--navy);
  font-size: clamp(1.22rem, 2.1vw, 1.9rem);
  line-height: 1.06;
  letter-spacing: 0.08em;
}

body.event-page .event-intro .eieva-pillars-wrap .eieva-pillar p {
  max-width: 260px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.18rem);
  line-height: 1.35;
}

.event-schedule-section,
.sponsor-section,
.faq-policy-section {
  background: #f6f7f2;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: stretch;
}

.schedule-card,
.event-panel,
.event-policy-card,
.sponsor-package {
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 80px rgba(5, 12, 19, 0.08);
}

.schedule-card {
  padding: clamp(28px, 4vw, 48px);
}

.schedule-title {
  color: var(--navy);
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.schedule-subtitle {
  max-width: 620px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 0 30px;
  margin-top: 34px;
}

.schedule-grid article {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}

.schedule-grid span {
  color: #e8bd6f;
  font-size: 0.82rem;
  font-weight: 850;
}

.schedule-grid h3 {
  margin-top: 5px;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.schedule-grid p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.event-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.event-resource-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.event-resource-card img {
  height: 90px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.event-highlight-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: #111;
}

.event-highlight-card img {
  height: 100%;
  object-fit: cover;
}

.event-highlight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.62));
}

.event-highlight-card div {
  position: absolute;
  inset: auto 28px 30px;
  z-index: 1;
}

.event-highlight-card h3 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
}

.event-highlight-card span {
  display: block;
  margin-top: 16px;
  color: var(--green);
  font-size: 2rem;
}

.event-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  max-width: var(--max);
}

.event-panel {
  padding: clamp(28px, 3vw, 38px);
}

.eieva-check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.included-panel-title {
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  line-height: 1.15;
}

.included-panel-kicker {
  display: inline-flex;
  margin-top: 0;
}

.eieva-check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
}

.eieva-check-list li::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.included-panel .eieva-check-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 24px;
}

.ticket-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfbf8;
}

.ticket-card + .ticket-card {
  margin-top: 14px;
}

.ticket-card h3 {
  font-size: 1rem;
  text-transform: uppercase;
}

.ticket-card strong {
  display: block;
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 1.75rem;
}

.ticket-card p,
.payment-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.policy-check {
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 650;
}

.policy-check input {
  width: 18px;
  height: 18px;
  padding: 0;
  margin-top: 4px;
}

.payment-note {
  margin-top: 12px;
}

.sponsor-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow cta"
    "title cta";
  gap: 10px 28px;
  align-items: center;
}

.sponsor-intro .eyebrow {
  grid-area: eyebrow;
}

.sponsor-intro h3 {
  grid-area: title;
  max-width: 700px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.35;
}

.sponsor-intro [data-sponsor-modal-open] {
  grid-area: cta;
  justify-self: end;
  min-width: 300px;
  padding-inline: 30px;
  white-space: nowrap;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sponsor-package {
  padding: 28px;
}

.sponsor-package.featured {
  background: #07131d;
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(143, 188, 122, 0.35);
}

.sponsor-package span {
  color: var(--green-deep);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.sponsor-package h3 {
  margin-top: 10px;
  font-size: 2rem;
}

.sponsor-package.featured h3 {
  color: #fff;
}

.sponsor-package p {
  margin-top: 10px;
  color: var(--muted);
}

.sponsor-package.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.sponsor-package ul {
  display: grid;
  gap: 9px;
  min-height: 235px;
  padding-left: 18px;
  margin: 22px 0;
  color: var(--muted);
}

.sponsor-package.featured ul {
  color: rgba(255, 255, 255, 0.72);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.atmosphere-grid img {
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 70px rgba(5, 12, 19, 0.12);
}

.event-faq {
  margin-top: 34px;
}

.event-policy-card {
  padding: clamp(28px, 4vw, 42px);
}

.event-policy-card h3 {
  line-height: 1.2;
}

.event-policy-card p {
  margin-top: 18px;
  color: var(--muted);
}

.event-policy-card a {
  color: var(--green-deep);
  font-weight: 850;
}

.event-final-cta {
  text-align: center;
}

.event-final-cta h2 {
  margin: 0 auto;
}

.event-final-cta .actions {
  justify-content: center;
}

.event-footer-bar {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 48px;
  background: #050b11;
  color: rgba(255, 255, 255, 0.82);
}

.event-footer-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.event-footer-bar strong {
  color: #fff;
  text-align: center;
}

.event-footer-bar a {
  justify-self: end;
  color: #fff;
}

.mobile-ticket-cta {
  display: none;
}

@media (max-width: 1180px) {
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .event-page .site-header .nav-shell {
    color: #111;
    background: rgba(255, 255, 255, 0.92);
  }

  .eieva-hero {
    padding: 116px 24px 42px;
  }

  .eieva-hero-bg {
    background-position: 62% center;
  }

  .eieva-hero-grid,
  .schedule-layout,
  .event-commerce-grid {
    grid-template-columns: 1fr;
  }

  .eieva-hero-visual {
    display: none;
  }

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

  .eieva-pillar:nth-child(2) {
    border-right: 0;
  }

  .eieva-pillar:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .event-footer-bar {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }

  .event-footer-bar div,
  .event-footer-bar a {
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .eieva-hero {
    padding: 104px 18px 34px;
  }

  .eieva-logo-main {
    font-size: clamp(4.3rem, 22vw, 6.4rem);
  }

  .eieva-logo-by {
    width: min(70vw, 260px);
    gap: 12px;
    margin-left: 82px;
  }

  .event-meta,
  .event-meta span,
  .ticket-card {
    display: grid;
  }

  .event-meta span {
    grid-template-columns: 28px 1fr;
    border-right: 0;
    padding-right: 0;
  }

  .eieva-pillars,
  .schedule-grid,
  .event-downloads,
  .sponsor-grid,
  .atmosphere-grid {
    grid-template-columns: 1fr;
  }

  .included-panel .eieva-check-list,
  .sponsor-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "cta";
  }

  .sponsor-intro [data-sponsor-modal-open] {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .schedule-grid {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .eieva-pillar {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .eieva-pillar:last-child {
    border-bottom: 0;
  }

  .event-highlight-card {
    min-height: 390px;
  }

  .atmosphere-grid img {
    height: 220px;
  }

  .mobile-ticket-cta {
    position: fixed;
    left: 18px;
    right: 86px;
    bottom: 18px;
    z-index: 44;
    display: grid;
    min-height: 54px;
    place-items: center;
    border-radius: 8px;
    background: var(--green);
    color: #07131d;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 18px 50px rgba(5, 12, 19, 0.24);
  }
}

/* About hero: designer split layout, text left and vertical image right */
.about-page .page-hero.navy.about-hero {
  min-height: 100svh;
  padding: clamp(128px, 13svh, 164px) 24px clamp(64px, 8svh, 92px);
  background:
    linear-gradient(135deg, #fbfaf7 0%, #f4f1ea 52%, #eef2e8 100%);
  color: #111;
  overflow: hidden;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(143, 188, 122, 0.18), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 58%);
  pointer-events: none;
}

.about-page .about-hero::after {
  display: none;
}

.about-page .about-hero .page-hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100vw - 48px));
  min-height: min(720px, calc(100svh - 220px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: clamp(46px, 8vw, 112px);
}

.about-page .about-hero .page-hero-grid > div:first-child {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.about-page .about-hero .page-hero-grid > div:first-child::before {
  display: none;
}

.about-page .about-hero .eyebrow,
.about-page .page-hero.navy.about-hero .eyebrow {
  color: var(--green-deep);
}

.about-page .about-hero h1,
.about-page .page-hero.navy.about-hero h1 {
  max-width: 600px;
  color: var(--navy);
  font-size: clamp(2.6rem, 4.1vw, 4.35rem);
  line-height: 1;
  text-shadow: none;
}

.about-page .about-hero .brand-fit {
  color: var(--green);
}

.about-page .about-hero .lead,
.about-page .page-hero.navy.about-hero .lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.72;
}

.about-page .about-hero .image-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(720px, calc(100svh - 180px));
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 100px rgba(17, 17, 17, 0.14);
  aspect-ratio: 4 / 5;
}

.about-page .about-hero .image-frame::before {
  display: none;
}

.about-page .about-hero .image-frame img,
.about-page .about-hero .image-frame:hover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: 54% center;
  transform: none;
  filter: none;
  transition: none;
}

@media (max-width: 980px) {
  .about-page .page-hero.navy.about-hero {
    padding: 126px 20px 72px;
  }

  .about-page .about-hero::before {
    background:
      radial-gradient(circle at 18% 18%, rgba(143, 188, 122, 0.18), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent 58%);
  }

  .about-page .about-hero .page-hero-grid {
    width: 100%;
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 38px;
  }

  .about-page .about-hero h1,
  .about-page .page-hero.navy.about-hero h1 {
    font-size: clamp(2.25rem, 8vw, 3.45rem);
  }

  .about-page .about-hero .image-frame img,
  .about-page .about-hero .image-frame:hover img {
    object-position: 54% center;
  }

  .about-page .about-hero .image-frame {
    min-height: 520px;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero h1,
  .about-page .page-hero.navy.about-hero h1 {
    font-size: clamp(1.8rem, 8.8vw, 2.75rem);
    line-height: 1;
  }

  .about-page .about-hero .image-frame {
    min-height: 460px;
    aspect-ratio: 4 / 5;
  }
}

/* About hero: blend portrait into the section instead of showing an image edge. */
.about-page .about-hero .image-frame {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.about-page .about-hero .image-frame::before {
  content: "";
  display: block;
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fbfaf7 0%, rgba(251, 250, 247, 0.94) 13%, rgba(244, 241, 234, 0.5) 32%, rgba(238, 242, 232, 0) 58%),
    linear-gradient(180deg, #fbfaf7 0%, rgba(251, 250, 247, 0) 14%, rgba(238, 242, 232, 0) 82%, #eef2e8 100%),
    linear-gradient(0deg, rgba(238, 242, 232, 0.2), rgba(244, 241, 234, 0.18));
}

.about-page .about-hero .image-frame img,
.about-page .about-hero .image-frame:hover img {
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, #000 24%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, #000 24%),
    linear-gradient(180deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  filter: saturate(0.96) contrast(0.98) brightness(0.985);
}

@media (max-width: 980px) {
  .about-page .about-hero .image-frame::before {
    background:
      linear-gradient(180deg, #fbfaf7 0%, rgba(251, 250, 247, 0) 18%, rgba(238, 242, 232, 0) 82%, #eef2e8 100%),
      linear-gradient(0deg, rgba(238, 242, 232, 0.24), rgba(244, 241, 234, 0.14));
  }

  .about-page .about-hero .image-frame img,
  .about-page .about-hero .image-frame:hover img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 88%, transparent 100%);
  }
}

/* About hero: frame the wide SHARP podium image without a visible white edge. */
.about-page .about-hero .image-frame img[src$="about-hero-hi11.png"],
.about-page .about-hero .image-frame:hover img[src$="about-hero-hi11.png"] {
  object-fit: cover;
  object-position: 88% center;
  filter: saturate(0.96) contrast(0.98) brightness(0.99);
}

@media (max-width: 980px) {
  .about-page .about-hero .image-frame img[src$="about-hero-hi11.png"],
  .about-page .about-hero .image-frame:hover img[src$="about-hero-hi11.png"] {
    object-position: 84% center;
  }
}

/* About hero: transparent cutout sits directly on the hero background. */
.about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout.png"]) {
  align-self: end;
  height: min(820px, calc(100svh - 108px));
  min-height: 660px;
  margin-bottom: calc(clamp(64px, 8svh, 92px) * -1);
}

.about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout.png"])::before {
  display: none;
}

.about-page .about-hero .image-frame img[src$="about-hero-hi11-cutout.png"],
.about-page .about-hero .image-frame:hover img[src$="about-hero-hi11-cutout.png"] {
  object-fit: cover;
  object-position: 88% bottom;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 980px) {
  .about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout.png"]) {
    align-self: center;
    height: auto;
    min-height: 560px;
    margin-bottom: 0;
  }

  .about-page .about-hero .image-frame img[src$="about-hero-hi11-cutout.png"],
  .about-page .about-hero .image-frame:hover img[src$="about-hero-hi11-cutout.png"] {
    object-position: 84% bottom;
  }
}

.about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout-trimmed.png"]) {
  align-self: end;
  height: min(860px, calc(100svh - 96px));
  min-height: 690px;
  margin-bottom: calc(clamp(64px, 8svh, 92px) * -1);
  overflow: visible;
}

.about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout-trimmed.png"])::before {
  display: none;
}

.about-page .about-hero .image-frame img[src$="about-hero-hi11-cutout-trimmed.png"],
.about-page .about-hero .image-frame:hover img[src$="about-hero-hi11-cutout-trimmed.png"] {
  width: auto;
  height: 100%;
  max-width: none;
  margin-left: auto;
  object-fit: contain;
  object-position: right bottom;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

@media (max-width: 980px) {
  .about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout-trimmed.png"]) {
    align-self: center;
    height: auto;
    min-height: 560px;
    margin-bottom: 0;
    overflow: hidden;
  }

  .about-page .about-hero .image-frame img[src$="about-hero-hi11-cutout-trimmed.png"],
  .about-page .about-hero .image-frame:hover img[src$="about-hero-hi11-cutout-trimmed.png"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* Home hero: frame the wide Tina portrait as a right-side editorial image. */
.home .hero-copy {
  z-index: 3;
}

.home .hero-image img[src$="home-hero-tina-suit-85.png"] {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 78% center;
  transform: none;
  filter: contrast(1.1) saturate(1.04) brightness(1.03);
  image-rendering: -webkit-optimize-contrast;
  margin-left: 0;
}

.home .hero-image:has(img[src$="home-hero-tina-suit-85.png"])::after {
  background:
    linear-gradient(90deg, #082542 0%, rgba(8, 37, 66, 0.96) 29%, rgba(8, 37, 66, 0.62) 45%, rgba(8, 37, 66, 0.14) 58%, rgba(8, 37, 66, 0) 72%),
    linear-gradient(0deg, rgba(8, 37, 66, 0.04), rgba(8, 37, 66, 0) 58%);
}

@media (max-width: 980px) {
  .home .hero-image img[src$="home-hero-tina-suit-85.png"] {
    object-position: 74% center;
  }
}

@media (max-width: 640px) {
  .home .hero-image img[src$="home-hero-tina-suit-85.png"] {
    object-position: 70% center;
  }
}

/* Resources cards: subtle hover enlargement. */
.resource-card {
  display: block;
  transform: translateY(0) scale(1);
  transform-origin: center;
  box-shadow: 0 20px 70px rgba(8, 37, 66, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.resource-card img {
  transition: transform 260ms ease, filter 260ms ease;
}

.resource-card::after {
  transition: background 260ms ease;
}

.resource-info {
  transition: transform 220ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  z-index: 2;
  transform: translateY(-6px) scale(1.025);
  border-color: rgba(74, 222, 128, 0.42);
  box-shadow: 0 30px 95px rgba(8, 37, 66, 0.16);
}

.resource-card:hover img,
.resource-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}

.resource-card:hover::after,
.resource-card:focus-visible::after {
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.9), rgba(8, 37, 66, 0.04) 64%);
}

.resource-card:hover .resource-info,
.resource-card:focus-visible .resource-info {
  transform: translateY(-4px);
}

/* About personal note: dissolve the image into the section background. */
.section.warm {
  margin-top: -48px;
  padding-top: 0;
  padding-bottom: 0;
}

.section.warm .note {
  min-height: clamp(820px, 86svh, 960px);
  padding-top: clamp(132px, 12vw, 184px);
  padding-bottom: clamp(100px, 9vw, 144px);
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 38%, rgba(244, 248, 251, 0.7) 60%, rgba(244, 248, 251, 0.08) 100%);
}

.note-image {
  inset: -44px -28px -24px 32%;
}

.note-image::before {
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 22%, rgba(255, 255, 255, 0.66) 40%, rgba(244, 248, 251, 0.18) 68%, rgba(244, 248, 251, 0.02) 100%),
    radial-gradient(circle at 78% 18%, rgba(74, 222, 128, 0.12), transparent 32%);
}

.note-image img {
  object-position: 58% 34%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 12%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 12%, #000 30%);
}

.note-image img[src$="tina-personal-note-hiiii.png"] {
  object-fit: cover;
  object-position: 72% 34%;
}

/* Health Coaching page: sustainable habit design */
.health-page {
  background: #fbfcfa;
}

.health-hero,
.health-section,
.health-quote,
.health-faq,
.health-cta {
  position: relative;
  padding: clamp(72px, 8vw, 120px) max(24px, calc((100vw - var(--max)) / 2));
}

.health-hero {
  min-height: clamp(690px, 76vw, 820px);
  padding-top: clamp(138px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(74, 222, 128, 0.16), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7faf4 100%);
}

.health-hero::before,
.health-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.health-hero::before {
  z-index: 0;
  background: url("../images/health-coaching-hero-image.png?v=20260626-health-hero") right center / min(1160px, 80vw) auto no-repeat;
}

.health-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.95) 28%, rgba(255, 255, 255, 0.48) 49%, rgba(255, 255, 255, 0.02) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0) 18%, rgba(247, 250, 244, 0) 82%, #f7faf4 100%);
}

.health-hero-grid,
.support-map,
.health-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.health-hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 80px);
}

.health-hero h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.95vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: normal;
}

.health-hero h1 span,
.health-hero .green-line {
  color: var(--green-deep);
}

.health-hero .health-title-line {
  display: block;
  color: var(--navy);
  white-space: nowrap;
}

.health-hero-copy p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.health-hero-lead span {
  display: block;
}

.health-hero .actions {
  gap: 10px;
  margin-top: 22px;
}

.health-hero .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.health-hero .actions .btn::after {
  content: none;
}

.mini-rule {
  width: 148px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--green), transparent);
}

.health-hero-visual {
  position: relative;
  min-height: 540px;
  visibility: hidden;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.health-hero-visual::before {
  content: none;
}

.health-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
}

.habit-card {
  position: absolute;
  left: 32px;
  bottom: 32px;
  display: grid;
  gap: 8px;
  width: min(260px, calc(100% - 64px));
  padding: 22px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(8, 37, 66, 0.12);
  backdrop-filter: blur(12px);
}

.habit-card strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.habit-card span {
  color: rgba(45, 55, 72, 0.74);
  font-size: 0.92rem;
}

.health-section.centered {
  text-align: center;
}

.health-section.centered .lead,
.health-section.centered h2,
.center-title {
  margin-inline: auto;
}

.habit-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1120px;
  margin-top: 56px;
  margin-inline: auto;
}

.habit-flow article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 26px 16px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.06);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.habit-flow article:hover {
  border-color: rgba(74, 222, 128, 0.28);
  box-shadow: 0 28px 82px rgba(8, 37, 66, 0.12);
  transform: translateY(-6px) scale(1.035);
}

.habit-flow article:not(:last-child)::before,
.habit-flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  pointer-events: none;
}

.habit-flow article:not(:last-child)::before {
  right: -32px;
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.86));
  transform: translateY(-50%);
}

.habit-flow article:not(:last-child)::after {
  right: -36px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--green);
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
  transform: translateY(-50%);
}

.habit-flow svg {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.1);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.habit-flow h3 {
  color: var(--navy);
  font-size: 1.08rem;
}

.habit-flow p {
  max-width: 230px;
  color: rgba(45, 55, 72, 0.68);
  font-size: 0.96rem;
  line-height: 1.58;
}

.support-map-section {
  background: linear-gradient(180deg, #f7faf4, #fff);
}

.support-map {
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
}

.support-map-title {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.06;
}

.support-map-title span {
  display: block;
  white-space: nowrap;
}

.support-map-title .green-line {
  color: var(--green-deep);
}

.support-orbit {
  position: relative;
  min-height: 590px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.1) 0 24%, transparent 24%),
    radial-gradient(circle at 50% 50%, transparent 0 43%, rgba(74, 222, 128, 0.2) 43% 44%, transparent 44%),
    radial-gradient(circle at 50% 50%, transparent 0 58%, rgba(13, 54, 92, 0.08) 58% 59%, transparent 59%);
  box-shadow: none;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  width: 198px;
  height: 198px;
  border: 8px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(74, 222, 128, 0.34), transparent 28%),
    linear-gradient(145deg, var(--navy), #061f38);
  box-shadow: 0 28px 80px rgba(8, 37, 66, 0.22), 0 0 0 1px rgba(74, 222, 128, 0.24);
  font-weight: 850;
  text-align: center;
  transform: translate(-50%, -50%);
}

.orbit-core span,
.orbit-core em {
  color: var(--green);
  font-size: 0.86rem;
  font-style: normal;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.orbit-core strong {
  color: #fff;
  font-size: 2.35rem;
  line-height: 0.95;
}

.support-orbit > span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 16px;
  border: 1px solid rgba(74, 222, 128, 0.32);
  border-radius: 50%;
  color: var(--navy);
  background:
    radial-gradient(circle at 30% 18%, rgba(74, 222, 128, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(8, 37, 66, 0.1), inset 0 0 0 8px rgba(247, 250, 244, 0.86);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: orbitLabelFloat 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -0.32s);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease, background 220ms ease, color 220ms ease;
}

.support-orbit > span:hover {
  z-index: 2;
  border-color: rgba(74, 222, 128, 0.58);
  color: #082542;
  background:
    radial-gradient(circle at 30% 18%, rgba(74, 222, 128, 0.24), transparent 34%),
    #fff;
  box-shadow: 0 34px 82px rgba(8, 37, 66, 0.2), inset 0 0 0 7px rgba(247, 250, 244, 0.9);
  animation-play-state: paused;
  transform: translate(-50%, -50%) translateY(-10px) scale(1.12);
}

@keyframes orbitLabelFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-7px);
  }
}

.health-quote {
  text-align: center;
  background: #fff;
}

.health-quote blockquote {
  max-width: 1180px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 3.2vw, 2.45rem);
  line-height: 1.15;
}

.health-quote blockquote span {
  display: block;
  white-space: nowrap;
}

.health-quote blockquote::before {
  content: "“";
  display: block;
  height: 46px;
  color: rgba(74, 222, 128, 0.45);
  font-size: 7rem;
  line-height: 0.7;
}

.health-quote cite {
  display: block;
  margin-top: 22px;
  color: var(--green-deep);
  font-style: normal;
  font-weight: 750;
}

.health-page .coaching-options-title {
  max-width: 640px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.65vw, 2.65rem);
  line-height: 1.08;
  text-align: left;
}

.coaching-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.coaching-options article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.coaching-options img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 240ms ease;
}

.coaching-options article:hover img {
  transform: scale(1.055);
}

.coaching-options article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.92) 0%, rgba(8, 37, 66, 0.7) 34%, rgba(8, 37, 66, 0.08) 72%);
}

.coaching-options div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px;
}

.coaching-options h3 {
  color: #fff;
}

.coaching-options p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.coaching-options a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-weight: 850;
}

.health-expect-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 16%, rgba(74, 222, 128, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}

.health-expect-section .container {
  max-width: 1180px;
}

.health-expect-section .expect-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.health-expect-section .expect-eyebrow::before,
.health-expect-section .expect-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(34, 197, 94, 0.42);
}

.health-expect-section h2 {
  max-width: 980px;
  margin: 14px auto 0;
  color: var(--navy);
  font-family: inherit;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
  line-height: 1.02;
}

.expect-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(45, 55, 72, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.58;
}

.expect-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.expect-steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 54, 92, 0.2) 8%, rgba(34, 197, 94, 0.34) 50%, rgba(13, 54, 92, 0.2) 92%, transparent);
}

.expect-steps::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 19%;
  right: 19%;
  height: 9px;
  background:
    radial-gradient(circle, var(--green-deep) 0 4px, transparent 5px) 0 0 / 25% 9px repeat-x;
  opacity: 0.78;
}

.expect-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-inline: 4px;
  text-align: center;
  transition: transform 180ms ease;
}

.expect-steps article:hover {
  transform: translateY(-5px);
}

.expect-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 50%;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 34% 20%, rgba(74, 222, 128, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 37, 66, 0.07);
}

.expect-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expect-number {
  margin-top: 18px;
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.expect-steps h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
}

.expect-steps p {
  margin-top: 10px;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.95rem;
  line-height: 1.56;
}

.health-faq {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(74, 222, 128, 0.12), transparent 28%),
    #082542;
}

.health-faq h2 {
  color: #fff;
  font-family: inherit;
  font-size: clamp(2rem, 3vw, 3.35rem);
  text-align: center;
  margin-inline: auto;
}

.health-faq .faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 72px);
  margin-top: 42px;
}

.health-faq .faq-item {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.health-faq .faq-question {
  min-height: 64px;
  padding: 0;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-size: 0.98rem;
}

.health-faq .faq-question span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--green);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.health-faq .faq-answer {
  padding: 0 42px 22px 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.health-faq .faq-item.open .faq-question {
  color: #fff;
}

.health-faq .faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.health-faq .faq-item:last-child,
.health-faq .faq-item:nth-last-child(2) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.health-cta {
  color: #fff;
  background: #082542;
}

.health-cta h2 {
  color: #fff;
}

.health-cta p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.health-cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.health-cta .btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

@media (max-width: 980px) {
  .health-hero-grid,
  .support-map,
  .health-cta-grid,
  .habit-flow,
  .coaching-options,
  .expect-steps,
  .health-faq .faq-list {
    grid-template-columns: 1fr;
  }

  .health-hero-visual,
  .health-hero-visual img {
    min-height: 420px;
  }

  .health-hero::before {
    background-size: auto 54%;
    background-position: 72% 58%;
  }

  .health-hero h1 {
    font-size: clamp(2rem, 9.2vw, 2.35rem);
  }

  .habit-flow {
    gap: 34px;
  }

  .habit-flow article:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -28px;
    left: 50%;
    display: block;
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.86));
    transform: translateX(-50%);
  }

  .habit-flow article:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -36px;
    left: 50%;
    display: block;
    border-top: 10px solid var(--green);
    border-right: 7px solid transparent;
    border-bottom: 0;
    border-left: 7px solid transparent;
    transform: translateX(-50%);
  }

  .health-expect-section h2 {
    font-size: clamp(2.1rem, 9vw, 3rem);
  }

  .expect-steps {
    max-width: 430px;
    gap: 38px;
    margin-inline: auto;
  }

  .expect-steps::before {
    top: 52px;
    bottom: 52px;
    left: 52px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(13, 54, 92, 0.08), rgba(34, 197, 94, 0.38), rgba(13, 54, 92, 0.08));
  }

  .expect-steps::after {
    display: none;
  }

  .expect-steps article {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 22px;
    justify-items: start;
    text-align: left;
  }

  .expect-icon {
    grid-row: span 3;
  }

  .expect-number,
  .expect-steps h3,
  .expect-steps p {
    justify-self: start;
  }

  .expect-number {
    margin-top: 8px;
  }

  .expect-steps h3 {
    margin-top: 4px;
  }

  .support-orbit {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px;
    background: #fff;
  }

  .orbit-core {
    grid-column: 1 / -1;
    position: static;
    width: 180px;
    height: 180px;
    min-height: 180px;
    margin: 0 auto 8px;
    border-radius: 50%;
    transform: none;
  }

  .support-orbit > span {
    position: static;
    width: 100%;
    height: auto;
    min-height: 82px;
    border-radius: 999px;
    font-size: 0.96rem;
    transform: none;
  }

  .support-orbit > span:hover {
    transform: translateY(-4px) scale(1.06);
  }

  .health-quote blockquote {
    font-size: clamp(0.82rem, 4vw, 1.35rem);
  }
}

@media (max-width: 760px) {
  .section.warm {
    margin-top: -36px;
  }

  .note-image {
    inset: auto -18px -18px;
  }

  .note-image img {
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 100%);
  }
}

/* Corporate Wellness page: workplace wellbeing design */
.corporate-page {
  overflow-x: clip;
  background: #fbfcfa;
}

.corporate-page .btn::after {
  content: none;
}

.corp-hero,
.corp-section,
.corp-cta {
  position: relative;
  padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
}

.corp-hero {
  min-height: clamp(690px, 76vw, 820px);
  padding-top: clamp(138px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 18%, rgba(74, 222, 128, 0.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7faf4 100%);
}

.corp-hero::before,
.corp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corp-hero::before {
  z-index: 0;
  background: url("../images/corporate-wellness-hero-match.png") right center / cover no-repeat;
}

.corp-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 27%, rgba(255, 255, 255, 0.58) 49%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 22%, rgba(247, 250, 244, 0) 78%, #f7faf4 100%);
}

.corp-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  align-items: center;
  gap: clamp(36px, 5vw, 82px);
}

.corp-hero h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.95vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: normal;
}

.corp-hero h1 span,
.corp-section-copy h2 span,
.corp-cta h2 span {
  color: var(--green-deep);
}

.corp-hero-copy p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.corp-hero .actions {
  gap: 10px;
  margin-top: 22px;
}

.corp-hero .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.corp-hero-visual {
  position: relative;
  min-height: 540px;
  visibility: hidden;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.corp-hero-visual::before {
  content: none;
}

.corp-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.01);
}

.corp-ecosystem-section {
  background: #fff;
}

.corp-ecosystem-section .eyebrow {
  color: var(--green);
}

.corp-ecosystem-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1fr) minmax(240px, 0.48fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
}

.corp-section-copy h2 {
  max-width: 420px;
  font-size: clamp(2.25rem, 3.8vw, 4rem);
  line-height: 1;
}

.corp-section-copy h2.corp-ecosystem-title {
  max-width: 460px;
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1.08;
}

.corp-section-copy h2.corp-ecosystem-title span {
  display: block;
  color: var(--navy);
  white-space: nowrap;
}

.corp-orbit {
  position: relative;
  min-height: 560px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(74, 222, 128, 0.12) 0 21%, transparent 21%),
    radial-gradient(circle at 50% 50%, transparent 0 43%, rgba(13, 54, 92, 0.13) 43% 44%, transparent 44%),
    #fff;
}

.corp-orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  padding: 16px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), #0c8d43);
  box-shadow: 0 24px 70px rgba(14, 141, 67, 0.28);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.corp-orbit-core strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.02;
}

.corp-orbit-core span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.35;
  text-transform: none;
}

.corp-orbit > span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(8, 37, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.14;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.corp-orbit > span:hover {
  z-index: 2;
  border-color: rgba(74, 222, 128, 0.48);
  box-shadow: 0 26px 66px rgba(8, 37, 66, 0.16);
  animation-play-state: paused;
  transform: translate(-50%, -50%) translateY(-8px) scale(1.06);
}

.corp-support {
  padding: 28px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7faf4);
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.08);
}

.corp-support h3 {
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.corp-support ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corp-support li {
  display: grid;
  gap: 4px;
  padding-left: 22px;
  border-left: 2px solid rgba(74, 222, 128, 0.5);
}

.corp-support strong {
  color: var(--navy);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.corp-support span {
  color: var(--muted);
  font-size: 0.86rem;
}

.corp-center-title {
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.corp-solutions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.corp-solutions article {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.06);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.corp-solutions article:hover {
  border-color: rgba(74, 222, 128, 0.28);
  box-shadow: 0 28px 82px rgba(8, 37, 66, 0.12);
  transform: translateY(-6px) scale(1.025);
}

.corp-solutions img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.solution-icon {
  position: relative;
  z-index: 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin: -33px auto 18px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--green-deep), #12a653);
  box-shadow: 0 18px 42px rgba(14, 141, 67, 0.24), 0 10px 26px rgba(8, 37, 66, 0.1);
}

.solution-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.corp-solutions h3 {
  padding: 0 22px;
  color: var(--navy);
  font-size: 1.02rem;
  text-transform: uppercase;
}

.corp-solutions p {
  padding: 0 26px 28px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.corp-topics-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(74, 222, 128, 0.14), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(13, 54, 92, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f7faf4);
}

.corp-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.corp-topic-grid span {
  position: relative;
  --topic-soft: color-mix(in srgb, var(--topic-accent, var(--green-deep)) 8%, #fff);
  overflow: hidden;
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 12px 18px 12px 42px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  color: var(--navy);
  background:
    radial-gradient(circle at 18px 50%, var(--topic-soft), transparent 34px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 244, 0.86));
  box-shadow: 0 16px 44px rgba(8, 37, 66, 0.06);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.corp-topic-grid span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--topic-accent, var(--green-deep));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--topic-accent, var(--green-deep)) 16%, transparent);
  transform: translateY(-50%);
}

.corp-topic-grid span:nth-child(4n + 1) {
  --topic-accent: #22c55e;
}

.corp-topic-grid span:nth-child(4n + 2) {
  --topic-accent: #0d365c;
}

.corp-topic-grid span:nth-child(4n + 3) {
  --topic-accent: #d6a43b;
}

.corp-topic-grid span:nth-child(4n) {
  --topic-accent: #4ade80;
}

.corp-topic-grid span:hover {
  border-color: color-mix(in srgb, var(--topic-accent, var(--green-deep)) 40%, rgba(13, 54, 92, 0.1));
  background:
    radial-gradient(circle at 18px 50%, color-mix(in srgb, var(--topic-accent, var(--green-deep)) 14%, #fff), transparent 36px),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(8, 37, 66, 0.12);
  transform: translateY(-5px) scale(1.015);
}

.corp-more {
  max-width: 780px;
  margin: 42px auto 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 650;
  text-align: center;
}

.corp-process-section {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(74, 222, 128, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}

.corp-process-section .container {
  max-width: 1180px;
}

.corp-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.corp-process-eyebrow::before,
.corp-process-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(34, 197, 94, 0.42);
}

.corp-process-title {
  max-width: 1040px;
  margin: 14px auto 0;
  color: var(--navy);
  font-family: inherit;
  font-size: clamp(2.45rem, 4.3vw, 4.35rem);
  line-height: 1.02;
}

.corp-process-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(45, 55, 72, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.58;
}

.corp-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.corp-process::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 54, 92, 0.2) 8%, rgba(34, 197, 94, 0.34) 50%, rgba(13, 54, 92, 0.2) 92%, transparent);
}

.corp-process::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 19%;
  right: 19%;
  height: 9px;
  background:
    radial-gradient(circle, var(--green-deep) 0 4px, transparent 5px) 0 0 / 25% 9px repeat-x;
  opacity: 0.78;
}

.corp-process article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  padding-inline: 4px;
  text-align: center;
  transition: transform 180ms ease;
}

.corp-process article:hover {
  transform: translateY(-5px);
}

.corp-process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 50%;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 34% 20%, rgba(214, 164, 59, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 37, 66, 0.07);
}

.corp-process-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.corp-process-number {
  margin-top: 18px;
  color: var(--green-deep);
  font-size: 1.1rem;
  font-weight: 900;
}

.corp-process h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
}

.corp-process p {
  margin-top: 10px;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.95rem;
  line-height: 1.56;
}

.corp-cta {
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(74, 222, 128, 0.16), transparent 26%),
    #082542;
}

.corp-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.corp-cta h2 {
  max-width: 940px;
  color: #fff;
  font-size: clamp(1.75rem, 2.45vw, 2.75rem);
  line-height: 1.06;
}

.corp-cta h2 span {
  display: block;
  color: #fff;
  white-space: nowrap;
}

.corp-cta h2 em {
  color: var(--green);
  font-style: normal;
}

.corp-cta .actions {
  margin-top: 0;
}

.corp-cta .btn {
  min-width: 152px;
  padding-inline: 34px;
}

@media (max-width: 1080px) {
  .corp-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .corp-section-copy h2,
  .corp-section-copy .lead {
    margin-inline: auto;
    text-align: center;
  }

  .corp-support {
    max-width: 620px;
    margin-inline: auto;
  }

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

@media (max-width: 980px) {
  .corp-hero-grid,
  .corp-process,
  .corp-cta-grid {
    grid-template-columns: 1fr;
  }

  .corp-process::before {
    top: 52px;
    bottom: 52px;
    left: 52px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(13, 54, 92, 0.08), rgba(34, 197, 94, 0.38), rgba(13, 54, 92, 0.08));
  }

  .corp-process::after {
    display: none;
  }

  .corp-process {
    max-width: 430px;
    gap: 38px;
    margin-inline: auto;
  }

  .corp-process article {
    grid-template-columns: 104px minmax(0, 1fr);
    column-gap: 22px;
    justify-items: start;
    text-align: left;
  }

  .corp-process-icon {
    grid-row: span 3;
  }

  .corp-process-number,
  .corp-process h3,
  .corp-process p {
    justify-self: start;
  }

  .corp-process-number {
    margin-top: 8px;
  }

  .corp-process h3 {
    margin-top: 4px;
  }

  .corp-hero {
    min-height: clamp(650px, 100vw, 760px);
  }

  .corp-hero::before {
    background-position: 70% center;
  }

  .corp-hero-visual {
    display: none;
  }

  .corp-cta-grid .actions {
    justify-content: flex-start;
  }

}

@media (max-width: 680px) {
  .corp-solutions,
  .corp-topic-grid {
    grid-template-columns: 1fr;
  }

  .corp-orbit {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 20px;
  }

  .corp-orbit-core,
  .corp-orbit > span {
    position: static;
    min-height: 0;
    transform: none;
    animation: none;
  }

  .corp-orbit-core {
    justify-self: center;
    width: 136px;
    height: 136px;
    border-radius: 50%;
  }

  .corp-orbit > span:hover {
    transform: translateY(-4px);
  }
}

/* Events & Collaborations page: community experience design */
.collab-page {
  overflow-x: clip;
  background: #fbfcfa;
}

.collab-hero,
.collab-section,
.collab-cta {
  position: relative;
  padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
}

.collab-hero {
  min-height: clamp(690px, 76vw, 820px);
  padding-top: clamp(138px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(74, 222, 128, 0.18), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
}

.collab-hero::before,
.collab-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.collab-hero::before {
  z-index: 0;
  background: url("../images/gallery/mindflow-365-community-hero.jpg") right center / auto 94% no-repeat;
}

.collab-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, 0.98) 50%, rgba(255, 255, 255, 0.72) 62%, rgba(255, 255, 255, 0.16) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 22%, rgba(248, 251, 246, 0) 78%, #f8fbf6 100%);
}

.collab-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 5vw, 80px);
}

.collab-hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(2.05rem, 3.05vw, 3.45rem);
  line-height: 1.04;
  text-wrap: normal;
}

.collab-hero .collab-title-line {
  display: block;
  white-space: nowrap;
}

.collab-hero h1 em,
.collab-section h2 span {
  color: var(--green-deep);
  font-style: normal;
}

.collab-hero-copy p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.collab-page .btn::after {
  content: none;
}

.collab-hero-visual {
  position: relative;
  min-height: 540px;
  visibility: hidden;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.collab-hero-visual::before {
  content: none;
}

.collab-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.collab-section.centered {
  text-align: center;
  background: #fff;
}

.collab-section.centered h2,
.collab-section.centered .lead,
.collab-center-title,
.collab-center-copy,
.collab-green-title {
  margin-inline: auto;
}

.collab-section.centered h2 {
  font-family: inherit;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.1;
}

.collab-section.centered .lead {
  max-width: 640px;
  color: rgba(45, 55, 72, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.collab-section.centered .collab-impact-lead {
  max-width: 1120px;
}

.collab-impact-lead span {
  display: block;
  white-space: nowrap;
}

.collab-section.centered h2.collab-impact-title {
  max-width: 980px;
  text-wrap: normal;
}

.collab-impact-title span {
  display: inline-block;
}

.collab-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 56px;
  text-align: left;
}

.collab-pillars article {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    radial-gradient(circle at 16% 8%, rgba(74, 222, 128, 0.18), transparent 34%);
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collab-pillars article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), rgba(13, 54, 92, 0.8));
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.collab-pillars article::after {
  content: "01";
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(13, 54, 92, 0.1);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
}

.collab-pillars article:nth-child(2)::after {
  content: "02";
}

.collab-pillars article:nth-child(3)::after {
  content: "03";
}

.collab-pillars article:hover {
  border-color: rgba(74, 222, 128, 0.34);
  box-shadow: 0 30px 90px rgba(8, 37, 66, 0.13);
  transform: translateY(-6px);
}

.collab-pillars article:hover::before {
  transform: scaleX(1);
}

.collab-pillars svg {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 13px;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 50%;
  color: var(--green-deep);
  background: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 14px 36px rgba(8, 37, 66, 0.08);
}

.collab-pillars h3 {
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.2;
}

.collab-pillars p {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.collab-ways-section {
  background: linear-gradient(180deg, #fff, #f7faf4);
}

.centered-eyebrow {
  display: flex;
  justify-content: center;
}

.collab-center-title {
  max-width: 780px;
  text-align: center;
}

.collab-ways-section .collab-center-title {
  max-width: none;
  font-size: clamp(1.75rem, 2.45vw, 2.65rem);
  line-height: 1.12;
  white-space: nowrap;
}

.collab-center-copy {
  max-width: 820px;
  margin-top: 14px;
  color: var(--muted);
  text-align: center;
}

.collab-ways {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.collab-ways article {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 282px;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 18% 0%, rgba(74, 222, 128, 0.18), transparent 36%);
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collab-ways article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 84px;
  background:
    linear-gradient(135deg, rgba(74, 222, 128, 0.18), rgba(13, 54, 92, 0.1)),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 48%, 0 100%);
}

.collab-ways article::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(13, 54, 92, 0.72));
  transition: width 180ms ease;
}

.collab-ways article:hover {
  border-color: rgba(74, 222, 128, 0.36);
  box-shadow: 0 30px 88px rgba(8, 37, 66, 0.13);
  transform: translateY(-7px);
}

.collab-ways article:hover::after {
  width: 82px;
}

.collab-way-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: auto;
}

.collab-ways span {
  display: inline-grid;
  min-width: 48px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 32px rgba(8, 37, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.collab-ways svg {
  width: 54px;
  height: 54px;
  padding: 13px;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 50%;
  color: var(--green-deep);
  background: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  box-shadow: 0 14px 38px rgba(8, 37, 66, 0.09);
}

.collab-ways h3 {
  max-width: 190px;
  margin-top: 46px;
  color: var(--navy);
  font-size: 1.06rem;
  line-height: 1.2;
}

.collab-ways p {
  margin-top: 14px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.collab-green-title {
  color: var(--navy);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
}

.collab-featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.collab-featured article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.14);
}

.collab-featured img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 240ms ease;
}

.collab-featured article:hover img {
  transform: scale(1.055);
}

.collab-featured article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.92), rgba(8, 37, 66, 0.12));
}

.collab-featured div {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 24px;
}

.collab-featured span {
  color: var(--green);
  font-weight: 850;
}

.collab-featured h3 {
  margin-top: 6px;
  color: #fff;
  font-size: 1.25rem;
}

.collab-trust-section {
  padding-top: 34px;
  padding-bottom: 42px;
  background: #fff;
}

.collab-trust-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(0.62rem, 1.15vw, 0.72rem);
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body.collab-page h2.collab-trust-title {
  max-width: none;
  font-size: clamp(0.62rem, 1.15vw, 0.72rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.collab-trust-title::before,
.collab-trust-title::after {
  content: "";
  width: min(62px, 10vw);
  height: 1px;
  background: rgba(74, 222, 128, 0.44);
}

.collab-trust {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin-top: 30px;
}

.collab-trust span {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 0 22px;
  color: rgba(8, 37, 66, 0.82);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  font-weight: 850;
  line-height: 1;
  border-right: 1px solid rgba(13, 54, 92, 0.1);
  transition: transform 180ms ease, color 180ms ease, opacity 180ms ease;
}

.collab-trust span:last-child {
  border-right: 0;
}

.collab-trust span:hover {
  color: var(--green-deep);
  opacity: 1;
  transform: translateY(-3px);
}

.collab-trust .sharp {
  color: #174a87;
  font-weight: 900;
}

.collab-trust .fit-flow {
  color: #1d9d8b;
}

.collab-trust .orka {
  color: #111827;
  letter-spacing: 0.02em;
}

.collab-trust .thrive {
  color: #7b35d8;
  font-weight: 900;
}

.collab-trust .onefit {
  color: #18a999;
  font-weight: 900;
}

.collab-process-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(0.62rem, 1.15vw, 0.72rem);
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

body.collab-page h2.collab-process-title {
  max-width: none;
  font-size: clamp(0.62rem, 1.15vw, 0.72rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

.collab-process-title::before,
.collab-process-title::after {
  content: "";
  width: min(62px, 10vw);
  height: 1px;
  background: rgba(74, 222, 128, 0.44);
}

.collab-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.collab-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(74, 222, 128, 0.42);
}

.collab-process article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 10px;
  min-height: 182px;
  overflow: hidden;
  padding: 18px 16px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.collab-process article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(13, 54, 92, 0.72));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.collab-process article:hover {
  border-color: rgba(74, 222, 128, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(74, 222, 128, 0.16), transparent 52%);
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.11);
  transform: translateY(-6px);
}

.collab-process article:hover::before {
  transform: scaleX(1);
}

.collab-process span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green-deep);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.5), 0 12px 30px rgba(14, 141, 67, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.collab-process article:hover span {
  background: var(--navy);
  box-shadow: 0 0 0 1px rgba(13, 54, 92, 0.24), 0 16px 36px rgba(8, 37, 66, 0.2);
  transform: scale(1.12);
}

.collab-process h3 {
  color: var(--navy);
  font-size: 0.92rem;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.collab-process article:hover h3 {
  color: var(--green-deep);
}

.collab-process p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.collab-cta {
  color: #fff;
  background:
    radial-gradient(circle at 85% 12%, rgba(74, 222, 128, 0.16), transparent 26%),
    #082542;
}

.collab-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.collab-cta h2 {
  max-width: 680px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.collab-cta h2 span {
  color: var(--green);
}

.collab-cta p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.collab-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 24px;
}

.collab-cta-tags span {
  color: var(--green);
  font-weight: 800;
}

.collab-cta .btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

@media (max-width: 1080px) {
  .collab-ways,
  .collab-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .collab-pillars,
  .collab-process,
  .collab-cta-grid {
    grid-template-columns: 1fr;
  }

  .collab-process::before {
    display: none;
  }

  .collab-pillars article {
    min-height: auto;
  }

  .collab-pillars p {
    max-width: none;
  }

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

  .collab-trust span {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .collab-hero-grid,
  .collab-ways,
  .collab-featured,
  .collab-trust {
    grid-template-columns: 1fr;
  }

  .collab-hero {
    min-height: clamp(650px, 100vw, 760px);
  }

  .collab-hero::before {
    background-position: 66% center;
  }

  .collab-hero-visual {
    display: none;
  }

  .collab-hero h1 {
    font-size: clamp(1.35rem, 6vw, 1.72rem);
  }

  .collab-ways-section .collab-center-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    white-space: normal;
  }
}

/* Fitness Training page: strength journey design */
.fitness-page {
  overflow-x: clip;
  background: #fbfcfa;
}

.fit-hero,
.fit-section,
.fit-quote,
.fit-cta {
  position: relative;
  padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - var(--max)) / 2));
}

.fit-hero {
  min-height: clamp(690px, 76vw, 820px);
  padding-top: clamp(138px, 13vw, 190px);
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(74, 222, 128, 0.18), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
}

.fit-hero::before,
.fit-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fit-hero::before {
  z-index: 0;
  background: url("../images/fitness-hero-jump-sharp.jpg") right 4vw top 10% / auto 122% no-repeat;
  opacity: 0.98;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.38) 55%, #000 67%, #000 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 12%, #000 24%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.38) 55%, #000 67%, #000 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 12%, #000 24%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

.fit-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, #fff 0%, #fff 32%, rgba(255, 255, 255, 0.92) 46%, rgba(255, 255, 255, 0.54) 61%, rgba(255, 255, 255, 0.06) 78%),
    linear-gradient(90deg, #f8fbf6 0%, rgba(248, 251, 246, 0) 10%, rgba(248, 251, 246, 0) 92%, rgba(248, 251, 246, 0.35) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 25%, rgba(248, 251, 246, 0) 76%, #f8fbf6 100%);
}

.fit-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4.8vw, 70px);
}

.fit-hero h1 {
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.95vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
  text-wrap: normal;
}

.fit-title-line {
  display: block;
}

.fitness-page .btn::after {
  content: none;
}

.fit-hero h1 em,
.fit-quote em,
.fit-goals-title em,
.fit-cta h2 span {
  color: var(--green-deep);
  font-style: normal;
}

.fit-hero-copy p {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.78);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
}

.fit-hero-visual {
  position: relative;
  height: 540px;
  min-height: 540px;
  visibility: hidden;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fit-hero-visual::before {
  content: none;
  position: absolute;
  z-index: 2;
  inset: -2px;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.88) 16%, rgba(255, 255, 255, 0.18) 38%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 20%, rgba(248, 251, 246, 0) 78%, #f8fbf6 100%);
  pointer-events: none;
}

.fit-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 540px;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.fit-quote {
  padding-top: clamp(38px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 76px);
  text-align: center;
}

.fit-quote::before {
  content: "";
  position: absolute;
  inset: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-radius: 8px;
  background: linear-gradient(180deg, #f3f6f2, #fff);
  box-shadow: inset 0 0 0 1px rgba(13, 54, 92, 0.06);
}

.fit-quote blockquote,
.fit-quote p {
  position: relative;
  z-index: 1;
}

.fit-quote blockquote {
  max-width: 850px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.12;
}

.fit-quote blockquote::before {
  content: "“";
  display: block;
  height: 42px;
  color: rgba(74, 222, 128, 0.6);
  font-size: 7rem;
  line-height: 0.7;
}

.fit-quote p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 22px;
  color: rgba(45, 55, 72, 0.78);
  font-weight: 650;
}

.fit-quote p::before,
.fit-quote p::after {
  content: "";
  width: min(88px, 18vw);
  height: 1px;
  background: rgba(74, 222, 128, 0.5);
}

.fit-section.centered {
  text-align: center;
}

.fit-section.centered h2,
.fit-section.centered .lead {
  margin-inline: auto;
}

.fit-section.centered .lead {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(45, 55, 72, 0.8);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.62;
}

.fit-training-title {
  max-width: 100%;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.08;
  white-space: nowrap;
}

.fit-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  text-align: left;
}

.fit-options article {
  position: relative;
  min-height: 250px;
  padding: 30px 24px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(8, 37, 66, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fit-options article:hover {
  border-color: rgba(74, 222, 128, 0.28);
  box-shadow: 0 28px 82px rgba(8, 37, 66, 0.12);
  transform: translateY(-6px) scale(1.025);
}

.fit-options span {
  display: inline-block;
  margin-right: 14px;
  color: rgba(74, 222, 128, 0.44);
  font-size: 2.25rem;
  font-weight: 850;
  line-height: 1;
}

.fit-options svg {
  width: 34px;
  height: 34px;
  color: var(--green-deep);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: top;
}

.fit-options h3 {
  margin-top: 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.fit-options p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fitness-page .fit-section.centered {
  background:
    radial-gradient(circle at 84% 12%, rgba(74, 222, 128, 0.11), transparent 24%),
    linear-gradient(180deg, #f8fbf6 0%, #eef2f7 100%);
  text-align: left;
}

.fitness-page .fit-section.centered > .container {
  width: 100%;
  max-width: var(--max);
}

.fitness-page .fit-section.centered .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.fitness-page .fit-training-title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  color: var(--navy);
  font-size: clamp(2rem, 3.45vw, 3.35rem);
  line-height: 1.05;
  text-align: center;
  white-space: normal;
}

.fitness-page .fit-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 100%;
  margin: 38px 0 0;
  text-align: left;
}

.fitness-page .fit-options article {
  min-height: 0;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 2px;
  padding: 18px 22px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.7)),
    #fff;
  box-shadow: 0 18px 42px rgba(8, 37, 66, 0.06);
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.fitness-page .fit-options article:hover {
  z-index: 2;
  border-color: rgba(74, 222, 128, 0.38);
  box-shadow: 0 22px 52px rgba(13, 54, 92, 0.13);
  transform: scale(1.025);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(238, 242, 247, 0.92)),
    #fff;
}

.fitness-page .fit-options span {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-grid;
  width: 104px;
  height: 54px;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(74, 222, 128, 0.11);
  font-size: 0.86rem;
  font-weight: 850;
}

.fitness-page .fit-options svg {
  grid-column: 3;
  grid-row: 1 / 3;
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: center;
  width: 54px;
  height: 54px;
  padding: 14px;
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.12);
}

.fitness-page .fit-options article::after {
  content: "";
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: end;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 50%;
}

.fitness-page .fit-options h3 {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-family: inherit;
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
  line-height: 1.16;
}

.fitness-page .fit-options p {
  grid-column: 2;
  grid-row: 2;
  max-width: 620px;
  margin: 2px 0 0;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

.fit-green-title {
  margin-inline: auto;
  color: var(--green-deep);
  font-size: clamp(1.1rem, 1.8vw, 1.42rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fit-action-title {
  color: var(--navy);
}

.fit-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.fit-action-grid article {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.14);
}

.fit-action-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 240ms ease;
}

.fit-action-grid article:hover img {
  transform: scale(1.055);
}

.fit-action-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 37, 66, 0.92), rgba(8, 37, 66, 0.08));
}

.fit-action-grid h3 {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: #fff;
  font-size: 1.2rem;
}

.fit-goals-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, rgba(74, 222, 128, 0.12), transparent 27%),
    linear-gradient(180deg, #fff, #f7faf4);
  text-align: center;
}

.fit-goals-title {
  margin-inline: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
}

.fit-goals-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(300px, 0.96fr) minmax(220px, 0.72fr);
  align-items: center;
  gap: clamp(18px, 3.2vw, 46px);
  max-width: 1060px;
  margin: 34px auto 0;
}

.fit-goal-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  isolation: isolate;
  background: transparent;
}

.fit-goal-core::before,
.fit-goal-core::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.fit-goal-core::before {
  width: min(440px, 88vw);
  aspect-ratio: 1;
  border: 1px solid rgba(13, 54, 92, 0.12);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 52%, transparent 53%),
    conic-gradient(from 20deg, rgba(74, 222, 128, 0.18), rgba(13, 54, 92, 0.12), rgba(74, 222, 128, 0.24), rgba(13, 54, 92, 0.1), rgba(74, 222, 128, 0.18));
  animation: fitGoalOrbit 18s linear infinite;
}

.fit-goal-core::after {
  width: min(310px, 68vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(17, 151, 84, 0.28);
  animation: fitGoalOrbitReverse 22s linear infinite;
}

.fit-goal-core img {
  max-width: min(370px, 94%);
  max-height: 548px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(8, 37, 66, 0.14));
}

.fit-goal-list {
  display: grid;
  gap: clamp(22px, 3.2vw, 38px);
}

.fit-goal-list span,
.fit-goal-bottom {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.fit-goal-list span::before,
.fit-goal-bottom::before {
  content: "";
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(17, 151, 84, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(17, 151, 84, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at center, rgba(74, 222, 128, 0.2) 0 16px, transparent 17px),
    #fff;
  box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.12), 0 14px 32px rgba(8, 37, 66, 0.12);
  animation: fitGoalPulse 3.8s ease-in-out infinite;
}

.fit-goal-list.left span::after,
.fit-goal-list.right span::before,
.fit-goal-bottom::after {
  content: "";
  flex: 0 0 clamp(44px, 5vw, 74px);
  height: 2px;
  background: linear-gradient(90deg, rgba(17, 151, 84, 0.12), rgba(17, 151, 84, 0.82), rgba(74, 222, 128, 0.2));
  background-size: 180% 100%;
  animation: fitGoalLineFlow 3.8s ease-in-out infinite;
}

.fit-goal-list.right span::before {
  order: -1;
}

.fit-goal-list.right span::after {
  content: "";
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(17, 151, 84, 0.36);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(17, 151, 84, 0.78) 0 5px, transparent 6px),
    radial-gradient(circle at center, rgba(74, 222, 128, 0.2) 0 16px, transparent 17px),
    #fff;
  box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.12), 0 14px 32px rgba(8, 37, 66, 0.12);
  animation: fitGoalPulse 3.8s ease-in-out infinite;
}

.fit-goal-list.right span::before {
  flex-basis: clamp(44px, 5vw, 74px);
  width: auto;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.2), rgba(17, 151, 84, 0.82), rgba(17, 151, 84, 0.12));
  background-size: 180% 100%;
  box-shadow: none;
  animation: fitGoalLineFlow 3.8s ease-in-out infinite;
}

.fit-goal-list.left span:hover,
.fit-goal-list.right span:hover,
.fit-goal-bottom:hover {
  color: var(--green-dark);
  transform: translateY(-3px);
}

.fit-goal-list.left {
  text-align: right;
  justify-items: end;
}

.fit-goal-list.right {
  text-align: left;
  justify-items: start;
}

.fit-goal-bottom {
  position: absolute;
  left: 50%;
  bottom: 2px;
  flex-direction: column;
  gap: 8px;
  transform: translateX(-50%);
}

.fit-goal-bottom::after {
  order: -1;
  flex: 0 0 42px;
  width: 2px;
  height: 42px;
  background: linear-gradient(180deg, rgba(17, 151, 84, 0.12), rgba(17, 151, 84, 0.82), rgba(74, 222, 128, 0.2));
  background-size: 100% 180%;
  animation: fitGoalLineFlow 3.8s ease-in-out infinite;
}

@keyframes fitGoalPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(74, 222, 128, 0.1), 0 14px 32px rgba(8, 37, 66, 0.12);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(74, 222, 128, 0.18), 0 18px 38px rgba(8, 37, 66, 0.16);
  }
}

@keyframes fitGoalLineFlow {
  0%,
  100% {
    background-position: 0% 50%;
    opacity: 0.72;
  }

  50% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes fitGoalOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fitGoalOrbitReverse {
  to {
    transform: rotate(-360deg);
  }
}

.fit-cta {
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(74, 222, 128, 0.16), transparent 26%),
    #082542;
}

.fit-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.fit-cta h2 {
  max-width: 680px;
  color: #fff;
  font-family: inherit;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.fit-cta p {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.fit-cta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 24px;
}

.fit-cta-tags span {
  color: var(--green);
  font-weight: 800;
}

.fit-cta .btn.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

@media (max-width: 1080px) {
  .fit-options,
  .fit-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .fit-hero-grid,
  .fit-goals-map,
  .fit-cta-grid {
    grid-template-columns: 1fr;
  }

  .fit-goal-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .fit-goal-list.left,
  .fit-goal-list.right {
    text-align: center;
    justify-items: center;
  }

  .fit-goal-core {
    min-height: 500px;
    order: -1;
  }

  .fit-goal-list span {
    justify-content: center;
    padding: 14px 16px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(8, 37, 66, 0.08);
  }

  .fit-goal-list.left span::after,
  .fit-goal-list.right span::before,
  .fit-goal-bottom::after {
    display: none;
  }

  .fit-goal-bottom {
    position: static;
    transform: none;
    justify-self: center;
    flex-direction: row;
    padding: 14px 18px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(8, 37, 66, 0.08);
  }
}

@media (max-width: 680px) {
  .fit-hero-grid,
  .fit-options,
  .fit-action-grid,
  .fit-goal-list {
    grid-template-columns: 1fr;
  }

  .fit-hero-visual,
  .fit-hero-visual img {
    display: none;
  }

  .fit-training-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
    white-space: normal;
  }

  .fit-quote p {
    display: block;
  }

  .fit-quote p::before,
  .fit-quote p::after {
    display: none;
  }
}

/* Shop and product detail pages */
.shop-page,
.product-detail-page {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faf8 48%, #ffffff 100%);
}

.shop-page main,
.product-detail-page main {
  color: #111827;
  font-family: inherit;
}

.shop-page svg,
.product-detail-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-hero {
  min-height: clamp(648px, 79vh, 792px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  padding: 100px max(28px, calc((100vw - var(--max)) / 2)) 0;
  background:
    linear-gradient(90deg, #ffffff 0%, #f3f8f4 100%);
  overflow: hidden;
}

.shop-hero-copy {
  grid-area: 1 / 1;
  display: flex;
  width: min(680px, 55vw);
  min-height: clamp(528px, 66vh, 672px);
  flex-direction: column;
  justify-content: center;
  padding: 42px clamp(26px, 3.4vw, 50px) 48px 0;
  position: relative;
  z-index: 3;
}

.shop-hero-kicker {
  width: fit-content;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero h1 {
  max-width: 680px;
  display: grid;
  gap: 4px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.95vw, 4.15rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.shop-hero h1 span {
  display: block;
  white-space: nowrap;
  color: var(--navy);
}

.shop-hero p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.6;
}

.shop-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.shop-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 850;
}

.shop-hero-badges svg {
  width: 30px;
  height: 30px;
}

.shop-hero-media {
  grid-area: 1 / 1;
  position: relative;
  min-height: clamp(564px, 70vh, 744px);
  margin-left: clamp(300px, 39vw, 560px);
  margin-right: calc(max(28px, calc((100vw - var(--max)) / 2)) * -1);
  overflow: hidden;
  z-index: 1;
}

.shop-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.86) 14%, rgba(255, 255, 255, 0.2) 34%, rgba(255, 255, 255, 0.02) 64%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.5), transparent 36%);
  pointer-events: none;
  z-index: 2;
}

.shop-hero-media img {
  position: absolute;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.shop-hero-plan {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: 60% center;
  z-index: 1;
}

.shop-hero-bottle {
  z-index: 1;
  right: 27%;
  bottom: -12%;
  width: min(270px, 30vw);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.15);
  transform: rotate(-15deg);
}

.shop-hero-food {
  z-index: 1;
  right: -8%;
  bottom: -18%;
  width: min(360px, 38vw);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(8, 37, 66, 0.16);
}

.shop-showcase,
.shop-trust-strip,
.shop-included-strip,
.shop-bottom-cta,
.product-detail-hero,
.product-reviews-section,
.product-detail-section,
.perfect-for-section {
  width: min(var(--max), calc(100vw - 48px));
  margin-inline: auto;
}

.shop-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 48px;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.72), rgba(255, 255, 255, 0.96)),
    #fff;
  border-inline: 1px solid rgba(13, 54, 92, 0.08);
}

.shop-product-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) 104px minmax(340px, 0.72fr);
  gap: 24px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.07);
  align-items: start;
}

.shop-product-panel:last-child {
  border-right: 1px solid rgba(13, 54, 92, 0.1);
}

.shop-product-image,
.shop-plan-cover,
.product-gallery-main,
.product-detail-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f3ef;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.shop-product-image img {
  height: 100%;
  min-height: 430px;
  max-height: 500px;
  object-fit: cover;
  object-position: 50% 54%;
  transition: transform 420ms ease;
}

.shop-bottle-panel .shop-product-image img {
  min-height: 600px;
  max-height: 660px;
  object-position: 50% 50%;
}

.shop-product-thumbs {
  display: grid;
  gap: 12px;
}

.shop-product-thumbs button {
  height: 132px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f7f4ef;
  overflow: hidden;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.shop-product-thumbs button.active {
  border-color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.26);
}

.shop-product-thumbs img {
  height: 132px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.shop-product-image:hover,
.shop-plan-cover:hover,
.product-gallery-main:hover,
.product-detail-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
}

.shop-product-image:hover img,
.shop-plan-cover:hover img,
.product-gallery-main:hover img,
.product-detail-photo:hover img {
  transform: scale(1.025);
}

.shop-product-thumbs button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(8, 37, 66, 0.12);
}

.shop-product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-self: start;
}

.shop-product-copy .eyebrow,
.product-purchase .eyebrow {
  margin-bottom: 12px;
  color: var(--green-deep);
}

.shop-page .shop-product-copy h2,
.product-detail-page .shop-product-copy h2 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(1.55rem, 1.95vw, 2.35rem);
  line-height: 1.08;
}

.shop-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 18px 0 22px;
}

.shop-price del {
  color: rgba(17, 24, 39, 0.52);
  font-weight: 650;
}

.shop-price strong {
  color: #f0529c;
  font-size: 1.12rem;
  font-weight: 850;
}

.shop-price span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  color: #fff;
  background: #f0529c;
  font-size: 0.78rem;
  font-weight: 850;
}

.shop-rating-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: -8px 0 6px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.shop-rating-mini .review-stars {
  font-size: 0.95rem;
}

.shop-rating-mini a {
  color: var(--green-deep);
  font-weight: 850;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b83b;
  line-height: 1;
}

.review-stars .empty {
  color: rgba(13, 54, 92, 0.2);
}

.shop-option-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.shop-option-group p,
.shop-buy-row p {
  flex: 0 0 100%;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 850;
}

.shop-option {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(13, 54, 92, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.shop-option.active {
  border-color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.15);
}

.shop-buy-row {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.quantity-stepper {
  display: grid;
  grid-template-columns: 44px 58px 44px;
  width: fit-content;
  height: 48px;
  overflow: hidden;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 6px;
  background: #fff;
}

.quantity-stepper button,
.quantity-stepper output {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 750;
}

.quantity-stepper button {
  cursor: pointer;
}

.shop-cart-button,
.shop-pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  margin-top: 18px;
  border: 1px solid var(--green-deep);
  border-radius: 6px;
  color: var(--green-deep);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.shop-cart-button svg {
  width: 24px;
  height: 24px;
}

.shop-cart-button:hover,
.shop-pay-button.green {
  background: var(--green-deep);
  color: #fff;
}

.shop-pay-button {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
}

.shop-pay-button:hover,
.shop-cart-button:hover {
  transform: translateY(-1px);
}

.shop-more-link {
  width: fit-content;
  align-self: center;
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(2, 6, 23, 0.36);
}

.cart-overlay[hidden],
.cart-drawer[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  z-index: 181;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px, 100vw);
  height: 100dvh;
  background: #fff;
  box-shadow: -28px 0 70px rgba(8, 37, 66, 0.18);
}

.cart-drawer-head,
.cart-drawer-foot {
  padding: 22px;
  border-bottom: 1px solid rgba(13, 54, 92, 0.1);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-drawer-head span {
  color: var(--green-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-drawer-head h2 {
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.55rem;
}

.cart-drawer-head button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.5rem;
  cursor: pointer;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 14px;
  overflow-y: auto;
  padding: 18px 22px;
}

.cart-empty {
  padding: 18px;
  border-radius: 8px;
  background: #f7fafc;
  color: var(--muted);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background: #fff;
}

.cart-line img {
  width: 74px;
  height: 88px;
  border-radius: 6px;
  object-fit: cover;
  background: #f7fafc;
}

.cart-line h3 {
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.22;
}

.cart-line p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.cart-line > strong {
  color: var(--navy);
  font-size: 0.88rem;
  white-space: nowrap;
}

.cart-line-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.cart-line-controls button {
  min-width: 30px;
  min-height: 30px;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.cart-line-controls button:last-child {
  padding-inline: 10px;
  color: var(--muted);
}

.cart-line-controls span {
  min-width: 24px;
  color: var(--navy);
  font-weight: 850;
  text-align: center;
}

.cart-drawer-foot {
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(13, 54, 92, 0.1);
  border-bottom: 0;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
}

.cart-subtotal strong {
  color: var(--navy);
}

.cart-checkout,
.cart-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 6px;
  font: inherit;
  font-weight: 850;
}

.cart-checkout {
  color: #fff;
  background: var(--green-deep);
}

.cart-checkout.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.cart-continue {
  border: 1px solid rgba(13, 54, 92, 0.14);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.shop-plan-panel {
  grid-template-columns: minmax(0, 0.88fr) 104px minmax(340px, 0.72fr);
  align-items: start;
}

.shop-plan-cover img {
  min-height: 600px;
  max-height: 660px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shop-plan-panel .shop-product-copy {
  grid-column: 3;
}

.shop-plan-panel .shop-plan-cover {
  grid-column: 1;
  background: #fff;
}

.shop-plan-panel .shop-plan-cover img {
  object-fit: contain;
  padding: 0;
}

.shop-product-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.shop-trust-strip,
.shop-included-strip {
  display: grid;
  border: 1px solid rgba(13, 54, 92, 0.1);
  background: #fff;
}

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

.shop-trust-strip > div,
.shop-included-strip span {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 18px 24px;
  border-right: 1px solid rgba(13, 54, 92, 0.1);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.shop-trust-strip > div:hover,
.shop-included-strip span:hover {
  background: rgba(234, 245, 239, 0.78);
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(8, 37, 66, 0.08);
}

.shop-trust-strip > div:last-child,
.shop-included-strip span:last-child {
  border-right: 0;
}

.shop-trust-strip svg,
.shop-included-strip svg {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  color: var(--green-deep);
}

.shop-trust-strip strong,
.shop-included-strip span {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-trust-strip span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  text-transform: uppercase;
}

.shop-included-strip {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 20px;
}

.shop-included-strip span {
  grid-template-columns: 34px 1fr;
  min-height: 76px;
  text-transform: none;
}

.shop-included-strip svg {
  grid-row: auto;
  width: 28px;
  height: 28px;
}

.shop-bottom-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  margin-top: 20px;
  margin-bottom: 72px;
  padding: 22px 32px;
  border-radius: 8px;
  background: #f3f5f2;
}

.shop-bottom-cta strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.shop-bottom-cta span {
  color: var(--muted);
}

.shop-bottom-cta .btn {
  min-width: 260px;
  border-color: var(--green-deep);
  color: var(--green-deep);
  box-shadow: none;
}

@media (min-width: 1181px) {
  .shop-product-panel {
    align-items: start;
  }

  .shop-bottle-panel .shop-product-copy,
  .shop-plan-panel .shop-product-copy {
    justify-content: start;
  }
}

.product-detail-hero {
  padding-top: 118px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-breadcrumb a:hover {
  color: var(--green-deep);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.product-gallery-thumbs {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-gallery-thumbs button {
  height: 92px;
  padding: 0;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 6px;
  background: #f5f3ef;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-gallery-thumbs button:hover {
  border-color: rgba(34, 197, 94, 0.52);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(8, 37, 66, 0.1);
}

.product-gallery-thumbs button.active {
  border-color: var(--green-deep);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.28);
}

.product-gallery-thumbs img {
  height: 100%;
  object-fit: cover;
}

.product-gallery-main {
  min-width: 0;
  min-height: clamp(400px, 46vw, 560px);
}

.product-gallery-main span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 6px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-gallery-main img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease;
}

.bottle-gallery .product-gallery-thumbs {
  height: clamp(420px, 46vw, 560px);
  max-height: clamp(420px, 46vw, 560px);
  overflow-y: auto;
  padding-right: 4px;
}

.bottle-gallery .product-gallery-thumbs button {
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
  background: #fff;
}

.bottle-gallery .product-gallery-thumbs img {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.bottle-gallery .product-gallery-main {
  display: block;
  height: clamp(420px, 46vw, 560px);
  min-height: 0;
  --bottle-gallery-pad: clamp(10px, 1.2vw, 18px);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.9), rgba(255, 255, 255, 0.98)),
    #f7fafc;
}

.bottle-gallery .product-gallery-main img {
  position: relative;
  inset: auto;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.bottle-gallery .product-gallery-main img.color-bottle-image {
  padding-inline: 0;
}

.bottle-gallery .product-gallery-main:hover img {
  transform: none;
}

.product-purchase {
  min-width: 0;
  padding-top: 8px;
}

.product-purchase h1 {
  max-width: 620px;
  color: var(--navy);
  font-size: clamp(2.1rem, 3.5vw, 3.85rem);
  line-height: 1;
  overflow-wrap: anywhere;
  white-space: normal;
}

.product-purchase > p {
  max-width: 590px;
  margin: 16px 0 4px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.product-trust {
  margin-top: 38px;
}

.product-reviews-section {
  margin-top: 38px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 244, 0.92)),
    #fff;
  box-shadow: 0 24px 70px rgba(8, 37, 66, 0.07);
}

.review-panel-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(13, 54, 92, 0.08);
}

.review-panel-heading h2 {
  max-width: none;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.review-panel-heading p {
  max-width: 660px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.review-score-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(8, 37, 66, 0.06);
}

.review-score-card strong {
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 1;
}

.review-score-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  padding-top: 30px;
  align-items: start;
}

.review-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(13, 54, 92, 0.1);
  border-radius: 8px;
  background: #fff;
}

.review-form h3 {
  color: var(--navy);
  font-size: 1.25rem;
}

.review-rating-input {
  display: flex;
  gap: 6px;
}

.review-rating-input button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 6px;
  background: #fff;
  color: rgba(13, 54, 92, 0.24);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.review-rating-input button.active,
.review-rating-input button:hover {
  border-color: rgba(245, 184, 59, 0.72);
  background: rgba(245, 184, 59, 0.1);
  color: #f5b83b;
  transform: translateY(-1px);
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 850;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 6px;
  background: #f9fbfa;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.review-form input {
  min-height: 46px;
  padding: 0 14px;
}

.review-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 14px;
  line-height: 1.55;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--green-deep);
  outline: 3px solid rgba(34, 197, 94, 0.14);
  background: #fff;
}

.review-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid var(--green-deep);
  border-radius: 6px;
  background: var(--green-deep);
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.2);
}

.review-form-status {
  min-height: 22px;
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.review-list-wrap {
  display: grid;
  gap: 18px;
}

.review-breakdown {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: #fff;
}

.review-breakdown-row {
  display: grid;
  grid-template-columns: 54px 1fr 36px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.review-breakdown-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(13, 54, 92, 0.08);
}

.review-breakdown-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-deep), #f5b83b);
}

.review-list {
  display: grid;
  gap: 16px;
}

.review-card {
  padding: 20px;
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8, 37, 66, 0.05);
}

.review-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card strong {
  display: block;
  margin-top: 12px;
  color: var(--navy);
  font-size: 1.04rem;
}

.review-card p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.62;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.16);
  color: var(--green-deep);
  font-size: 0.86rem;
  font-weight: 900;
}

.review-date {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.product-detail-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid rgba(13, 54, 92, 0.08);
}

.product-detail-copy h2,
.perfect-for-section h2 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
}

.product-spec-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.product-spec-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.62;
  transition: color 180ms ease, transform 180ms ease;
}

.product-spec-list li:hover {
  color: var(--text);
  transform: translateX(4px);
}

.product-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-deep) 28%, transparent 32%);
}

.product-spec-list strong {
  color: var(--navy);
}

.clean-plan-story {
  max-width: 920px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.clean-detail-block,
.clean-plan-closer {
  margin-top: 24px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(13, 54, 92, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 244, 0.9)),
    #fff;
  box-shadow: 0 18px 52px rgba(8, 37, 66, 0.06);
}

.clean-detail-block h3,
.clean-plan-closer h3 {
  color: var(--navy);
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
  line-height: 1.18;
}

.clean-detail-block p,
.clean-plan-closer p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.clean-detail-block .product-spec-list {
  margin-top: 18px;
}

.clean-detail-steps {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 26px;
  color: var(--muted);
  line-height: 1.65;
}

.clean-detail-steps li::marker {
  color: var(--green-deep);
  font-weight: 900;
}

.clean-plan-closer {
  background: rgba(74, 222, 128, 0.12);
}

.clean-plan-closer strong {
  color: var(--navy);
}

.package-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.package-card:hover {
  background: rgba(74, 222, 128, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(8, 37, 66, 0.1);
}

.package-card strong {
  grid-column: 1 / -1;
  color: var(--green-deep);
}

.package-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-weight: 800;
}

.package-card svg {
  width: 34px;
  height: 34px;
  color: var(--green-deep);
  flex: 0 0 34px;
}

.product-detail-photo img {
  min-height: 560px;
  object-fit: cover;
  transition: transform 520ms ease;
}

.perfect-for-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 88px;
  padding-top: 28px;
}

.perfect-for-section p {
  margin-top: 12px;
  color: var(--muted);
}

.perfect-for-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.perfect-for-grid span {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease;
}

.perfect-for-grid svg {
  width: 72px;
  height: 72px;
  padding: 18px;
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.14);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.perfect-for-grid span:hover {
  color: var(--green-deep);
  transform: translateY(-4px);
}

.perfect-for-grid span:hover svg {
  background: rgba(74, 222, 128, 0.22);
  transform: scale(1.06);
  box-shadow: 0 18px 44px rgba(8, 37, 66, 0.1);
}

.hydration-note {
  padding: 38px;
  border-radius: 8px;
  background: rgba(74, 222, 128, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hydration-note:hover {
  background: rgba(74, 222, 128, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(8, 37, 66, 0.1);
}

.hydration-note svg {
  width: 54px;
  height: 54px;
  color: var(--green-deep);
}

.hydration-note h3 {
  margin-top: 18px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.16;
}

.hydration-note p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.hydration-note span {
  display: block;
  margin-top: 28px;
  color: var(--green-deep);
  font-family: inherit;
  font-style: normal;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0;
}

.clean-plan-page .product-detail-grid {
  grid-template-columns: minmax(460px, 1.04fr) minmax(320px, 0.72fr);
}

.clean-plan-gallery {
  grid-template-columns: 104px minmax(0, 1fr);
}

.clean-plan-gallery .product-gallery-thumbs {
  max-height: clamp(560px, 54vw, 720px);
  overflow-y: auto;
  padding-right: 4px;
}

.clean-plan-gallery .product-gallery-thumbs button {
  height: 122px;
  background: #fff;
}

.clean-plan-gallery .product-gallery-thumbs img {
  object-fit: cover;
  object-position: top center;
}

.clean-plan-page .product-gallery-main {
  display: grid;
  place-items: center;
  min-height: clamp(560px, 54vw, 720px);
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.9), rgba(255, 255, 255, 0.98)),
    #f7fafc;
}

.clean-plan-page .product-gallery-main img {
  width: 100%;
  height: 100%;
  padding: clamp(14px, 1.8vw, 24px);
  object-fit: contain;
  object-position: center;
}

.clean-plan-page .product-purchase h1 {
  max-width: 590px;
  font-size: clamp(1.85rem, 2.7vw, 2.9rem);
  line-height: 1.08;
}

.clean-plan-inclusions {
  margin-top: 38px;
}

.clean-plan-detail-section {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  align-items: start;
}

.clean-plan-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: start;
}

.clean-plan-note .btn {
  width: 100%;
  margin-top: 26px;
  border-color: var(--green-deep);
  color: var(--green-deep);
  box-shadow: none;
}

@media (max-width: 1180px) {
  .perfect-for-section {
    grid-template-columns: 1fr;
  }

}

@media (min-width: 981px) and (max-width: 1180px) {
  .shop-showcase {
    grid-template-columns: 1fr;
    padding: 42px;
  }

  .shop-product-panel {
    grid-template-columns: minmax(0, 0.9fr) 92px minmax(320px, 0.72fr);
    gap: 22px;
  }

  .shop-plan-panel {
    grid-template-columns: minmax(0, 0.9fr) 92px minmax(320px, 0.72fr);
  }

  .shop-product-image img,
  .shop-plan-cover img {
    width: 100%;
    height: 390px;
    min-height: 390px;
    max-height: 430px;
  }

  .shop-bottle-panel .shop-product-image img {
    height: 560px;
    min-height: 560px;
    max-height: 600px;
  }

  .shop-plan-panel .shop-plan-cover img {
    height: 560px;
    min-height: 560px;
    max-height: 600px;
  }

  .shop-product-thumbs {
    display: grid;
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
  }

  .shop-product-thumbs img {
    width: 100%;
    height: 123px;
  }

  .shop-plan-panel .shop-product-copy,
  .shop-bottle-panel .shop-product-copy {
    justify-content: start;
  }

  .shop-page .shop-product-copy h2 {
    font-size: clamp(1.45rem, 2.35vw, 1.9rem);
  }

  .shop-page .shop-price {
    gap: 10px;
    margin: 14px 0 16px;
  }

  .shop-page .shop-option {
    min-height: 40px;
    padding-inline: 13px;
  }

  .shop-page .shop-cart-button,
  .shop-page .shop-pay-button {
    min-height: 50px;
    margin-top: 14px;
  }
}

@media (max-width: 980px) {
  .shop-hero {
    grid-template-columns: 1fr;
    padding: 112px 24px 0;
  }

  .shop-hero-copy {
    width: 100%;
    min-height: auto;
    padding: 44px 0 34px;
  }

  .shop-hero-media {
    min-height: 430px;
    margin: 0 -24px;
  }

  .shop-hero-plan {
    object-position: 38% center;
  }

  .shop-product-panel,
  .shop-plan-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-plan-panel .shop-plan-cover,
  .shop-plan-panel .shop-product-copy {
    grid-column: auto;
  }

  .shop-product-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .shop-product-thumbs img {
    flex: 0 0 116px;
    height: 96px;
  }

  .shop-product-image img,
  .shop-plan-cover img {
    height: 360px;
    min-height: 360px;
    max-height: 420px;
  }

  .shop-bottle-panel .shop-product-image img {
    height: 520px;
    min-height: 520px;
    max-height: 560px;
  }

  .shop-plan-panel .shop-plan-cover img {
    height: 520px;
    min-height: 520px;
    max-height: 560px;
  }

  .clean-plan-page .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .clean-plan-gallery {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .clean-plan-gallery .product-gallery-thumbs {
    max-height: 560px;
  }

  .clean-plan-page .product-gallery-main {
    min-height: 560px;
  }

  .shop-trust-strip,
  .shop-included-strip,
  .product-reviews-section,
  .perfect-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-trust-strip > div:nth-child(2n),
  .shop-included-strip span:nth-child(2n) {
    border-right: 0;
  }

  .shop-trust-strip > div,
  .shop-included-strip span {
    border-bottom: 1px solid rgba(13, 54, 92, 0.1);
  }

  .shop-bottom-cta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shop-bottom-cta .btn {
    min-width: 0;
  }

  .product-purchase h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
  }

  .product-detail-section {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 28px;
  }

  .product-detail-photo img {
    min-height: 460px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
    gap: 22px;
  }

  .product-gallery {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .bottle-gallery {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .product-gallery-thumbs {
    gap: 9px;
  }

  .product-gallery-thumbs button {
    height: 76px;
  }

  .bottle-gallery .product-gallery-thumbs button {
    width: 76px;
    height: 76px;
  }

  .product-gallery-main {
    min-height: 420px;
  }

  .product-purchase h1 {
    font-size: clamp(1.65rem, 3.25vw, 2.05rem);
    line-height: 1.06;
  }

  .product-purchase > p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .product-purchase .shop-price {
    gap: 9px;
    margin: 12px 0 14px;
  }

  .product-purchase .shop-option {
    min-height: 40px;
    padding-inline: 13px;
  }
}

@media (max-width: 760px) {
  .shop-showcase {
    grid-template-columns: 1fr;
  }

  .shop-product-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 54, 92, 0.1);
  }

  .shop-product-panel:last-child {
    border-bottom: 0;
  }

  .product-detail-grid,
  .product-gallery,
  .product-detail-section {
    grid-template-columns: 1fr;
  }

  .product-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .product-gallery-thumbs button {
    flex: 0 0 116px;
    height: 116px;
  }

  .product-gallery-main {
    min-height: 500px;
  }

  .bottle-gallery .product-gallery-thumbs {
    order: 2;
    height: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 0 8px;
  }

  .bottle-gallery .product-gallery-thumbs button {
    flex: 0 0 116px;
    width: 116px;
    height: 116px;
  }

  .bottle-gallery .product-gallery-main {
    height: 500px;
  }

  .bottle-gallery .product-gallery-main img.color-bottle-image {
    padding-inline: 0;
  }

  .clean-plan-gallery {
    grid-template-columns: 1fr;
  }

  .clean-plan-gallery .product-gallery-thumbs {
    order: 2;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 0 8px;
  }

  .clean-plan-gallery .product-gallery-thumbs button {
    flex: 0 0 106px;
    height: 130px;
  }

  .clean-plan-page .product-gallery-main {
    min-height: 520px;
  }

  .review-panel-heading,
  .review-content-grid {
    grid-template-columns: 1fr;
  }

  .review-score-card {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .shop-showcase,
  .shop-trust-strip,
  .shop-included-strip,
  .shop-bottom-cta,
  .product-detail-hero,
  .product-reviews-section,
  .product-detail-section,
  .perfect-for-section {
    width: min(100% - 28px, var(--max));
  }

  .shop-product-panel {
    padding: 18px;
  }

  .shop-hero {
    min-height: auto;
  }

  .shop-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .shop-hero h1 span {
    white-space: normal;
  }

  .shop-hero p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .shop-hero-media {
    min-height: 390px;
  }

  .shop-showcase {
    padding: 18px 14px;
    gap: 18px;
  }

  .shop-product-image img,
  .shop-plan-cover img {
    min-height: 360px;
  }

  .shop-bottle-panel .shop-product-image img {
    height: 500px;
    min-height: 500px;
    max-height: 540px;
  }

  .shop-plan-panel .shop-plan-cover img {
    height: 500px;
    min-height: 500px;
    max-height: 540px;
  }

  .shop-trust-strip,
  .shop-included-strip,
  .perfect-for-grid {
    grid-template-columns: 1fr;
  }

  .shop-trust-strip > div,
  .shop-included-strip span {
    border-right: 0;
  }

  .product-gallery-main {
    min-height: 420px;
  }

  .clean-plan-page .product-gallery-main {
    min-height: 430px;
  }

  .product-reviews-section {
    padding: 20px 16px;
  }

  .review-form,
  .review-card,
  .review-breakdown {
    padding: 16px;
  }

  .review-rating-input button {
    width: 36px;
    height: 36px;
  }

  .package-card {
    grid-template-columns: 1fr;
  }

  .product-detail-photo img {
    min-height: 380px;
  }

  .hydration-note {
    padding: 28px;
  }
}

/* Site-wide mobile optimization pass */
html,
body {
  overflow-x: clip;
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 10px;
  }

  .nav-shell,
  .site-header.light .nav-shell,
  body:not(.home) .nav-shell {
    width: 100%;
    max-width: calc(100vw - 20px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding-inline: 12px 10px;
  }

  .brand img {
    width: min(156px, calc(100vw - 106px));
    max-height: 38px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .nav-shell.open {
    max-height: calc(100svh - 24px);
    overflow-y: auto;
    padding-bottom: 12px;
  }

  .nav-shell.open .main-nav {
    gap: 4px;
  }

  .dropdown {
    width: 100%;
    min-width: 0;
    margin: 0 0 8px;
  }

  .nav-shell.open .nav-item,
  .nav-shell.open .nav-item.has-dropdown {
    width: 100%;
    overflow: visible;
  }

  .nav-shell.open .nav-item.has-dropdown > .nav-link {
    position: relative;
    z-index: 2;
  }

  .nav-shell.open .nav-item.has-dropdown .dropdown,
  .nav-shell.open .nav-item.has-dropdown:hover .dropdown,
  .nav-shell.open .nav-item.has-dropdown:focus-within .dropdown,
  .nav-shell.open .nav-item.has-dropdown.menu-open .dropdown {
    position: static !important;
    inset: auto !important;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0 0 10px;
    padding: 6px;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .nav-shell.open .dropdown::before {
    display: none;
  }

  .nav-shell.open .dropdown a {
    width: 100%;
    min-height: 40px;
    padding: 10px 12px;
    white-space: normal;
    line-height: 1.25;
  }

  .hero-actions,
  .page-hero .actions,
  .health-hero .actions,
  .corp-hero .actions,
  .collab-hero .actions,
  .fit-hero .actions,
  .eieva-hero .hero-actions,
  .shop-bottom-cta,
  .health-cta-grid .actions,
  .corp-cta-grid .actions,
  .collab-cta-grid .actions,
  .fit-cta-grid .actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .shop-cart-button,
  .shop-pay-button {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }

  .home .hero h1 {
    max-width: 100%;
    font-size: clamp(2.12rem, 10.5vw, 3rem);
    line-height: 1.02;
  }

  .home .hero-copy {
    padding: 116px 24px 38px;
  }

  .home .hero .lead {
    max-width: 28rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .page-hero,
  .health-hero,
  .corp-hero,
  .collab-hero,
  .fit-hero {
    min-height: auto;
    padding: 118px 24px 56px;
  }

  .health-hero::before,
  .corp-hero::before,
  .collab-hero::before,
  .fit-hero::before {
    opacity: 0.7;
  }

  .health-hero::after,
  .corp-hero::after,
  .collab-hero::after,
  .fit-hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 66%, rgba(255, 255, 255, 0.66) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.35) 44%, rgba(247, 250, 244, 0.88) 100%);
  }

  .health-hero::before {
    background-size: auto 45%;
    background-position: right 88% bottom 12%;
  }

  .corp-hero::before,
  .collab-hero::before,
  .fit-hero::before {
    background-position: 72% center;
  }

  .health-hero h1,
  .corp-hero h1,
  .fit-hero h1,
  .page-hero h1,
  .about-page .about-hero h1,
  .about-page .page-hero.navy.about-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.7rem);
    line-height: 1.05;
  }

  .health-hero .health-title-line,
  .collab-hero .collab-title-line,
  .about-hero .about-title-line {
    white-space: normal;
  }

  .collab-hero h1 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.1vw, 2.25rem);
    line-height: 1.08;
  }

  .health-hero-copy p,
  .corp-hero-copy p,
  .collab-hero-copy p,
  .fit-hero-copy p,
  .page-hero .lead {
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .health-section,
  .corp-section,
  .collab-section,
  .fit-section,
  .health-quote,
  .fit-quote,
  .health-faq,
  .health-cta,
  .corp-cta,
  .collab-cta,
  .fit-cta {
    padding-block: 64px;
  }

  .health-cta-grid,
  .corp-cta-grid,
  .collab-cta-grid,
  .fit-cta-grid {
    gap: 24px;
  }

  .support-orbit {
    overflow: visible;
  }

  .support-orbit > span {
    min-height: 72px;
    border-radius: 8px;
  }

  .fit-goal-core {
    min-height: 390px;
  }

  .fit-goal-core img {
    max-height: 390px;
  }

  .shop-hero {
    padding: 106px 24px 0;
  }

  .shop-hero-copy {
    padding-block: 34px 26px;
  }

  .shop-hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.7rem);
    line-height: 1.04;
  }

  .shop-hero-media {
    min-height: 320px;
  }

  .shop-hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74) 44%, rgba(255, 255, 255, 0.18)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.7), transparent 42%);
  }

  .product-breadcrumb {
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .product-gallery-main,
  .bottle-gallery .product-gallery-main {
    min-height: 390px;
    height: 390px;
  }

  .clean-plan-page .product-gallery-main {
    min-height: 400px;
  }

  .product-gallery-thumbs,
  .bottle-gallery .product-gallery-thumbs,
  .clean-plan-gallery .product-gallery-thumbs {
    scrollbar-width: thin;
  }

  .product-gallery-thumbs button,
  .bottle-gallery .product-gallery-thumbs button,
  .clean-plan-gallery .product-gallery-thumbs button {
    flex-basis: 96px;
    width: 96px;
    height: 96px;
  }

  .clean-plan-gallery .product-gallery-thumbs button {
    height: 112px;
  }

  .product-purchase h1 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .cart-line > strong {
    grid-column: 2;
    white-space: normal;
  }

  .eieva-hero {
    min-height: auto;
    padding: 104px 18px 42px;
  }

  .eieva-logo-main {
    font-size: clamp(3.7rem, 18vw, 5.7rem);
  }

  .eieva-logo-by {
    width: min(68vw, 230px);
    margin-left: min(18vw, 64px);
  }

  .eieva-hero h1 {
    max-width: 100%;
    font-size: clamp(1.42rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .event-meta {
    gap: 18px;
  }

  .event-meta span {
    min-width: 0;
  }

  .article-hero {
    padding-top: 112px;
  }

  .article-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.06;
  }
}

@media (max-width: 380px) {
  .nav-shell,
  .site-header.light .nav-shell,
  body:not(.home) .nav-shell {
    max-width: calc(100vw - 16px);
    padding-inline: 10px 8px;
  }

  .brand img {
    width: min(142px, calc(100vw - 96px));
  }

  .home .hero-copy,
  .page-hero,
  .health-hero,
  .corp-hero,
  .collab-hero,
  .fit-hero,
  .shop-hero {
    padding-inline: 20px;
  }

  .home .hero h1,
  .health-hero h1,
  .corp-hero h1,
  .fit-hero h1,
  .page-hero h1,
  .about-page .about-hero h1,
  .about-page .page-hero.navy.about-hero h1 {
    font-size: clamp(1.9rem, 8.6vw, 2.45rem);
  }

  .collab-hero h1 {
    font-size: clamp(1.58rem, 6.8vw, 2rem);
  }

  .shop-hero h1 {
    font-size: clamp(1.82rem, 8.4vw, 2.45rem);
  }
}

/* Homepage mobile rebuild: portrait-led hero and swipeable service cards */
@media (max-width: 760px) {
  .home .hero {
    min-height: 100svh;
    background:
      linear-gradient(180deg, #061f38 0%, #082542 68%, #0a2c4f 100%);
  }

  .home .hero-grid {
    position: relative;
    display: grid;
    min-height: 100svh;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .home .hero-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    overflow: hidden;
  }

  .home .hero-image img[src$="home-hero-tina-suit-85.png"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% top;
    transform: scale(1.04);
    transform-origin: 82% top;
  }

  .home .hero-image:has(img[src$="home-hero-tina-suit-85.png"])::after,
  .home .hero-image::after {
    background:
      linear-gradient(90deg, rgba(8, 37, 66, 0.98) 0%, rgba(8, 37, 66, 0.84) 36%, rgba(8, 37, 66, 0.24) 62%, rgba(8, 37, 66, 0.02) 100%),
      linear-gradient(180deg, rgba(8, 37, 66, 0.08) 0%, rgba(8, 37, 66, 0.02) 46%, #082542 100%);
  }

  .home .hero-copy {
    position: relative;
    z-index: 3;
    width: min(54vw, 204px);
    max-width: none;
    min-height: 100svh;
    margin: 0;
    justify-self: start;
    justify-content: flex-start;
    padding: 118px 0 24px 18px;
  }

  .home .hero-copy::before {
    width: 54px;
    height: 2px;
    margin-bottom: 14px;
  }

  .home .hero h1 {
    max-width: 100%;
    gap: 2px;
    color: #fff;
    font-size: clamp(1.54rem, 6.5vw, 2.04rem);
    line-height: 1.02;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
    animation-delay: 0ms;
  }

  .home .hero h1 .hero-line,
  .home .hero h1 .green-text {
    width: auto;
    white-space: normal;
  }

  .home .hero h1 .green-text {
    color: var(--green);
  }

  .home .hero .lead {
    max-width: 174px;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.72rem;
    line-height: 1.45;
    animation-delay: 80ms;
  }

  .home .hero-actions {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    animation-delay: 140ms;
  }

  .home .hero .btn {
    width: auto;
    min-height: 32px;
    padding-inline: 10px;
    border-radius: 7px;
    font-size: 0.66rem;
    line-height: 1;
    white-space: nowrap;
  }

  .home .hero-proof {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    display: grid;
    width: calc(100vw - 36px) !important;
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  .home .proof-item {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 8px;
    min-height: 50px;
    padding: 9px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(8, 37, 66, 0.52);
    backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.7rem;
    line-height: 1.05;
  }

  .home .proof-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .home .proof-item strong {
    font-size: 0.76rem;
  }

  .home .hero + .section {
    padding: 54px 0 64px;
    overflow: hidden;
  }

  .home .hero + .section .container {
    width: 100%;
    max-width: none;
  }

  .home .hero + .section .eyebrow,
  .home .hero + .section h2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .home .hero + .section h2 {
    max-width: 330px;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.03;
  }

  .home .solution-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(292px, 86vw);
    grid-template-columns: none;
    gap: 14px;
    margin-top: 28px;
    padding: 0 20px 20px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 54, 92, 0.24) transparent;
  }

  .home .solution-grid .service-line {
    min-height: 540px;
    scroll-snap-align: center;
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(8, 37, 66, 0.16);
  }

  .home .solution-grid .service-line::before {
    transform: none;
  }

  .home .solution-grid .service-line::after {
    background:
      linear-gradient(180deg, rgba(8, 37, 66, 0.02) 0%, rgba(8, 37, 66, 0.18) 34%, rgba(8, 37, 66, 0.88) 100%),
      linear-gradient(90deg, rgba(8, 37, 66, 0.2), transparent 56%);
  }

  .home .service-line h3 {
    max-width: 230px;
    padding-inline: 20px;
    font-size: clamp(1.65rem, 8vw, 2.12rem);
  }

  .home .service-line p {
    max-width: 230px;
    margin-top: 12px;
    padding-inline: 20px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .home .service-line .text-link {
    margin: 18px 20px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 380px) {
  .home .hero-copy {
    width: min(54vw, 184px);
    margin: 0;
    max-width: none;
    justify-self: start;
    padding-left: 16px;
  }

  .home .hero h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.86rem);
  }

  .home .hero .lead {
    max-width: 158px;
    font-size: 0.68rem;
  }

  .home .hero .btn {
    min-height: 30px;
    padding-inline: 9px;
    font-size: 0.62rem;
  }

  .home .hero-proof {
    left: 14px;
    right: 14px;
    width: calc(100vw - 28px) !important;
    gap: 6px;
  }

  .home .proof-item {
    min-height: 48px;
    padding: 8px;
    font-size: 0.66rem;
  }

  .home .solution-grid {
    grid-auto-columns: minmax(286px, 88vw);
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }
}

.service-swipe-hint {
  display: none;
}

/* Homepage mobile polish: equal CTAs, carousel hints, compact logos */
@media (max-width: 760px) {
  .home .hero-actions {
    align-items: flex-start;
  }

  .home .hero .btn {
    width: 138px;
    justify-content: space-between;
  }

  .home .hero + .section {
    padding-top: 42px;
    padding-bottom: 28px;
  }

  .home .hero + .section .container {
    position: relative;
  }

  .home .hero + .section .container::before,
  .home .hero + .section .container::after {
    display: none;
  }

  .service-swipe-hint {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 16px 20px -8px;
  }

  .service-swipe-hint span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(13, 54, 92, 0.14);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 34px rgba(8, 37, 66, 0.12);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  .home .solution-grid .service-line {
    min-height: 460px;
  }

  .home .section.alt:not(#testimonials) {
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .home .section.alt:not(#testimonials) .split {
    gap: 18px;
  }

  .home .section.alt:not(#testimonials) .split .image-frame {
    height: 250px;
  }

  .home #partners {
    padding-block: 14px;
  }

  .home #partners .logos,
  .home .logos {
    width: min(100% - 28px, var(--max));
    min-height: 44px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 7px;
    overflow: visible;
    padding: 0;
  }

  .home #partners .logos::-webkit-scrollbar,
  .home .logos::-webkit-scrollbar {
    display: none;
  }

  .partner-logo-img {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 18px;
    object-fit: contain;
  }

  .fitia-logo {
    height: 20px;
  }

  .life-logo {
    height: 18px;
  }

  .fanka-logo {
    height: 18px;
  }

  .leanix-logo {
    height: 20px;
  }

  .sharp-logo {
    height: 18px;
  }
}

@media (max-width: 380px) {
  .home .hero .btn {
    width: 136px;
  }

  .home .hero + .section .container::before,
  .home .hero + .section .container::after {
    width: 32px;
    height: 32px;
  }

  .home .solution-grid .service-line {
    min-height: 448px;
  }

  .home #partners .logos,
  .home .logos {
    width: min(100% - 24px, var(--max));
    gap: 5px;
  }

  .partner-logo-img,
  .life-logo,
  .fanka-logo,
  .sharp-logo {
    height: 16px;
  }

  .fitia-logo,
  .leanix-logo {
    height: 18px;
  }
}

.about-swipe-hint {
  display: none;
}

/* About page mobile rebuild: swipeable card sections */
@media (max-width: 760px) {
  .about-page main {
    overflow-x: clip;
  }

  .about-page .section,
  .about-page body:not(.home) .section {
    padding: 62px 12px;
  }

  .about-page .section > .container,
  .about-page .section.alt > .container,
  .about-page #credentials > .container,
  .about-page .photo-gallery-section > .container {
    width: 100%;
    max-width: none;
  }

  .about-page .page-hero.navy.about-hero,
  .about-page .about-hero {
    min-height: auto;
    padding: 104px 18px 34px;
    background:
      radial-gradient(circle at 20% 14%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfaf7 0%, #eef2e8 100%);
  }

  .about-page .about-hero::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.22) 48%, rgba(238, 242, 232, 0.88) 100%);
  }

  .about-page .about-hero .page-hero-grid {
    min-height: 0;
    gap: 12px;
  }

  .about-page .about-hero .page-hero-grid > div:first-child {
    max-width: none;
  }

  .about-page .about-hero h1,
  .about-page .page-hero.navy.about-hero h1 {
    max-width: 100%;
    font-size: clamp(1.92rem, 8.1vw, 2.54rem);
    line-height: 1.02;
    margin-bottom: 14px;
  }

  .about-page .about-hero .lead,
  .about-page .page-hero.navy.about-hero .lead {
    max-width: 30rem;
    font-size: 0.94rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }

  .about-page .about-hero .actions {
    margin-top: 0;
  }

  .about-page .about-hero .btn {
    min-height: 42px;
    padding: 0.68rem 1rem;
    font-size: 0.78rem;
  }

  .about-page .about-hero .image-frame:has(img[src$="about-hero-hi11-cutout-trimmed.png"]) {
    width: calc(100% + 36px);
    height: 340px;
    min-height: 340px;
    max-height: 42svh;
    align-self: center;
    margin: 0;
    overflow: hidden;
  }

  .about-page .about-hero .image-frame img[src$="about-hero-hi11-cutout-trimmed.png"],
  .about-page .about-hero .image-frame:hover img[src$="about-hero-hi11-cutout-trimmed.png"] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 64% bottom;
  }

  .about-page .section.story-wash {
    padding: 48px 12px 78px;
    margin-bottom: 24px;
    background:
      radial-gradient(circle at 18% 12%, rgba(74, 222, 128, 0.12), transparent 34%),
      linear-gradient(180deg, #f5f9fb 0%, #ffffff 68%, #f2f7fb 100%);
  }

  .story-wash .split.reverse {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .about-page .story-wash .split.reverse > .story-copy {
    left: auto;
    right: auto;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 26px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }

  .about-page .story-wash .container {
    width: 100%;
    max-width: none;
  }

  .story-wash .story-copy .lead {
    max-width: none;
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(13, 54, 92, 0.72);
  }

  .story-wash .story-copy .lead:first-of-type {
    max-width: none;
    font-size: 1rem;
    line-height: 1.48;
    color: var(--navy);
  }

  .story-wash .story-divider {
    justify-content: flex-start;
    width: 190px;
    margin: 14px 0 18px;
  }

  .story-wash .split.reverse > div:last-child {
    padding: 0;
  }

  .story-wash .image-frame {
    width: calc(100% + 24px);
    height: 294px;
    margin-inline: -12px;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .story-wash .image-frame img {
    object-position: 52% 20%;
  }

  .about-swipe-hint {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 18px 0 -6px;
  }

  .story-swipe-hint {
    display: none;
  }

  .about-swipe-hint span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(13, 54, 92, 0.14);
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 34px rgba(8, 37, 66, 0.1);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
  }

  .story-stats,
  .pillar-flow,
  #credentials .credential-grid,
  .photo-gallery {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(13, 54, 92, 0.24) transparent;
  }

  .story-stats {
    width: 100%;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 22px 0 0;
    padding: 0;
    overflow: visible;
    border-top: 0;
    scroll-snap-type: none;
  }

  .story-stat {
    min-height: 106px;
    justify-items: center;
    align-content: start;
    padding: 11px 7px;
    border: 1px solid rgba(13, 54, 92, 0.1);
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.74)),
      #fff;
    box-shadow: 0 18px 50px rgba(8, 37, 66, 0.08);
    text-align: center;
    scroll-snap-align: none;
  }

  .story-stat svg {
    width: 25px;
    height: 25px;
    margin-bottom: 7px;
  }

  .story-stat strong {
    font-size: 1.04rem;
    line-height: 0.98;
    white-space: nowrap;
  }

  .story-stat + .story-stat {
    padding-top: 11px;
    border-top: 1px solid rgba(13, 54, 92, 0.1);
    border-left: 1px solid rgba(13, 54, 92, 0.1);
  }

  .story-stat span {
    margin-top: 6px;
    font-size: 0.54rem;
    line-height: 1.13;
    text-align: center;
    overflow-wrap: normal;
  }

  .pillar-flow {
    width: calc(100% + 24px);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(286px, 88vw);
    grid-template-columns: none !important;
    gap: 14px;
    margin: 22px -12px 0 !important;
    padding: 0 12px 18px;
    overflow-x: auto;
  }

  .about-page .section.alt {
    padding: 74px 12px 72px !important;
  }

  .about-page .section.alt h2 {
    font-size: clamp(2rem, 8.8vw, 2.7rem);
    line-height: 1.04;
  }

  .pillar-flow .pillar {
    min-height: 188px;
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 20px 18px;
    scroll-snap-align: center;
  }

  .pillar-flow .pillar::before {
    inset: auto 14px 14px auto;
    width: 58px;
    height: 58px;
  }

  .pillar-top {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 0;
  }

  .pillar-flow .pillar .number {
    font-size: 2.58rem;
    line-height: 0.9;
  }

  .pillar-icon {
    width: 52px;
    height: 52px;
    padding: 12px;
  }

  .pillar-flow .pillar h3 {
    grid-column: 2;
    max-width: none;
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.08;
  }

  .pillar-flow .pillar p {
    grid-column: 2;
    margin-top: 10px;
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .pillar-flow .pillar:hover,
  .pillar-flow .pillar:focus-within {
    transform: none;
  }

  #credentials {
    padding: 60px 12px;
  }

  #credentials .credential-grid {
    width: 100%;
    max-width: none;
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  #credentials .credential-card,
  #credentials .credential-card.wide {
    min-height: 0;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 4px;
    padding: 14px 13px;
    scroll-snap-align: none;
  }

  #credentials .credential-mark {
    grid-column: 1;
    grid-row: 1 / 3;
    min-width: 0;
    width: 58px;
    height: 48px;
    gap: 5px;
  }

  #credentials .credential-year {
    grid-column: 3;
    grid-row: 1 / 3;
    justify-self: end;
    align-self: center;
    padding: 7px 8px;
    font-size: 0.68rem;
  }

  #credentials .credential-card h3 {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.12;
  }

  #credentials .credential-card p {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    font-size: 0.76rem;
    line-height: 1.34;
  }

  #credentials .credential-mark svg {
    width: 21px;
    height: 21px;
  }

  #credentials .credential-mark span {
    font-size: 0.66rem;
  }

  .about-page .section.warm {
    margin-top: 0;
    padding: 54px 12px 60px;
    background:
      radial-gradient(circle at 90% 4%, rgba(74, 222, 128, 0.12), transparent 30%),
      linear-gradient(180deg, #f5f9fb 0%, #ffffff 46%, #f3f8fb 100%);
  }

  .about-page .section.warm .container {
    width: 100%;
    max-width: none;
  }

  .about-page .section.warm .note {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page .section.warm .note::before,
  .about-page .section.warm .note::after {
    display: none;
  }

  .about-page .section.warm .note .eyebrow,
  .about-page .section.warm .note h2,
  .about-page .section.warm .note .lead,
  .about-page .section.warm .note .signature {
    position: relative;
    z-index: 1;
  }

  .about-page .section.warm .note h2 {
    max-width: 12rem;
    margin: 0;
    text-align: left;
    font-size: clamp(2rem, 8.4vw, 2.58rem);
    line-height: 1.04;
  }

  .about-page .section.warm .note .lead {
    max-width: none;
    width: 100%;
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.54;
  }

  .note-image {
    position: relative;
    inset: auto;
    order: -1;
    width: calc(100% + 24px);
    height: 380px;
    margin: -42px -12px 2px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: #f7fafc;
  }

  .note-image::before {
    display: none;
  }

  .note-image img,
  .note-image img[src$="tina-personal-note-hiiii.png"] {
    position: absolute;
    right: 8px;
    bottom: 0;
    width: auto;
    height: 88%;
    max-width: none;
    object-fit: contain;
    object-position: right bottom;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .photo-gallery-section {
    padding: 56px 12px 50px !important;
  }

  .gallery-head {
    margin-bottom: 22px;
  }

  .gallery-head h2 {
    max-width: none;
    font-size: clamp(1.72rem, 7.1vw, 2.05rem);
    line-height: 1.04;
  }

  .gallery-head h2 span {
    display: block;
    white-space: nowrap;
  }

  .photo-gallery {
    width: calc(100% + 24px);
    margin-inline: -12px;
    padding: 0 12px 14px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-panorama,
  .gallery-card-feature {
    flex: 0 0 88vw;
    height: 340px;
    scroll-snap-align: center;
  }

  .about-page .cta {
    padding: 52px 18px 66px;
  }

  .about-page .cta h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
}

@media (max-width: 380px) {
  .pillar-flow {
    grid-auto-columns: minmax(270px, 88vw);
  }

  #credentials .credential-grid {
    grid-auto-columns: minmax(270px, 88vw);
  }

  .story-stats {
    grid-auto-columns: minmax(232px, 78vw);
  }
}

/* Health Coaching mobile hero polish */
@media (max-width: 760px) {
  .health-page .health-hero {
    min-height: auto;
    padding: 104px 12px 46px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 12%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .health-page .health-hero::before {
    display: none;
  }

  .health-page .health-hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0) 34%, rgba(238, 245, 240, 0.88) 100%);
  }

  .health-page .health-hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .health-page .health-hero-visual {
    order: -1;
    visibility: visible;
    width: calc(100% + 24px);
    min-height: 0;
    height: 276px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: #f4f8f3;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .health-page .health-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(1.02) contrast(1.01);
  }

  .health-page .health-hero-copy {
    width: 100%;
    max-width: none;
  }

  .health-page .health-hero .eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .health-page .health-hero h1 {
    max-width: 18rem;
    font-size: clamp(1.82rem, 7.35vw, 2.28rem);
    line-height: 1.04;
  }

  .health-page .health-hero .health-title-line {
    white-space: normal;
  }

  .health-page .mini-rule {
    width: 96px;
    margin-top: 16px;
  }

  .health-page .health-hero-copy p {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .health-page .health-hero-lead span {
    display: inline;
  }

  .health-page .health-hero .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .health-page .health-hero .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .health-page .health-section > .container,
  .health-page .health-faq > .container,
  .health-page .health-cta > .health-cta-grid {
    width: 100%;
    max-width: none;
  }

  .health-page .health-section,
  .health-page .health-quote,
  .health-page .health-faq,
  .health-page .health-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .health-page .health-section.centered {
    text-align: left;
  }

  .health-page .health-section.centered .lead,
  .health-page .health-section.centered h2,
  .health-page .center-title {
    margin-left: 0;
    margin-right: 0;
  }

  .health-page .support-map-section {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .health-page .support-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: none;
  }

  .health-page .support-map-title {
    max-width: 18rem;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
  }

  .health-page .support-map .lead {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .health-page .support-orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .health-page .orbit-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 100%;
    height: auto;
    min-height: 112px;
    border-width: 0;
    border-radius: 8px;
    transform: none;
    box-shadow: 0 18px 48px rgba(8, 37, 66, 0.16);
  }

  .health-page .orbit-core strong {
    font-size: 2rem;
  }

  .health-page .orbit-core span,
  .health-page .orbit-core em {
    font-size: 0.72rem;
  }

  .health-page .support-orbit > span {
    position: relative;
    left: auto !important;
    top: auto !important;
    display: grid;
    width: auto;
    height: auto;
    min-height: 72px;
    padding: 12px 8px;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(8, 37, 66, 0.08), inset 0 0 0 6px rgba(247, 250, 244, 0.76);
    font-size: 0.78rem;
    line-height: 1.15;
    transform: none !important;
    animation: none;
  }

  .health-page .health-expect-section {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .health-page .health-expect-section .container {
    max-width: none;
  }

  .health-page .health-expect-section h2,
  .health-page .health-faq h2,
  .health-page .health-cta h2 {
    font-family: inherit;
  }

  .health-page .health-expect-section h2 {
    max-width: 18rem;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
    text-align: left;
  }

  .health-page .health-expect-section .expect-lead {
    max-width: none;
    margin: 14px 0 0;
    font-size: 0.88rem;
    line-height: 1.48;
    text-align: left;
  }

  .health-page .expect-steps {
    max-width: none;
    gap: 18px;
    margin-top: 28px;
  }

  .health-page .expect-steps::before {
    top: 36px;
    bottom: 36px;
    left: 36px;
  }

  .health-page .expect-steps article {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 96px;
  }

  .health-page .expect-icon {
    width: 72px;
    height: 72px;
  }

  .health-page .expect-icon svg {
    width: 30px;
    height: 30px;
  }

  .health-page .expect-number {
    margin-top: 2px;
    font-size: 0.86rem;
    line-height: 1;
  }

  .health-page .expect-steps h3 {
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .health-page .expect-steps p {
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .health-page .health-faq h2 {
    max-width: 18rem;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.78rem, 7vw, 2.12rem);
    line-height: 1.06;
    text-align: left;
  }

  .health-page .health-faq .faq-list {
    margin-top: 28px;
  }

  .health-page .health-faq .faq-question {
    min-height: 56px;
    font-family: inherit;
    font-size: 0.86rem;
    line-height: 1.24;
  }

  .health-page .health-faq .faq-answer {
    padding-right: 0;
    font-family: inherit;
    font-size: 0.84rem;
    line-height: 1.54;
  }

  .health-page .health-cta h2 {
    max-width: none;
    font-size: clamp(1.76rem, 7.1vw, 2.08rem);
    line-height: 1.06;
  }

  .health-page .health-cta h2 span {
    display: block;
    white-space: nowrap;
  }

  .health-page .health-cta p {
    max-width: none;
    font-size: 0.88rem;
    line-height: 1.48;
  }
}

@media (max-width: 380px) {
  .health-page .health-hero-visual {
    height: 264px;
  }

  .health-page .health-hero h1 {
    font-size: clamp(1.76rem, 7.1vw, 2.16rem);
  }

  .health-page .support-orbit {
    gap: 8px;
  }

  .health-page .orbit-core {
    min-height: 104px;
  }

  .health-page .orbit-core strong {
    font-size: 1.82rem;
  }

  .health-page .support-orbit > span {
    min-height: 68px;
    padding: 10px 6px;
    font-size: 0.72rem;
  }

  .health-page .health-cta h2 {
    font-size: 1.74rem;
  }

  .health-page .expect-steps p {
    font-size: 0.74rem;
  }
}

/* Corporate Wellness mobile polish */
@media (max-width: 760px) {
  .corporate-page .corp-hero {
    min-height: auto;
    padding: 104px 12px 46px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 12%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .corporate-page .corp-hero::before {
    display: none;
  }

  .corporate-page .corp-hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 34%, rgba(238, 245, 240, 0.86) 100%);
  }

  .corporate-page .corp-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: none;
  }

  .corporate-page .corp-hero-visual {
    order: -1;
    display: block;
    visibility: visible;
    width: calc(100% + 24px);
    min-height: 0;
    height: 292px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: #f4f8f3;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .corporate-page .corp-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 58% center;
    filter: saturate(1.02) contrast(1.01);
  }

  .corporate-page .corp-hero-copy {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .corporate-page .corp-hero .eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .corporate-page .corp-hero h1 {
    max-width: 18rem;
    font-size: clamp(1.82rem, 7.35vw, 2.28rem);
    line-height: 1.04;
  }

  .corporate-page .corp-hero-copy p {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .corporate-page .corp-hero .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .corporate-page .corp-hero .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .corporate-page .corp-section,
  .corporate-page .corp-cta {
    padding: 58px 12px;
  }

  .corporate-page .corp-section > .container,
  .corporate-page .corp-ecosystem-grid,
  .corporate-page .corp-cta-grid {
    width: 100%;
    max-width: none;
  }

  .corporate-page .corp-ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .corporate-page .corp-section-copy h2,
  .corporate-page .corp-section-copy h2.corp-ecosystem-title,
  .corporate-page .corp-section-copy .lead {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .corporate-page .corp-section-copy h2.corp-ecosystem-title {
    max-width: 18rem;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
  }

  .corporate-page .corp-section-copy .lead {
    max-width: none;
    margin-top: 14px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .corporate-page .corp-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
  }

  .corporate-page .corp-orbit-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    justify-self: center;
    overflow: hidden;
    width: min(148px, 46vw);
    height: min(148px, 46vw);
    min-height: 0;
    padding: 16px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.2), transparent 34%),
      linear-gradient(135deg, #16b957, #0a8c43);
    box-shadow: 0 18px 48px rgba(8, 37, 66, 0.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.04rem;
    line-height: 1.08;
    text-align: center;
    transform: none;
  }

  .corporate-page .corp-orbit-core::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 14px;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    opacity: 0.72;
  }

  .corporate-page .corp-orbit-core strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #fff;
    font-size: 1.16rem;
    line-height: 1.02;
    white-space: normal;
  }

  .corporate-page .corp-orbit-core span {
    position: relative;
    z-index: 1;
    justify-self: start;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 750;
    line-height: 1.28;
    text-align: center;
    white-space: normal;
  }

  .corporate-page .corp-orbit > span {
    position: relative;
    left: auto !important;
    top: auto !important;
    display: grid;
    justify-self: center;
    width: min(132px, 40vw);
    height: min(132px, 40vw);
    min-height: 0;
    padding: 12px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 18% 16%, rgba(74, 222, 128, 0.14), transparent 34%),
      rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 34px rgba(8, 37, 66, 0.08);
    font-size: 0.78rem;
    line-height: 1.12;
    transform: none !important;
    animation: none;
  }

  .corporate-page .corp-orbit > span:hover {
    transform: none;
  }

  .corporate-page .corp-support {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 18px 16px;
  }

  .corporate-page .corp-support h3 {
    margin-bottom: 14px;
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .corporate-page .corp-support ul {
    gap: 9px;
  }

  .corporate-page .corp-support li {
    gap: 2px;
    padding-left: 14px;
  }

  .corporate-page .corp-support strong,
  .corporate-page .corp-support span {
    font-size: 0.74rem;
    line-height: 1.2;
  }

  .corporate-page .corp-center-title {
    max-width: 18rem;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(1.08rem, 4.6vw, 1.28rem);
    line-height: 1.16;
    text-align: left;
  }

  .corporate-page .corp-solutions {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .corporate-page .corp-solutions article {
    min-height: 0;
    text-align: left;
  }

  .corporate-page .corp-solutions img {
    height: 136px;
  }

  .corporate-page .solution-icon {
    width: 48px;
    height: 48px;
    margin: -24px 18px 14px;
    border-width: 4px;
  }

  .corporate-page .solution-icon svg {
    width: 22px;
    height: 22px;
  }

  .corporate-page .corp-solutions h3 {
    padding: 0 18px;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .corporate-page .corp-solutions p {
    padding: 0 18px 20px;
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .corporate-page .corp-process-section {
    padding-top: 56px;
    padding-bottom: 58px;
    text-align: left;
  }

  .corporate-page .corp-process-section .container {
    max-width: none;
  }

  .corporate-page .corp-process-eyebrow {
    justify-content: flex-start;
  }

  .corporate-page .corp-process-eyebrow::before {
    display: none;
  }

  .corporate-page .corp-process-title {
    max-width: 18rem;
    margin-left: 0;
    margin-right: 0;
    font-family: inherit;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
    text-align: left;
  }

  .corporate-page .corp-process-lead {
    max-width: none;
    margin: 14px 0 0;
    font-size: 0.88rem;
    line-height: 1.48;
    text-align: left;
  }

  .corporate-page .corp-process {
    max-width: none;
    gap: 18px;
    margin-top: 28px;
    margin-inline: 0;
  }

  .corporate-page .corp-process::before {
    top: 36px;
    bottom: 36px;
    left: 36px;
  }

  .corporate-page .corp-process article {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 96px;
  }

  .corporate-page .corp-process-icon {
    width: 72px;
    height: 72px;
  }

  .corporate-page .corp-process-icon svg {
    width: 30px;
    height: 30px;
  }

  .corporate-page .corp-process-number {
    margin-top: 2px;
    font-size: 0.86rem;
    line-height: 1;
  }

  .corporate-page .corp-process h3 {
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .corporate-page .corp-process p {
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .corporate-page .corp-cta h2 {
    max-width: none;
    font-size: clamp(1.35rem, 5.6vw, 1.58rem);
    line-height: 1.06;
  }

  .corporate-page .corp-cta h2 span {
    display: block;
    white-space: nowrap;
  }

}

@media (max-width: 380px) {
  .corporate-page .corp-hero-visual {
    height: 276px;
  }

  .corporate-page .corp-hero h1 {
    font-size: clamp(1.76rem, 7.1vw, 2.16rem);
  }

  .corporate-page .corp-process p {
    font-size: 0.74rem;
  }

  .corporate-page .corp-cta h2 {
    font-size: 1.48rem;
  }
}

/* Events & Collaborations mobile polish */
@media (max-width: 760px) {
  .collab-page .collab-hero {
    min-height: auto;
    padding: 104px 12px 46px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 12%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .collab-page .collab-hero::before {
    display: none;
  }

  .collab-page .collab-hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 34%, rgba(238, 245, 240, 0.86) 100%);
  }

  .collab-page .collab-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: none;
  }

  .collab-page .collab-hero-visual {
    order: -1;
    display: block;
    visibility: visible;
    width: calc(100% + 24px);
    min-height: 0;
    height: 292px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: #f4f8f3;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .collab-page .collab-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 52% center;
    filter: saturate(1.02) contrast(1.01);
  }

  .collab-page .collab-hero-copy {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .collab-page .collab-hero .eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .collab-page .collab-hero h1 {
    max-width: 18rem;
    font-size: clamp(1.82rem, 7.35vw, 2.28rem);
    line-height: 1.04;
  }

  .collab-page .collab-hero .collab-title-line {
    white-space: normal;
  }

  .collab-page .collab-hero-copy p {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .collab-page .collab-hero .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .collab-page .collab-hero .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .collab-page .collab-section,
  .collab-page .collab-cta {
    padding: 58px 12px;
  }

  .collab-page .collab-section > .container,
  .collab-page .collab-cta-grid {
    width: 100%;
    max-width: none;
  }

  .collab-page .collab-section.centered,
  .collab-page .collab-center-title,
  .collab-page .collab-center-copy,
  .collab-page .collab-green-title,
  .collab-page .collab-trust-title,
  .collab-page .collab-process-title {
    text-align: left;
  }

  .collab-page .collab-section.centered h2,
  .collab-page .collab-section.centered .lead,
  .collab-page .collab-center-title,
  .collab-page .collab-center-copy,
  .collab-page .collab-green-title,
  .collab-page .collab-trust-title,
  .collab-page .collab-process-title,
  .collab-page .collab-cta h2,
  .collab-page .collab-cta p {
    margin-left: 0;
    margin-right: 0;
  }

  .collab-page .centered-eyebrow {
    justify-content: flex-start;
  }

  .collab-page .collab-impact-title,
  .collab-page .collab-section.centered h2,
  .collab-page .collab-center-title,
  .collab-page .collab-green-title,
  .collab-page .collab-cta h2 {
    max-width: 18rem;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
  }

  .collab-page .collab-section.centered .lead,
  .collab-page .collab-center-copy,
  .collab-page .collab-cta p {
    max-width: none;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .collab-page .collab-impact-lead span {
    white-space: normal;
  }

  .collab-page .collab-cta p {
    color: rgba(255, 255, 255, 0.76);
  }

  .collab-page .collab-pillars,
  .collab-page .collab-ways,
  .collab-page .collab-featured,
  .collab-page .collab-process,
  .collab-page .collab-cta-grid {
    grid-template-columns: 1fr;
  }

  .collab-page .collab-pillars,
  .collab-page .collab-ways,
  .collab-page .collab-featured {
    gap: 14px;
    margin-top: 24px;
  }

  .collab-page .collab-pillars article,
  .collab-page .collab-ways article {
    min-height: 0;
    padding: 20px 18px;
  }

  .collab-page .collab-pillars svg,
  .collab-page .collab-ways svg {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .collab-page .collab-pillars h3,
  .collab-page .collab-ways h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .collab-page .collab-pillars p,
  .collab-page .collab-ways p {
    max-width: none;
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .collab-page .collab-ways h3 {
    max-width: none;
    margin-top: 32px;
  }

  .collab-page .collab-ways p {
    margin-top: 10px;
    padding-bottom: 12px;
  }

  .collab-page .collab-trust-title,
  .collab-page .collab-process-title {
    display: block;
    max-width: 18rem;
    font-size: clamp(1.08rem, 4.6vw, 1.28rem);
    line-height: 1.16;
    text-transform: none;
    letter-spacing: 0;
    white-space: normal;
  }

  body.collab-page h2.collab-trust-title,
  body.collab-page h2.collab-process-title {
    max-width: 18rem;
    font-size: clamp(1.08rem, 4.6vw, 1.28rem);
    line-height: 1.16;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
    white-space: normal;
  }

  .collab-page .collab-trust-title::before,
  .collab-page .collab-trust-title::after,
  .collab-page .collab-process-title::before,
  .collab-page .collab-process-title::after {
    display: none;
  }

  .collab-page .collab-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }

  .collab-page .collab-trust span {
    min-height: 54px;
    padding: 0 12px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 8px;
    font-size: 1rem;
  }

  .collab-page .collab-process {
    gap: 12px;
    margin-top: 24px;
  }

  .collab-page .collab-process article {
    min-height: 0;
    justify-items: start;
    gap: 6px;
    padding: 18px;
    text-align: left;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
      radial-gradient(circle at 0% 0%, rgba(74, 222, 128, 0.14), transparent 42%);
    border-color: rgba(13, 54, 92, 0.08);
  }

  .collab-page .collab-process span {
    margin-bottom: 8px;
  }

  .collab-page .collab-process h3 {
    font-size: 0.88rem;
  }

  .collab-page .collab-process p {
    font-size: 0.8rem;
    line-height: 1.42;
  }

  .collab-page .collab-cta-tags {
    gap: 10px 14px;
    margin-top: 20px;
  }

  .collab-page .collab-cta-tags span {
    font-size: 0.82rem;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  .collab-page .collab-hero-visual {
    height: 276px;
  }

  .collab-page .collab-hero h1 {
    font-size: clamp(1.76rem, 7.1vw, 2.16rem);
  }
}

/* Events trust logos and process timeline refinement */
.collab-page .collab-trust-section {
  padding-top: 42px;
  padding-bottom: 46px;
  background: #fff;
}

.collab-page .collab-trust-title {
  display: none;
}

.collab-page .collab-trust.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.6vw, 58px);
  max-width: 980px;
  margin: 0 auto;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.collab-page .collab-trust.logos .partner-logo-img {
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  opacity: 1;
}

.collab-page .collab-trust.logos .partner-logo-img::before,
.collab-page .collab-trust.logos .partner-logo-img::after {
  content: none;
}

.collab-page .collab-process-section {
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(74, 222, 128, 0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #fbfcfa 100%);
}

.collab-page .collab-process-section .container {
  max-width: 1180px;
}

.collab-page .collab-process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.collab-page .collab-process-eyebrow::before,
.collab-page .collab-process-eyebrow::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: rgba(34, 197, 94, 0.42);
}

.collab-page .collab-process-title,
body.collab-page h2.collab-process-title {
  display: block;
  max-width: 1040px;
  margin: 14px auto 0;
  color: var(--navy);
  font-family: inherit;
  font-size: clamp(2.45rem, 4.3vw, 4.35rem);
  font-weight: 850;
  line-height: 1.02;
  text-align: center;
  text-transform: none;
  letter-spacing: 0;
  white-space: normal;
}

.collab-page .collab-process-title::before,
.collab-page .collab-process-title::after {
  display: none;
}

.collab-page .collab-process-lead {
  max-width: 760px;
  margin: 16px auto 0;
  color: rgba(45, 55, 72, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.58;
}

.collab-page .collab-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.collab-page .collab-process::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 10%;
  right: 10%;
  display: block;
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 54, 92, 0.2) 8%, rgba(34, 197, 94, 0.34) 50%, rgba(13, 54, 92, 0.2) 92%, transparent);
}

.collab-page .collab-process::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 19%;
  right: 19%;
  height: 9px;
  background:
    radial-gradient(circle, var(--green-deep) 0 4px, transparent 5px) 0 0 / 25% 9px repeat-x;
  opacity: 0.78;
}

.collab-page .collab-process article {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 0;
  justify-items: center;
  align-content: start;
  gap: 0;
  overflow: visible;
  padding: 0 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  transition: transform 180ms ease;
}

.collab-page .collab-process article::before {
  display: none;
}

.collab-page .collab-process article:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translateY(-5px);
}

.collab-page .collab-process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  grid-row: auto;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0;
  border: 1px solid rgba(13, 54, 92, 0.14);
  border-radius: 50%;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 34% 20%, rgba(74, 222, 128, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 37, 66, 0.07);
}

.collab-page .collab-process-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.collab-page .collab-process-number {
  display: block;
  width: auto;
  height: auto;
  margin: 18px 0 0;
  border: 0;
  border-radius: 0;
  color: var(--green-deep);
  background: transparent;
  box-shadow: none;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.collab-page .collab-process article:hover .collab-process-number {
  color: var(--green-deep);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.collab-page .collab-process h3 {
  margin-top: 14px;
  color: var(--navy);
  font-size: 1.05rem;
  line-height: 1.22;
  text-transform: none;
}

.collab-page .collab-process article:hover h3 {
  color: var(--navy);
}

.collab-page .collab-process p {
  margin-top: 10px;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.95rem;
  line-height: 1.56;
}

@media (max-width: 760px) {
  .collab-page .collab-trust-section {
    padding: 30px 12px;
  }

  .collab-page .collab-trust.logos {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    max-width: none;
    min-height: 44px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    scrollbar-width: none;
  }

  .collab-page .collab-trust.logos .partner-logo-img {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    height: 18px;
    object-fit: contain;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .collab-page .collab-trust.logos .fitia-logo {
    height: 20px;
  }

  .collab-page .collab-trust.logos .life-logo,
  .collab-page .collab-trust.logos .fanka-logo,
  .collab-page .collab-trust.logos .sharp-logo {
    height: 18px;
  }

  .collab-page .collab-trust.logos .leanix-logo {
    height: 20px;
  }

  .collab-page .collab-trust.logos::-webkit-scrollbar {
    display: none;
  }

  .collab-page .collab-process-section {
    padding-top: 56px;
    padding-bottom: 58px;
    text-align: left;
  }

  .collab-page .collab-process-section .container {
    max-width: none;
  }

  .collab-page .collab-process-eyebrow {
    justify-content: flex-start;
  }

  .collab-page .collab-process-eyebrow::before {
    display: none;
  }

  .collab-page .collab-process-title,
  body.collab-page h2.collab-process-title {
    max-width: 18rem;
    margin-left: 0;
    margin-right: 0;
    font-family: inherit;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
    text-align: left;
  }

  .collab-page .collab-process-lead {
    max-width: none;
    margin: 14px 0 0;
    font-size: 0.88rem;
    line-height: 1.48;
    text-align: left;
  }

  .collab-page .collab-process {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: none;
    margin-top: 28px;
    margin-inline: 0;
  }

  .collab-page .collab-process::before {
    top: 36px;
    bottom: 36px;
    left: 36px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(13, 54, 92, 0.08), rgba(34, 197, 94, 0.38), rgba(13, 54, 92, 0.08));
  }

  .collab-page .collab-process::after {
    display: none;
  }

  .collab-page .collab-process article {
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 96px;
    justify-items: start;
    text-align: left;
  }

  .collab-page .collab-process-icon {
    grid-row: span 3;
    width: 72px;
    height: 72px;
  }

  .collab-page .collab-process-icon svg {
    width: 30px;
    height: 30px;
  }

  .collab-page .collab-process-number {
    justify-self: start;
    margin-top: 2px;
    font-size: 0.86rem;
    line-height: 1;
  }

  .collab-page .collab-process h3 {
    justify-self: start;
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.16;
  }

  .collab-page .collab-process p {
    justify-self: start;
    margin-top: 5px;
    font-size: 0.78rem;
    line-height: 1.28;
  }
}

@media (max-width: 380px) {
  .collab-page .collab-process p {
    font-size: 0.74rem;
  }
}

/* Fitness Training mobile polish */
@media (max-width: 760px) {
  .fitness-page .fit-hero {
    min-height: auto;
    padding: 104px 12px 46px;
    overflow: hidden;
    background:
      radial-gradient(circle at 78% 12%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .fitness-page .fit-hero::before {
    display: none;
  }

  .fitness-page .fit-hero::after {
    z-index: 0;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0) 34%, rgba(238, 245, 240, 0.86) 100%);
  }

  .fitness-page .fit-hero-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: none;
  }

  .fitness-page .fit-hero-visual {
    order: -1;
    display: block;
    visibility: visible;
    width: calc(100% + 24px);
    min-height: 0;
    height: 318px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: #f4f8f3;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .fitness-page .fit-hero-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 54% 14%;
    filter: saturate(1.02) contrast(1.01);
  }

  .fitness-page .fit-hero-copy {
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .fitness-page .fit-hero .eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .fitness-page .fit-hero h1 {
    max-width: 18rem;
    font-size: clamp(1.82rem, 7.35vw, 2.28rem);
    line-height: 1.04;
  }

  .fitness-page .fit-hero-copy p {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .fitness-page .fit-hero .actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .fitness-page .fit-hero .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .fitness-page .fit-section,
  .fitness-page .fit-quote,
  .fitness-page .fit-cta {
    padding: 58px 12px;
  }

  .fitness-page .fit-section > .container,
  .fitness-page .fit-cta-grid {
    width: 100%;
    max-width: none;
  }

  .fitness-page .fit-section.centered,
  .fitness-page .fit-quote {
    text-align: left;
  }

  .fitness-page .fit-section.centered h2,
  .fitness-page .fit-section.centered .lead,
  .fitness-page .fit-green-title,
  .fitness-page .fit-goals-title,
  .fitness-page .fit-quote blockquote,
  .fitness-page .fit-quote p,
  .fitness-page .fit-cta h2,
  .fitness-page .fit-cta p {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .fitness-page .centered-eyebrow {
    justify-content: flex-start;
  }

  .fitness-page .fit-training-title,
  .fitness-page .fit-green-title,
  .fitness-page .fit-goals-title,
  .fitness-page .fit-cta h2 {
    max-width: 18rem;
    font-family: inherit;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
  }

  .fitness-page .fit-section.centered .lead,
  .fitness-page .fit-cta p {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .fitness-page .fit-quote::before {
    inset: 0 12px;
  }

  .fitness-page .fit-quote blockquote {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    font-family: inherit;
    font-size: clamp(1.72rem, 6.9vw, 2.05rem);
    line-height: 1.08;
    text-align: center;
  }

  .fitness-page .fit-quote blockquote::before {
    height: 28px;
    font-size: 4rem;
  }

  .fitness-page .fit-quote p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 14px;
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: center;
  }

  .fitness-page .fit-options,
  .fitness-page .fit-action-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .fitness-page .fit-options article {
    min-height: 0;
    padding: 20px 18px;
  }

  .fitness-page .fit-options span {
    font-size: 1.55rem;
  }

  .fitness-page .fit-options svg {
    width: 28px;
    height: 28px;
  }

  .fitness-page .fit-options h3 {
    margin-top: 16px;
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .fitness-page .fit-options p {
    font-size: 0.82rem;
    line-height: 1.46;
  }

  .fitness-page .fit-action-grid article {
    min-height: 250px;
  }

  .fitness-page .fit-goals-section {
    text-align: left;
  }

  .fitness-page .fit-goals-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }

  .fitness-page .fit-goal-core {
    order: -1;
    min-height: 250px;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    background:
      radial-gradient(circle at 50% 48%, rgba(74, 222, 128, 0.18), transparent 42%),
      linear-gradient(180deg, #fff, #f7faf4);
  }

  .fitness-page .fit-goal-core::before,
  .fitness-page .fit-goal-core::after {
    display: none;
  }

  .fitness-page .fit-goal-core img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
  }

  .fitness-page .fit-goal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    text-align: left;
    justify-items: stretch;
  }

  .fitness-page .fit-goal-list.left,
  .fitness-page .fit-goal-list.right {
    text-align: left;
    justify-items: stretch;
  }

  .fitness-page .fit-goal-list span,
  .fitness-page .fit-goal-bottom {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 62px;
    justify-content: flex-start;
    padding: 10px 10px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(8, 37, 66, 0.08);
    font-size: 0.78rem;
    line-height: 1.15;
    transform: none;
  }

  .fitness-page .fit-goal-list span::before,
  .fitness-page .fit-goal-list.right span::before,
  .fitness-page .fit-goal-bottom::before {
    display: block;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: 2px solid rgba(17, 151, 84, 0.28);
    border-radius: 50%;
    background:
      radial-gradient(circle at center, rgba(17, 151, 84, 0.78) 0 4px, transparent 5px),
      radial-gradient(circle at center, rgba(74, 222, 128, 0.18) 0 12px, transparent 13px),
      #fff;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.1);
    animation: none;
  }

  .fitness-page .fit-goal-list.left span::after,
  .fitness-page .fit-goal-list.right span::after,
  .fitness-page .fit-goal-bottom::after {
    display: none;
  }

  .fitness-page .fit-goal-bottom {
    position: static;
    width: 100%;
    transform: none;
  }

  .fitness-page .fit-cta h2 {
    max-width: none;
    color: #fff;
    font-size: clamp(1.72rem, 6.9vw, 2.04rem);
  }

  .fitness-page .fit-cta h2 span {
    color: var(--green);
  }

  .fitness-page .fit-cta-tags {
    gap: 10px 14px;
    margin-top: 20px;
  }

  .fitness-page .fit-cta-tags span {
    font-size: 0.82rem;
    line-height: 1.2;
  }
}

@media (max-width: 380px) {
  .fitness-page .fit-hero-visual {
    height: 306px;
  }

  .fitness-page .fit-hero h1 {
    font-size: clamp(1.76rem, 7.1vw, 2.16rem);
  }

  .fitness-page .fit-goal-list span,
  .fitness-page .fit-goal-bottom {
    font-size: 0.72rem;
  }

  .fitness-page .fit-cta h2 {
    font-size: 1.7rem;
  }
}

/* Resources / Blog mobile polish */
@media (max-width: 760px) {
  .resources-page .resources-hero {
    min-height: auto;
    display: block;
    padding: 104px 12px 38px;
    background:
      radial-gradient(circle at 84% 8%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .resources-page .resources-hero::after {
    display: none;
  }

  .resources-page .resources-hero .page-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: none;
  }

  .resources-page .resources-hero .image-frame {
    order: -1;
    width: calc(100% + 24px);
    height: 236px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    transform: none;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .resources-page .resources-hero .image-frame img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: 50% 52%;
  }

  .resources-page .resources-hero h1 {
    max-width: 18rem;
    margin: 0;
    font-size: clamp(1.9rem, 7.7vw, 2.32rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-align: left;
  }

  .resources-page .resources-hero .lead {
    max-width: none;
    margin-top: 16px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
  }

  body.resources-page:not(.home) .section,
  body.resources-page:not(.home) .section.alt,
  .resources-page .cta {
    padding: 50px 12px;
  }

  .resources-page .section > .container,
  .resources-page .cta > .container {
    width: 100%;
    max-width: none;
  }

  .resources-page .section-heading {
    display: block;
    margin-bottom: 0;
    text-align: left;
  }

  .resources-page .section-heading h2,
  .resources-page .section-heading .lead,
  .resources-page .section h2,
  .resources-page .section .lead,
  .resources-page .cta h2,
  .resources-page .cta .lead {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .resources-page .section-heading h2,
  .resources-page .section h2,
  .resources-page .cta h2 {
    font-family: inherit;
    font-size: clamp(1.82rem, 7.2vw, 2.18rem);
    line-height: 1.06;
    letter-spacing: 0;
  }

  .resources-page .section-heading .lead,
  .resources-page .section .lead,
  .resources-page .cta .lead {
    margin-top: 12px;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .resources-page .section-heading .btn {
    width: 100%;
    min-height: 42px;
    margin-top: 18px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .resources-page .blog-feature {
    grid-template-columns: 94px 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(8, 37, 66, 0.1);
  }

  .resources-page .blog-feature-image {
    min-height: 0;
    height: 94px;
    border-radius: 8px;
  }

  .resources-page .blog-feature-image img {
    height: 100%;
    object-fit: cover;
    object-position: 50% 52%;
  }

  .resources-page .blog-feature-copy {
    min-width: 0;
    padding: 0;
  }

  .resources-page .blog-feature-copy h3 {
    max-width: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .resources-page .blog-feature-copy p {
    display: none;
  }

  .resources-page .blog-meta {
    display: none;
  }

  .resources-page .blog-list-heading {
    align-items: flex-start;
    margin-top: 20px;
  }

  .resources-page .blog-list-heading h3 {
    max-width: 13rem;
    font-family: inherit;
    font-size: 1.2rem;
    line-height: 1.1;
    letter-spacing: 0;
  }

  .resources-page .blog-list-heading .eyebrow {
    margin-bottom: 8px;
  }

  .resources-page .blog-list-heading > span {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .resources-page .blog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
  }

  .resources-page .blog-card {
    min-height: 0;
    padding: 16px;
    border-radius: 8px;
  }

  .resources-page .blog-card-media {
    display: grid;
    grid-template-columns: 94px 1fr;
    gap: 12px;
    padding: 12px;
    align-items: center;
  }

  .resources-page .blog-card-media img {
    grid-row: 1 / span 4;
    width: 94px;
    height: 94px;
    border-radius: 8px;
    object-position: center;
  }

  .resources-page .blog-card-media .eyebrow,
  .resources-page .blog-card-media h3,
  .resources-page .blog-card-media p,
  .resources-page .blog-card-media .text-link {
    margin-left: 0;
    margin-right: 0;
  }

  .resources-page .blog-card-media .eyebrow {
    margin-top: 0;
    margin-bottom: 6px;
  }

  .resources-page .blog-card h3 {
    font-family: inherit;
    font-size: 0.98rem;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .resources-page .blog-card p {
    display: none;
  }

  .resources-page .blog-card .text-link,
  .resources-page .blog-feature .text-link {
    margin-top: 8px;
    font-size: 0.78rem;
  }

  .resources-page .split,
  .resources-page .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .resources-page .check-list {
    margin-top: 18px;
  }

  .resources-page .check-list li {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .resources-page .resource-card.featured,
  .resources-page .product-card {
    border-radius: 8px;
  }

  .resources-page .resource-card.featured img {
    height: 230px;
    object-fit: cover;
  }

  .resources-page .product-card {
    grid-template-columns: 132px 1fr;
    gap: 12px;
    min-height: 0;
    padding: 12px;
    align-items: center;
  }

  .resources-page .product-card img {
    width: 132px;
    height: 156px;
    object-fit: cover;
    border-radius: 8px;
  }

  .resources-page .product-card h3 {
    font-size: 0.94rem;
    line-height: 1.18;
  }

  .resources-page .product-card p {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.38;
  }

  .resources-page .cta .actions,
  .resources-page .section .actions {
    width: 100%;
  }

  .resources-page .cta .btn,
  .resources-page .section .actions .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }

  .blog-article .article-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 104px 12px 30px;
    background:
      radial-gradient(circle at 82% 10%, rgba(74, 222, 128, 0.16), transparent 30%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .blog-article .article-hero-copy {
    width: 100%;
    max-width: none;
    padding: 22px 0 0;
    text-align: left;
  }

  .blog-article .article-hero-image {
    order: -1;
    width: calc(100% + 24px);
    height: 238px;
    min-height: 0;
    margin: 0 -12px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .blog-article .article-hero-image::before {
    display: none;
  }

  .blog-article .article-hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .blog-article .article-back {
    margin-bottom: 16px;
    font-size: 0.8rem;
  }

  .blog-article .article-hero h1 {
    max-width: none;
    font-family: inherit;
    font-size: clamp(1.82rem, 7.2vw, 2.22rem);
    line-height: 1.06;
    letter-spacing: 0;
    text-align: left;
  }

  .blog-article .article-hero .lead {
    max-width: none;
    margin-top: 14px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
  }

  .blog-article .article-meta,
  .blog-article .article-tags {
    display: none;
  }

  .blog-article .article-meta span,
  .blog-article .article-tags span {
    min-height: 26px;
    padding-inline: 9px;
    font-size: 0.68rem;
  }

  .blog-article .article-shell {
    display: block;
    width: 100%;
    max-width: none;
    padding: 46px 12px 58px;
  }

  .blog-article .article-sidebar {
    display: none;
  }

  .blog-article .article-sidebar strong,
  .blog-article .article-sidebar a {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .blog-article .article-body {
    width: 100%;
    max-width: none;
    color: rgba(45, 55, 72, 0.8);
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .blog-article .article-body > p {
    margin-bottom: 16px;
  }

  .blog-article .article-body section {
    margin-top: 44px;
    scroll-margin-top: 104px;
  }

  .blog-article .article-body h2,
  .blog-article .article-cta-inline h2 {
    max-width: none;
    font-family: inherit;
    font-size: clamp(1.54rem, 6.2vw, 1.92rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .blog-article .article-body h3 {
    font-size: 1rem;
    line-height: 1.18;
  }

  .blog-article .article-step {
    min-height: 26px;
    padding-inline: 10px;
    font-size: 0.66rem;
    letter-spacing: 0.05em;
  }

  .blog-article .article-callout,
  .blog-article .article-cta-inline {
    margin: 24px 0;
    padding: 18px;
  }

  .blog-article .article-callout p,
  .blog-article .article-cta-inline p,
  .blog-article .faq-list details p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .blog-article .article-table {
    gap: 10px;
    margin: 24px 0;
  }

  .blog-article .article-table div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .blog-article .article-table strong,
  .blog-article .article-table span,
  .blog-article .article-callout li {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .blog-article .faq-list {
    gap: 10px;
    margin-top: 20px;
  }

  .blog-article .faq-list summary {
    padding: 14px 16px;
    font-size: 0.86rem;
    line-height: 1.28;
  }

  .blog-article .faq-list details p {
    padding: 0 16px 16px;
  }

  .blog-article + .cta {
    padding: 54px 12px;
  }

  .blog-article + .cta > .container {
    width: 100%;
    max-width: none;
  }

  .blog-article + .cta h2,
  .blog-article + .cta .lead {
    max-width: none;
    text-align: left;
  }

  .blog-article + .cta h2 {
    font-family: inherit;
    font-size: clamp(1.68rem, 6.8vw, 2.04rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .blog-article + .cta .lead {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .blog-article + .cta .actions {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .blog-article + .cta .btn,
  .blog-article .article-cta-inline .btn {
    width: 100%;
    min-height: 42px;
    padding: 0.72rem 1rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .resources-page .resources-hero .image-frame {
    height: 220px;
  }

  .resources-page .resources-hero h1,
  .resources-page .section-heading h2,
  .resources-page .section h2,
  .resources-page .cta h2 {
    font-size: clamp(1.74rem, 7vw, 2.04rem);
  }

  .resources-page .product-card {
    grid-template-columns: 132px 1fr;
    gap: 10px;
  }

  .resources-page .product-card img {
    width: 132px;
    height: 164px;
  }

  .resources-page .product-card h3 {
    font-size: 0.9rem;
  }

  .resources-page .product-card p {
    font-size: 0.74rem;
  }

  .blog-article .article-hero h1 {
    font-size: clamp(1.68rem, 6.8vw, 2rem);
  }

  .blog-article .article-hero-image {
    height: 220px;
  }
}

/* Shop mobile polish */
@media (max-width: 760px) {
  .shop-page .shop-hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 104px 12px 28px;
    background:
      radial-gradient(circle at 82% 10%, rgba(240, 82, 156, 0.14), transparent 28%),
      linear-gradient(180deg, #fbfcfa 0%, #eef5f0 100%);
  }

  .shop-page .shop-hero-media {
    order: -1;
    width: calc(100% + 24px);
    min-height: 0;
    height: 270px;
    margin: 0 -12px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .shop-page .shop-hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.5) 78%, rgba(238, 245, 240, 0.86));
  }

  .shop-page .shop-hero-plan {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 46% 38%;
  }

  .shop-page .shop-hero-copy {
    width: 100%;
    min-height: 0;
    padding: 18px 0 0;
    text-align: left;
  }

  .shop-page .shop-hero-kicker {
    margin-bottom: 10px;
    font-size: 0.76rem;
    line-height: 1.2;
  }

  .shop-page .shop-hero h1 {
    max-width: 100%;
    display: block;
    font-family: inherit;
    font-size: clamp(1.66rem, 6.8vw, 2rem);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .shop-page .shop-hero h1 span {
    display: block;
    white-space: normal;
  }

  .shop-page .shop-hero p {
    max-width: none;
    margin-top: 10px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .shop-page .shop-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .shop-page .shop-hero-badges span {
    display: grid;
    justify-items: center;
    align-content: center;
    min-height: 58px;
    gap: 5px;
    padding: 8px 5px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    line-height: 1.12;
    text-align: center;
  }

  .shop-page .shop-hero-badges svg {
    width: 22px;
    height: 22px;
  }

  .shop-page .shop-showcase,
  .shop-page .shop-trust-strip,
  .shop-page .shop-included-strip,
  .shop-page .shop-bottom-cta {
    width: 100%;
    max-width: none;
  }

  .shop-page .shop-showcase {
    gap: 16px;
    padding: 36px 12px;
    border: 0;
    background:
      radial-gradient(circle at 10% 8%, rgba(74, 222, 128, 0.1), transparent 28%),
      #fff;
  }

  .shop-page .shop-product-panel,
  .shop-page .shop-plan-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 14px;
    border: 1px solid rgba(13, 54, 92, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(8, 37, 66, 0.08);
  }

  .shop-page .shop-product-panel:last-child {
    border-bottom: 1px solid rgba(13, 54, 92, 0.1);
  }

  .shop-page .shop-product-image,
  .shop-page .shop-plan-cover {
    width: 100%;
    border-radius: 8px;
  }

  .shop-page .shop-product-image img,
  .shop-page .shop-plan-cover img,
  .shop-page .shop-bottle-panel .shop-product-image img,
  .shop-page .shop-plan-panel .shop-plan-cover img {
    width: 100%;
    height: 268px;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
  }

  .shop-page .shop-plan-panel .shop-plan-cover img {
    height: 292px;
    object-fit: contain;
    background: #fff;
  }

  .shop-page .shop-product-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .shop-page .shop-product-thumbs button {
    width: 100%;
    height: 58px;
    min-width: 0;
    border-radius: 8px;
  }

  .shop-page .shop-product-thumbs img {
    width: 100%;
    height: 58px;
    min-height: 0;
    object-fit: cover;
  }

  .shop-page .shop-product-copy {
    padding-top: 2px;
  }

  .shop-page .shop-product-copy .eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .shop-page .shop-product-copy h2 {
    max-width: none;
    font-family: inherit;
    font-size: clamp(1.22rem, 5.2vw, 1.52rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .shop-page .shop-price {
    gap: 9px;
    margin: 10px 0 10px;
  }

  .shop-page .shop-price del {
    font-size: 0.82rem;
  }

  .shop-page .shop-price strong {
    font-size: 1rem;
  }

  .shop-page .shop-price span {
    min-height: 26px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .shop-page .shop-rating-mini {
    gap: 7px;
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .shop-page .shop-option-group {
    gap: 8px;
    margin-top: 10px;
  }

  .shop-page .shop-option-group p,
  .shop-page .shop-buy-row p {
    font-size: 0.8rem;
  }

  .shop-page .shop-option {
    min-height: 34px;
    padding-inline: 13px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .shop-page .shop-buy-row {
    gap: 8px;
    margin-top: 10px;
  }

  .shop-page .quantity-stepper {
    grid-template-columns: 42px 52px 42px;
    height: 42px;
  }

  .shop-page .shop-cart-button,
  .shop-page .shop-pay-button {
    min-height: 40px;
    margin-top: 10px;
    border-radius: 8px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .shop-page .shop-cart-button svg {
    width: 20px;
    height: 20px;
  }

  .shop-page .shop-more-link {
    display: none;
  }

  .shop-page .shop-product-note {
    margin-top: 10px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .shop-page .shop-trust-strip,
  .shop-page .shop-included-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-inline: 0;
    margin-top: 0;
  }

  .shop-page .shop-trust-strip > div,
  .shop-page .shop-included-strip span {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    min-height: 64px;
    padding: 12px;
    border-right: 1px solid rgba(13, 54, 92, 0.08);
    border-bottom: 1px solid rgba(13, 54, 92, 0.08);
  }

  .shop-page .shop-trust-strip > div:nth-child(2n),
  .shop-page .shop-included-strip span:nth-child(2n) {
    border-right: 0;
  }

  .shop-page .shop-trust-strip svg,
  .shop-page .shop-included-strip svg {
    width: 24px;
    height: 24px;
  }

  .shop-page .shop-trust-strip strong,
  .shop-page .shop-trust-strip span,
  .shop-page .shop-included-strip span {
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .shop-page .shop-bottom-cta {
    gap: 10px;
    margin: 16px 0 54px;
    padding: 22px 12px;
    border-radius: 0;
  }

  .shop-page .shop-bottom-cta strong {
    font-family: inherit;
    font-size: 1.14rem;
    line-height: 1.12;
  }

  .shop-page .shop-bottom-cta span {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .shop-page .shop-bottom-cta .btn {
    width: 100%;
    min-height: 42px;
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .shop-page .shop-hero-media {
    height: 260px;
  }

  .shop-page .shop-product-image img,
  .shop-page .shop-bottle-panel .shop-product-image img {
    height: 252px;
  }

  .shop-page .shop-plan-panel .shop-plan-cover img {
    height: 274px;
  }

  .shop-page .shop-product-thumbs button,
  .shop-page .shop-product-thumbs img {
    height: 54px;
  }

  .shop-page .shop-product-copy h2 {
    font-size: 1.18rem;
  }
}

/* Product detail mobile polish */
@media (max-width: 760px) {
  .product-detail-page .product-detail-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 104px 12px 30px;
    background:
      radial-gradient(circle at 84% 6%, rgba(240, 82, 156, 0.1), transparent 28%),
      linear-gradient(180deg, #fbfcfa 0%, #f2f8f4 100%);
  }

  .product-detail-page .product-breadcrumb {
    width: 100%;
    margin: 0 0 12px;
    gap: 7px;
    color: rgba(13, 54, 92, 0.64);
    font-size: 0.68rem;
    line-height: 1.28;
  }

  .product-detail-page .product-detail-grid,
  .product-detail-page.clean-plan-page .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .product-detail-page .product-gallery,
  .product-detail-page .bottle-gallery,
  .product-detail-page .clean-plan-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .product-detail-page .product-gallery-main,
  .product-detail-page .bottle-gallery .product-gallery-main,
  .product-detail-page.clean-plan-page .product-gallery-main {
    order: 1;
    min-height: 0;
    height: 326px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(8, 37, 66, 0.08);
  }

  .product-detail-page.clean-plan-page .product-gallery-main {
    height: 344px;
  }

  .product-detail-page .product-gallery-main span {
    top: 10px;
    right: 10px;
    min-height: 26px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .product-detail-page .product-gallery-main img,
  .product-detail-page .bottle-gallery .product-gallery-main img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: cover;
    object-position: center 43%;
  }

  .product-detail-page.clean-plan-page .product-gallery-main img {
    height: 100%;
    padding: 12px;
    object-fit: contain;
    object-position: center;
  }

  .product-detail-page .product-gallery-main:hover,
  .product-detail-page .product-gallery-main:hover img {
    transform: none;
  }

  .product-detail-page .product-gallery-thumbs,
  .product-detail-page .bottle-gallery .product-gallery-thumbs,
  .product-detail-page .clean-plan-gallery .product-gallery-thumbs {
    order: 2;
    display: flex;
    gap: 8px;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px;
    scrollbar-width: thin;
  }

  .product-detail-page .product-gallery-thumbs button,
  .product-detail-page .bottle-gallery .product-gallery-thumbs button,
  .product-detail-page .clean-plan-gallery .product-gallery-thumbs button {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    min-width: 0;
    border-radius: 8px;
  }

  .product-detail-page .clean-plan-gallery .product-gallery-thumbs button {
    flex-basis: 56px;
    width: 56px;
    height: 68px;
  }

  .product-detail-page .product-gallery-thumbs img,
  .product-detail-page .bottle-gallery .product-gallery-thumbs img,
  .product-detail-page .clean-plan-gallery .product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    object-fit: cover;
  }

  .product-detail-page .product-purchase {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(13, 54, 92, 0.1);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(8, 37, 66, 0.07);
  }

  .product-detail-page .product-purchase .eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .product-detail-page .product-purchase h1,
  .product-detail-page.clean-plan-page .product-purchase h1 {
    max-width: none;
    font-family: inherit;
    font-size: clamp(1.34rem, 6vw, 1.72rem);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .product-detail-page .product-purchase > p {
    max-width: none;
    margin: 10px 0 2px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .product-detail-page .shop-price {
    gap: 9px;
    margin: 10px 0 10px;
  }

  .product-detail-page .shop-price del {
    font-size: 0.82rem;
  }

  .product-detail-page .shop-price strong {
    font-size: 1rem;
  }

  .product-detail-page .shop-price span {
    min-height: 26px;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .product-detail-page .shop-option-group {
    gap: 8px;
    margin-top: 10px;
  }

  .product-detail-page .shop-option-group p,
  .product-detail-page .shop-buy-row p {
    font-size: 0.8rem;
  }

  .product-detail-page .shop-option {
    min-height: 34px;
    padding-inline: 13px;
    border-radius: 8px;
    font-size: 0.8rem;
  }

  .product-detail-page .shop-buy-row {
    gap: 8px;
    margin-top: 10px;
  }

  .product-detail-page .quantity-stepper {
    grid-template-columns: 42px 52px 42px;
    height: 42px;
  }

  .product-detail-page .shop-cart-button,
  .product-detail-page .shop-pay-button {
    min-height: 40px;
    margin-top: 10px;
    border-radius: 8px;
    gap: 8px;
    font-size: 0.82rem;
  }

  .product-detail-page .shop-cart-button svg {
    width: 20px;
    height: 20px;
  }

  .product-detail-page .shop-more-link {
    align-self: start;
    margin-top: 8px;
    font-size: 0.74rem;
  }

  .product-detail-page .product-trust,
  .product-detail-page .clean-plan-inclusions,
  .product-detail-page .product-detail-section,
  .product-detail-page .perfect-for-section,
  .product-detail-page .product-reviews-section {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .product-detail-page .product-trust,
  .product-detail-page .clean-plan-inclusions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 0;
    border-inline: 0;
  }

  .product-detail-page .product-trust > div,
  .product-detail-page .clean-plan-inclusions span {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    min-height: 62px;
    padding: 12px;
    border-right: 1px solid rgba(13, 54, 92, 0.08);
    border-bottom: 1px solid rgba(13, 54, 92, 0.08);
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .product-detail-page .product-trust > div:nth-child(2n),
  .product-detail-page .clean-plan-inclusions span:nth-child(2n) {
    border-right: 0;
  }

  .product-detail-page .product-trust svg,
  .product-detail-page .clean-plan-inclusions svg {
    width: 24px;
    height: 24px;
  }

  .product-detail-page .product-detail-section,
  .product-detail-page .perfect-for-section,
  .product-detail-page.clean-plan-page .product-detail-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 34px 12px;
    border-top: 0;
  }

  .product-detail-page .product-detail-copy,
  .product-detail-page .perfect-for-section > div,
  .product-detail-page .hydration-note,
  .product-detail-page .product-detail-photo {
    width: 100%;
  }

  .product-detail-page .product-detail-copy h2,
  .product-detail-page .perfect-for-section h2,
  .product-detail-page .review-panel-heading h2 {
    max-width: none;
    font-family: inherit;
    font-size: clamp(1.42rem, 6vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-align: left;
  }

  .product-detail-page .product-spec-list {
    gap: 10px;
    margin-top: 16px;
  }

  .product-detail-page .product-spec-list li {
    padding-left: 24px;
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .product-detail-page .product-spec-list li::before {
    top: 4px;
    width: 12px;
    height: 12px;
  }

  .product-detail-page .package-card,
  .product-detail-page .clean-detail-block,
  .product-detail-page .clean-plan-closer,
  .product-detail-page .hydration-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
  }

  .product-detail-page .package-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-detail-page .package-card span {
    gap: 10px;
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .product-detail-page .package-card svg {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .product-detail-page .product-detail-photo img {
    min-height: 0;
    height: 280px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 42%;
  }

  .product-detail-page .perfect-for-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .product-detail-page .perfect-for-grid span {
    min-height: 86px;
    padding: 12px 8px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 8px;
    background: #fff;
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .product-detail-page .perfect-for-grid svg,
  .product-detail-page .hydration-note svg {
    width: 34px;
    height: 34px;
    padding: 8px;
  }

  .product-detail-page .hydration-note h3,
  .product-detail-page .clean-detail-block h3,
  .product-detail-page .clean-plan-closer h3 {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.18;
  }

  .product-detail-page .hydration-note p,
  .product-detail-page .perfect-for-section p,
  .product-detail-page .clean-plan-story,
  .product-detail-page .clean-detail-block p,
  .product-detail-page .clean-plan-closer p,
  .product-detail-page .clean-detail-steps {
    color: rgba(13, 54, 92, 0.72);
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .product-detail-page .hydration-note span {
    margin-top: 16px;
    font-size: 0.82rem;
  }

  .product-detail-page .product-reviews-section {
    margin-top: 0;
    padding: 28px 12px 40px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .product-detail-page .review-panel-heading,
  .product-detail-page .review-content-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 18px;
  }

  .product-detail-page .review-panel-heading p,
  .product-detail-page .review-card p {
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .product-detail-page .review-score-card,
  .product-detail-page .review-form,
  .product-detail-page .review-breakdown,
  .product-detail-page .review-card {
    padding: 16px;
    border-radius: 8px;
  }

  .product-detail-page .review-form {
    gap: 12px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .product-detail-page .review-form h3 {
    font-family: inherit;
    font-size: 1.08rem;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .product-detail-page .review-form label {
    gap: 6px;
    font-family: inherit;
    font-size: 0.76rem;
    line-height: 1.24;
    font-weight: 750;
  }

  .product-detail-page .review-form input,
  .product-detail-page .review-form textarea {
    font-family: inherit;
    font-size: 0.82rem;
    line-height: 1.42;
    font-weight: 550;
  }

  .product-detail-page .review-form input {
    min-height: 40px;
    padding-inline: 12px;
  }

  .product-detail-page .review-form textarea {
    min-height: 122px;
    padding: 11px 12px;
  }

  .product-detail-page .review-form input::placeholder,
  .product-detail-page .review-form textarea::placeholder {
    color: rgba(13, 54, 92, 0.44);
    font-family: inherit;
    font-size: 0.82rem;
    line-height: 1.42;
    font-weight: 550;
  }

  .product-detail-page .review-rating-input {
    gap: 7px;
  }

  .product-detail-page .review-rating-input button {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 1.12rem;
    font-weight: 650;
  }

  .product-detail-page .review-submit {
    min-height: 42px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 750;
  }

  .product-detail-page .review-score-card {
    justify-items: start;
  }

  .product-detail-page .review-score-card strong {
    font-size: 2rem;
  }
}

@media (max-width: 380px) {
  .product-detail-page .product-gallery-main,
  .product-detail-page .bottle-gallery .product-gallery-main {
    height: 302px;
  }

  .product-detail-page.clean-plan-page .product-gallery-main {
    height: 326px;
  }

  .product-detail-page .product-purchase h1,
  .product-detail-page.clean-plan-page .product-purchase h1 {
    font-size: 1.28rem;
  }
}

/* Events collaborations: About-style stacked rows */
.collab-page .collab-ways-section {
  background:
    radial-gradient(circle at 84% 12%, rgba(74, 222, 128, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbf6 0%, #eef2f7 100%);
}

.collab-page .collab-ways-section > .container {
  width: 100%;
  max-width: var(--max);
}

.collab-page .collab-ways-section .eyebrow {
  display: inline-flex;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.collab-page .collab-ways-section .collab-center-title {
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.05;
  text-align: left;
  white-space: normal;
}

.collab-page .collab-ways {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 100%;
  margin: 38px 0 0;
}

.collab-page .collab-ways article {
  min-height: 0;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 22px;
  row-gap: 2px;
  padding: 18px 22px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.7)),
    #fff;
  box-shadow: 0 18px 42px rgba(8, 37, 66, 0.06);
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.collab-page .collab-ways article::before {
  content: none;
}

.collab-page .collab-ways article::after {
  right: 18px;
  top: 50%;
  bottom: auto;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(74, 222, 128, 0.12);
  border-radius: 50%;
  background: transparent;
  transform: translateY(-50%);
}

.collab-page .collab-ways article:hover {
  z-index: 2;
  border-color: rgba(74, 222, 128, 0.38);
  box-shadow: 0 22px 52px rgba(13, 54, 92, 0.13);
  transform: scale(1.025);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(238, 242, 247, 0.92)),
    #fff;
}

.collab-page .collab-ways article:hover::after {
  width: 54px;
}

.collab-page .collab-way-mark {
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 104px;
  height: 54px;
  padding: 0 14px;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(74, 222, 128, 0.11);
  font-weight: 850;
}

.collab-page .collab-way-mark svg {
  width: 21px;
  height: 21px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
}

.collab-page .collab-way-mark span {
  min-width: 0;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  box-shadow: none;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.collab-page .collab-way-number {
  grid-column: 3;
  grid-row: 1 / 3;
  position: relative;
  z-index: 1;
  justify-self: end;
  align-self: center;
  min-width: 54px;
  height: 54px;
  padding: 0 12px;
  border: 0;
  border-radius: 50%;
  color: var(--green-deep);
  background: rgba(74, 222, 128, 0.12);
  box-shadow: none;
  font-size: 0.86rem;
  white-space: nowrap;
}

.collab-page .collab-ways h3 {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
  line-height: 1.16;
}

.collab-page .collab-ways p {
  grid-column: 2;
  grid-row: 2;
  max-width: 620px;
  margin: 2px 0 0;
  padding-bottom: 0;
  color: rgba(45, 55, 72, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .collab-page .collab-ways-section .collab-center-title {
    max-width: 18rem;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
  }

  .collab-page .collab-ways article {
    grid-template-columns: 1fr auto;
    column-gap: 12px;
    padding: 16px 14px;
  }

  .collab-page .collab-way-mark {
    grid-column: 1 / 3;
    grid-row: 1;
    justify-self: start;
    height: 48px;
  }

  .collab-page .collab-way-number {
    grid-column: 2;
    grid-row: 2 / 4;
    width: 48px;
    min-width: 48px;
    height: 48px;
    font-size: 0.78rem;
  }

  .collab-page .collab-ways h3 {
    grid-column: 1;
    grid-row: 2;
    margin-top: 14px;
    font-size: 1rem;
  }

  .collab-page .collab-ways p {
    grid-column: 1;
    grid-row: 3;
    max-width: none;
    margin-top: 6px;
    font-size: 0.82rem;
  }
}

/* Corporate CTA final lockup: keep the title compact and exactly two rows. */
.corporate-page .corp-cta h2 {
  max-width: 980px !important;
  font-size: clamp(1.75rem, 2.2vw, 2.25rem) !important;
  line-height: 1.06 !important;
}

.corporate-page .corp-cta h2 > span {
  display: block !important;
  white-space: nowrap !important;
}

/* Fitness goals: reference-style radial goal map */
.fitness-page .fit-goals-section {
  background: #fff;
  text-align: center;
}

.fitness-page .fit-goals-section .centered-eyebrow {
  justify-content: center;
}

.fitness-page .fit-goals-title {
  max-width: none;
  margin-inline: auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.6vw, 4.55rem);
  line-height: 1.02;
  text-align: center;
}

.fitness-page .fit-goals-title em {
  color: #078a46;
}

.fitness-page .fit-goals-map {
  grid-template-columns: minmax(290px, 0.86fr) minmax(360px, 0.95fr) minmax(290px, 0.86fr);
  gap: clamp(16px, 2.5vw, 34px);
  max-width: 1120px;
  margin-top: 18px;
}

.fitness-page .fit-goal-core {
  min-height: 570px;
}

.fitness-page .fit-goal-core::before {
  width: min(430px, 88vw);
  border: 1px solid rgba(13, 54, 92, 0.08);
  background:
    radial-gradient(circle, rgba(227, 238, 231, 0.82) 0 48%, rgba(255, 255, 255, 0.82) 49% 63%, transparent 64%),
    radial-gradient(circle, rgba(13, 54, 92, 0.04) 0 67%, transparent 68%);
  animation: none;
}

.fitness-page .fit-goal-core::after {
  width: min(494px, 96vw);
  border: 1px solid rgba(7, 138, 70, 0.2);
  animation: none;
}

.fitness-page .fit-goal-core img {
  max-width: min(350px, 92%);
  max-height: 548px;
  filter: drop-shadow(0 20px 24px rgba(8, 37, 66, 0.12));
}

.fitness-page .fit-goal-list {
  gap: 34px;
}

.fitness-page .fit-goal-list span,
.fitness-page .fit-goal-bottom {
  display: grid;
  grid-template-columns: 86px minmax(0, max-content) 92px;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 850;
  line-height: 1.2;
}

.fitness-page .fit-goal-list.left span {
  grid-template-columns: minmax(0, max-content) 92px 86px;
}

.fitness-page .fit-goal-list.right span {
  grid-template-columns: 92px 86px minmax(0, max-content);
}

.fitness-page .fit-goal-list i,
.fitness-page .fit-goal-bottom i {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  color: #078a46;
  background: #fff;
  box-shadow: 0 8px 24px rgba(8, 37, 66, 0.1), inset 0 0 0 1px rgba(13, 54, 92, 0.07);
}

.fitness-page .fit-goal-list i svg,
.fitness-page .fit-goal-bottom i svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fitness-page .fit-goal-list b,
.fitness-page .fit-goal-bottom b {
  font: inherit;
  white-space: nowrap;
}

.fitness-page .fit-goal-list.left span i {
  grid-column: 3;
}

.fitness-page .fit-goal-list.left span b {
  grid-column: 1;
  justify-self: end;
}

.fitness-page .fit-goal-list.right span i {
  grid-column: 2;
}

.fitness-page .fit-goal-list.right span b {
  grid-column: 3;
  justify-self: start;
}

.fitness-page .fit-goal-list span::before,
.fitness-page .fit-goal-list span::after,
.fitness-page .fit-goal-bottom::before,
.fitness-page .fit-goal-bottom::after {
  content: "";
  display: block;
  width: 92px;
  height: 22px;
  flex: none;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  animation: none;
}

.fitness-page .fit-goal-list.left span::after {
  grid-column: 2;
  background:
    radial-gradient(circle at 100% 50%, #078a46 0 4px, transparent 5px),
    linear-gradient(#078a46, #078a46),
    linear-gradient(45deg, transparent calc(50% - 0.5px), #078a46 calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-position: right center, left center, right center;
  background-size: 9px 9px, 58px 1px, 35px 22px;
  background-repeat: no-repeat;
}

.fitness-page .fit-goal-list.left span::before {
  display: none;
}

.fitness-page .fit-goal-list.right span::before {
  grid-column: 1;
  order: 0;
  background:
    radial-gradient(circle at 0 50%, #078a46 0 4px, transparent 5px),
    linear-gradient(#078a46, #078a46),
    linear-gradient(-45deg, transparent calc(50% - 0.5px), #078a46 calc(50% - 0.5px) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  background-position: left center, right center, left center;
  background-size: 9px 9px, 58px 1px, 35px 22px;
  background-repeat: no-repeat;
}

.fitness-page .fit-goal-list.right span::after {
  display: none;
}

.fitness-page .fit-goal-bottom {
  bottom: -2px;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 7px;
}

.fitness-page .fit-goal-bottom::after {
  order: -1;
  width: 2px;
  height: 42px;
  background:
    radial-gradient(circle at 50% 0, #078a46 0 4px, transparent 5px),
    linear-gradient(180deg, #078a46 0 42px);
}

.fitness-page .fit-goal-bottom::before {
  display: none;
}

.fitness-page .fit-goal-list.left span:hover,
.fitness-page .fit-goal-list.right span:hover,
.fitness-page .fit-goal-bottom:hover {
  color: #078a46;
  transform: translateY(-3px);
}

@media (max-width: 760px) {
  .fitness-page .fit-goals-title {
    max-width: 20rem;
    font-family: inherit;
    font-size: clamp(1.86rem, 7.4vw, 2.28rem);
    line-height: 1.05;
  }

  .fitness-page .fit-goals-map {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .fitness-page .fit-goal-core {
    order: -1;
    min-height: 360px;
  }

  .fitness-page .fit-goal-core img {
    max-height: 342px;
  }

  .fitness-page .fit-goal-list,
  .fitness-page .fit-goal-list.left,
  .fitness-page .fit-goal-list.right {
    display: grid;
    gap: 12px;
    text-align: left;
    justify-items: stretch;
  }

  .fitness-page .fit-goal-list span,
  .fitness-page .fit-goal-list.left span,
  .fitness-page .fit-goal-list.right span,
  .fitness-page .fit-goal-bottom {
    position: relative;
    inset: auto;
    transform: none;
    display: grid;
    grid-template-columns: 54px 1fr;
    min-height: 58px;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(13, 54, 92, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(8, 37, 66, 0.06);
    font-size: 0.92rem;
  }

  .fitness-page .fit-goal-list span::before,
  .fitness-page .fit-goal-list span::after,
  .fitness-page .fit-goal-bottom::before,
  .fitness-page .fit-goal-bottom::after {
    display: none;
  }

  .fitness-page .fit-goal-list i,
  .fitness-page .fit-goal-list.left span i,
  .fitness-page .fit-goal-list.right span i,
  .fitness-page .fit-goal-bottom i {
    grid-column: 1;
    width: 46px;
    height: 46px;
  }

  .fitness-page .fit-goal-list i svg,
  .fitness-page .fit-goal-bottom i svg {
    width: 25px;
    height: 25px;
  }

  .fitness-page .fit-goal-list b,
  .fitness-page .fit-goal-list.left span b,
  .fitness-page .fit-goal-list.right span b,
  .fitness-page .fit-goal-bottom b {
    grid-column: 2;
    justify-self: start;
  }
}

/* Contact hero final fit: keep the generated consultation image homepage-sized. */
.contact-page .page-hero.navy.contact-hero {
  min-height: 100svh;
  padding: 0 24px;
}

.contact-page .contact-hero .contact-hero-grid {
  display: block;
  min-height: 100svh;
}

.contact-page .contact-hero .contact-hero-copy {
  min-height: 100svh;
}

.contact-page .contact-hero .contact-title-line {
  display: block;
  white-space: nowrap;
}

.contact-page .contact-hero .contact-hero-actions {
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: fit-content;
}

.contact-page .contact-hero .contact-hero-actions .btn {
  flex: 0 0 auto;
  width: auto;
  min-height: 50px;
  padding-inline: 22px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.contact-page .contact-hero .contact-hero-actions .btn::after {
  content: none;
}

.contact-page .contact-hero .contact-hero-image {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  width: auto;
  height: 100%;
  min-height: 100svh;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.contact-page .contact-hero .contact-hero-image img,
.contact-page .contact-hero .contact-hero-image:hover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 74% center;
  border-radius: 0;
  transform: none;
}

@media (max-width: 760px) {
  .contact-page .page-hero.navy.contact-hero {
    padding: 0;
  }

  .contact-page .contact-hero .contact-hero-image {
    inset: 0;
  }

  .contact-page .contact-hero .contact-hero-copy {
    width: min(68vw, 250px);
  }

  .contact-page .contact-hero .contact-hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    width: min(68vw, 250px);
  }

  .contact-page .contact-hero .contact-hero-actions .btn {
    flex: 0 0 auto;
    width: auto;
    min-height: 34px;
    padding-inline: 12px;
    border-radius: 7px;
    font-size: 0.68rem;
  }

  .contact-page .contact-hero .contact-hero-image img,
  .contact-page .contact-hero .contact-hero-image:hover img {
    object-position: 84% top;
    transform: scale(1.04);
    transform-origin: 84% top;
  }
}

/* Contact section final polish: balanced left cards and centered WhatsApp CTA. */
.contact-page .contact-options-grid .contact-method > span:last-child {
  display: grid;
  place-items: center;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  min-width: 78px;
  max-width: 78px;
  padding: 0;
  border-radius: 50%;
  line-height: 1.18;
  text-align: center;
}

/* Resources hero: larger homepage-style editorial image. */
.resources-page .resources-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: stretch;
  padding: 0 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(74, 222, 128, 0.16), transparent 22%),
    linear-gradient(135deg, #f8fafc 0%, #eef5f0 58%, #fff 100%);
}

.resources-page .resources-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.92) 34%, rgba(248, 250, 252, 0.44) 52%, rgba(248, 250, 252, 0.08) 68%, rgba(248, 250, 252, 0) 100%),
    linear-gradient(0deg, rgba(248, 250, 252, 0.28), rgba(248, 250, 252, 0) 50%);
}

.resources-page .resources-hero .page-hero-grid {
  display: block;
  width: 100%;
  min-height: 100svh;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: auto;
}

.resources-page .resources-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100svh;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 56px;
}

.resources-page .resources-hero h1 {
  max-width: 640px;
  font-size: clamp(2.75rem, 4.9vw, 5.1rem);
  line-height: 0.94;
}

.resources-page .resources-hero .lead {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
}

.resources-page .resources-hero .resources-hero-image {
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: 32%;
  z-index: 0;
  width: auto;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.resources-page .resources-hero .resources-hero-image img,
.resources-page .resources-hero .resources-hero-image:hover img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 68% center;
  border-radius: 0;
  transform: none;
  filter: contrast(1.04) saturate(1.04) brightness(1.02);
}

@media (max-width: 980px) {
  .resources-page .resources-hero h1 {
    max-width: 620px;
    font-size: clamp(2.35rem, 6.8vw, 4.25rem);
  }

  .resources-page .resources-hero .resources-hero-image img {
    object-position: 70% center;
  }
}

@media (max-width: 760px) {
  .resources-page .resources-hero {
    min-height: auto;
    display: block;
    padding: 104px 12px 42px;
  }

  .resources-page .resources-hero::after {
    display: none;
  }

  .resources-page .resources-hero .page-hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 22px;
    max-width: none;
  }

  .resources-page .resources-hero-copy {
    min-height: auto;
    max-width: none;
    padding: 0;
  }

  .resources-page .resources-hero .resources-hero-image {
    position: relative;
    order: -1;
    inset: auto;
    width: calc(100% + 24px);
    height: 310px;
    min-height: 0;
    margin: 0 -12px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 70px rgba(8, 37, 66, 0.12);
  }

  .resources-page .resources-hero .resources-hero-image img,
  .resources-page .resources-hero .resources-hero-image:hover img {
    object-position: 50% 52%;
  }

  .resources-page .resources-hero h1 {
    max-width: 19rem;
    font-size: clamp(1.9rem, 7.7vw, 2.32rem);
    line-height: 1.04;
  }

  .resources-page .resources-hero .lead {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 380px) {
  .resources-page .resources-hero .resources-hero-image {
    height: 280px;
  }
}

/* Event sponsor package modal */
.sponsor-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.sponsor-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.sponsor-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 37, 66, 0.68);
  backdrop-filter: blur(8px);
}

.sponsor-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 72px));
  max-height: calc(100svh - 56px);
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 36px);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.28);
}

.sponsor-modal-panel h2 {
  max-width: none;
  margin: 8px 0 22px;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
  line-height: 1.02;
}

.sponsor-modal-panel h2 span {
  display: block;
  white-space: nowrap;
}

.sponsor-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(13, 54, 92, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.sponsor-modal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-modal .sponsor-package {
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 26px);
}

.sponsor-modal .sponsor-package span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.sponsor-modal .sponsor-package h3 {
  margin-top: 12px;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
  line-height: 1.05;
}

.sponsor-modal .sponsor-package p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.42;
}

.sponsor-modal .sponsor-package ul {
  flex: 1;
  min-height: 0;
  gap: 6px;
  margin: 16px 0 18px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.sponsor-modal .sponsor-package .btn {
  min-height: 44px;
}

body.sponsor-modal-open {
  overflow: hidden;
}

@media (max-width: 920px) {
  .sponsor-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sponsor-modal {
    padding: 12px;
  }

  .sponsor-modal-panel {
    width: calc(100vw - 24px);
    max-height: 88svh;
    overflow-y: auto;
    padding: 22px 16px;
  }

  .sponsor-modal-panel h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  .sponsor-modal-panel h2 span {
    white-space: normal;
  }

  .sponsor-modal-close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .sponsor-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* ELEVA checkout */
.checkout-page {
  background: #f6f7f2;
}

.checkout-hero {
  padding: 98px 24px 20px;
  background:
    linear-gradient(135deg, rgba(8, 37, 66, 0.96), rgba(9, 54, 88, 0.9)),
    url("../images/event/eleva-hero.png");
  background-size: cover;
  background-position: center 34%;
  color: #fff;
}

.checkout-hero-copy {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.checkout-back-link {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-hero h1 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(1.75rem, 2.9vw, 3rem);
  line-height: 1;
}

.checkout-hero p {
  max-width: 520px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.42;
}

.checkout-section {
  padding: 18px 24px 64px;
}

.checkout-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(306px, 0.38fr);
  gap: 14px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 10px;
}

.checkout-panel,
.checkout-summary {
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 46px rgba(5, 12, 19, 0.06);
}

.checkout-panel {
  padding: clamp(14px, 1.6vw, 18px);
}

.checkout-step {
  display: block;
  margin-bottom: 9px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-field {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 850;
}

.checkout-field + .checkout-field,
.checkout-fields-grid + .checkout-field {
  margin-top: 9px;
}

.checkout-field input,
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 650;
}

.checkout-field textarea {
  min-height: 64px;
  resize: vertical;
}

.checkout-quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  color: var(--navy);
  font-weight: 850;
}

.checkout-stepper {
  background: #f6f7f2;
}

.checkout-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checkout-pay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-pay-card {
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.checkout-pay-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 54, 92, 0.24);
  box-shadow: 0 12px 32px rgba(5, 12, 19, 0.09);
}

.checkout-pay-card span {
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-pay-card strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.checkout-pay-card.stripe {
  background: linear-gradient(135deg, #fff, #eef5ff);
}

.checkout-pay-card.paypal {
  background: linear-gradient(135deg, #fff, #fff7df);
}

.checkout-status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.checkout-summary {
  position: sticky;
  top: 88px;
  padding: clamp(16px, 1.7vw, 20px);
}

body.checkout-page .checkout-summary h2 {
  margin-top: 6px;
  color: var(--navy);
  max-width: 100%;
  font-size: clamp(1.16rem, 1.35vw, 1.42rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
  word-break: normal;
}

.checkout-summary p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 13px;
  padding: 11px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.checkout-total-row span {
  color: var(--muted);
  font-weight: 750;
}

.checkout-total-row strong {
  color: var(--green-deep);
  font-size: 1.08rem;
  text-align: right;
}

.checkout-inclusions {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.checkout-inclusions li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.35;
}

.checkout-inclusions li::before {
  content: "\2713";
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1px solid var(--green-deep);
  border-radius: 50%;
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 850;
}

.checkout-secure-note {
  display: grid;
  gap: 5px;
  margin-top: 13px;
  padding: 12px;
  border-radius: 8px;
  background: #f6f7f2;
}

.checkout-secure-note strong {
  color: var(--navy);
}

.checkout-secure-note span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .checkout-hero {
    padding: 90px 18px 22px;
  }

  .checkout-section {
    padding: 18px 18px 64px;
  }

  .checkout-fields-grid,
  .checkout-pay-grid {
    grid-template-columns: 1fr;
  }

  .checkout-quantity {
    display: grid;
  }
}
