/* ===== CSR PAGE ===== */
main.csr-main {
  padding: 0;
  min-height: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.section {
  padding: 5rem 0;
}
.section--alt {
  background: var(--bg-light);
}
.section--dark {
  background: var(--bg-dark);
  color: #fff;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.625rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: inherit;
  max-width: none;
}
.section-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.btn-lg {
  padding: 0.8125rem 1.875rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.btn-ghost-white {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}
.btn-ghost-white:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #fff !important;
}

/* ===== HERO ===== */
.page-hero {
  background: var(--bg-dark) center / cover no-repeat;
  color: #fff;
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.6) 50%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}
.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
  max-width: none;
}
.page-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.page-hero-sub {
  font-size: clamp(1rem, 1.75vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

/* ===== MISSION ===== */
.csr-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.csr-mission-text .section-desc {
  max-width: none;
}

.csr-mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.csr-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.125rem;
  padding: 1.5rem;
  text-align: center;
}
.csr-stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.csr-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== PILLARS ===== */
.csr-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.csr-pillar {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}
.csr-pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.csr-pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.12),
    rgba(246, 97, 50, 0.06)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.csr-pillar-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.csr-pillar-num {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(246, 153, 50, 0.2);
  line-height: 1;
}
.csr-pillar-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.csr-pillar-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: none;
}

.csr-pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.csr-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.55;
}
.csr-pillar-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ===== SEEMECSR DARK ===== */
.seemecsr-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.seemecsr-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.seemecsr-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section--dark .section-title {
  color: #fff;
}
.section--dark .section-desc {
  color: rgba(255, 255, 255, 0.72);
}
.section--dark .eyebrow {
  color: var(--primary);
}

.core-name-see {
  color: #fff;
}
.core-name-me {
  color: var(--primary);
}

.seemecsr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.seemecsr-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.seemecsr-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.seemecsr-icon-wrap img {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
  opacity: 0.85;
}

/* ===== CTA ===== */
.cta-banner {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 80% at 50% 0%,
      rgba(246, 153, 50, 0.2) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 100%,
      rgba(246, 97, 50, 0.15) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner .eyebrow {
  margin-bottom: 1rem;
}
.cta-banner .section-title {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2.5rem;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 64em) {
  .csr-mission-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 48em) {
  .section {
    padding: 3.5rem 0;
  }
  .csr-pillars {
    grid-template-columns: 1fr;
  }
  .seemecsr-inner {
    grid-template-columns: 1fr;
  }
  .seemecsr-photo {
    aspect-ratio: 16 / 9;
  }
  .seemecsr-icon-wrap {
    display: none;
  }
  .cta-banner-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== STATS ROW ===== */
.csr-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* ===== CHALLENGE ===== */
.csr-challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.csr-problem {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  padding: 2rem;
}
.csr-problem-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.csr-problem-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.csr-problem-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

/* ===== PRODUCTS ===== */
.csr-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.csr-product {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.csr-product-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.625rem;
  background: rgba(246, 153, 50, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.csr-product-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.csr-product-title {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.csr-product-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

/* ===== GEO PRESENCE ===== */
.csr-geo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.csr-geo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1.375rem;
  padding: 2.25rem;
}
.csr-geo-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.csr-geo-flag {
  height: 1.75rem;
  width: auto;
  border-radius: 0.25rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}
.csr-geo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.csr-geo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.csr-geo-stat-num {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.csr-geo-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.csr-geo-endorsements {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.csr-geo-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 0.2rem 0.625rem;
  color: var(--text-muted);
}
.csr-geo-body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== CAREERS 2.0 — THESIS ===== */
.c20-thesis {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 2.5rem 0 1.5rem;
  padding: 1.25rem 1.75rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 1rem;
}
.c20-infra {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.c20-infra span {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.3rem 0.875rem;
}
.c20-arrow {
  font-size: 1.375rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}
.c20-out-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.c20-out {
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.0625rem;
  color: var(--primary);
}
.c20-tag {
  font-style: italic;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===== CAREERS 2.0 — FIGURE ===== */
.c20-figure {
  margin: 2.5rem 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.22);
}
.c20-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.c20-cap {
  margin-top: 0.875rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.01em;
  max-width: none;
}

/* ===== CAREERS 2.0 — CARDS ===== */
.c20-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
  margin-top: 2.5rem;
}
.c20-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.875rem;
  padding: 2rem 1.75rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.c20-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -24px rgba(31, 39, 51, 0.3);
}
.c20-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.c20-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.c20-card-body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== CAREERS 2.0 — ALWAYS-ON BAND ===== */
.c20-band {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}
.c20-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.c20-band-h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.625rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 0;
}
.c20-band-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--bg);
}
.c20-band-text p + p {
  margin-top: 1rem;
}

/* ===== CAREERS 2.0 — MINI CTA ===== */
.c20-cta {
  text-align: center;
  padding: 4rem 0 2rem;
}
.c20-cta-title {
  font-size: clamp(1.625rem, 3.4vw, 2.375rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.875rem;
}
.c20-cta-sub {
  max-width: 38rem;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== PARTNERSHIP TIERS ===== */
.csr-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.csr-tier {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 1.375rem;
  padding: 2.25rem 2rem;
  position: relative;
}
.csr-tier.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(246, 153, 50, 0.12);
}
.csr-tier-badge {
  position: absolute;
  top: -0.8125rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
}
.csr-tier-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.csr-tier-title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.csr-tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
  margin-bottom: 1.875rem;
}
.csr-tier-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}
.csr-tier-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='20 6 9 17 4 12' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ===== WHAT YOU RECEIVE ===== */
.csr-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}
.csr-deliverable {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.csr-deliverable-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: linear-gradient(
    135deg,
    rgba(246, 153, 50, 0.15),
    rgba(246, 97, 50, 0.08)
  );
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.csr-deliverable-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.csr-deliverable-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.csr-deliverable-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== VALIDATIONS ===== */
.csr-validations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.csr-validation {
  background: #fff;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.csr-validation-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.csr-validation-logo img {
  max-height: 80px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.csr-validation-org {
  font-weight: 700;
  font-size: 0.875rem;
  color: #1a1a2e;
  line-height: 1.3;
}
.csr-validation-note {
  font-size: 0.8rem;
  color: #666;
}
.csr-testimonial {
  background: rgba(246, 153, 50, 0.07);
  border: 1px solid rgba(246, 153, 50, 0.2);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  margin-top: 3rem;
}
.csr-testimonial blockquote {
  font-size: 1.0625rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.csr-testimonial cite {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}

/* ===== FINAL CTA ===== */
.csr-cta-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.csr-cta-meta p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
}
.csr-cta-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 64em) {
  .csr-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .csr-tiers {
    grid-template-columns: 1fr;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
  }
  .csr-deliverables {
    grid-template-columns: 1fr 1fr;
  }
  .csr-validations {
    grid-template-columns: 1fr 1fr;
  }
  .csr-geo-grid {
    grid-template-columns: 1fr;
  }
  .c20-band-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 48em) {
  .csr-challenge-grid {
    grid-template-columns: 1fr;
  }
  .csr-products-grid {
    grid-template-columns: 1fr;
  }
  .c20-cards {
    grid-template-columns: 1fr;
  }
  .csr-deliverables {
    grid-template-columns: 1fr;
  }
  .csr-validations {
    grid-template-columns: 1fr;
  }
  .csr-geo-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
