/* BREADCRUMB */
.breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar a:hover {
  color: #fff;
}
.bc-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}
.bc-current {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

/* HERO */
.csd-hero {
  background: linear-gradient(145deg, #0f766e 0%, #0284c7 55%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}
.csd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(124, 92, 191, 0.2) 0%,
    transparent 60%
  );
  pointer-events: none;
}
/* top: breadcrumb + H1 */
.csd-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 32px 24px 28px;
}
.csd-hero h1 {
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 16px 0 0;
  max-width: 800px;
}
/* full-width image below H1 */
.csd-hero-img-full {
  position: relative;
  z-index: 2;
  width: 100%;
}
.csd-hero-img-full img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .csd-hero-img-full img {
    height: 220px;
  }
  .cs-overview .cs-label{
    text-align: center;
    font-size: 18px !important;
  }
  .cs-impact .cs-label{
       font-size: 18px !important;

  }
}

/* OVERVIEW */
.cs-overview {
  background: #fff;
  padding: 56px 24px;
  border-bottom: 1px solid #f0eeff;
}
.cs-overview .cs-label {
  margin-bottom: 12px;
  font-size: 28px;
  color: #000000;
}
.cs-overview h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 16px;
  line-height: 1.25;
  max-width: 900px;
}
.cs-overview-client {
  font-size: 18px !important;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.cs-overview-client span {
  color: #e85d26;
}
.cs-overview-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  max-width: 900px;
}

/* MAIN LAYOUT */
.csd-main {
  padding: 40px 24px 50px;
  background: #eaf0f0;
}
.csd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

/* CONTENT */
.csd-content {
  color: #333;
  line-height: 1.8;
}
.csd-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 36px 0 14px;
}
.csd-content h2:first-child {
  margin-top: 0;
}
.csd-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: #3b2a8a;
  margin: 28px 0 10px;
}
.csd-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 14px;
}
.csd-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}
.csd-content ul li {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}
.csd-content ul ul {
  margin-top: 6px;
  list-style-type: circle;
}
.csd-content hr {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 36px 0;
}
.csd-content strong {
  color: #1a1a2e;
}

.csd-details-box {
  background: #f7f5ff;
  border-left: 4px solid #7c5cbf;
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.csd-details-box h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
}
.csd-details-box p {
  margin-bottom: 8px;
  font-size: 15px;
}

/* SIDEBAR FORM */
.csd-sidebar {
  position: sticky;
  top: 100px;
}
.csd-form-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.csd-form-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 24px;
  line-height: 1.3;
}
.csd-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.csd-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}
.csd-form-group input {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Figtree", sans-serif;
  color: #1a1a2e;
  outline: none;
  transition: border-color 0.2s;
}
.csd-form-group input:focus {
  border-color: #7c5cbf;
}
.csd-form-group input::placeholder {
  color: #aaa;
}

.btn-download {
  width: 100%;
  background: #e85d26;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Figtree", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-download:hover {
  background: #cf4e1a;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .csd-container {
    grid-template-columns: 1fr;
  }

  /* Hide sidebar form on mobile ΓÇö shown as popup instead */
  .csd-sidebar {
    display: none;
  }
  .csd-container {
    gap: 0px;
  }
  .csd-hero-img-wrap img {
    height: 220px;
  }
}

/* ΓöÇΓöÇ MOBILE CTA BUTTON ΓöÇΓöÇ */
.csd-mobile-cta {
  display: none;
}
@media (max-width: 900px) {
  .csd-mobile-cta {
    display: block;
    text-align: center;
    margin: 40px 0 20px;
  }
  .btn-csd-popup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7c3aed, #e85d26);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Figtree", sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    transition:
      transform 0.2s,
      box-shadow 0.2s;
  }
  .btn-csd-popup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
  }
}

/* ΓöÇΓöÇ POPUP MODAL ΓöÇΓöÇ */
.csd-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.csd-popup-overlay.active {
  display: flex;
}
.csd-popup-inner {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  animation: popupSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes popupSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.csd-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: background 0.2s;
}
.csd-popup-close:hover {
  background: #eee;
}

/* Coming soon placeholder */
.csd-coming-soon {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}
.csd-coming-soon i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}
.csd-coming-soon h2 {
  font-size: 22px;
  color: #aaa;
  margin-bottom: 12px;
}
.csd-coming-soon p {
  font-size: 15px;
  color: #bbb;
}

