/* Sponsorship landing page */
:root {
  --psn-blue: #005fbf;
  --psn-hero-blue: #1c7dff;
  --psn-midnight: #020b25;
  --psn-navy: #0b2d66;
  --psn-orange: #ff7a21;
  --psn-ice: #f2f7fb;
  --psn-slate: #0e2238;
  --psn-muted: #6c7d92;
  --psn-lilac: #c188ff;
  --psn-purple: #6b46c1;
  --nav-height: calc(2rem + 2.5rem);
}

.sponsorship-page {
  background-color: #ffffff;
  color: var(--psn-slate);
}

html {
  scroll-behavior: smooth;
}

/* Anchor scroll offset for sections */
.sponsorship-page section[id] {
  scroll-margin-top: var(--nav-height);
}

.sponsorship-page .eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--psn-orange);
  margin-bottom: 0.5rem;
}

.sponsorship-page h1,
.sponsorship-page h2,
.sponsorship-page h3 {
  color: var(--psn-slate);
  font-weight: 700;
}

.sponsorship-page p {
  color: var(--psn-muted);
}

/* Buttons */
.btn-primary-blue {
  background-color: var(--psn-blue);
  border-color: var(--psn-blue);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sponsorship-page .btn-primary-blue {
  background: var(--psn-hero-blue);
  border-color: var(--psn-hero-blue);
  color: #ffffff;
  font-weight: 600;
  border-radius: 0.75rem;
  padding: 0.85rem 2.1rem;
  box-shadow: 0 18px 38px rgba(28, 125, 255, 0.2);
}

.sponsorship-page .btn-primary-blue:hover,
.sponsorship-page .btn-primary-blue:focus {
  background: #0c63e6;
  border-color: #0c63e6;
  color: #ffffff;
}

.sponsorship-page .view-all-events-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 0.6rem;
  min-width: auto;
  box-shadow: 0 12px 24px rgba(28, 125, 255, 0.18);
  font-size: 0.95rem;
}


.btn-primary-blue:hover {
  background-color: #003e72;
  border-color: #003e72;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 79, 146, 0.25);
}

.btn-outline-primary-blue {
  color: var(--psn-blue);
  border: 1px solid var(--psn-blue);
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 40px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline-primary-blue:hover {
  background-color: var(--psn-blue);
  color: #fff;
}

.sponsorship-page .btn-outline-light {
  border-radius: 40px;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-width: 1.5px;
}

/* Navigation */
.sponsorship-page .sponsorship-nav {
  background: #fff;
  border-bottom: 1px solid #e6edf3;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sponsorship-page .sponsorship-nav .nav-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.sponsorship-page .sponsorship-nav .nav-links li {
  margin: 0;
}

.sponsorship-page .sponsorship-nav .nav-links a {
  color: var(--psn-slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  display: block;
}

.sponsorship-page .sponsorship-nav .nav-links a:hover {
  color: var(--psn-blue);
}

/* Hero */
.sponsorship-page .hero {
  background: #001a2e;
  overflow: visible;
  min-height: clamp(520px, 68vh, 720px);
  display: flex;
  align-items: center;
}

.sponsorship-page .hero .hero-container {
  width: 100%;
  padding-block: clamp(5rem, 8vw, 9rem);
  position: relative;
  z-index: 1;
}

.sponsorship-page .hero .row {
  min-height: clamp(420px, 52vh, 560px);
}

.sponsorship-page .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.sponsorship-page .hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 1rem;
}

.sponsorship-page .hero-title {
  font-size: clamp(2.75rem, 3vw + 1.75rem, 3.9rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.sponsorship-page .hero-highlight {
  color: #c39bff;
}

.sponsorship-page .hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 36rem;
  margin-bottom: 2.25rem;
}

.sponsorship-page .hero-cta .btn {
  min-width: 190px;
}

.sponsorship-page .hero-btn {
  border-radius: 0.75rem;
  padding: 0.85rem 2.1rem;
  font-size: 1rem;
}

.sponsorship-page .hero .btn-primary-blue {
  background: var(--psn-hero-blue);
  border-color: var(--psn-hero-blue);
  color: #fff;
  box-shadow: 0 18px 38px rgba(28, 125, 255, 0.28);
}

.sponsorship-page .hero .btn-primary-blue:hover {
  background: #0c63e6;
  border-color: #0c63e6;
}

.sponsorship-page .hero-btn-outline {
  font-weight: 600;
  border-width: 2px;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border-radius: 0.75rem;
}

.sponsorship-page .hero-btn-outline:hover {
  color: var(--psn-navy);
  background: #ffffff;
}

.sponsorship-page .hero-media {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-left: auto;
}

.sponsorship-page .hero-media-backdrop {
  position: absolute;
  inset: -55px 0 -70px 60px;
  background: linear-gradient(140deg, rgba(5, 40, 70, 0.85), rgba(24, 76, 117, 0.35));
  border-radius: 48px;
  z-index: 0;
}

.sponsorship-page .hero-media-image {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 36px;
  border: 6px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

/* Trusted By Logo Strip */
/* AIDEV-NOTE: logo-strip-sizing; adjust heights alongside template duplication in sponsorship_page */
.sponsorship-page .trusted-by {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}

.sponsorship-page .trusted-by::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 95, 191, 0.1) 50%, transparent);
}

