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

/* ========================================
   CAPABILITIES INTRO
   ======================================== */
.wp-plateau.capabilities-intro {
  padding: 120px 0;
  background: var(--pe-charcoal);
  position: relative;
  overflow: hidden;
}

.wp-plateau.capabilities-intro::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(232, 168, 36, 0.04);
  transform: rotate(45deg);
  pointer-events: none;
}

.wp-plateau .intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.wp-plateau .intro-grid > * {
  min-width: 0;
}

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

.wp-plateau .intro-content .body-text {
  margin-bottom: 20px;
}

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

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

.wp-plateau .intro-stat {
  padding: 40px 32px;
  background: var(--pe-black-warm);
  text-align: center;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.wp-plateau .intro-stat::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pe-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

  .wp-plateau .intro-stat:hover {
    background: rgba(17, 17, 16, 0.8);
  }
}

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

.wp-plateau .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);
}

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

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


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

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

.wp-plateau .service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .service-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.wp-plateau .service-row:nth-child(even) .service-visual {
  order: 2;
}

.wp-plateau .service-row:nth-child(even) .service-content {
  order: 1;
}

.wp-plateau .service-visual {
  position: relative;
  overflow: hidden;
  background: var(--pe-charcoal);
}

.wp-plateau .service-visual-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75) saturate(0.8);
  transition: all 0.6s ease;
}

@media (hover: hover) {
  .wp-plateau .service-row:hover .service-visual-inner {
    filter: brightness(0.6) saturate(0.9);
    transform: scale(1.04);
  }
}

.wp-plateau .service-content {
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.wp-plateau .service-number {
  font-family: var(--pe-font-display);
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--pe-amber);
  margin-bottom: 16px;
}

.wp-plateau .service-content h3 {
  font-family: var(--pe-font-display);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 2px;
  color: var(--pe-white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.wp-plateau .service-content .body-text {
  margin-bottom: 28px;
}

.wp-plateau .service-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.wp-plateau .service-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--pe-font-condensed);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--pe-grey-mid);
  transition: color 0.3s;
}

@media (hover: hover) {
  .wp-plateau .service-detail:hover {
    color: var(--pe-grey-light);
  }
}

.wp-plateau .service-detail::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--pe-amber);
  flex-shrink: 0;
  transition: width 0.3s;
}

@media (hover: hover) {
  .wp-plateau .service-detail:hover::before {
    width: 28px;
  }
}

.wp-plateau .service-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--pe-amber);
  transition: height 0.5s ease;
}

@media (hover: hover) {
  .wp-plateau .service-row:hover .service-content::before {
    height: 100%;
  }
}

.wp-plateau .service-row:nth-child(even) .service-content::before {
  left: auto;
  right: 0;
}

/* ========================================
   INTEGRATED APPROACH
   ======================================== */
.wp-plateau.capabilities-approach {
  padding: 140px 0;
  background: var(--pe-charcoal);
  position: relative;
  overflow: hidden;
}

.wp-plateau.capabilities-approach::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(232, 168, 36, 0.03), transparent 60%);
  pointer-events: none;
}

.wp-plateau .approach-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}


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

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

.wp-plateau .approach-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.wp-plateau .approach-step {
  padding: 48px 36px;
  background: var(--pe-black-warm);
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
}

.wp-plateau .approach-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pe-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

  .wp-plateau .approach-step:hover {
    background: rgba(17, 17, 16, 0.8);
  }
}

.wp-plateau .approach-step-number {
  font-family: var(--pe-font-display);
  font-size: 64px;
  color: rgba(232, 168, 36, 0.08);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

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

.wp-plateau .approach-step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--pe-amber);
  fill: none;
  stroke-width: 1.5;
}

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

.wp-plateau .approach-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--pe-grey-mid);
}

/* ========================================
   EQUIPMENT HIGHLIGHT
   ======================================== */
.wp-plateau.capabilities-equipment {
  padding: 140px 0;
  background: var(--pe-black-warm);
  position: relative;
  overflow: hidden;
}

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

.wp-plateau .equipment-visual {
  position: relative;
}

.wp-plateau .equipment-block {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.wp-plateau .equipment-block-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-plateau .equipment-stat-overlay {
  text-align: center;
}

.wp-plateau .equipment-stat-overlay .big-number {
  font-family: var(--pe-font-display);
  font-size: 120px;
  line-height: 1;
  color: var(--pe-amber);
  letter-spacing: -2px;
}

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

.wp-plateau .equipment-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;
}

.wp-plateau .equipment-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;
}

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

.wp-plateau .equipment-content .body-text {
  margin-bottom: 20px;
}

.wp-plateau .equipment-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.wp-plateau .equipment-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--pe-amber);
  transition: background 0.3s;
}

@media (hover: hover) {
  .wp-plateau .equipment-feature:hover {
    background: rgba(232, 168, 36, 0.04);
  }
}

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

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

/* ========================================
   RESPONSIVE — TABLET
   ======================================== */
@media (max-width: 1024px) {
  .wp-plateau .intro-grid,
  .wp-plateau .equipment-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

  .wp-plateau .approach-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .wp-plateau .service-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .wp-plateau .service-visual {
    min-height: 320px;
  }

  .wp-plateau .service-row:nth-child(even) .service-visual {
    order: 0;
  }

  .wp-plateau .service-row:nth-child(even) .service-content {
    order: 0;
  }

  .wp-plateau .service-content {
    padding: 48px 36px;
  }


  .wp-plateau .service-content::before {
    display: none;
  }
}

/* ========================================
   RESPONSIVE — MOBILE
   ======================================== */
@media (max-width: 768px) {
  .wp-plateau.capabilities-intro,
  .wp-plateau.capabilities-services,
  .wp-plateau.capabilities-approach,
  .wp-plateau.capabilities-equipment {
    padding: 20px 0;
  }

  .wp-plateau .services-header,
  .wp-plateau .approach-header {
    margin-bottom: 48px;
  }

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

  .wp-plateau .service-visual {
    min-height: 240px;
  }

  .wp-plateau .service-content {
    padding: 32px 22px;
  }

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

  .wp-plateau .intro-stat {
    padding: 28px 20px;
  }

  .wp-plateau .intro-stat-number {
    font-size: 40px;
  }

  .wp-plateau .equipment-stat-overlay .big-number {
    font-size: 80px;
  }

  .wp-plateau .approach-step {
    padding: 38px 24px;
  }

  .wp-plateau .approach-step-number {
    font-size: 52px;
    right: 14px;
  }
}

/* ========================================
   RESPONSIVE — SMALL PHONE
   ======================================== */
@media (max-width: 480px) {
  .wp-plateau .intro-stats {
    grid-template-columns: 1fr;
  }

  .wp-plateau .intro-stat {
    padding: 24px 18px;
  }

  .wp-plateau .service-content {
    padding: 28px 18px;
  }

  .wp-plateau .service-content h3 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .wp-plateau .service-detail {
    font-size: 1rem;
  }

  .wp-plateau .approach-step {
    padding: 32px 20px;
  }

  .wp-plateau .approach-step-number {
    font-size: 48px;
    right: 12px;
    top: 12px;
  }

  .wp-plateau .approach-step h3 {
    font-size: 20px;
    letter-spacing: 1px;
  }

  .wp-plateau .equipment-stat-overlay .big-number {
    font-size: 64px;
  }
}
