/* =========================================================
   PERFORMANCE SECTION
========================================================= */

.pl-performance-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

/* ---------- DARK ---------- */
html[data-theme="dark"] .pl-performance-section {
  background:
    radial-gradient(circle at 12% 12%, var(--pl-glow), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(251, 146, 60, 0.08), transparent 24%),
    linear-gradient(180deg, var(--pl-bg) 0%, var(--pl-bg-soft) 100%);
}

/* ---------- LIGHT ---------- */
html[data-theme="light"] .pl-performance-section {
  background:
    radial-gradient(circle at 12% 12%, var(--pl-glow), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.06), transparent 24%),
    linear-gradient(180deg, var(--pl-bg) 0%, var(--pl-bg-soft) 100%);
}

.pl-performance-kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--pl-primary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pl-performance-title {
  margin: 0 0 18px;
  color: var(--pl-text);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  max-width: 700px;
}

.pl-performance-desc {
  margin: 0 0 26px;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.pl-performance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 560px;
}

.pl-performance-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--pl-border);
  color: var(--pl-text);
  box-shadow: var(--pl-shadow-soft);
  backdrop-filter: blur(10px);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

/* ---------- DARK ---------- */
html[data-theme="dark"] .pl-performance-card {
  background: var(--pl-card);
}

/* ---------- LIGHT ---------- */
html[data-theme="light"] .pl-performance-card {
  background: var(--pl-card);
}

.pl-performance-card:hover {
  transform: translateY(-2px);
  border-color: var(--pl-border-strong);
  box-shadow: var(--pl-shadow);
}

.pl-performance-card i {
  flex: 0 0 20px;
  color: var(--pl-primary);
  font-size: 1.05rem;
  text-align: center;
}

.pl-performance-card span {
  display: block;
  color: var(--pl-text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.4;
}

.pl-performance-img-wrap {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--pl-border);
  box-shadow: var(--pl-shadow);
  backdrop-filter: blur(12px);
}

/* ---------- DARK ---------- */
html[data-theme="dark"] .pl-performance-img-wrap {
  background: var(--pl-surface);
}

/* ---------- LIGHT ---------- */
html[data-theme="light"] .pl-performance-img-wrap {
  background: var(--pl-surface);
}

.pl-performance-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pl-performance-img-wrap::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--pl-glow), transparent 70%);
  pointer-events: none;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {
  .pl-performance-section {
    padding: 88px 0;
  }

  .pl-performance-title {
    font-size: clamp(2rem, 7vw, 3.2rem);
  }

  .pl-performance-desc {
    font-size: 1rem;
  }

  .pl-performance-grid {
    max-width: none;
  }

  .pl-performance-img-wrap {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .pl-performance-section {
    padding: 74px 0;
  }

  .pl-performance-kicker {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }

  .pl-performance-title {
    margin-bottom: 14px;
    line-height: 1.06;
  }

  .pl-performance-desc {
    margin-bottom: 22px;
    line-height: 1.65;
  }

  .pl-performance-card {
    min-height: 58px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .pl-performance-card span {
    font-size: 0.96rem;
  }

  .pl-performance-img-wrap {
    border-radius: 24px;
  }
}