/* =============================================
   PARKAR.IN - GCC Page Styles
   css/gcc.css
   Used by: pages/GCC/Overview.html
   ============================================= */

/* ─── Base overrides (solutions.css already loaded) ─── */
body {
  font-family: var(--font-body);
  background-color: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

/* ─── GCC HERO ─── */
.gcc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(27,174,159,0.09) 0%, transparent 65%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(27,174,159,0.05) 0%, transparent 55%),
              var(--navy);
}
.gcc-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.gcc-hero-content { max-width: 580px; }
.gcc-hero-content .section-label { margin-bottom: 20px; }
.gcc-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--white);
}
.gcc-hero-content h1 span { color: var(--teal); }
.gcc-hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  line-height: 1.4;
}
.gcc-hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 500px;
}
.gcc-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcc-hero-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

/* ─── CASE STUDY BANNER ─── */
.cs-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(27,174,159,0.08) 0%, rgba(27,174,159,0.03) 100%), var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cs-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cs-banner-left .section-label { margin-bottom: 16px; }
.cs-banner-left h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--white);
}
.cs-banner-left p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  max-width: 460px;
}
.cs-banner-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cs-banner-stat {
  text-align: center;
  padding: 24px 20px;
  border-left: 1px solid var(--border);
}
.cs-banner-stat:first-child { border-left: none; }
.cs-banner-stat-number {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 10px;
}
.cs-banner-stat-label {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ─── THOUGHT LEADERSHIP ─── */
.thought-leadership {
  padding: 100px 0;
  background: var(--navy);
}
.thought-leadership-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.thought-leadership-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}
.thought-leadership-head h2 span { color: var(--teal); }
.tl-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  transition: gap 0.2s;
}
.tl-learn-more svg { width: 16px; height: 16px; }
.tl-learn-more:hover { gap: 12px; }
.tl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tl-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.tl-card:hover {
  border-color: rgba(27,174,159,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.tl-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.tl-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tl-card:hover .tl-card-img-wrap img { transform: scale(1.05); }
.tl-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tl-card-date {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.tl-card-body h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
  flex: 1;
}
.tl-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
}
.tl-card-link svg { width: 14px; height: 14px; }
.tl-card-link:hover { gap: 10px; }

/* ─── WHAT WE DO ─── */
.what-we-do {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.what-we-do-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.what-we-do-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.what-we-do-head h2 span { color: var(--teal); }
.what-we-do-head p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.wwd-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.wwd-card:hover {
  border-color: rgba(27,174,159,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.wwd-icon {
  width: 48px;
  height: 48px;
  background: rgba(27,174,159,0.08);
  border: 1px solid rgba(27,174,159,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wwd-icon img { width: 26px; height: 26px; }
.wwd-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}
.wwd-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  flex: 1;
}

/* ─── 90-DAY CAROUSEL ─── */
.ninety-day {
  padding: 100px 0;
  background: var(--navy-mid);
  overflow: hidden;
}
.ninety-day-head {
  text-align: center;
  margin-bottom: 60px;
}
.ninety-day-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,174,159,0.1);
  border: 1px solid rgba(27,174,159,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.ninety-day-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 8px;
}
.ninety-day-head h2 span { color: var(--teal); }
.ninety-day-head p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0;
}
.carousel-wrapper {
  position: relative;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.carousel-slide-left {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.carousel-slide-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-slide-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(5,11,31,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}
.carousel-slide-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}
.carousel-slide-overlay h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.carousel-slide-right h3 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--white);
}
.carousel-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.carousel-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.carousel-bullet img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.carousel-btn:hover {
  border-color: var(--teal);
  background: rgba(27,174,159,0.1);
}
.carousel-btn img { width: 20px; height: 20px; }
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.carousel-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ─── STRATEGIC GROWTH ENGINE ─── */
.strategic-growth {
  padding: 100px 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(27,174,159,0.1) 0%, transparent 70%),
              var(--navy);
  text-align: center;
}
.strategic-growth h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--white);
}
.strategic-growth h2 span { color: var(--teal); }
.strategic-growth p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ─── ENGAGEMENT MODELS ─── */
.engagement-models {
  padding: 100px 0;
  background: var(--navy-mid);
}
.engagement-models-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.engagement-models-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.engagement-models-head h2 span { color: var(--teal); }
.engagement-models-head p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.em-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.em-card:hover {
  border-color: rgba(27,174,159,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.em-card-header { }
.em-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--white);
}
.em-card-subtitle {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
}
.em-divider {
  height: 1px;
  background: var(--border);
}
.em-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.em-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.em-bullet-dot {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(27,174,159,0.12);
  border: 1px solid rgba(27,174,159,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.em-bullet-dot svg { width: 8px; height: 8px; color: var(--teal); }
.em-card-cta {
  margin-top: auto;
}
.engagement-models-cta {
  text-align: center;
}

/* ─── ENTERPRISE READY ─── */
.enterprise-ready {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.enterprise-ready-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://cdn.prod.website-files.com/66fa50f0631f1401a2a41200/69032ce46dff57a10c8d24c1_enterprice%20ready.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}
.enterprise-ready-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.er-left { }
.er-left img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.er-right { }
.er-right .section-label { margin-bottom: 16px; }
.er-right h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--white);
}
.er-right h2 span { color: var(--teal); }
.er-right > p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}
.er-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.er-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
}
.er-bullet-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(27,174,159,0.15);
  border: 1px solid rgba(27,174,159,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.er-bullet-icon svg { width: 10px; height: 10px; color: var(--teal); }
.er-stats-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-top: 8px;
}

