/**
 * Plateau Markets Page Styles
 * Scope: .wp-plateau
 */

/* Animations */
@keyframes pe-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pe-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pe-pan-slow {
  0%   { transform: scale(1.05) translate(0, 0); }
  50%  { transform: scale(1.1) translate(-1%, -0.5%); }
  100% { transform: scale(1.05) translate(0, 0); }
}

/* Page hero */
.wp-plateau.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
  overflow: hidden;
}

.wp-plateau .page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 75%, var(--pe-black) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: pe-pan-slow 25s ease-in-out infinite;
}

/* Video hero (Markets) */
.wp-plateau.markets-video-hero .page-hero-bg {
  animation: none;
}

.wp-plateau .markets-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wp-plateau .markets-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 75%, var(--pe-black) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .wp-plateau .markets-hero-video {
    display: none;
  }
}

.wp-plateau .page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}


.wp-plateau.page-hero h1 {
  font-family: var(--pe-font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--pe-white);
  margin-bottom: 28px;
  animation: pe-fade-up 0.8s ease both 0.2s;
}

.wp-plateau.page-hero h1 em {
  font-style: normal;
  color: var(--pe-amber);
}

.wp-plateau .page-hero-sub {
  font-size: 19px;
  line-height: 1.7;
  color: var(--pe-grey-light);
  max-width: 580px;
  animation: pe-fade-up 0.8s ease both 0.35s;
}

.wp-plateau .hero-side-stat {
  text-align: center;
}

.wp-plateau .stat-number {
  font-family: var(--pe-font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--pe-amber);
}

.wp-plateau .stat-label {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  margin-top: 4px;
}

.wp-plateau .scroll-indicator {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--pe-amber), transparent);
}

/* Markets intro */
.wp-plateau.markets-intro {
  padding: 120px 0 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .markets-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .markets-intro-content .section-heading {
  margin-bottom: 28px;
}

.wp-plateau .markets-intro-emphasis {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 18px;
  color: var(--pe-amber);
  padding-left: 20px;
  border-left: 3px solid var(--pe-amber);
  margin: 32px 0;
  line-height: 1.5;
}

.wp-plateau .markets-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.wp-plateau .markets-intro-stat {
  background: var(--pe-charcoal);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .wp-plateau .markets-intro-stat:hover {
    background: var(--pe-graphite);
  }
}

.wp-plateau .markets-intro-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pe-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .wp-plateau .markets-intro-stat:hover::before {
    transform: scaleX(1);
  }
}

.wp-plateau .markets-intro-stat-number {
  font-family: var(--pe-font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--pe-amber);
  margin-bottom: 8px;
}

.wp-plateau .markets-intro-stat-label {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
}

/* Market sectors */
.wp-plateau.market-sectors {
  padding: 0;
}

.wp-plateau .market-sectors-header {
  padding: 100px 0 60px;
  text-align: center;
}

.wp-plateau .market-sectors-header .section-heading {
  margin-bottom: 16px;
}

.wp-plateau .market-sectors-header .body-text {
  margin: 0 auto !important;
  max-width: 640px;
}

.wp-plateau .market-sector {
  position: relative;
  min-height: 720px;
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .market-sector-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wp-plateau .market-sector-bg-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
  transition: all 0.8s ease;
}

@media (hover: hover) {
  .wp-plateau .market-sector:hover .market-sector-bg-inner {
    filter: brightness(0.4) saturate(0.85);
    transform: scale(1.03);
  }
}

.wp-plateau .market-sector-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.wp-plateau .market-sector:nth-child(odd) .market-sector-bg::after {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.2) 80%, transparent 100%);
}

.wp-plateau .market-sector:nth-child(even) .market-sector-bg::after {
  background: linear-gradient(-90deg, rgba(10, 10, 10, 0.95) 40%, rgba(10, 10, 10, 0.2) 80%, transparent 100%);
}

.wp-plateau .market-sector-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  display: flex;
  align-items: center;
}

.wp-plateau .market-sector:nth-child(odd) .market-sector-inner {
  justify-content: flex-start;
}