.sponsorship-page .trusted-by .section-heading {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.sponsorship-page .logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  padding: 1.5rem 0;
  min-height: 140px;
}

.sponsorship-page .logo-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: scroll-logos linear infinite;
  animation-duration: calc(var(--logo-count, 10) * 6s);
  width: fit-content;
}

.sponsorship-page .logo-track:hover {
  animation-play-state: paused;
}

.sponsorship-page .partner-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  padding: 0.25rem 0;
}

.sponsorship-page .partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 150px;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
}

.sponsorship-page .partner-logo {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .sponsorship-page .partner-logo {
    height: 60px;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Why PSN Section */
.sponsorship-page .why-psn-section {
  background: linear-gradient(135deg, #14334a 0%, #0b2d66 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.sponsorship-page .why-psn-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 125, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .why-psn-section::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .why-psn-section .section-heading h2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
}

.sponsorship-page .why-psn-section .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.sponsorship-page .why-psn-flow-path {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 0;
}

.sponsorship-page .why-psn-path-line {
  position: absolute;
  top: 45px;
  left: 0;
  width: 100%;
  height: 180px;
  z-index: 1;
  opacity: 1;
}

.sponsorship-page .why-psn-path-line path {
  stroke: url(#whyPsnGradient);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;
  filter: drop-shadow(0 2px 8px rgba(28, 125, 255, 0.3));
}

.sponsorship-page .why-psn-steps-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.sponsorship-page .why-psn-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.sponsorship-page .why-psn-step::before {
  display: none;
}

.sponsorship-page .why-psn-step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.sponsorship-page .why-psn-step-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: linear-gradient(135deg, rgba(28, 125, 255, 0.15), rgba(255, 122, 33, 0.08));
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }
}

.sponsorship-page .why-psn-step-icon {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.sponsorship-page .why-psn-step:hover .why-psn-step-icon {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4),
              inset 0 1px 2px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.2);
}

.sponsorship-page .why-psn-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsorship-page .why-psn-step-content {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.2);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
  gap: 0.75rem;
}

.sponsorship-page .why-psn-step:hover .why-psn-step-content {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.sponsorship-page .why-psn-step-title {
  background: linear-gradient(135deg, rgba(28, 125, 255, 0.9), rgba(0, 95, 191, 0.9));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(28, 125, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  margin: 0;
}

.sponsorship-page .why-psn-step-text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 991.98px) {
  .sponsorship-page .why-psn-path-line {
    display: none;
  }

  .sponsorship-page .why-psn-steps-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .sponsorship-page .why-psn-step {
    width: 100%;
    max-width: 500px;
  }

  .sponsorship-page .why-psn-step::before {
    top: auto;
    bottom: -2rem;
    height: 2rem;
  }

  .sponsorship-page .why-psn-step:last-child::before {
    display: none;
  }

  .sponsorship-page .why-psn-step-content {
    min-height: auto;
  }
}

/* Section heading */
.sponsorship-page .section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.sponsorship-page .section-heading h2 {
  position: relative;
  display: inline-block;
  white-space: normal;
  text-wrap: balance;
}

.sponsorship-page .section-heading h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--psn-blue), rgba(28, 125, 255, 0.6));
  border-radius: 2px;
}