/* ─── NEW TO GCCS ─── */
.new-to-gcc {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(27,174,159,0.07) 0%, transparent 60%), var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.new-to-gcc-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.new-to-gcc h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}
.new-to-gcc h2 span { color: var(--teal); }
.new-to-gcc p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

/* ─── GCC CASE STUDIES ─── */
.gcc-case-studies {
  padding: 100px 0;
  background: var(--navy);
}
.gcc-case-studies-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.gcc-case-studies-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--white);
}
.gcc-case-studies-head h2 span { color: var(--teal); }
.gcc-cs-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.gcc-cs-stat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 220px;
}
.gcc-cs-stat-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.gcc-cs-stat-overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, rgba(5,11,31,0.88) 0%, rgba(5,11,31,0.6) 100%);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.gcc-cs-stat-overlay .mini-stat-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
}
.gcc-cs-stat-overlay .mini-stat-number {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.gcc-cs-stat-overlay .mini-stat-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.gcc-cs-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gcc-cs-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.gcc-cs-card:hover {
  border-color: rgba(27,174,159,0.3);
  transform: translateY(-4px);
}
.gcc-cs-card-img { width: 100%; height: 180px; object-fit: cover; }
.gcc-cs-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gcc-cs-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 10px;
}
.gcc-cs-card-body h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  flex: 1;
  margin-bottom: 16px;
}
.gcc-cs-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.2s;
}
.gcc-cs-learn-more svg { width: 14px; height: 14px; }
.gcc-cs-learn-more:hover { gap: 10px; }

/* ─── GCC STATISTICS ─── */
.gcc-stats {
  padding: 100px 0;
  background: var(--navy-mid);
}
.gcc-stats-head {
  text-align: center;
  margin-bottom: 64px;
}
.gcc-stats-head h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.gcc-stats-head h2 span { color: var(--teal); }
.gcc-stats-head p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 720px;
  margin: 0 auto;
}
.gcc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gcc-stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.gcc-stat-card:hover {
  border-color: rgba(27,174,159,0.3);
  transform: translateY(-4px);
}
.gcc-stat-number {
  font-family: var(--font-head);
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 12px;
}
.gcc-stat-label {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.gcc-stat-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .what-we-do-grid { grid-template-columns: repeat(2, 1fr); }
  .gcc-cs-top-grid { grid-template-columns: repeat(2, 1fr); }
  .gcc-cs-bottom-grid { grid-template-columns: repeat(2, 1fr); }
  .gcc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .gcc-hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .gcc-hero-content p { margin-left: auto; margin-right: auto; }
  .cs-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .carousel-slide { grid-template-columns: 1fr; }
  .enterprise-ready-inner { grid-template-columns: 1fr; }
  .new-to-gcc-inner { grid-template-columns: 1fr; gap: 32px; }
  .tl-grid { grid-template-columns: repeat(2, 1fr); }
  .engagement-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .what-we-do-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr; }
  .gcc-cs-top-grid { grid-template-columns: 1fr; }
  .gcc-cs-bottom-grid { grid-template-columns: 1fr; }
  .gcc-stats-grid { grid-template-columns: 1fr; }
  .cs-banner-right { grid-template-columns: 1fr; }
  .cs-banner-stat { border-left: none; border-top: 1px solid var(--border); }
  .cs-banner-stat:first-child { border-top: none; }
}