.wp-plateau .market-sector:nth-child(even) .market-sector-inner {
  justify-content: flex-end;
}

.wp-plateau .market-sector-content {
  max-width: 600px;
  padding: 80px 0;
}

.wp-plateau .market-sector-number {
  font-family: var(--pe-font-display);
  font-size: 140px;
  line-height: 1;
  color: rgba(232, 168, 36, 0.06);
  position: absolute;
  top: 40px;
  letter-spacing: -4px;
}

.wp-plateau .market-sector:nth-child(odd) .market-sector-number {
  right: 80px;
}

.wp-plateau .market-sector:nth-child(even) .market-sector-number {
  left: 80px;
}

.wp-plateau .market-sector-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.wp-plateau .market-sector-tag-dot {
  width: 8px;
  height: 8px;
  background: var(--pe-amber);
}

.wp-plateau .market-sector-tag span {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pe-amber);
}

.wp-plateau .market-sector h2 {
  font-family: var(--pe-font-display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 2px;
  color: var(--pe-white);
  margin-bottom: 24px;
}

.wp-plateau .market-sector-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--pe-grey-light);
  margin-bottom: 36px;
}

.wp-plateau .market-sector-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.wp-plateau .market-sector-service {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .wp-plateau .market-sector-service:hover {
    border-color: var(--pe-amber);
    color: var(--pe-amber);
    background: rgba(232, 168, 36, 0.06);
  }
}

.wp-plateau .market-sector-projects {
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wp-plateau .market-sector-projects-label {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pe-grey-dark);
  margin-bottom: 16px;
}

.wp-plateau .market-sector-project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.wp-plateau .market-sector-project-name {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--pe-grey-light);
  position: relative;
  padding-left: 16px;
}

.wp-plateau .market-sector-project-name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 1px;
  background: var(--pe-amber);
}

.wp-plateau a.market-sector-project-link {
  display: block;
  color: var(--pe-grey-light);
  transition: color 0.2s ease;
}

.wp-plateau a.market-sector-project-link:hover {
  color: var(--pe-amber);
}

/* Coverage — Interactive SVG Map */
.wp-plateau.coverage {
  padding: 140px 0;
  background: var(--pe-charcoal);
  position: relative;
  overflow: hidden;
}

.wp-plateau.coverage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pe-amber), transparent);
  opacity: 0.2;
}

.wp-plateau .coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wp-plateau .coverage-content .section-heading {
  margin-bottom: 28px;
}

.wp-plateau .coverage-content .body-text {
  margin-bottom: 24px;
}

.wp-plateau .coverage-states {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.wp-plateau .coverage-state {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.wp-plateau .coverage-state:hover,
.wp-plateau .coverage-state.is-active {
  color: var(--pe-amber);
  border-color: rgba(232, 168, 36, 0.3);
}

/* Map container */
.wp-plateau .coverage-map-block {
  position: relative;
}

.wp-plateau .coverage-map-block::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 3px solid var(--pe-amber);
  border-left: 3px solid var(--pe-amber);
  z-index: 2;
  pointer-events: none;
}

.wp-plateau .coverage-map-block::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  border-bottom: 3px solid var(--pe-amber);
  border-right: 3px solid var(--pe-amber);
  z-index: 2;
  pointer-events: none;
}

/* SVG Map */
.wp-plateau .coverage-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* State paths */
.wp-plateau .map-states path {
  fill: #2a2a27;
  stroke: rgba(138, 134, 128, 0.25);
  stroke-width: 1;
  transition: fill 0.3s ease, stroke 0.3s ease;
  cursor: default;
}

.wp-plateau .map-states path.has-projects {
  fill: #333330;
  cursor: pointer;
}

.wp-plateau .map-states path:hover,
.wp-plateau .map-states path.is-active {
  fill: #3d3d39;
  stroke: rgba(232, 168, 36, 0.4);
}

/* Pins */
.wp-plateau .map-pin {
  fill: var(--pe-amber);
  opacity: 0;
  transition: r 0.15s ease;
  cursor: pointer;
  pointer-events: none;
}

.wp-plateau.is-visible .map-pin {
  animation: pe-pin-pop 0.5s ease both;
}

