/* ===== PARTNER PAGE HERO ===== */
.partner-hero {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.partner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(17,17,17,0.92) 0%, rgba(42,61,143,0.85) 100%),
    radial-gradient(ellipse at 10% 60%, #0d1a4a 0%, transparent 50%);
}
.partner-hero .wrap { position: relative; z-index: 1; }
.partner-hero .breadcrumb {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
}
.partner-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.partner-hero .breadcrumb a:hover { color: #fff; }
.partner-hero .breadcrumb span { color: rgba(255,255,255,0.35); margin: 0 0.5rem; }
.partner-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  max-width: 760px;
  margin: 0 0 1.2rem;
}
.partner-hero .hero-lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin: 0 0 2rem;
}
.partner-hero .hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
/* ===== SHARED UTILITIES ===== */
.section-header { margin-bottom: 3rem; }
.section-header .kicker { color: var(--red); }
.section-header h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin: 0.4rem 0 0.6rem; }
.section-header p  { color: var(--muted); max-width: 560px; margin: 0; }

/* ===== WHY PARTNER (BENEFITS) ===== */
.benefits-section {
  padding: 5rem 0;
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.09);
  transform: translateY(-3px);
}
.benefit-card .b-icon {
  width: 52px;
  height: 52px;
  background: rgba(42,61,143,.1);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--red);
}
.benefit-card h4 { margin: 0; font-size: 1.05rem; }
.benefit-card p  { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

/* ===== PARTNERSHIP TYPES ===== */
.types-section {
  background: var(--light);
  padding: 5rem 0;
}
.types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.type-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 6px 1fr;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.type-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.type-accent { background: var(--red); }
.type-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.type-tag {
  display: inline-block;
  background: rgba(42,61,143,.1);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  align-self: flex-start;
}
.type-body h3 { margin: 0; font-size: 1.1rem; }
.type-body p  { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.type-body a  { color: var(--red); font-weight: 700; font-size: 0.88rem; align-self: flex-start; margin-top: 0.25rem; }

/* ===== HOW IT WORKS ===== */
.process-section { padding: 5rem 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.process-step h4 { margin: 0; font-size: 0.97rem; }
.process-step p  { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--dark);
  color: #fff;
  padding: 5rem 0;
}
.testimonials-section .section-header .kicker { color: rgba(255,255,255,0.5); }
.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-header p  { color: rgba(255,255,255,0.6); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testi-quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-quote::before { content: '\201C'; color: var(--red); font-size: 2rem; line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; font-style: normal; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: #fff; margin: 0 0 0.15rem; }
.testi-org  { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin: 0; }

/* ===== CONTACT / APPLICATION FORM ===== */
.apply-section {
  padding: 5rem 0;
  background: var(--light);
}
.apply-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.apply-info h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0 0 1rem; }
.apply-info p  { color: var(--muted); line-height: 1.7; margin-bottom: 0.8rem; }
.apply-contacts { list-style: none; padding: 0; margin: 1.5rem 0 0; display: flex; flex-direction: column; gap: 0.75rem; }
.apply-contacts li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  font-weight: 600;
}
.apply-contacts .ac-icon {
  width: 34px;
  height: 34px;
  background: rgba(42,61,143,.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--red);
  flex-shrink: 0;
}

.apply-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.apply-form h3 { margin: 0 0 1.75rem; font-size: 1.2rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d0d0d0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(42,61,143,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 1rem; margin-top: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  .benefits-grid  { grid-template-columns: repeat(2, 1fr); }
  .types-grid     { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .apply-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .benefits-grid  { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
}