@media (max-width: 767.98px) {
  .sponsorship-page .section-heading h2 {
    white-space: normal;
  }
}

.sponsorship-page .section-heading p {
  margin-bottom: 0;
}

/* Outcomes */
.sponsorship-page .outcomes {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  position: relative;
}

.sponsorship-page .outcomes::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.04), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .outcome-card {
  border: 1px solid rgba(0, 95, 191, 0.08);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fcfdff 100%);
  box-shadow: 0 20px 40px rgba(0, 79, 146, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* AIDEV-NOTE: outcomes-typography; keep headings compact for consistent card layout */
.sponsorship-page .outcome-card h3 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.sponsorship-page .outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at center, rgba(28, 125, 255, 0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(40%, -40%);
  transition: transform 0.3s ease;
}

.sponsorship-page .outcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 79, 146, 0.15);
  border-color: rgba(28, 125, 255, 0.15);
}

.sponsorship-page .outcome-card:hover::before {
  transform: translate(30%, -30%);
}

.sponsorship-page .outcome-icon {
  font-size: 2.5rem;
  color: var(--psn-blue);
  margin-bottom: 1.25rem;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 95, 191, 0.1), rgba(28, 125, 255, 0.06));
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

/* Services */
.sponsorship-page .products-services {
  background: linear-gradient(135deg, #eef5f9 0%, #e8f2f8 50%, #f0f6fa 100%);
  position: relative;
  overflow: hidden;
}

.sponsorship-page .products-services::before {
  content: '';
  position: absolute;
  top: -15%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.05), transparent 65%);
  pointer-events: none;
}

.sponsorship-page .products-services::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.04), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .service-card {
  border: 1px solid rgba(0, 95, 191, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 79, 146, 0.08), 0 2px 6px rgba(0, 79, 146, 0.04);
  transition: all 0.3s ease;
  position: relative;
}

.sponsorship-page .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--psn-blue), var(--psn-hero-blue));
  z-index: 1;
}

.sponsorship-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 79, 146, 0.12), 0 4px 8px rgba(0, 79, 146, 0.06);
}

.sponsorship-page .service-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f8fafc;
}

.sponsorship-page .service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sponsorship-page .service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
  position: relative;
}

.sponsorship-page .service-content h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--psn-slate);
  font-weight: 700;
}

.sponsorship-page .service-content > p {
  line-height: 1.65;
  color: var(--psn-slate);
  font-size: 1rem;
  opacity: 0.85;
}

.sponsorship-page .service-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0.5rem 0 1rem 0;
}

.sponsorship-page .service-content ul li {
  margin-bottom: 0.65rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.65;
  color: var(--psn-slate);
  font-size: 0.95rem;
}

.sponsorship-page .service-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--psn-hero-blue);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.sponsorship-page .service-content .btn {
  transition: all 0.3s ease;
  white-space: nowrap;
  font-weight: 600;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  border-radius: 50px;
}

.sponsorship-page .service-content .btn-outline-primary-blue {
  border-width: 2px;
  border-color: var(--psn-blue);
  color: var(--psn-blue);
  background: linear-gradient(135deg, rgba(0, 95, 191, 0.03), rgba(28, 125, 255, 0.02));
  box-shadow: 0 2px 8px rgba(0, 95, 191, 0.1);
}

.sponsorship-page .service-content .btn-outline-primary-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 95, 191, 0.2);
  background: var(--psn-blue);
  color: #fff;
  border-color: var(--psn-blue);
}

.sponsorship-page .service-content .btn-primary-blue {
  background: var(--psn-blue);
  color: #fff;
  border: 2px solid var(--psn-blue);
  box-shadow: 0 2px 8px rgba(0, 95, 191, 0.15);
}

.sponsorship-page .service-content .btn-primary-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 95, 191, 0.3);
  background: #004a99;
  border-color: #004a99;
  color: #fff;
}

.sponsorship-page .service-content .d-flex .btn {
  font-size: 0.9rem;
  padding: 0.8rem 1.6rem;
}

