/* -- VARIABLES -- */
:root {
  --cs-orange: #ff5c28;
  --cs-orange-light: #fff4ee;
  --cs-dark: #1a1a2e;
  --cs-dark-bg: #1c1c2e;
  --cs-text: #333333;
  --cs-text-light: #666666;
  --cs-border: #d0d5dd;
  --cs-bg-light: #f8f8fa;
  --cs-white: #ffffff;
  --cs-radius: 12px;
  --cs-radius-lg: 16px;
  --cs-max-width: 1200px;
  --cs-font: "Inter", sans-serif;
}

/* -- RESET / BASE -- */
.casestudy-v2 {
  font-family: var(--cs-font) !important;
  color: var(--cs-text);
  line-height: 1.6;
  /* -webkit-font-smoothing: antialiased; */
  overflow-x: hidden;
  margin: 0;
  max-width: none;
  padding: 0;
}

.casestudy-v2 *,
.casestudy-v2 *::before,
.casestudy-v2 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.cs-container {
  max-width: var(--cs-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.cs-wysiwyg p {
  margin-bottom: 1em;
}
.cs-wysiwyg p:last-child {
  margin-bottom: 0;
}
.cs-wysiwyg strong {
  font-weight: 700;
}

/* -- SCROLL REVEAL ANIMATIONS -- */
.cs-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cs-reveal.cs-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.cs-reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cs-reveal-stagger.cs-revealed > *:nth-child(1) {
  transition-delay: 0ms;
}
.cs-reveal-stagger.cs-revealed > *:nth-child(2) {
  transition-delay: 100ms;
}
.cs-reveal-stagger.cs-revealed > *:nth-child(3) {
  transition-delay: 200ms;
}
.cs-reveal-stagger.cs-revealed > *:nth-child(4) {
  transition-delay: 300ms;
}
.cs-reveal-stagger.cs-revealed > *:nth-child(5) {
  transition-delay: 400ms;
}
.cs-reveal-stagger.cs-revealed > *:nth-child(6) {
  transition-delay: 500ms;
}

.cs-reveal-stagger.cs-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in from left */
.cs-reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cs-reveal--left.cs-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Fade-in from right */
.cs-reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cs-reveal--right.cs-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-in */
.cs-reveal--scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.cs-reveal--scale.cs-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Reduce motion for a11y */
@media (prefers-reduced-motion: reduce) {
  .cs-reveal,
  .cs-reveal--left,
  .cs-reveal--right,
  .cs-reveal--scale,
  .cs-reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.case-study-article {
  margin: 0;
  max-width: none;
  padding: 0;
}

/* -- HERO SECTION -- */
.cs-hero {
  padding: 80px 10px 60px 10px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    90% 42% at 30% 10%,
    rgba(255, 100, 42, 0.18) 0%,
    rgba(255, 130, 60, 0.05) 40%,
    rgba(255, 160, 80, 0.03) 65%,
    rgba(255, 160, 80, 0) 80%
  );
  z-index: 0;
  pointer-events: none;
}

.cs-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.2px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Badge 1 */
.cs-badge:nth-child(1) {
  color: #ff5c28;
  background: #fff0eb;
  border: 1px solid #ff5c2838;
}

/* Badge 2 */
.cs-badge:nth-child(2) {
  color: #f59e0b;
  background: transparent;
  border: 1px solid #f59e0b75;
}

.cs-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cs-badge:nth-child(1)::before {
  background: #ff5c28;
}

.cs-badge:nth-child(2)::before {
  background: #f59e0b;
}

/* Hero Grid */
.cs-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
  margin-bottom: 48px;
}

.cs-hero__content {
  width: 700px;
  max-width: 100%;
}

.cs-hero__title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 66px;
  letter-spacing: -1.5px;
  color: #0f1c2e;
  margin-bottom: 16px;
}

.cs-hero__title .cs-highlight {
  color: var(--cs-orange);
}

.cs-hero__desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28.88px;
  color: #344054;
  margin-bottom: 28px;
  max-width: 520px;
}

.cs-hero__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 50px;
  padding: 30px; */
  width: 368px;
  max-width: 100%;
  background: #fff7f4;
  border-radius: var(--cs-radius-lg);
}