/* ΓöÇΓöÇ NEW CASE STUDY REDESIGN ΓöÇΓöÇ */

.cs-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.cs-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #7c5cbf;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* OVERVIEW */
.cs-overview {
  background: #eaf0f0;
  padding: 20px 24px;
  border-bottom: 1px solid #f0eeff;
}
.cs-overview h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 20px;
  max-width: 760px;
}
.cs-overview p {
  font-size: 16px;
  color: black;
  line-height: 1.8;
  max-width: 820px;
}
.cs-overview-text {
  font-size: 16px !important;
  color: black !important;
  line-height: 1.6;
  max-width: 820px;
  font-weight: 500;
}

/* IMPACT STATS */
.cs-impact {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 20px 24px;
  text-align: center;
}
.cs-impact .cs-label {
  color: #a78bfa;
  text-align: center;
  font-size: 28px;
}
.cs-impact h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 8px 0 48px;
  text-align: center;
}
.cs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}
.cs-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s;
}
.cs-stat:last-child {
  border-right: none;
}
.cs-stat:hover {
  background: rgba(124, 92, 191, 0.15);
}
.cs-stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(124, 92, 191, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #a78bfa;
}
.cs-stat-val {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.cs-stat-desc {
  font-size: 15px;
  font-weight: 600;

  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbowFlow 4s linear infinite;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 900px) {
  .cs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .cs-stats-grid {
    grid-template-columns: 1fr;
  }
  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .cs-stat:last-child {
    border-bottom: none;
  }
}

/* CHALLENGE + SOLUTION */
.cs-challenge-solution {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 50%, #0d1b4d 100%);
  padding: 20px 24px;
}
.cs-cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* Full-width solution (no challenge) */
.cs-solution-full {
  max-width: 800px;
}
.cs-challenge .cs-label {
  color: #f87171;
}
.cs-solution .cs-label {
  color: #34d399;
}

/* .cs-solution h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 20px;
} */
.cs-challenge-content {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 20px;
}
.cs-cs-lead {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 0 0 16px;
  opacity: 0.9;
}
.cs-challenge p,
.cs-solution p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
 
}
.cs-challenge-list,
.cs-solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cs-challenge-list li,
.cs-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.cs-challenge-list li i {
  color: #f87171;
  margin-top: 2px;
  flex-shrink: 0;
}
.cs-solution-list li i {
  color: #34d399;
  margin-top: 2px;
  flex-shrink: 0;
}

/* FORM SECTION */
.cs-form-section {
  background: #eaf0f0;
  padding: 20px 24px;
  border-top: 1px solid #d0dede;
}
.cs-form-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.cs-form-text .cs-label {
  color: #000000;
  font-weight: 800 !important;
  font-size: 28px;
}
.cs-form-text h2 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin: 0;
}
.cs-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cs-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cs-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555;
}
.cs-form-group input {
  background: #fff;
  border: 1px solid #c5d5d5;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 14px;
  font-family: "Figtree", sans-serif;
  color: #1a1a2e;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.cs-form-group input:focus {
  border-color: #7c5cbf;
  background: #f0eeff;
}
.cs-form-group input::placeholder {
  color: #aaa;
}
.cs-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cs-form-note {
  font-size: 12px;
  color: #888;
}

/* CTA STRIP */
.cs-cta {
  background: #eaf0f0;
  padding: 20px 24px;
  border-top: 1px solid #d0dede;
}
.cs-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cs-cta h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 6px;
}
.cs-cta p {
  font-size: 14px;
  color: #666;
  margin: 0;
}
.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-cs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cs-form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cs-form-row {
    grid-template-columns: 1fr;
  }
  .cs-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cs-label {
    font-size: 22px !important;
    letter-spacing: 1px;
  }
}
@media (max-width: 540px) {
  .cs-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .cs-stats-grid {
    grid-template-columns: 1fr;
  }
  .cs-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .cs-stat:last-child {
    border-bottom: none;
  }
}

/* 3-column stats grid variant */
.cs-stats-grid--3 {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .cs-stats-grid--3 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 540px) {
  .cs-stats-grid--3 {
    grid-template-columns: 1fr !important;
  }
}