/* Service CTA Card */
.sponsorship-page .service-card-cta {
  background: linear-gradient(135deg, #1c7dff 0%, #0077ba 50%, #005fbf 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(28, 125, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.sponsorship-page .service-card-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .service-card-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  pointer-events: none;
}

.sponsorship-page .service-card-cta:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(28, 125, 255, 0.35);
}

.sponsorship-page .service-cta-content {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  height: 100%;
  position: relative;
  z-index: 1;
}

.sponsorship-page .service-cta-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.sponsorship-page .service-card-cta:hover .service-cta-icon {
  transform: scale(1.1) rotateY(360deg);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.sponsorship-page .service-cta-content h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.sponsorship-page .service-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.6;
}

.sponsorship-page .service-cta-content .btn-light {
  background: #fff;
  color: var(--psn-blue);
  border: none;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sponsorship-page .service-cta-content .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  background: #f8f9fa;
}

/* CTA band */
.sponsorship-page .cta-band {
  background: linear-gradient(135deg, #14334a 0%, #0b2d66 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.sponsorship-page .cta-band::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(28, 125, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .cta-band::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.08), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .cta-band .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3),
              inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.sponsorship-page .cta-band h2 {
  color: #fff;
  font-weight: 700;
}

.sponsorship-page .cta-band p {
  color: rgba(255, 255, 255, 0.85);
}

.sponsorship-page .cta-band .btn-light {
  border-radius: 50px;
  font-weight: 700;
  padding: 0.9rem 2rem;
  background: #fff;
  color: var(--psn-blue);
  border: none;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sponsorship-page .cta-band .btn-light:hover {
  background: #fff;
  color: var(--psn-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
}

.sponsorship-page .marketplace-cta .marketplace-cta-grid {
  display: grid;
  gap: 2.5rem;
}

.sponsorship-page .marketplace-cta .marketplace-cta-copy {
  max-width: 520px;
}

.sponsorship-page .marketplace-cta .marketplace-cta-copy .eyebrow {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sponsorship-page .marketplace-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.sponsorship-page .marketplace-cta .marketplace-cta-flow {
  position: relative;
}

.sponsorship-page .marketplace-cta .flow-diagram {
  position: relative;
  background: rgba(9, 28, 58, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  padding: 2.25rem;
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.sponsorship-page .marketplace-cta .flow-diagram::before {
  content: '';
  position: absolute;
  inset: -60% -40% auto;
  height: 200%;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 70px),
                    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 70px);
  opacity: 0.45;
  pointer-events: none;
}

.sponsorship-page .marketplace-cta .flow-browser {
  background: rgba(14, 40, 82, 0.85);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(8, 12, 32, 0.55);
  overflow: hidden;
}

.sponsorship-page .marketplace-cta .flow-browser-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(90deg, rgba(18, 44, 90, 0.9) 0%, rgba(12, 33, 64, 0.65) 100%);
}

.sponsorship-page .marketplace-cta .browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  display: inline-block;
}

.sponsorship-page .marketplace-cta .browser-bar {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.sponsorship-page .marketplace-cta .flow-browser-body {
  padding: 1.5rem;
  background: rgba(6, 18, 40, 0.65);
}

.sponsorship-page .marketplace-cta .flow-browser-body img {
  width: 100%;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sponsorship-page .marketplace-cta .flow-steps {
  display: grid;
  gap: 1.75rem;
  position: relative;
}

.sponsorship-page .marketplace-cta .flow-steps::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(66, 149, 255, 0.75) 0%, rgba(32, 126, 255, 0.15) 100%);
  pointer-events: none;
}

/* AIDEV-NOTE: adjust grid-template-columns if step badge width changes. */
.sponsorship-page .marketplace-cta .flow-step {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  column-gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sponsorship-page .marketplace-cta .step-number {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(198, 242, 255, 0.55), rgba(54, 171, 255, 0.18));
  border: 1px solid rgba(103, 214, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(32, 180, 255, 0.25);
  justify-self: center;
  align-self: flex-start;
  position: relative;
  z-index: 2;
}

.sponsorship-page .marketplace-cta .step-number::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(13, 38, 72, 0.95);
  z-index: -1;
}

.sponsorship-page .marketplace-cta .flow-step h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #f0f7ff;
  text-shadow: 0 2px 8px rgba(5, 12, 36, 0.6);
  grid-column: 2;
}

.sponsorship-page .marketplace-cta .flow-step p {
  margin-bottom: 0;
  color: rgba(223, 235, 255, 0.88);
  grid-column: 2;
}

@media (min-width: 992px) {
  .sponsorship-page .marketplace-cta .marketplace-cta-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: center;
  }

  .sponsorship-page .marketplace-cta .marketplace-cta-copy {
    text-align: left;
  }

  .sponsorship-page .marketplace-cta .flow-diagram {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .sponsorship-page .marketplace-cta .flow-diagram {
    padding: 1.75rem 1.5rem;
  }

  .sponsorship-page .marketplace-cta .step-number {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* Audience profile */
.sponsorship-page .audience-profile {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  position: relative;
}

.sponsorship-page .audience-profile::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.04), transparent 70%);
  pointer-events: none;
}

/* Audience Chart Cards */
.sponsorship-page .audience-chart-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.sponsorship-page .audience-chart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.sponsorship-page .audience-chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--psn-slate);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Donut Charts */
.sponsorship-page .audience-donut-chart {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.sponsorship-page .audience-donut-chart canvas {
  width: 100% !important;
  height: 100% !important;
}

/* Legend */
.sponsorship-page .audience-legend {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sponsorship-page .legend-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sponsorship-page .legend-color {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.sponsorship-page .legend-label {
  flex-grow: 1;
  font-size: 0.95rem;
  color: var(--psn-slate);
}

.sponsorship-page .legend-value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--psn-slate);
}

/* Stacked Bar Chart */
.sponsorship-page .stacked-bar-chart {
  margin: 2rem 0 1.5rem;
  position: relative;
  height: 240px;
}

.sponsorship-page .stacked-bar-chart canvas {
  width: 100% !important;
  height: 100% !important;
}

.sponsorship-page .timeframe-legend {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem auto 0;
  flex-wrap: nowrap;
  transition: margin 0.2s ease, width 0.2s ease;
}

.sponsorship-page .timeframe-item {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsorship-page .timeframe-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}

.sponsorship-page .timeframe-value {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--psn-slate);
}

