:root {
  --cream: #fcf5f0;
  --ink: #1b3644;
  --blue: #0885de;
  --blue-deep: #2d75c8;
  --coral: #f2562c;
  --coral-hot: #ff5938;
  --green: #2fa875;
  --yellow: #fdbf2e;
  --pink: #f39ac5;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(27, 54, 68, 0.13);
  --shadow-strong: 0 32px 80px rgba(27, 54, 68, 0.22);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.noscript {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 1.25rem;
}

.page {
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(100% - 2rem, 80rem);
  margin: 0 auto;
  min-width: 0;
}

.section {
  padding: 5rem 0;
  scroll-margin-top: 5.5rem;
}

.section-tight {
  padding: 4rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 1.75rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 133, 222, 0.1);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.display,
.section-title,
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.section-copy {
  margin: 0;
  color: rgba(27, 54, 68, 0.82);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(242, 86, 44, 0.23);
}

.btn-primary:hover {
  background: #d9441c;
  box-shadow: 0 18px 42px rgba(242, 86, 44, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(8, 133, 222, 0.22);
  box-shadow: 0 12px 28px rgba(27, 54, 68, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(8, 133, 222, 0.85);
  background: var(--white);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--coral);
  font-weight: 650;
}

.link-arrow:hover {
  color: var(--ink);
}

.link-arrow span:last-child {
  transition: transform 180ms ease;
}

.link-arrow:hover span:last-child {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(252, 245, 240, 0.96);
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: transparent;
  transition: background 260ms ease;
}

body[data-active-section="about"] .site-header::after,
body[data-active-section="therapy"] .site-header::after,
body[data-active-section="process"] .site-header::after,
body[data-active-section="contact"] .site-header::after {
  background: var(--blue);
}

body[data-active-section="process"] .site-header::after {
  background: var(--ink);
}

body[data-active-section="contact"] .site-header::after {
  background: var(--coral);
}

.nav-shell {
  width: min(100% - 2rem, 92rem);
  height: 5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand:hover img {
  transform: scale(1.05);
}

.brand-text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.brand-title {
  color: var(--ink);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.brand-subtitle {
  color: rgba(27, 54, 68, 0.68);
  font-size: 0.75rem;
  font-weight: 700;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.6rem);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 0.75rem 0.1rem;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--coral);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 0.42rem;
  background: var(--coral);
  clip-path: polygon(0 55%, 18% 18%, 46% 62%, 72% 28%, 100% 44%, 100% 88%, 0 100%);
  opacity: 0;
  transform: scaleX(0.9);
  transform-origin: center;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: -1;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  min-height: 2.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 54, 68, 0.28);
  background: transparent;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-toggle .is-current {
  color: var(--coral-hot);
}

.lang-toggle .is-muted {
  color: rgba(27, 54, 68, 0.45);
}

.lang-toggle:hover {
  border-color: var(--ink);
  background: rgba(27, 54, 68, 0.05);
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.icon-btn:hover {
  background: rgba(27, 54, 68, 0.07);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--blue);
  color: var(--white);
  overflow-y: auto;
}

.mobile-menu-head,
.mobile-menu-foot {
  border-color: rgba(255, 255, 255, 0.22);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.mobile-brand {
  color: var(--white);
}

.mobile-brand img {
  width: 2.55rem;
  height: 2.55rem;
  padding: 0.25rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.95);
}

.mobile-brand .brand-title,
.mobile-brand .brand-subtitle {
  color: var(--white);
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu .lang-toggle {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.mobile-menu .icon-btn {
  color: var(--white);
}

.mobile-menu .icon-btn:hover,
.mobile-menu .lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu nav {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: 3rem 0;
  text-align: center;
}

.mobile-menu .nav-link {
  color: var(--white);
  font-size: clamp(1.65rem, 7vw, 2.35rem);
  font-weight: 700;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.is-active {
  color: var(--white);
}

.mobile-menu-foot {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  background: var(--cream);
  overflow: clip;
}

.hero-wave {
  position: absolute;
  bottom: -0.25rem;
  left: -8vw;
  z-index: 0;
  display: block;
  width: 116vw;
  max-width: none;
  min-width: calc(100% + 8rem);
  height: clamp(3.2rem, 5.4vw, 5.25rem);
  color: var(--blue);
  pointer-events: none;
  transform: translate3d(var(--hero-wave-shift-x, 0px), var(--hero-wave-shift-y, 0px), 0)
    scaleY(var(--hero-wave-scale-y, 1));
  transform-origin: center bottom;
  transition: transform 55ms linear;
  will-change: transform;
}

.hero-wave-fill {
  fill: currentColor;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  min-width: 0;
}

.hero .container {
  width: min(100% - 2rem, 92rem);
}

.hero-copy {
  display: grid;
  gap: 1.55rem;
  min-width: 0;
}

.display {
  max-width: 47rem;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.35rem, 6.4vw, 4.7rem);
  line-height: 1.02;
  font-weight: 700;
  text-wrap: balance;
}

.hero-title-line {
  display: inline;
}

.headline-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.headline-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.03em;
  height: 0.19em;
  background: var(--coral);
  clip-path: polygon(0 58%, 18% 20%, 48% 66%, 73% 25%, 100% 45%, 100% 86%, 0 100%);
  z-index: -1;
  opacity: 0.9;
  transform: scaleX(0);
  transform-origin: left center;
  animation: underline-draw 760ms cubic-bezier(0.16, 1, 0.3, 1) 360ms forwards;
}

.hero-description {
  max-width: 41rem;
  margin: 0;
  color: #000;
  font-size: 1rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
}

.scroll-link {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin-top: clamp(1.4rem, 4vw, 3.4rem);
  color: var(--blue);
  font-size: clamp(0.98rem, 1.6vw, 1.16rem);
  font-weight: 700;
  text-transform: uppercase;
  animation: floaty 2.2s ease-in-out infinite;
}

.scroll-link img {
  width: clamp(2rem, 3.4vw, 2.75rem);
  height: clamp(2rem, 3.4vw, 2.75rem);
  object-fit: contain;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 24rem;
}

.hero-art img {
  width: min(100%, 39rem);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(27, 54, 68, 0.16));
  animation: floaty-soft 5s ease-in-out infinite;
}

.benefits {
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.benefit-card {
  position: relative;
  min-height: 15.5rem;
  display: grid;
  place-items: center;
  gap: 0.8rem;
  padding: 2.6rem 1.8rem;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: transform 280ms ease;
}

.benefit-card:hover::after {
  transform: scale(1.55);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.8rem;
}

.benefit-card h3 {
  margin: 0;
  font-size: 1.35rem;
  color: var(--white);
}

.benefit-card p {
  max-width: 18rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.65;
}

.about {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    radial-gradient(circle at 15% 48%, var(--pink) 0 9rem, transparent 9.1rem),
    radial-gradient(circle at 91% 50%, var(--cream) 0 3rem, transparent 3.1rem),
    linear-gradient(var(--green), var(--green));
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 27rem);
  margin: 0 auto;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -0.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, var(--coral), var(--yellow));
  filter: blur(9px);
  opacity: 0.78;
}

.portrait-inner {
  position: relative;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.5rem;
  background: var(--cream);
  box-shadow: var(--shadow-strong);
}

.portrait-photo {
  position: relative;
  height: 26rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(47, 168, 117, 0.12);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.portrait-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.5rem 1rem 1rem;
  color: var(--white);
  background: linear-gradient(to top, rgba(27, 54, 68, 0.85), transparent);
}

.portrait-caption strong {
  display: block;
  font-size: 1.05rem;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  font-weight: 700;
}

.status-badge {
  position: absolute;
  right: 1rem;
  bottom: -1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.9rem;
  border-radius: 0.95rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-size: 0.74rem;
  font-weight: 650;
}

.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.8s ease-in-out infinite;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 2rem;
}