.wp-plateau .map-pin.is-hovered {
  r: 6.5;
}

.wp-plateau .map-pin-hit {
  fill: transparent;
  cursor: pointer;
}

/* Cluster */
.wp-plateau .map-cluster {
  opacity: 0;
  cursor: pointer;
}

.wp-plateau.is-visible .map-cluster {
  animation: pe-pin-pop 0.5s ease both;
}

.wp-plateau .map-cluster circle:first-child {
  fill: var(--pe-amber);
  stroke: var(--pe-charcoal);
  stroke-width: 1.5;
  transition: r 0.15s ease, fill 0.15s ease, stroke 0.15s ease;
}

.wp-plateau .map-cluster.is-approximate circle:first-child {
  fill: rgba(232, 168, 36, 0.18);
  stroke: rgba(232, 168, 36, 0.7);
  stroke-dasharray: 2 2;
}

.wp-plateau .map-cluster.is-approximate text {
  fill: var(--pe-amber);
}

.wp-plateau .map-cluster text {
  font-family: var(--pe-font-display);
  font-size: 8px;
  fill: var(--pe-black);
  pointer-events: none;
}

@keyframes pe-pin-pop {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Tooltips */
.wp-plateau .map-tooltip,
.wp-plateau .map-tooltip-cluster {
  position: absolute;
  z-index: 10;
  background: var(--pe-black-warm);
  border: 1px solid rgba(232, 168, 36, 0.15);
  padding: 16px 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 200px;
  max-width: 280px;
}

.wp-plateau .map-tooltip.is-visible,
.wp-plateau .map-tooltip-cluster.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wp-plateau .map-tooltip.is-visible,
.wp-plateau .map-tooltip-cluster.is-visible {
  pointer-events: auto;
}

.wp-plateau .map-tooltip-title {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--pe-white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.wp-plateau .map-tooltip-meta,
.wp-plateau .map-tooltip-cluster-meta {
  font-family: var(--pe-font-condensed);
  font-size: 10px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  margin-bottom: 6px;
}

.wp-plateau .map-tooltip-meta:empty,
.wp-plateau .map-tooltip-cluster-meta:empty {
  display: none;
}

.wp-plateau .map-tooltip-sector {
  font-family: var(--pe-font-condensed);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pe-amber);
  margin-bottom: 2px;
}

.wp-plateau .map-tooltip-location {
  font-family: var(--pe-font-body);
  font-size: 12px;
  color: var(--pe-grey-mid);
  margin-bottom: 10px;
}

.wp-plateau .map-tooltip-link {
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pe-grey-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wp-plateau .map-tooltip-link:hover {
  color: var(--pe-amber);
}

/* Cluster tooltip */
.wp-plateau .map-tooltip-cluster-title {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--pe-amber);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wp-plateau .map-tooltip-cluster-list {
  max-height: 220px;
  overflow-y: auto;
}

.wp-plateau .map-tooltip-cluster-list .cluster-item {
  display: block;
  padding: 6px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s ease;
}

.wp-plateau .map-tooltip-cluster-list .cluster-item:last-child {
  border-bottom: none;
}

.wp-plateau .map-tooltip-cluster-list .cluster-item:hover {
  background: rgba(232, 168, 36, 0.06);
}

.wp-plateau .map-tooltip-cluster-list .cluster-item-name {
  display: block;
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 13px;
  color: var(--pe-white);
  line-height: 1.3;
}

.wp-plateau .map-tooltip-cluster-list .cluster-item-sector {
  display: block;
  font-family: var(--pe-font-condensed);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pe-grey-mid);
  margin-top: 2px;
}

.wp-plateau .map-tooltip-cluster-list .cluster-item-location {
  display: block;
  font-size: 11px;
  line-height: 1.4;
  color: var(--pe-grey-mid);
  margin-top: 3px;
}

/* Cluster tooltip scrollbar */
.wp-plateau .map-tooltip-cluster-list::-webkit-scrollbar {
  width: 4px;
}
.wp-plateau .map-tooltip-cluster-list::-webkit-scrollbar-track {
  background: transparent;
}
.wp-plateau .map-tooltip-cluster-list::-webkit-scrollbar-thumb {
  background: var(--pe-steel);
  border-radius: 2px;
}

/* Cross capabilities */
.wp-plateau.cross-capabilities {
  padding: 140px 0;
  background: var(--pe-black-warm);
  position: relative;
}

.wp-plateau .cross-capabilities-header {
  text-align: center;
  margin-bottom: 80px;
}


.wp-plateau .cross-capabilities-header .section-heading {
  margin-bottom: 20px;
}

.wp-plateau .cross-capabilities-header .body-text {
  margin: 0 auto !important;
  text-align: center;
}

.wp-plateau .capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.wp-plateau .capability-cell {
  background: var(--pe-charcoal);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.wp-plateau .capability-cell::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--pe-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .wp-plateau .capability-cell:hover::before {
    transform: scaleX(1);
  }

  .wp-plateau .capability-cell:hover {
    background: rgba(26, 26, 24, 0.9);
  }
}

.wp-plateau .capability-cell-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pe-amber-glow);
  border: 1px solid rgba(232, 168, 36, 0.15);
  margin-bottom: 24px;
}