.cs-hero__logo {
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--cs-radius-lg);
}

.cs-hero__x {
  font-weight: 600;
  font-size: 36px;
  line-height: 19.2px;
  color: #000000;
}

.cs-metrics {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  padding: 0;
  overflow: hidden;
}

.cs-metrics__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 2px;
  padding: 16px;
  border: 1px solid #f2f4f7;
  transition: background 0.3s ease;
  flex: 1;
  min-width: 0;
  border-radius: 12px;
}

.cs-metrics__item:hover {
  background: #fff7f4;
  border-color: #fff7f4;
}

.cs-metrics__value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 27px;
  letter-spacing: -1.08px;
  color: #1d2939;
  transition: color 0.5s ease;
}

.cs-metrics__item:hover .cs-metrics__value {
  color: #ff5722;
}

.cs-metrics__label {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 16.1px;
  color: #344054;
}

/* -- ABOUT SECTION --*/
.cs-about {
  padding: 68px 0;
  background: #fafafa;
}

.cs-about__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 88px;
  align-items: start;
}

.cs-section-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #667085;
  margin-bottom: 14px;
}

.cs-about__text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #344054;
}

/* Snapshot sidebar */
.cs-snapshot {
  background: #fafafa;
}

.cs-snapshot__heading {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #667085;
  margin-bottom: 14px;
}

.cs-snapshot__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-grey-300, #CDD4DF);
  border-radius: 13px;
  padding: 12px;
}

.cs-snapshot__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e3;
}

.cs-snapshot__row:last-child {
  border-bottom: none;
}

.cs-snapshot__label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #475467;
  font-weight: 400;
  flex-shrink: 0;
}

.cs-snapshot__value {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #1d2939;
  width: 270px;
}

/* -- CHALLENGES SECTION -- */
.cs-challenges {
  padding: 60px 0;
  background: var(--cs-white);
}

.cs-section-tag {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f15a29;
  margin-bottom: 12px;
}

.cs-challenges__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: #1d2939;
  line-height: 32px;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cs-challenges__body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: #344054;
  margin-bottom: 32px;
  max-width: 900px;
}

/* Consequence cards */
.cs-consequences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.cs-consequence-card {
  border: 1px solid #f2f4f7;
  border-radius: 8px;
  padding: 16px;
  background: var(--cs-white);
}

.cs-consequence-card:hover {
  border: 1px solid#FF5722;
}

.cs-consequence-card__tag {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  color: #f15a2c;
  margin-bottom: 9px;
}

.cs-consequence-card__body p b {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: #1d2939;
}

.cs-consequence-card__body p span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #344054;
}

/* -- TESTIMONIAL SECTION -- */
.cs-testimonial {
  padding: 48px 0;
  background: var(--cs-white);
}

.cs-testimonial__card {
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  background: var(--cs-bg-light);
  border-left: 4px solid #f15a29;
  border-radius: var(--cs-radius);
  padding: 26px;
  box-shadow: 0px 1px 2px 0px #0000000d;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cs-quote {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 27.9px;
  color: #ff5722;
}

.cs-testimonial__quote p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 27.9px;
  color: #344054;
  max-width: 640px;
}

.cs-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.cs-testimonial__info {
  display: flex;
  flex-direction: column;
}

.cs-testimonial__name {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cs-dark);
}

.cs-testimonial__role {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #475467;
}

.cs-testimonial__avatar {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.cs-testimonial__card figcaption {
  gap: 16px;
  flex-shrink: 0;
}

/* -- RESULTS SECTION -- */
.cs-results {
  padding: 60px 0;
  background: #0f1117;
  color: var(--cs-white);
}

.cs-results__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(38px, 3vw, 48px);
  font-weight: 800;
  line-height: 51.84px;
  color: var(--cs-white);
  margin-bottom: 12px;
  letter-spacing: -1.68px;
}

.cs-results__desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 28.56px;
  color: #f2f4f7;
  max-width: 680px;
}

/* Result cards */
.cs-result-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0 32px 0;
}

.cs-result-card {
  background: #11151c;
  border-bottom: 1px solid #1a1d24;
  border-radius: 8px;
  padding: 30px 26px;
}

.cs-result-card:hover {
  background: #1a1d24;
}