.credential {
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.74rem;
  font-weight: 700;
}

.credential-accent {
  background: var(--coral);
  border-color: transparent;
}

.about-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
}

.about-copy .section-title,
.process .section-title,
.cta .section-title {
  color: var(--white);
}

.section-kicker {
  margin: 0.25rem 0 0;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
}

.about-text-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 55px rgba(27, 54, 68, 0.14);
}

.about-text-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.75;
}

.value-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease;
}

.value-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.value-symbol {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  font-size: 1.65rem;
  flex: 0 0 auto;
}

.value-card h3,
.value-card p {
  margin: 0;
}

.value-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
}

.value-card p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  line-height: 1.65;
}

.therapy {
  border-top: 1px solid rgba(27, 54, 68, 0.1);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-width: 0;
}

.text-stack {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.composition-frame {
  overflow: hidden;
  border: 1px solid rgba(27, 54, 68, 0.1);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
  aspect-ratio: 6 / 5;
}

.composition-frame svg {
  width: 100%;
  height: 100%;
}

.interactive-panel {
  margin-top: 4rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 54, 68, 0.11);
  box-shadow: var(--shadow);
}

.panel-head {
  max-width: 46rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.panel-head h3 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.panel-head p {
  margin: 0;
  color: rgba(27, 54, 68, 0.68);
  font-size: 0.9rem;
}

.control-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.pill-control {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.pill-control:hover {
  border-color: rgba(8, 133, 222, 0.38);
  transform: translateY(-1px);
}

.pill-control.is-active {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(242, 86, 44, 0.22);
}

.pill-control.is-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.cbt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cbt-card {
  min-height: 12rem;
  padding: 1.25rem;
  border-radius: 1.1rem;
  border: 1px solid;
  transition: background 220ms ease, border-color 220ms ease;
}

.cbt-card.thought {
  background: rgba(255, 89, 56, 0.1);
  border-color: rgba(255, 89, 56, 0.3);
}

.cbt-card.emotion {
  background: rgba(243, 154, 197, 0.2);
  border-color: rgba(243, 154, 197, 0.42);
}

.cbt-card.behavior {
  background: rgba(45, 117, 200, 0.1);
  border-color: rgba(45, 117, 200, 0.3);
}

.cbt-card.is-reframed {
  background: rgba(47, 168, 117, 0.11);
  border-color: rgba(47, 168, 117, 0.42);
}

.cbt-card-label {
  margin-bottom: 0.65rem;
  color: rgba(27, 54, 68, 0.62);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.cbt-card p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.55;
}

.cbt-card .quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.body-note {
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(27, 54, 68, 0.12);
  color: rgba(27, 54, 68, 0.74);
  font-size: 0.82rem;
  line-height: 1.55;
}

.assessment {
  border-top: 1px solid rgba(27, 54, 68, 0.1);
  border-bottom: 1px solid rgba(27, 54, 68, 0.1);
}

.assessment-shell {
  width: min(100% - 2rem, 56rem);
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(27, 54, 68, 0.14);
  box-shadow: var(--shadow);
}

.assessment-head {
  max-width: 42rem;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.assessment-head h3 {
  margin: 0.65rem 0 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.option-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(252, 245, 240, 0.68);
  color: var(--ink);
  border: 1px solid rgba(27, 54, 68, 0.11);
  text-align: left;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.option-btn:hover {
  border-color: rgba(8, 133, 222, 0.38);
  background: var(--cream);
}

.option-btn.is-selected {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 10px 28px rgba(8, 133, 222, 0.24);
}

.recommendation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(47, 168, 117, 0.1);
  border: 1px solid rgba(47, 168, 117, 0.28);
}

.recommendation h4 {
  margin: 0 0 0.35rem;
  color: var(--green);
  font-size: 1rem;
}

.recommendation p {
  margin: 0;
  color: rgba(27, 54, 68, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.process {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process::before,
.process::after {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.process::before {
  right: -7rem;
  top: -8rem;
  background: rgba(8, 133, 222, 0.28);
}

.process::after {
  left: 2rem;
  bottom: 0;
  background: rgba(242, 86, 44, 0.16);
}

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

.process-head {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.process-head p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.step-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.step-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 15rem;
  padding: 1.5rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, background 180ms ease;
}

.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.16);
}

.step-number {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--coral);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(242, 86, 44, 0.24);
}

.step-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.35rem;
}

.step-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.65;
}

.help-visual {
  display: flex;
  justify-content: center;
}

.image-card {
  width: min(100%, 24rem);
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(8, 133, 222, 0.11), rgba(242, 86, 44, 0.11), rgba(47, 168, 117, 0.11));
  border: 1px solid rgba(27, 54, 68, 0.14);
  box-shadow: var(--shadow);
}

.image-card-inner {
  display: grid;
  place-items: center;
  min-height: 16rem;
  padding: 0.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
}

.image-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-caption {
  margin-top: 0.85rem;
  text-align: center;
  color: rgba(27, 54, 68, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.4rem;
  background: var(--white);
  border: 1px solid rgba(27, 54, 68, 0.1);
  box-shadow: 0 10px 32px rgba(27, 54, 68, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-art {
  position: relative;
  height: 12rem;
  overflow: hidden;
  background: rgba(8, 133, 222, 0.1);
}

.article-art svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-pill {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  max-width: calc(100% - 1.8rem);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 650;
  box-shadow: 0 8px 22px rgba(27, 54, 68, 0.12);
}

.article-body {
  flex: 1;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  color: rgba(27, 54, 68, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
}

.article-body h3 {
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.22;
}

.article-body p {
  margin: 0;
  color: rgba(27, 54, 68, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
}

.article-body button {
  justify-self: start;
  margin-top: 0.35rem;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.page-section.section-blog {
  min-height: auto;
  display: block;
  padding: clamp(4.2rem, 6vw, 6.4rem) 0;
  background: var(--cream);
  overflow: hidden;
}

.blog-pin {
  position: relative;
  display: block;
  overflow: visible;
}

.blog-shell {
  width: min(100% - 2rem, 76rem);
}

.blog-head {
  gap: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
}

.section-blog .section-lead {
  max-width: 50rem;
}

.blog-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.blog-scroll-btn {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  border: 1px solid rgba(8, 133, 222, 0.22);
  box-shadow: 0 12px 28px rgba(27, 54, 68, 0.08);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.blog-scroll-btn:hover {
  color: var(--coral);
  border-color: rgba(242, 86, 44, 0.5);
  transform: translateY(-2px);
}

.blog-rail-shell {
  position: relative;
}

.blog-rail {
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  scroll-padding-inline: 0.25rem;
}

.blog-rail:active {
  cursor: grabbing;
}

.blog-rail:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 0.5rem;
}

.blog-rail::-webkit-scrollbar {
  display: none;
}

.article-track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  padding: 0.45rem 0 1.15rem;
}

.blog-card {
  flex: 0 0 min(82vw, 21.8rem);
  min-height: 28.5rem;
  scroll-margin-top: 7rem;
}

.blog-art {
  height: 9.8rem;
  color: var(--article-accent);
  background: var(--article-bg);
}

.blog-tone-1 {
  --article-accent: var(--blue);
  --article-bg: rgba(8, 133, 222, 0.12);
}

.blog-tone-2 {
  --article-accent: var(--coral);
  --article-bg: rgba(242, 86, 44, 0.12);
}

.blog-tone-3 {
  --article-accent: var(--green);
  --article-bg: rgba(47, 168, 117, 0.13);
}

.blog-tone-4 {
  --article-accent: #b57900;
  --article-bg: rgba(253, 191, 46, 0.22);
}

.blog-tone-5 {
  --article-accent: var(--pink);
  --article-bg: rgba(243, 154, 197, 0.18);
}

.blog-card-number {
  position: absolute;
  right: 1rem;
  bottom: -0.3rem;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 0.85;
  opacity: 0.28;
}

.blog-art-stripe {
  position: absolute;
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.82;
  transform: rotate(-8deg);
}

.stripe-one {
  left: 1.1rem;
  bottom: 2.2rem;
  width: 8.8rem;
}

.stripe-two {
  left: 2.4rem;
  bottom: 1rem;
  width: 5.8rem;
  opacity: 0.38;
}

.article-link {
  justify-self: start;
  width: fit-content;
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 700;
}

.blog-progress {
  height: 0.2rem;
  margin-top: 0.8rem;
  border-radius: 999px;
  background: rgba(27, 54, 68, 0.1);
  overflow: hidden;
}

.blog-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transform: scaleX(0.08);
  transform-origin: left center;
  transition: transform 140ms ease;
}

.cta {
  padding: 5rem 0;
}

.cta-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.cta-shell::before {
  content: "";
  position: absolute;
  left: -8rem;
  top: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(40px);
}

.cta-shell::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: rgba(242, 86, 44, 0.2);
  filter: blur(50px);
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: center;
}

.cta-copy {
  display: grid;
  gap: 1.3rem;
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-art {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20rem;
  height: 100%;
  opacity: 0.15;
  pointer-events: none;
  display: none;
}

.site-footer {
  padding: 3.25rem 0 1.7rem;
  background: var(--blue);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: grid;
  gap: 1rem;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
}

.footer-brand-row img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  padding: 0.25rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
}

.footer-brand p,
.footer-col p,
.footer-col a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-col h4 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-col .email-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col .email-link:hover {
  color: var(--coral);
}

.site-footer .lang-toggle {
  border-color: rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer .lang-toggle:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

/* Redesigned post-hero section system */
.page-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(4.2rem, 6vw, 6.4rem) 0;
  scroll-margin-top: 5.5rem;
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 72rem);
}

.page-section-plain {
  background: var(--cream);
  color: var(--ink);
}

.page-section-color {
  color: var(--white);
}

.section-about {
  background: var(--blue);
}

.section-about .section-shell {
  width: min(100% - 2rem, 66rem);
}

.section-process {
  background: var(--ink);
}

.page-section.section-therapy {
  padding-bottom: clamp(7.4rem, 9vw, 9.8rem);
}

.section-therapy .section-shell {
  width: min(100% - 2rem, 84rem);
}

.section-therapy::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -1px;
  left: -2rem;
  z-index: 0;
  height: clamp(3.8rem, 6vw, 5.4rem);
  background: var(--ink);
  pointer-events: none;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0 74 C24 74 34 28 60 28 C86 28 96 74 120 74 C144 74 154 28 180 28 C206 28 216 74 240 74 C264 74 274 28 300 28 C326 28 336 74 360 74 C384 74 394 28 420 28 C446 28 456 74 480 74 C504 74 514 28 540 28 C566 28 576 74 600 74 C624 74 634 28 660 28 C686 28 696 74 720 74 C744 74 754 28 780 28 C806 28 816 74 840 74 C864 74 874 28 900 28 C926 28 936 74 960 74 C984 74 994 28 1020 28 C1046 28 1056 74 1080 74 C1104 74 1114 28 1140 28 C1166 28 1176 74 1200 74 C1224 74 1234 28 1260 28 C1286 28 1296 74 1320 74 C1344 74 1354 28 1380 28 C1406 28 1416 74 1440 74 V120 H0 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M0 74 C24 74 34 28 60 28 C86 28 96 74 120 74 C144 74 154 28 180 28 C206 28 216 74 240 74 C264 74 274 28 300 28 C326 28 336 74 360 74 C384 74 394 28 420 28 C446 28 456 74 480 74 C504 74 514 28 540 28 C566 28 576 74 600 74 C624 74 634 28 660 28 C686 28 696 74 720 74 C744 74 754 28 780 28 C806 28 816 74 840 74 C864 74 874 28 900 28 C926 28 936 74 960 74 C984 74 994 28 1020 28 C1046 28 1056 74 1080 74 C1104 74 1114 28 1140 28 C1166 28 1176 74 1200 74 C1224 74 1234 28 1260 28 C1286 28 1296 74 1320 74 C1344 74 1354 28 1380 28 C1406 28 1416 74 1440 74 V120 H0 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
}

.section-contact {
  background: var(--coral);
}

.section-lead {
  max-width: 48rem;
  margin: 0;
  color: inherit;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.65;
}

.page-section-color .section-title,
.page-section-color .section-lead,
.page-section-color .section-copy {
  color: var(--white);
}

.section-copy-block {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.about-redesign-grid,
.therapy-redesign-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-photo-stage {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-radius: 1.6rem;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.about-photo-stage img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  object-position: top center;
}

.about-paragraphs {
  display: grid;
  gap: 1rem;
  max-width: 46rem;
}

.about-paragraphs p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.credential-row.redesigned {
  justify-content: flex-start;
  margin-top: 0.5rem;
}

.value-grid.redesigned {
  gap: 1rem;
  margin-top: clamp(2.2rem, 4vw, 3.6rem);
  padding-top: 0;
  border-top: 0;
}

.value-grid.redesigned .value-card {
  min-height: 10rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.12);
}

.therapy-model-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  min-height: 23rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.therapy-model-panel img {
  display: block;
  width: min(100%, 30rem);
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 34px rgba(27, 54, 68, 0.16));
  animation: floaty-soft 5s ease-in-out infinite;
}

.mini-label {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 650;
  text-transform: uppercase;
}

.interactive-panel.redesigned {
  background: var(--white);
}

.process-head.redesigned {
  max-width: 48rem;
}

.step-grid.redesigned {
  gap: 1.2rem;
}

.step-grid.redesigned .step-card {
  min-height: 14rem;
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.1);
}