/* Sectors Chart Card */
.sponsorship-page .sectors-chart-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sponsorship-page .horizontal-bars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sponsorship-page .h-bar-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.sponsorship-page .h-bar-label {
  min-width: 220px;
  font-size: 0.95rem;
  color: var(--psn-slate);
  font-weight: 500;
  text-align: left;
}

.sponsorship-page .h-bar-container {
  flex-grow: 1;
  width: 100%;
  background: #e8f2f8;
  height: 32px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.sponsorship-page .h-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0077ba 0%, #1c9dd8 100%);
  border-radius: 6px;
  max-width: 100%;
  transition: width 0.8s ease, transform 0.3s ease;
  animation: barGrow 1.5s ease-out;
}

.sponsorship-page .h-bar-item:hover .h-bar-fill {
  transform: scaleY(1.1);
  filter: brightness(1.1);
}

@keyframes barGrow {
  from {
    width: 0;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .sponsorship-page .h-bar-label {
    min-width: 180px;
    font-size: 0.9rem;
  }

  .sponsorship-page .audience-donut-chart {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .sponsorship-page .h-bar-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sponsorship-page .h-bar-label {
    min-width: 100%;
  }

  .sponsorship-page .h-bar-container {
    width: 100%;
  }

  .sponsorship-page .audience-chart-card {
    padding: 1.5rem;
  }

  .sponsorship-page .stacked-bar-chart {
    height: 200px;
  }

  .sponsorship-page .timeframe-label {
    font-size: 0.75rem;
  }

  .sponsorship-page .timeframe-item {
    align-items: center;
    width: 50%;
  }

  .sponsorship-page .timeframe-legend {
    flex-wrap: wrap;
    justify-content: center;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* Member communities */
.sponsorship-page .member-communities {
  background: var(--psn-ice);
}

.sponsorship-page .community-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sponsorship-page .community-card {
  border: 1px solid #e6edf3;
  border-radius: 18px;
  padding: 1.5rem;
  background: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: transform 0.2s ease;
}

.sponsorship-page .community-card:hover {
  transform: translateY(-6px);
}

.sponsorship-page .community-icon {
  width: 52px;
  height: 52px;
}

/* Testimonials */
.sponsorship-page .testimonials {
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
  position: relative;
}

.sponsorship-page .testimonials::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.03), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .testimonial-card {
  border: 1px solid rgba(0, 95, 191, 0.08);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #fdfdff 100%);
  box-shadow: 0 20px 45px rgba(0, 79, 146, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sponsorship-page .testimonial-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.sponsorship-page .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0, 79, 146, 0.12);
  border-color: rgba(28, 125, 255, 0.12);
}

.sponsorship-page .testimonial-logo-wrapper {
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  height: 110px;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.sponsorship-page .testimonial-logo {
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 90px;
  object-fit: contain;
  object-position: center;
}

.sponsorship-page .testimonial-quote {
  font-style: italic;
  min-height: 120px;
}

.sponsorship-page .testimonial-name {
  font-weight: 700;
  color: var(--psn-slate);
}

.sponsorship-page .testimonial-company {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--psn-muted);
}

.sponsorship-page .testimonial-role {
  color: var(--psn-muted);
  font-size: 0.9rem;
}

/* Global network */
.sponsorship-page .global-network {
  background: var(--psn-ice);
}

.sponsorship-page .network-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.sponsorship-page .network-logos img {
  width: 64px;
  height: 42px;
  object-fit: contain;
}

/* Closing CTA */
.sponsorship-page .closing-cta {
  background: linear-gradient(180deg, #f8fbfd 0%, #ffffff 50%, #f8fbfd 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.sponsorship-page .closing-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.08), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .closing-cta::after {
  content: '';
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
}

.sponsorship-page .cta-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 79, 146, 0.12), 0 8px 24px rgba(0, 79, 146, 0.08);
  border: 1px solid rgba(0, 95, 191, 0.08);
}

.sponsorship-page .cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--psn-blue), var(--psn-hero-blue), var(--psn-orange));
  border-radius: 24px 24px 0 0;
}

