:root {
  --accent: #FEC601;
  --main: #191919;
  --light-bg: #fff;
  --border: #e4e6ed;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --brand: #fff;
  --radius-lg: 22px;
  --radius-md: 14px;
}

.case-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12rem 6vw 3.5rem;
  gap: 4vw;
  background: var(--light-bg);
}

.case-hero__content {
  max-width: 800px;
}
.case-hero__content h1 {
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  line-height: 1.4;
}
.case-hero__subtitle {
  font-size: 1.33rem;
  color: #555;
  margin-bottom: 2.2rem;
}
.case-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.case-tags span {
  background: var(--accent);
  color: #000;
  border-radius: 1.1rem;
  padding: 0.32rem 1.15rem;
  font-size: 1rem;
  font-weight: 400;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}
.case-highlight {
  color: #333;
  font-weight: 600;
  font-size: 1.1em;
}
.case-hero__image img {
    width: 600px;
    height: 400px;
    border-radius: 50px;
    object-fit: cover;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.10);
    background: #e3f6ed;
}

@media (max-width: 700px) {
  .case-hero {
    flex-direction: column;
    gap: 2rem;
    padding: 10rem 4vw 2rem;
  }
  .case-hero__image img {
    width: 100%;
    height: 100%;
  }
}

.case-info {
  display: flex;
  gap: 4vw;
  padding: 2.6rem 6vw 1rem;
  background: #fff;
}
.case-info__col {
  flex: 1;
  background: #f7f7fb;
  border-radius: var(--radius-lg);
  padding: 2rem 2.3rem;
  min-width: 220px;
}
.case-info__col h2 {
  font-size: 1.37rem;
  font-weight: 600;
  margin-bottom: 1.02rem;
}
.case-info__col p {
  color: #313131;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .case-info {
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.3rem 3vw 0.5rem;
  }
  .case-info__col {
    padding: 1.2rem 1rem;
  }
  .case-outcome__btn {
   margin-bottom: 2rem;
  }
}

.case-solution {
  display: flex;
  align-items: center;
  gap: 2vw;
  padding: 3.5rem 6vw 2.5rem;
  background: #fff;
  position: relative;
}
.case-solution__graphic {
  position: absolute;
  left: 0; top: 0;
  width: 70px; height: 70px;
  background: url('cat-icon.svg') no-repeat center/cover;
  opacity: 0.07;
  pointer-events: none;
}
.case-solution__content {
  z-index: 1;
}
.case-solution h2 {
  font-size: 1.55rem;
  margin-bottom: 1.05rem;
}
.case-solution ul {
  margin: 0 0 1.3rem 1.1rem;
  padding: 0;
  color: #242424;
  font-size: 1.07rem;
  line-height: 1.6;
}
.case-solution .accent {
  color: var(--accent);
  font-weight: bold;
}
.case-solution__action {
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--brand);
  margin-top: 1.2rem;
}
.case-solution__date {
  background: #333;
  color: var(--brand);
  padding: 0.2rem 1.05rem;
  border-radius: 1.1rem;
  margin-right: 0.7rem;
  font-size: 0.99rem;
}

.case-impact {
  padding: 4.3rem 0vw 0rem;
  background: var(--light-bg);
  text-align: center;
}
.case-impact__title {
  font-size: 1.6rem;
  margin-bottom: 2.2rem;
}
.case-impact__counters {
  display: flex;
  justify-content: center;
  gap: 3vw;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.case-counter {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem;
  min-width: 120px;
}
.counter-num {
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--accent);
}
.counter-label {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  color: #444;
}

.case-outcome {
  padding: 3rem 6vw 5rem;
  text-align: center;
  background: #fff;
}
.case-outcome h2 {
  font-size: 1.35rem;
  margin-bottom: 1.8rem;
  font-weight: 600;
}
.case-outcome blockquote {
  font-size: 1.19rem;
  color: #1c1c1c;
  font-style: italic;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  line-height: 1.44;
  background: #f6f7fb;
  border-radius: var(--radius-md);
  padding: 1.6rem 2rem;
}
.case-outcome blockquote span {
  font-size: 1.01rem;
  color: #888;
  display: block;
  margin-top: 1rem;
}
.case-outcome__btn {
  margin-top: 2.3rem;
}
.case-outcome__btn .btn-discuss {
  font-size: 1.1rem;
  padding: 0.7rem 2rem;
  background: #111;
  color: white;
  border-radius: 2rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.case-outcome__btn .btn-discuss:hover {
  background: var(--accent);
  color: #fff;
}