.process-check {
  display: grid;
  gap: 1.2rem;
  margin-top: clamp(2.2rem, 4vw, 3.6rem);
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
}

.process-check h3 {
  max-width: 54rem;
  margin: 0;
  color: var(--white);
}

.process-check .mini-label {
  color: var(--yellow);
}

.option-grid.redesigned {
  gap: 0.8rem;
}

.option-grid.redesigned .option-btn {
  background: rgba(255, 255, 255, 0.92);
}

.option-grid.redesigned .option-btn.is-selected {
  background: var(--blue);
}

.recommendation.redesigned {
  background: rgba(47, 168, 117, 0.16);
  border-color: rgba(255, 255, 255, 0.2);
}

.recommendation.redesigned h4,
.recommendation.redesigned p {
  color: var(--white);
}

.section-head-row.redesigned {
  align-items: start;
}

.article-grid.redesigned {
  gap: 1.5rem;
}

.article-grid.redesigned .article-card {
  border-radius: 1.25rem;
  box-shadow: 0 18px 55px rgba(27, 54, 68, 0.08);
}

.article-grid.redesigned .article-art {
  height: 12rem;
}

.cta-shell.redesigned {
  border-radius: 1.5rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cta-shell.redesigned::before,
.cta-shell.redesigned::after {
  display: none;
}

.contact-actions {
  display: grid;
  gap: 1.1rem;
  align-content: start;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.contact-email {
  width: fit-content;
  color: var(--white);
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.pricing-panel {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2rem);
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-contact .pricing-panel .mini-label {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.pricing-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.pricing-item span {
  color: rgba(27, 54, 68, 0.78);
  line-height: 1.35;
}

.pricing-item strong {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 1.2rem;
  font-weight: 650;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] {
  transform: translateX(-34px);
}

[data-reveal="right"] {
  transform: translateX(34px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .therapy-model-panel img {
    animation: none;
  }

  .headline-mark::after {
    animation: none;
    transform: scaleX(1);
  }

}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  overflow-y: auto;
}

.modal {
  position: relative;
  width: min(100%, 40rem);
  max-height: 88vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(27, 54, 68, 0.1);
  box-shadow: var(--shadow-strong);
}

.modal-wide {
  width: min(100%, 46rem);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: transparent;
  color: rgba(27, 54, 68, 0.62);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(27, 54, 68, 0.08);
  color: var(--ink);
}

.modal-head {
  margin-bottom: 1.5rem;
  padding-right: 2.5rem;
}

.modal-head h3,
.modal-head h2 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
}

.modal-head p {
  margin: 0;
  color: rgba(27, 54, 68, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(27, 54, 68, 0.2);
  outline: none;
}

.field textarea {
  min-height: 6rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(8, 133, 222, 0.16);
}

.success-state {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 2rem 0;
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 2rem;
  font-weight: 650;
}

.success-state h3,
.success-state p {
  margin: 0;
}

.success-state h3 {
  color: var(--ink);
  font-size: 1.75rem;
}

.success-state p {
  max-width: 27rem;
  color: rgba(27, 54, 68, 0.8);
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--coral-hot);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.article-content {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  color: rgba(27, 54, 68, 0.9);
  line-height: 1.75;
}

.article-content p {
  margin: 0;
}

.takeaways {
  padding: 1.2rem;
  border-radius: 1rem;
  background: rgba(47, 168, 117, 0.13);
  border: 1px solid rgba(47, 168, 117, 0.28);
}

.takeaways h4 {
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.takeaways ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.2rem;
}

.takeaways li {
  color: rgba(27, 54, 68, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(27, 54, 68, 0.1);
}

.plain-btn {
  background: transparent;
  color: rgba(27, 54, 68, 0.65);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 650;
}

.plain-btn:hover {
  color: var(--ink);
}

.fade-in {
  animation: fade-up 520ms ease both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes underline-draw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes floaty-soft {
  0%,
  100% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(6px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave {
    transform: none;
    transition: none;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(100% - 3rem, 80rem);
  }

  .hero-actions,
  .recommendation,
  .modal-actions {
    flex-direction: row;
    align-items: center;
  }

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

  .interactive-panel,
  .assessment-shell,
  .modal {
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .section-head-row {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

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

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

  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-width: 959px) {
  .page-section {
    padding: clamp(3.8rem, 8vw, 5rem) 0;
  }

  .hero {
    min-height: calc(100svh - 5rem);
    align-items: center;
    padding: clamp(1.8rem, 4.2vw, 2.8rem) 0 clamp(3rem, 7vw, 4.4rem);
  }

  .hero-grid {
    gap: 0;
    min-height: calc(100svh - 5rem - clamp(4.8rem, 11.2vw, 7.2rem));
  }

  .hero-copy {
    max-width: min(100%, 38rem);
    min-height: inherit;
    align-content: center;
    grid-template-rows: none;
    gap: clamp(1rem, 2.3vw, 1.35rem);
  }

  .display {
    max-width: 13ch;
    font-size: clamp(3rem, 8.3vw, 4.7rem);
    line-height: 0.99;
  }

  .hero-title-line {
    display: block;
  }

  .hero-description {
    max-width: 34rem;
    align-self: auto;
    font-size: clamp(0.98rem, 2.3vw, 1.08rem);
    line-height: 1.66;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .hero-actions .btn {
    min-height: 2.6rem;
    padding: 0.62rem 1.05rem;
    font-size: 0.9rem;
  }

  .mobile-actions .lang-toggle {
    min-height: 2.15rem;
    padding: 0.35rem 0.72rem;
    font-size: 0.68rem;
  }

  .hero-art {
    display: none;
  }

  .hero-wave {
    left: -24vw;
    width: 148vw;
    min-width: calc(100% + 16rem);
  }

  .section-about {
    padding-top: clamp(2rem, 5vw, 3rem);
  }

  .about-photo-stage,
  .about-photo-stage img {
    min-height: clamp(23rem, 66vw, 30rem);
  }

  .therapy-model-panel {
    min-height: clamp(17rem, 48vw, 24rem);
  }

  .therapy-model-panel img {
    width: min(82vw, 28rem);
  }

  .page-section.section-blog {
    scroll-margin-top: 4.75rem;
  }

  .blog-head {
    margin-bottom: 1.35rem;
  }

  .blog-controls {
    align-self: flex-start;
  }

  .blog-card {
    flex-basis: min(84vw, 20rem);
    min-height: 26.5rem;
  }

  .blog-art {
    height: 8.6rem;
  }

  .blog-card-number {
    font-size: 4.35rem;
  }

  .article-body {
    padding: 1.25rem;
  }

  .article-body h3 {
    font-size: 1.12rem;
  }

  [data-reveal="left"],
  [data-reveal="right"] {
    transform: translateY(24px);
  }
}

@media (max-width: 639px) {
  .container,
  .hero .container,
  .section-shell,
  .section-therapy .section-shell,
  .blog-shell {
    width: min(100% - 1.75rem, 36rem);
  }

  .nav-shell {
    width: min(100% - 1.25rem, 92rem);
    height: 4.45rem;
    gap: 0.55rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .brand-subtitle {
    font-size: 0.66rem;
  }

  .mobile-actions .lang-toggle {
    display: inline-flex;
    align-items: center;
  }

  .icon-btn {
    width: 2.45rem;
    height: 2.45rem;
    border-radius: 0.75rem;
  }

  .hero {
    min-height: calc(100svh - 4.45rem);
    padding-top: clamp(1.85rem, 5.8vw, 2.55rem);
    padding-bottom: clamp(2.9rem, 8.8vw, 3.8rem);
  }

  .hero-grid {
    gap: 0;
    min-height: calc(100svh - 4.45rem - clamp(4.75rem, 14.6vw, 6.35rem));
  }

  .hero-copy {
    min-height: inherit;
    align-content: center;
    grid-template-rows: none;
    gap: clamp(0.85rem, 2.8vw, 1.1rem);
  }

  .display {
    max-width: 10.4ch;
    font-size: clamp(2.6rem, 11.6vw, 3.25rem);
    line-height: 1.01;
  }

  .hero-title-line {
    display: block;
  }

  .hero-description {
    max-width: 30rem;
    align-self: auto;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.48rem;
  }

  .hero-actions .btn {
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 2.3rem;
    padding: 0.5rem 0.72rem;
    font-size: 0.78rem;
  }

  .scroll-link {
    gap: 0.6rem;
    margin-top: 0.45rem;
    font-size: 0.88rem;
  }

  .scroll-link img {
    width: 2rem;
    height: 2rem;
  }

  .hero-art {
    display: none;
  }

  .hero-art img {
    width: min(62vw, 18rem);
  }

  .hero-wave {
    left: -36vw;
    width: 172vw;
    min-width: calc(100% + 18rem);
    height: clamp(2.6rem, 9vw, 3.4rem);
  }

  .section-about {
    padding-top: 1.8rem;
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.08;
  }

  .section-lead,
  .section-copy,
  .about-paragraphs p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .about-redesign-grid,
  .therapy-redesign-grid {
    gap: 2rem;
  }

  .about-photo-stage,
  .about-photo-stage img {
    min-height: 21rem;
  }

  .page-section.section-therapy {
    padding-bottom: 7rem;
  }

  .therapy-model-panel {
    min-height: 15rem;
  }

  .therapy-model-panel img {
    width: min(78vw, 21rem);
  }

  .step-card {
    min-height: 0;
    padding: 1.25rem;
  }

  .contact-email,
  .pricing-item span,
  .pricing-item strong {
    overflow-wrap: anywhere;
  }

  .pricing-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .footer-grid {
    gap: 1.6rem;
  }
}

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

  .mobile-actions {
    display: none;
  }

  .nav-actions {
    display: flex;
  }

  .page-section.section-blog {
    min-height: var(--blog-pin-height, calc(100vh - var(--blog-pin-offset, 5rem)));
    padding: 0;
    overflow: visible;
  }

  .blog-pin {
    position: sticky;
    top: var(--blog-pin-offset, 5rem);
    min-height: calc(100vh - var(--blog-pin-offset, 5rem));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: clamp(4rem, 5.4vw, 5.9rem) 0 clamp(3.2rem, 4.2vw, 4.6rem);
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .page-section {
    padding: clamp(4.6rem, 5.6vw, 6.2rem) 0;
  }

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

  .hero-grid {
    grid-template-columns: minmax(30rem, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(4rem, 8vw, 9rem);
  }

  .hero-copy {
    margin-left: clamp(1rem, 4vw, 3.5rem);
  }

  .hero-art {
    justify-content: flex-end;
    justify-self: end;
    min-height: 36rem;
  }

  .hero-art img {
    width: min(55vw, 52rem);
    max-width: none;
  }

  .about-grid {
    grid-template-columns: 5fr 7fr;
  }

  .about-redesign-grid {
    grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  }

  .therapy-redesign-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  }

  .about-photo-stage {
    min-height: 34rem;
  }

  .about-photo-stage img {
    min-height: 34rem;
  }

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

  .help-header {
    grid-template-columns: 7fr 5fr;
  }

  .cta-shell {
    padding: 4rem;
  }

  .cta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(3rem, 8vw, 7rem);
  }

  .cta-art {
    display: block;
  }
}

@media (max-width: 420px) {
  .nav-shell {
    width: min(100% - 1rem, 92rem);
  }

  .mobile-actions .lang-toggle {
    display: inline-flex;
    align-items: center;
  }

  .brand-title {
    font-size: 0.95rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .modal .btn,
  .mobile-menu .btn {
    width: 100%;
  }

  .display {
    max-width: 10.5ch;
    font-size: clamp(2.8rem, 11.6vw, 3.05rem);
    line-height: 0.99;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-art {
    display: none;
  }

  .hero-art img {
    width: min(62vw, 18rem);
  }

  .about-photo-stage,
  .about-photo-stage img {
    min-height: 25rem;
  }

  .status-badge {
    right: 0.6rem;
    max-width: calc(100% - 1.2rem);
  }
}

@media (min-width: 361px) and (max-width: 420px) {
  .display {
    font-size: clamp(3rem, 12.8vw, 3.35rem);
  }
}

/* Premium editorial refresh */
:root {
  --cream: #f7f3ee;
  --ink: #111111;
  --blue: #078ae6;
  --blue-deep: #056fb9;
  --coral: #ff5733;
  --coral-hot: #ff5733;
  --green: #2f8f6a;
  --yellow: #f1b32c;
  --pink: #db8fb7;
  --white: #ffffff;
  --soft-white: #fffaf5;
  --line: rgba(17, 17, 17, 0.12);
  --muted: rgba(17, 17, 17, 0.68);
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --shadow-strong: 0 28px 70px rgba(17, 17, 17, 0.16);
  --font-body: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Instrument Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  background: var(--cream);
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  max-width: 100%;
  overflow-x: hidden;
}

.page,
.site-header,
main,
section,
footer {
  max-width: 100vw;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.blog-rail:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

.site-header {
  background: rgba(247, 243, 238, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.site-header::after,
.hero-wave,
.headline-mark::after,
.section-ribbon,
.section-therapy::after,
.about::before,
.process::before,
.process::after,
.cta-shell::before,
.cta-shell::after {
  display: none !important;
}

.nav-shell {
  width: min(100% - 3rem, 84rem);
  max-width: calc(100vw - 3rem);
  height: 5.25rem;
}

.brand {
  gap: 0.8rem;
}

.brand img {
  width: 2.8rem;
  height: 2.8rem;
}

.brand-title {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-subtitle {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
}

.desktop-nav {
  gap: clamp(1.35rem, 2.6vw, 3rem);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
}

.nav-link {
  padding: 0.65rem 0;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link::after {
  bottom: 0.25rem;
  height: 1px;
  background: currentColor;
  clip-path: none;
  opacity: 0;
  z-index: 0;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
}

.nav-actions {
  gap: 0.7rem;
}

.lang-toggle {
  min-height: 2.45rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.75rem;
  border-color: rgba(17, 17, 17, 0.16);
  color: var(--ink);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 600;
}

.lang-toggle .is-current {
  color: var(--ink);
}

.lang-toggle .is-muted {
  color: rgba(17, 17, 17, 0.4);
}

.btn {
  min-height: 3rem;
  padding: 0.86rem 1.28rem;
  border-radius: 0.85rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: none;
}

.btn-primary:hover {
  background: #e64828;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  min-height: 72svh;
  min-height: min(72vh, 52rem);
  align-items: center;
  padding: clamp(3.4rem, 5.4vw, 5.7rem) 0 clamp(3.8rem, 5.8vw, 6.1rem);
  background: var(--cream);
  overflow: clip;
}

.hero .container {
  width: min(100% - 3rem, 84rem);
  max-width: calc(100vw - 3rem);
}

.hero-grid {
  gap: clamp(2.4rem, 5vw, 5.6rem);
}

.hero-copy {
  gap: clamp(1.3rem, 2vw, 1.75rem);
}

.hero-kicker,
.section-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-label-light {
  color: inherit;
  opacity: 0.7;
}

.display,
.section-title,
.card-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

.display {
  max-width: 10.5ch;
  color: var(--ink);
  font-size: clamp(64px, 6.5vw, 100px);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-description {
  max-width: 42rem;
  color: rgba(17, 17, 17, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.125rem);
  line-height: 1.62;
}

.hero-actions {
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
}

.hero-art {
  display: flex;
  min-height: min(41vw, 34rem);
  align-items: center;
  justify-content: center;
}

.hero-art-field {
  position: relative;
  width: min(100%, 48rem);
  height: clamp(23rem, 39vw, 34rem);
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 2rem;
  background: #eaf5fc;
}

.hero-art img {
  width: min(122%, 58rem);
  max-width: none;
  max-height: 112%;
  margin-right: -9%;
  object-fit: contain;
  filter: none;
  animation: none;
}

.scroll-link {
  display: none;
}

.page-section {
  padding: clamp(6.8rem, 10vw, 10rem) 0;
  background: var(--cream);
  overflow: clip;
}

.section-shell,
.section-therapy .section-shell,
.blog-shell {
  width: min(100% - 3rem, 84rem);
}

.section-title {
  max-width: 13ch;
  color: var(--ink);
  font-size: clamp(3rem, 5.3vw, 4.5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.section-lead {
  max-width: 48rem;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.58;
}

.section-copy,
.about-paragraphs p,
.process-head p,
.contact-actions p,
.cta-grid p {
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.65;
}

.editorial-head {
  display: grid;
  gap: 1.1rem;
  max-width: 56rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-audience {
  padding-top: clamp(2.8rem, 5vw, 5rem);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.section-audience .editorial-head[data-reveal] {
  opacity: 1;
  transform: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.audience-card,
.value-card,
.step-card,
.article-card {
  border-radius: 1.6rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255, 250, 245, 0.84);
  box-shadow: none;
}

.audience-card {
  min-height: 18rem;
  display: grid;
  align-content: space-between;
  gap: 2rem;
  padding: clamp(1.35rem, 2vw, 1.8rem);
}

.card-index {
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 600;
}

.audience-card h3,
.value-card h3,
.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.audience-card p,
.value-card p,
.step-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.98rem;
  line-height: 1.58;
}

.therapy-redesign-grid,
.about-redesign-grid {
  gap: clamp(2.8rem, 5vw, 5.5rem);
}

.therapy-model-panel {
  min-height: clamp(30rem, 45vw, 41rem);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.25rem;
  overflow: hidden;
  padding: clamp(1.1rem, 2vw, 1.8rem);
  border-radius: 2rem;
  background: #eaf5fc;
}

.therapy-model-panel img {
  width: min(100%, 34rem);
  filter: none;
  animation: none;
}

.cbt-loop {
  width: min(100%, 31rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}

.cbt-loop span {
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
}

.section-about,
.section-process {
  background: var(--cream);
  color: var(--ink);
}

.section-about .section-title,
.section-about .section-lead,
.section-about .section-copy,
.section-process .section-title,
.section-process .section-lead,
.section-process .section-copy {
  color: var(--ink);
}

.section-about .section-shell {
  width: min(100% - 3rem, 78rem);
}

.about-photo-stage {
  min-height: clamp(30rem, 48vw, 39rem);
  border-radius: 2rem;
  background: #efe5dc;
  box-shadow: none;
}

.about-photo-stage img {
  min-height: clamp(30rem, 48vw, 39rem);
}

.about-paragraphs {
  max-width: 44rem;
}

.credential-row.redesigned {
  gap: 0.55rem;
}

.credential {
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.75);
  color: rgba(17, 17, 17, 0.78);
  border-color: rgba(17, 17, 17, 0.1);
}

.credential-accent {
  background: var(--ink);
  color: var(--white);
}

.value-grid.redesigned {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.value-grid.redesigned .value-card {
  min-height: 11rem;
  background: rgba(255, 250, 245, 0.86);
  border-color: rgba(17, 17, 17, 0.1);
}

.value-symbol {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: rgba(7, 138, 230, 0.1);
  color: var(--blue);
  font-size: 1.2rem;
}

.process-head.redesigned {
  display: grid;
  gap: 1rem;
  max-width: 54rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.step-grid.redesigned {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-grid.redesigned .step-card {
  min-height: 19rem;
  align-content: space-between;
  padding: clamp(1.4rem, 2.2vw, 2rem);
  background: rgba(255, 250, 245, 0.86);
  border-color: rgba(17, 17, 17, 0.1);
}

.step-number {
  width: auto;
  height: auto;
  place-items: start;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  box-shadow: none;
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.9;
  font-weight: 600;
}

.page-section.section-blog {
  background: var(--cream);
}

.blog-head {
  align-items: end;
}

.blog-card {
  min-height: 27rem;
  border-radius: 1.5rem;
  background: var(--soft-white);
}

.blog-art {
  height: 8.8rem;
}

.blog-scroll-btn {
  border-radius: 0.9rem;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: none;
}

.blog-progress {
  background: rgba(17, 17, 17, 0.1);
}

.blog-progress span {
  background: var(--coral);
}

.section-contact {
  background: var(--ink);
  color: var(--white);
}

.section-contact .section-title,
.section-contact .section-lead,
.section-contact .section-copy,
.section-contact .section-copy-block p {
  color: var(--white);
}

.section-contact .section-shell {
  width: min(100% - 3rem, 84rem);
}

.cta-shell.redesigned {
  background: transparent;
}

.cta-grid {
  gap: clamp(2rem, 6vw, 6rem);
}

.contact-actions,
.pricing-panel {
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-actions p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-email {
  color: var(--white);
  font-weight: 600;
}

.pricing-item {
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.94);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.modal,
.field input,
.field select,
.field textarea {
  background: var(--cream);
}

@media (min-width: 960px) {
  .page-section.section-blog {
    min-height: auto;
    padding: clamp(6.8rem, 9vw, 9rem) 0;
    overflow: hidden;
  }

  .blog-pin {
    position: relative;
    top: auto;
    min-height: 0;
    display: block;
    padding: 0;
    overflow: visible;
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 72svh;
    min-height: min(72vh, 52rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: center;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-art {
    justify-self: stretch;
    min-height: clamp(26rem, 39vw, 35rem);
  }

  .hero-art-field {
    height: clamp(26rem, 39vw, 35rem);
  }

  .about-redesign-grid {
    grid-template-columns: minmax(19rem, 0.78fr) minmax(0, 1fr);
  }

  .therapy-redesign-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 1.12fr);
  }
}

@media (max-width: 959px) {
  .nav-shell {
    width: min(100% - 2rem, 84rem);
    max-width: calc(100vw - 2rem);
  }

  .page-section {
    padding: clamp(4.8rem, 12vw, 7rem) 0;
  }

  .section-shell,
  .section-therapy .section-shell,
  .blog-shell,
  .hero .container {
    width: min(100% - 2rem, 44rem);
    max-width: calc(100vw - 2rem);
  }

  .hero {
    min-height: auto;
    padding: clamp(2.8rem, 7vw, 4.4rem) 0 clamp(3.4rem, 8vw, 4.8rem);
  }

  .hero-grid {
    min-height: 0;
    gap: clamp(2rem, 6vw, 3rem);
  }

  .display {
    max-width: 12ch;
    font-size: clamp(3.2rem, 9vw, 4.8rem);
    line-height: 0.96;
  }

  .hero-art {
    display: flex;
    min-height: 0;
  }

  .hero-art-field {
    height: clamp(18rem, 48vw, 24rem);
  }

  .audience-grid,
  .step-grid.redesigned,
  .value-grid.redesigned {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 639px) {
  .nav-shell {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    height: 4.7rem;
    gap: 0.45rem;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-text {
    min-width: 0;
  }

  .mobile-actions {
    display: flex;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .mobile-actions .lang-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.35rem 0.55rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .brand-subtitle {
    font-size: 0.65rem;
  }

  .brand img {
    width: 2.35rem;
    height: 2.35rem;
  }

  .hero {
    padding-top: clamp(2.3rem, 7vw, 3rem);
  }

  .hero-copy {
    gap: 1rem;
  }

  .display {
    max-width: 11ch;
    font-size: clamp(42px, 12.5vw, 56px);
    line-height: 0.98;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    min-height: 3.1rem;
    padding: 0.85rem 1rem;
    font-size: 0.98rem;
    white-space: normal;
  }

  .hero-art-field {
    height: clamp(13.5rem, 50vw, 17rem);
    border-radius: 1.45rem;
  }

  .hero-art img {
    width: 128%;
    margin-right: -14%;
  }

  .section-title {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 3.3rem);
    line-height: 1;
  }

  .section-lead,
  .section-copy,
  .about-paragraphs p {
    font-size: 1rem;
    line-height: 1.62;
  }

  .audience-grid,
  .step-grid.redesigned,
  .value-grid.redesigned,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 13rem;
  }

  .therapy-model-panel {
    min-height: 0;
    padding: 1rem;
    border-radius: 1.45rem;
  }

  .about-photo-stage,
  .about-photo-stage img {
    min-height: clamp(24rem, 95vw, 32rem);
  }

  .step-grid.redesigned .step-card {
    min-height: 14rem;
  }

  .contact-actions,
  .pricing-panel {
    padding: 1.15rem;
  }

  .contact-email {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .hero-art img,
  [data-reveal] {
    animation: none;
    transition: none;
  }
}