.sponsorship-page .closing-cta h2 {
  color: var(--psn-slate);
}

.sponsorship-page .closing-cta p {
  color: var(--psn-muted);
}

.sponsorship-page .cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--psn-hero-blue);
  background: rgba(0, 95, 191, 0.08);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}

.sponsorship-page .cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  flex: 1 1 auto;
}

.sponsorship-page .cta-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(0, 95, 191, 0.05);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(0, 95, 191, 0.1);
  box-shadow: 0 18px 32px rgba(0, 79, 146, 0.08);
}

.sponsorship-page .cta-benefit + .cta-benefit {
  margin-top: 0.5rem;
  border-top: 1px solid rgba(0, 95, 191, 0.06);
  padding-top: 1rem;
}

.sponsorship-page .cta-benefit-icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 95, 191, 0.18), rgba(255, 122, 33, 0.18));
  color: var(--psn-slate);
  font-size: 1.75rem;
  margin-top: 0.15rem;
}

.sponsorship-page .cta-benefit-title {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--psn-slate);
}

.sponsorship-page .cta-benefit-copy {
  color: var(--psn-muted);
  font-size: 0.96rem;
  margin-bottom: 0;
}

.sponsorship-page .cta-benefit > div:last-child {
  flex: 1 1 auto;
}

.sponsorship-page .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: rgba(0, 95, 191, 0.08);
  border-radius: 18px;
  padding: 0.75rem;
}

.sponsorship-page .cta-actions .btn-primary-blue {
  background-color: var(--psn-blue);
  border-color: var(--psn-blue);
  color: #fff;
}

.sponsorship-page .cta-actions .btn-primary-blue:hover {
  background-color: #003e72;
  border-color: #003e72;
}

.sponsorship-page .cta-actions .btn-outline-primary-blue {
  border-color: var(--psn-blue);
  color: var(--psn-blue);
  background: #fff;
}

.sponsorship-page .cta-actions .btn-outline-primary-blue:hover {
  background-color: var(--psn-blue);
  color: #fff;
}