.cs-result-card__tag {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #f15a29;
  margin-bottom: 10px;
}

.cs-result-card__value {
  font-family: "Inter", sans-serif;
  display: block;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: #f15a29;
  line-height: 36px;
  margin-bottom: 4px;
}

.cs-result-card__title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-white);
  margin-bottom: 6px;
  line-height: 21.6px;
}

.cs-result-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21.6px;
  color: #ffffff8c;
}

/* Key Takeaways */
.cs-takeaways {
  display: flex;
  gap: 24px;
  align-items: baseline;
}

.cs-takeaways__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  color: var(--cs-white);
  white-space: nowrap;
  flex-shrink: 0;
}

.cs-takeaways__body span {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 27px;
  color: var(--cs-white);
}

/* -- CTA BANNER SECTION -- */
.cs-cta {
  padding: 60px 30px;
  background: var(--cs-white);
}

.cs-cta--container {
  background: #0f1117;
  border-radius: 12px;
  padding: 38px;
}

.cs-cta__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cs-cta__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--cs-white);
  line-height: 58.75px;
  margin-bottom: 18px;
  letter-spacing: -1.9px;
}

.cs-cta__desc {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #f2f4f7;
  margin-bottom: 18px;
}

.cs-cta__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-bottom: 24px;
}

.cs-cta__feature {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20.99px;
  color: #f2f4f7;
}

.cs-cta__feature svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.cs-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* -- BUTTONS (shared) -- */
.cs-btn {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--cs-radius);
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s ease;
  border: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.cs-btn:hover {
  color: #f15a2c;
  font-size: 15px;
}

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

.cs-btn--primary {
  background: var(--cs-orange);
  color: var(--cs-white);
  line-height: 1;
}

.cs-btn--primary:hover {
  color: #ffffff;
  box-shadow: 0px 4px 20px 0px #ff5c2852;
  font-size: 15px;
  line-height: 1;
}

.cs-btn--primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.cs-btn--primary:hover svg {
  transform: translateX(2px);
}

.cs-btn--outline {
  background: var(--cs-white);
  color: #344054;
  border: 1.5px solid #0f1c2e29;
}

.cs-btn--outline:hover {
  color: #f15a2c;
  font-size: 15px;
  line-height: 1;
}

/* -- RELATED CASE STUDIES SECTION -- */
.cs-related {
  padding: 80px 0;
  background: var(--cs-bg-light);
}

.cs-related__heading {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--cs-dark);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.cs-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cs-related-card {
  background: var(--cs-white);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.cs-related-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cs-bg-light);
}

.cs-related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-related-card__body {
  padding: 20px 24px 24px;
}

.cs-related-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.cs-related-card__cat {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cs-text-light);
}

.cs-related-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--cs-dark);
  line-height: 1.4;
  margin-bottom: 12px;
}

.cs-related-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-orange);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* -- LARGE DESKTOP (max-width: 1280px) -- */
@media (max-width: 1280px) {
  .cs-hero__grid {
    gap: 48px;
  }

  .cs-hero__content {
    width: 100%;
  }

  .cs-hero__title {
    font-size: 50px;
    line-height: 56px;
  }

  .cs-about__grid {
    gap: 48px;
  }
}

/* -- RESPONSIVE — TABLET (max-width: 992px) -- */
@media (max-width: 992px) {
  .cs-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cs-hero__logos {
    max-width: 360px;
  }

  .cs-hero__title {
    font-size: 42px;
    line-height: 48px;
  }

  .cs-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cs-consequences {
    grid-template-columns: 1fr 1fr;
  }

  .cs-result-cards {
    grid-template-columns: 1fr 1fr;
  }

  .cs-related__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cs-testimonial__card {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    width: auto;
  }

  .cs-testimonial__card figcaption {
    flex-direction: row;
  }

  .cs-takeaways {
    flex-direction: column;
    gap: 12px;
  }

  .cs-metrics__item {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }

  .cs-cta__heading {
    line-height: 1.3;
  }
}