/* 5-column stats grid variant */
.cs-stats-grid--5 {
  grid-template-columns: repeat(5, 1fr) !important;
}
@media (max-width: 900px) {
  .cs-stats-grid--5 {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 540px) {
  .cs-stats-grid--5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 400px) {
  .cs-stats-grid--5 {
    grid-template-columns: 1fr !important;
  }
}

/* ── OVERVIEW + IMPACT COMBINED ── */
.cs-overview-impact {
  background: #eaf0f0;;
  padding: 20px 24px;
  overflow: hidden;
}

.cs-oi-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 46px;
  align-items: start;
}

/* LEFT: overview */
.cs-oi-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.cs-oi-left.cs-oi-visible {
  opacity: 1;
  transform: translateX(0);
}

.cs-oi-left .cs-label {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-align: center;
}

.cs-oi-left .cs-overview-client {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  line-height: 1.4;
}

.cs-oi-left .cs-overview-client span {
  color: #e85d26;
}

.cs-oi-left .cs-overview-text {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* RIGHT: impact stats */
.cs-oi-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}
.cs-oi-right.cs-oi-visible {
  opacity: 1;
  transform: translateX(0);
}

.cs-oi-right .cs-impact-label {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: center;
}

.cs-oi-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cs-oi-stat {
  background: linear-gradient(135deg, #0d0d2b 0%, #1a0a3d 100%);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid rgba(167,139,250,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0;
  transform: translateY(20px);
}

.cs-oi-stat.cs-oi-stat-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}

.cs-oi-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124,92,191,0.25);
}

.cs-oi-stat-val {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  text-align: center;
}

.cs-oi-stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 900px) {
  .cs-oi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cs-oi-left, .cs-oi-right {
    transform: translateY(30px) !important;
  }
  .cs-oi-left.cs-oi-visible, .cs-oi-right.cs-oi-visible {
    transform: translateY(0) !important;
  }
}

@media (max-width: 480px) {
  .cs-oi-stats {
    grid-template-columns: 1fr;
  }
}

/* Keep old .cs-overview and .cs-impact for pages not yet migrated */

.cs-impact .cs-label {
  color: #ffffff !important;
}

.cs-stat-desc {
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  animation: none !important;
}

/* HERO — split layout above 900px: title left, image right */
@media (min-width: 901px) {
  .csd-hero {
    display: flex;
    flex-direction: column;
  }
  .csd-hero-inner {
    display: flex;
    flex-direction: column;
  }
  .csd-hero-split {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .csd-hero-split .csd-hero-title {
    flex: 1;
  }
  .csd-hero-split .csd-hero-img-full {
    flex: 1;
    width: auto;
  }
  .csd-hero-split .csd-hero-img-full img {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    object-fit: cover;
  }
  /* hide the original full-width image when split is active */
  .csd-hero > .csd-hero-img-full {
    display: none;
  }
}

/* HERO — title left, image right above 900px */
@media (min-width: 901px) {
  .csd-hero {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
  }
  .csd-hero-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px 32px 24px;
    max-width: none;
    margin: 0;
  }
  .csd-hero h1 {
    margin-top: 20px;
  }
  .csd-hero-img-full {
    flex: 1;
    position: relative;
    z-index: 2;
    width: auto;
  }
  .csd-hero-img-full img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
  }
}

/* HERO — FINAL: title left, image right above 900px */
@media (min-width: 901px) {
  .csd-hero {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    overflow: visible !important;
    min-height: 340px;
  }
  .csd-hero-inner {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 32px 40px 32px 48px !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .csd-hero h1 {
    margin-top: 20px;
    max-width: 100%;
  }
  .csd-hero-img-full {
    flex: 1 !important;
    display: block !important;
    width: auto !important;
    position: relative;
    z-index: 2;
  }
  .csd-hero-img-full img {
    width: 100% !important;
    height: 100% !important;
    min-height: 340px;
    object-fit: cover !important;
    display: block !important;
  }
}

/* HERO — 40/60 split, reduced height */
@media (min-width: 901px) {
  .csd-hero {
    min-height: 240px !important;
  }
  .csd-hero-inner {
    flex: 0 0 40% !important;
    max-width: 40% !important;
  }
  .csd-hero-img-full {
    flex: 0 0 60% !important;
    width: 60% !important;
  }
  .csd-hero-img-full img {
    min-height: 240px !important;
    max-height: 280px !important;
  }
}

/* HERO — restore height */
@media (min-width: 901px) {
  .csd-hero {
    min-height: 380px !important;
  }
  .csd-hero-img-full img {
    min-height: 380px !important;
    max-height: 480px !important;
  }
}

.cs-stat-icon {
  display: none !important;
}