@media (min-width: 768px) {
  .sponsorship-page .cta-actions {
    flex-direction: row;
    align-items: center;
    padding: 0.85rem 1.1rem;
  }

  .sponsorship-page .cta-actions .btn {
    flex: 1 1 0;
    justify-content: center;
  }
}

.sponsorship-page .cta-sidecard {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid rgba(0, 95, 191, 0.12);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 79, 146, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 auto;
  position: relative;
  overflow: visible;
}

.sponsorship-page .cta-sidecard::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(0, 95, 191, 0.12), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.sponsorship-page .cta-sidecard-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--psn-slate);
  margin-bottom: 1.5rem;
}

.sponsorship-page .cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--psn-muted);
  margin-bottom: 0.95rem;
}

.sponsorship-page .cta-checklist li:last-child {
  margin-bottom: 0;
}

.sponsorship-page .cta-checklist i {
  flex: 0 0 auto;
  color: var(--psn-orange);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.sponsorship-page .cta-response-time {
  font-size: 0.9rem;
  color: var(--psn-muted);
  text-align: center;
}

.sponsorship-page .cta-sidecard .cta-response-time {
  text-align: left;
}

@media (min-width: 992px) {
  .sponsorship-page .cta-benefits {
    grid-template-columns: 1fr;
  }

  .sponsorship-page .cta-benefit {
    flex-direction: row;
  }

  .sponsorship-page .cta-benefit-icon {
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .sponsorship-page .closing-cta {
    padding: 3rem 0;
  }

  .sponsorship-page .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .sponsorship-page .cta-benefit {
    padding: 1.35rem 1.4rem;
    gap: 1.25rem;
  }

  .sponsorship-page .cta-benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .sponsorship-page .cta-benefit + .cta-benefit {
    margin-top: 0.4rem;
  }

  .sponsorship-page .cta-sidecard {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .sponsorship-page .cta-checklist li {
    text-align: left;
  }

  .sponsorship-page .cta-benefit {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .sponsorship-page .cta-benefit-icon {
    margin-bottom: 0.5rem;
  }

  .sponsorship-page .cta-sidecard .cta-response-time {
    text-align: center;
  }
}

/* GIW Section Accent */
.sponsorship-page .block-country_city_cards {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, rgba(28, 125, 255, 0.4), rgba(255, 122, 33, 0.5), rgba(28, 125, 255, 0.4)) 1;
}

.sponsorship-page .country-city-cards {
  position: relative;
  overflow: hidden;
}

.sponsorship-page .country-city-cards::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28, 125, 255, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sponsorship-page .country-city-cards::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 122, 33, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .sponsorship-page .hero-media {
    margin: 0 auto;
  }

  .sponsorship-page .hero-media-backdrop {
    inset: -40px -40px -50px 20px;
  }

  .sponsorship-page .sponsorship-nav .nav-links {
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --nav-height: calc(2rem + 4rem);
  }

  .sponsorship-page .hero {
    text-align: center;
    min-height: auto;
    height: auto;
    padding-block: 2rem 3rem;
    overflow: visible;
  }

  .sponsorship-page .hero .hero-container {
    padding-block: 1.5rem;
  }

  .sponsorship-page .hero-copy {
    align-items: center;
  }

  .sponsorship-page .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .sponsorship-page .hero-title {
    font-size: clamp(1.5rem, 5.5vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: 0.875rem;
  }

  .sponsorship-page .hero-lead {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .sponsorship-page .hero-cta {
    align-items: stretch;
    width: 100%;
    gap: 0.75rem !important;
  }

  .sponsorship-page .hero-cta .btn {
    min-width: auto;
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .sponsorship-page .hero .row {
    min-height: auto;
  }

  .sponsorship-page .hero-media {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .sponsorship-page .hero-media-backdrop {
    inset: -20px -15px -20px -15px;
  }

  .sponsorship-page .sponsorship-nav .nav-links {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .sponsorship-page .logo-track {
    gap: 2rem;
  }

  .sponsorship-page .partner-logo {
    height: 36px;
  }

  .sponsorship-page .why-psn-image-placeholder {
    padding: 1rem;
    min-height: 300px;
  }
}
