/* ==========================================================================
   PARTNERS & PROFILE SECTION (DARK THEME + GRID)
   ========================================================================== */

.partners-section {
  position: relative;
  width: 100%;
  background-color: var(--color-black); /* Unified Dark Theme */
  padding: 6rem 0 8rem;
  overflow: hidden;
  z-index: 1;
}

/* Background grid overlay */
.pr-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  z-index: 0;
}

.pr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

/* ------------------------------------------------
   HEADER
   ------------------------------------------------ */
.pr-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white); /* Dark theme text */
  margin: 0 0 1rem;
}

.pr-title span {
  color: var(--color-accent-warm);
}

.pr-line {
  width: 80px;
  height: 2px;
  background-color: var(--color-accent-warm);
}

/* ------------------------------------------------
   STATIC LOGOS GRID
   ------------------------------------------------ */
.pr-logos-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 6rem;
  padding: 1rem;
}

.pr-logo-item {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.pr-logo-item:hover {
  transform: scale(1.05);
}

.pr-logo-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ------------------------------------------------
   PROFILE DOWNLOAD AREA
   ------------------------------------------------ */
.pr-profile-area {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-statement {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-white); /* Dark theme text */
  margin: 0;
  line-height: 1.4;
}

.pr-statement-line {
  width: 30px;
  height: 2px;
  background-color: var(--color-accent-warm);
  margin: 1.5rem auto 2.5rem;
}

.pr-substatement {
  font-size: 1.1rem;
  color: var(--color-off-white); /* Dark theme text */
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Custom Profile Button Design (Standard CTA Style) */
.pr-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.25rem;
  color: var(--color-white);
  text-decoration: none;
  padding-bottom: 0.5rem;
  transition: color 0.4s ease;
  position: relative;
  margin-top: 1rem;
}

.pr-cta .cta-line {
  height: 1px;
  width: 60px;
  background-color: rgba(255,255,255,0.2);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
}

.pr-cta .cta-arrow {
  display: inline-flex;
  transition: transform 0.4s ease;
  color: var(--color-accent-warm);
}

.pr-cta:hover {
  color: var(--color-accent-warm);
}

.pr-cta:hover .cta-line {
  width: 100px;
  background-color: var(--color-accent-warm);
}

.pr-cta:hover .cta-arrow {
  transform: translateX(-10px);
}

/* ------------------------------------------------
   RESPONSIVE
   ------------------------------------------------ */
@media (max-width: 768px) {
  .pr-logos-wrapper {
    gap: 2.5rem;
  }
  .pr-logo-item {
    width: 120px;
  }
}
