.cl-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: visible;
}
.cl-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 50% at 30% -10%,
      rgba(0, 167, 111, 0.07) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 20%,
      rgba(0, 196, 140, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.cl-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.cl-hero__content {
  animation: clFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cl-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--gray-900);
  margin: 20px 0 20px;
}
.cl-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.cl-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cl-hero__visual {
  animation: clFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.15s;
  perspective: 1000px;
}
@keyframes clFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.cl-chart {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  padding: 28px 28px 20px;
  box-shadow:
    0 1px 4px rgba(0, 0, 0, 0.02),
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 24px 56px rgba(0, 0, 0, 0.04);
}
.cl-chart__header {
  margin-bottom: 24px;
}
.cl-chart__header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.cl-chart__sub {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin: 0;
}
.cl-bars {
  display: flex;
  align-items: flex-end;
  gap: 0;
  min-height: 200px;
  padding: 0 4px;
}
.cl-bars__group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cl-bars__label-top {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.cl-bars__label-top--green {
  color: var(--brand-600);
}
.cl-bars__bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 160px;
  padding: 0 4px;
}
.cl-bars__bar {
  width: 28px;
  height: var(--h);
  border-radius: 6px 6px 2px 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  animation: barGrow 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--d, 0s);
  transform-origin: bottom;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.cl-bars__bar span {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}
.cl-bars__bar--full {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
}
.cl-bars__bar--low {
  background: linear-gradient(
    180deg,
    var(--brand-500) 0%,
    var(--brand-700) 100%
  );
}
.cl-bars__bar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 30%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}
@keyframes barGrow {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}
.cl-bars__phase {
  margin-top: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cl-bars__phase--green {
  color: var(--brand-600);
}
.cl-bars__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  padding: 0 8px;
  position: relative;
}
.cl-bars__divider-line {
  width: 2px;
  flex: 1;
  background: repeating-linear-gradient(
    to bottom,
    #f59e0b 0,
    #f59e0b 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 1px;
}
.cl-bars__divider-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-radius: var(--radius-full);
  padding: 4px 12px;
  font-size: 0.625rem;
  font-weight: 700;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  animation:
    badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.45s forwards,
    badgePulse 2.4s ease-in-out 1.2s infinite;
}
@keyframes badgePop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
  }
}
.cl-bars__divider-line {
  position: relative;
  overflow: hidden;
}
.cl-bars__divider-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(245, 158, 11, 0.5),
    transparent
  );
  animation: dividerFlow 2.2s ease-in-out 1s infinite;
}
@keyframes dividerFlow {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.cl-bars__label-top {
  opacity: 0;
  animation: labelFade 0.5s ease-out 0.2s forwards;
}
.cl-bars__label-top--green {
  animation:
    labelFade 0.5s ease-out 0.65s forwards,
    labelPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s;
}
@keyframes labelFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes labelPop {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
.cl-bars__phase {
  opacity: 0;
  animation: labelFade 0.5s ease-out 0.55s forwards;
}
.cl-bars__phase--green {
  animation: labelFade 0.5s ease-out 1.1s forwards;
}
.cl-chart__savings {
  opacity: 0;
  animation: labelFade 0.6s ease-out 1.3s forwards;
}
.cl-chart__axis-label {
  text-align: center;
  font-size: 0.6875rem;
  color: var(--gray-400);
  margin-top: 4px;
}
.cl-chart__savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--brand-50);
  border-radius: var(--radius-lg);
  font-size: 0.8125rem;
  color: var(--gray-700);
}
.cl-chart__savings strong {
  color: var(--brand-600);
}
.cl-problem {
  padding: var(--section-py) 0;
}
.cl-problem__highlight {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--brand-600);
  text-align: center;
  margin: -8px 0 20px;
}
.cl-problem__sub {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 640px;
  margin: -20px auto 48px;
  text-align: center;
}
.cl-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cl-stat-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cl-stat-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cl-stat-card__number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--brand-600) 0%, #00c48c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.cl-stat-card__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.cl-stat-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.cl-how {
  padding: var(--section-py) 0;
  background: var(--gray-50);
}
.cl-how__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.cl-how__step {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cl-how__step:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.cl-how__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--brand-50);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cl-how__text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.cl-how__text p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.cl-find {
  padding: var(--section-py) 0;
}
.cl-find__inner {
  text-align: center;
}
.cl-find__tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cl-tag {
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s;
}
.cl-tag:hover {
  border-color: var(--gray-300);
  background: var(--gray-50);
}
.cl-tag--active {
  background: var(--brand-600);
  color: #fff;
  border-color: var(--brand-600);
}
.cl-tag--active:hover {
  background: var(--brand-700);
  border-color: var(--brand-700);
}
.cl-therapists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0 auto;
}
.cl-therapist-card {
  position: relative;
  background: linear-gradient(180deg, #6b9d8f 0%, #4a7c6e 100%);
  border-radius: var(--radius-xl);
  padding: 24px 20px;
  text-align: left;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.cl-therapist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(0, 0, 0, 0.25) 100%
  );
  border-radius: inherit;
}
.cl-therapist-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.1);
}
.cl-therapist-card__avatar {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  margin-bottom: 12px;
  line-height: 1;
}
.cl-therapist-card h4 {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cl-therapist-card__meta {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 2px;
}
.cl-therapist-card__spec {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  opacity: 0.7;
}
.cl-therapist-card__arrow {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cl-therapist-card:hover .cl-therapist-card__arrow {
  background: rgba(255, 255, 255, 0.35);
}
.cl-therapist-card__arrow svg {
  color: #fff;
}
@media (max-width: 1024px) {
  .cl-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cl-hero__content {
    text-align: center;
  }
  .cl-hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .cl-hero__actions {
    justify-content: center;
  }
  .cl-problem__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .cl-how__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
  .cl-therapists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .cl-hero {
    padding: 48px 0 60px;
  }
  .cl-hero__actions {
    flex-direction: column;
    align-items: center;
  }
  .cl-hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }
  .cl-therapists {
    grid-template-columns: repeat(2, 1fr);
  }
  .cl-how__grid {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .cl-therapists {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}