/* -- RESPONSIVE — TABLET SMALL (max-width: 768px) -- */
@media (max-width: 768px) {
  .cs-container {
    padding: 0 20px;
  }

  .cs-hero {
    padding: 36px 0 0;
  }

  .cs-hero__grid {
    gap: 28px;
  }

  .cs-hero__title {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .cs-hero__desc {
    font-size: 15px;
  }

  .cs-hero__logos {
    max-width: 100%;
    /* padding: 36px 24px;
    flex-direction: row;
    gap: 20px; */
  }

  .cs-hero__logo {
    max-width: 120px;
  }

  .cs-metrics__value {
    font-size: 26px;
  }

  .cs-about,
  .cs-challenges,
  .cs-testimonial,
  .cs-results,
  .cs-related {
    padding: 48px 0;
  }

  .cs-cta {
    padding: 56px 25px;
  }

  .cs-consequences {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-consequence-card {
    padding: 20px;
  }

  .cs-result-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cs-result-card {
    padding: 24px;
  }

  .cs-related__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cs-related-card {
    display: flex;
    flex-direction: row;
  }

  .cs-related-card__thumb {
    width: 180px;
    flex-shrink: 0;
    aspect-ratio: auto;
  }

  .cs-related-card__body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cs-testimonial__card {
    padding: 24px;
    gap: 24px;
    width: auto;
  }

  .cs-testimonial__quote p {
    font-size: 15px;
  }

  .cs-testimonial__avatar {
    width: 60px;
    height: 60px;
  }

  .cs-cta__heading {
    font-size: 26px;
    line-height: 1.3;
  }

  .cs-cta__features {
    gap: 16px;
  }

  .cs-challenges__heading,
  .cs-results__heading {
    font-size: 26px;
  }

  .cs-results__heading {
    line-height: 1.2;
  }

  .cs-snapshot__row {
    padding: 12px 0;
  }

  .cs-cta--container {
    padding: 28px;
  }

  .cs-metrics__item {
    flex: 1 1 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

/* -- RESPONSIVE — LARGE MOBILE (max-width: 600px) -- */
@media (max-width: 600px) {
  .cs-hero__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cs-hero__logo {
    max-width: 110px;
  }

  .cs-metrics {
    flex-direction: column;
  }

  .cs-metrics__item {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .cs-metrics__value {
    font-size: 24px;
  }

  .cs-result-card__value {
    font-size: 30px;
  }

  .cs-testimonial__card {
    padding: 22px;
    width: auto;
  }

  .cs-cta__features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .cs-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-btn {
    justify-content: center;
  }

  .cs-related-card {
    flex-direction: column;
  }

  .cs-related-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .cs-related-card__body {
    padding: 16px;
  }
}

/* -- RESPONSIVE — MOBILE (max-width: 480px) -- */
@media (max-width: 480px) {
  .cs-container {
    padding: 0 16px;
  }

  .cs-hero {
    padding: 40px 15px 20px 15px;
  }

  .cs-hero__badges {
    gap: 8px;
  }

  .cs-badge {
    font-size: 11px;
    padding: 5px 10px;
  }

  .cs-hero__title {
    font-size: 26px;
    line-height: 32px;
    letter-spacing: -0.8px;
  }

  .cs-hero__desc {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .cs-hero__logos {
    /* padding: 24px 16px;
    gap: 12px; */
    width: auto;
  }

  .cs-hero__logo {
    max-width: 100px;
  }

  .cs-hero__x {
    font-size: 16px;
  }

  .cs-metrics__value {
    font-size: 24px;
  }

  .cs-about,
  .cs-challenges,
  .cs-testimonial,
  .cs-results,
  .cs-related {
    padding: 40px 0;
  }

  .cs-cta {
    padding: 48px 20px;
  }

  .cs-about__text {
    font-size: 14px;
  }

  .cs-challenges__heading,
  .cs-results__heading {
    font-size: 22px;
  }

  .cs-challenges__body {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cs-consequence-card {
    padding: 16px;
  }

  .cs-consequence-card__body {
    font-size: 13px;
  }

  .cs-testimonial__card {
    padding: 20px;
    gap: 16px;
    width: auto;
  }

  .cs-testimonial__quote p {
    font-size: 14px;
  }

  .cs-testimonial__avatar {
    width: 52px;
    height: 52px;
  }

  .cs-testimonial__name {
    font-size: 14px;
  }

  .cs-testimonial__role {
    font-size: 12px;
  }

  .cs-result-card {
    padding: 20px;
  }

  .cs-result-card__value {
    font-size: 28px;
  }

  .cs-result-card__title {
    font-size: 14px;
  }

  .cs-result-card__desc {
    font-size: 13px;
  }

  .cs-takeaways {
    gap: 8px;
    padding-top: 24px;
  }

  .cs-takeaways__body {
    font-size: 13px;
  }

  .cs-cta__heading {
    font-size: 22px;
    line-height: 1.3;
  }

  .cs-cta__desc {
    font-size: 14px;
  }

  .cs-cta__features {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cs-cta__feature {
    font-size: 13px;
  }

  .cs-cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-btn {
    justify-content: center;
    padding: 13px 24px;
    font-size: 14px;
  }

  .cs-related__heading {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .cs-related-card__title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .cs-snapshot__row {
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .cs-snapshot__value {
    text-align: left;
  }

  .cs-snapshot__label {
    font-size: 13px;
  }

  .cs-snapshot__value {
    font-size: 13px;
  }

  .cs-cta--container {
    padding: 18px;
  }
}

/* -- RESPONSIVE — SMALL MOBILE (max-width: 360px) -- */
@media (max-width: 360px) {
  .cs-container {
    padding: 0 12px;
  }

  .cs-hero {
    padding: 32px 10px 16px 10px;
  }

  .cs-hero__title {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.6px;
  }

  .cs-hero__desc {
    font-size: 13px;
    line-height: 22px;
  }

  .cs-badge {
    font-size: 10px;
    padding: 4px 8px;
    gap: 6px;
  }

  .cs-badge::before {
    width: 6px;
    height: 6px;
  }

  .cs-hero__logo {
    max-width: 80px;
  }

  .cs-hero__x {
    font-size: 14px;
  }

  .cs-metrics__value {
    font-size: 22px;
  }

  .cs-metrics__label {
    font-size: 12px;
  }

  .cs-metrics__item {
    padding: 12px;
    gap: 12px;
  }

  .cs-about,
  .cs-challenges,
  .cs-testimonial,
  .cs-results,
  .cs-related {
    padding: 32px 0;
  }

  .cs-cta {
    padding: 36px 12px;
  }

  .cs-cta--container {
    padding: 14px;
  }

  .cs-cta__heading {
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -1px;
  }

  .cs-cta__desc {
    font-size: 13px;
  }

  .cs-cta__feature {
    font-size: 12px;
  }

  .cs-about__text {
    font-size: 13px;
    line-height: 24px;
  }

  .cs-challenges__heading,
  .cs-results__heading {
    font-size: 20px;
    line-height: 1.2;
  }

  .cs-challenges__body {
    font-size: 13px;
    line-height: 24px;
  }

  .cs-consequence-card {
    padding: 14px;
  }

  .cs-consequence-card__tag {
    font-size: 13px;
  }

  .cs-consequence-card__body p b,
  .cs-consequence-card__body p span {
    font-size: 13px;
  }

  .cs-testimonial__card {
    padding: 16px;
    gap: 12px;
  }

  .cs-testimonial__quote p {
    font-size: 13px;
    line-height: 22px;
  }

  .cs-testimonial__avatar {
    width: 44px;
    height: 44px;
  }

  .cs-testimonial__name {
    font-size: 13px;
  }

  .cs-testimonial__role {
    font-size: 11px;
  }

  .cs-result-card {
    padding: 16px;
  }

  .cs-result-card__value {
    font-size: 24px;
    line-height: 30px;
  }

  .cs-result-card__title {
    font-size: 13px;
  }

  .cs-result-card__desc {
    font-size: 12px;
  }

  .cs-takeaways__body span {
    font-size: 13px;
  }

  .cs-btn {
    padding: 12px 20px;
    font-size: 13px;
  }

  .cs-related__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .cs-related-card__title {
    font-size: 14px;
  }

  .cs-related-card__body {
    padding: 14px;
  }

  .cs-snapshot__label {
    font-size: 12px;
  }

  .cs-snapshot__value {
    font-size: 12px;
  }

  .cs-section-tag {
    font-size: 12px;
  }

  .cs-section-label {
    font-size: 11px;
  }

  .cs-results__desc {
    font-size: 15px;
    line-height: 24px;
  }
}