.wp-plateau .capability-cell-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pe-amber);
  fill: none;
  stroke-width: 1.5;
}

.wp-plateau .capability-cell h3 {
  font-family: var(--pe-font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--pe-white);
  margin-bottom: 12px;
}

.wp-plateau .capability-cell p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--pe-grey-mid);
}

/* Client types */
.wp-plateau.client-types {
  padding: 120px 0;
  background: var(--pe-black);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .client-types-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.wp-plateau .client-types-content .section-heading {
  margin-bottom: 24px;
}

.wp-plateau .client-types-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wp-plateau .client-type-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.wp-plateau .client-type-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .client-type-item:hover {
  padding-left: 12px;
}

.wp-plateau .client-type-number {
  font-family: var(--pe-font-display);
  font-size: 32px;
  color: rgba(232, 168, 36, 0.2);
  min-width: 48px;
  transition: color 0.3s ease;
}

.wp-plateau .client-type-item:hover .client-type-number {
  color: var(--pe-amber);
}

.wp-plateau .client-type-text h4 {
  font-family: var(--pe-font-condensed);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pe-white);
  margin-bottom: 4px;
}

.wp-plateau .client-type-text p {
  font-size: 14px;
  color: var(--pe-grey-mid);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .wp-plateau .markets-intro-grid,
  .wp-plateau .coverage-inner,
  .wp-plateau .client-types-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .wp-plateau .coverage-visual {
    order: -1;
  }

  .wp-plateau .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .wp-plateau .market-sector {
    min-height: 620px;
  }

  .wp-plateau .market-sector-inner {
    padding: 0 24px;
  }

  .wp-plateau .market-sector-number {
    font-size: 100px;
  }
}

@media (max-width: 768px) {

  .wp-plateau.coverage {
    padding: 80px 0;
  }

  .wp-plateau .coverage-states {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 28px;
  }

  .wp-plateau .coverage-state {
    white-space: nowrap;
    text-align: center;
    font-size: 12px;
    padding: 8px 4px;
  }

  .wp-plateau .map-tooltip,
  .wp-plateau .map-tooltip-cluster {
    position: fixed;
    left: 16px !important;
    right: 16px !important;
    bottom: 16px !important;
    top: auto !important;
    max-width: none;
  }

  .wp-plateau .market-sector {
    min-height: auto;
  }

  .wp-plateau .market-sector-bg::after,
  .wp-plateau .market-sector:nth-child(even) .market-sector-bg::after,
  .wp-plateau .market-sector:nth-child(odd) .market-sector-bg::after {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 25%, rgba(10, 10, 10, 0.45) 65%, transparent 100%);
  }

  .wp-plateau .market-sector-content {
    padding: 64px 0;
  }

  .wp-plateau .market-sector-number {
    display: none;
  }

  .wp-plateau .market-sector h2 {
    font-size: clamp(32px, 10vw, 48px);
  }
}

