  /* ── PARTNERSHIP PAGE OVERRIDES ── */
  #p-hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background-color: #1e2736;
    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: 32px 32px;
    position: relative;
    overflow: hidden;
  }

  #p-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: var(--blue);
  }

  .p-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
  }

  .p-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6bb8e8;
    margin-bottom: 20px;
  }

  .p-hero-eyebrow::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: #6bb8e8;
    border-radius: 2px;
  }

  .p-hero-title {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 20px;
  }

  .p-hero-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: #7ec6f0;
  }

  .p-hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
  }

  .p-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
  }

  .p-hero-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    min-width: 160px;
    flex-shrink: 0;
  }

  .p-hero-badge-val {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 32px;
    color: var(--white);
    line-height: 1;
  }

  .p-hero-badge-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
  }

  /* ── PROBLEM ── */
  #p-problem { background: var(--gray-light); }

  .p-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .p-problem-card {
    background: var(--white);
    border: 1.5px dashed #d0d5dd;
    border-radius: var(--radius);
    padding: 24px 28px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s;
  }

  .p-problem-card:hover { border-color: var(--blue); }

  .p-problem-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 36px;
    color: var(--blue-light);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
  }

  .p-problem-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
  }

  /* ── SOLUTION ── */
  #p-solution { background: var(--white); }

  .p-solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .p-solution-text h2 { color: var(--dark); margin-bottom: 20px; }
  .p-solution-text p  { margin-bottom: 14px; }

  .p-solution-points {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1.5px solid rgba(39,127,190,0.15);
    border-radius: 12px;
    overflow: hidden;
  }

  .p-sol-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(39,127,190,0.1);
    transition: background 0.15s;
  }

  .p-sol-point:last-child { border-bottom: none; }
  .p-sol-point:hover { background: var(--blue-light); }

  .p-sol-icon {
    width: 36px; height: 36px;
    background: var(--blue-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
  }

  .p-sol-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; }

  .p-sol-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 2px;
  }

  .p-sol-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.55;
    margin: 0;
  }

  /* ── SERVICES ── */
  #p-services {
    background-color: #2e3340;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
  }

  #p-services .sec-eyebrow { color: #6bb8e8; }
  #p-services .sec-eyebrow::before { background: #6bb8e8; }
  #p-services h2 { color: var(--white); margin-bottom: 8px; }
  #p-services > .container > p { color: #9aabb8; margin-bottom: 40px; }

  .p-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
  }

  .p-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.15s;
    gap: 24px;
  }

  .p-service-row:last-child { border-bottom: none; }
  .p-service-row:hover { background: rgba(39,127,190,0.1); }

  .p-service-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: #f0f4f8;
    letter-spacing: 0.02em;
  }

  .p-service-desc {
    font-size: 13px;
    color: #8fa0b0;
    text-align: right;
  }

  .p-partners-note {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
  }

  .p-partners-note-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    white-space: nowrap;
  }

  .p-partners-note-logos {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .p-partners-note-logos span {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.04em;
  }

  /* ── HOW WE WORK ── */
  #p-howwework { background: var(--white); }

  .p-hww-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .p-hww-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid transparent;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
  }

  .p-hww-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
  }

  .p-hww-card-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 4px;
  }

  .p-hww-card-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.8;
  }

  .p-hww-card-num {
    position: absolute;
    bottom: -12px;
    right: 12px;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 96px;
    line-height: 1;
    color: rgba(39,127,190,0.13);
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .p-hww-card-icon,
  .p-hww-card h3,
  .p-hww-card p {
    position: relative;
    z-index: 1;
  }

  .p-hww-card h3 { font-size: 16px; color: var(--dark); }
  .p-hww-card p  { font-size: 13px; color: var(--gray); line-height: 1.65; margin: 0; }

  /* CTO quote */
  .p-cto-quote {
    margin-top: 48px;
    background: var(--blue);
    border-radius: var(--radius);
    padding: 32px 40px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .p-cto-quote::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--pink);
  }

  .p-cto-mark {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 72px;
    color: rgba(255,255,255,0.2);
    line-height: 0.8;
    flex-shrink: 0;
  }

  .p-cto-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(18px, 2.5vw, 26px);
    color: var(--white);
    line-height: 1.4;
  }

  /* ── TESTIMONIALS ── */
  #p-testimonials { background: var(--gray-light); }

  .p-testi-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
  }

  .p-testi-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    align-items: center;
    border: 1px solid #e8eaed;
    transition: box-shadow 0.2s;
  }

  .p-testi-card:hover { box-shadow: 0 4px 20px rgba(39,127,190,0.08); }

  .p-testi-source {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #e8eaed;
    padding-right: 32px;
  }

  .p-testi-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    letter-spacing: 0.02em;
  }

  .p-testi-loc {
    font-size: 12px;
    color: var(--gray-mid);
  }

  .p-testi-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.65;
    margin: 0;
  }

  /* ── PARTNERSHIP CTA ── */
  #p-cta {
    background: #1e2330;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  #p-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--pink);
  }

  #p-cta h2 { color: var(--white); margin-bottom: 16px; }
  #p-cta p  { color: #8a9ab0; max-width: 480px; margin: 0 auto 36px; }

@media (max-width: 768px) {
  .p-hero-inner { grid-template-columns: 1fr; }
  .p-hero-badge { display: none; }
  .p-problem-grid, .p-hww-grid { grid-template-columns: 1fr; }
  .p-solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .p-testi-card { grid-template-columns: 1fr; }
  .p-testi-source { border-right: none; padding-right: 0; border-bottom: 1px solid #e8eaed; padding-bottom: 16px; }
  .p-service-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .p-service-desc { text-align: left; }
  .p-hww-card-num { font-size: 80px; bottom: -8px; right: 10px; }
  .p-hww-card-icon { width: 28px !important; height: 28px !important; border-radius: 7px; }
  .p-hww-card-icon svg { width: 14px !important; height: 14px !important; }
}

@media (max-width: 640px) {
  #p-hero { padding-top: 100px; padding-bottom: 48px; }
  .p-hero-title { font-size: clamp(32px, 8vw, 52px); }
  .p-cto-quote { flex-direction: column; padding: 24px; }
  .p-cto-mark { font-size: 48px; }
  .p-partners-note { flex-direction: column; align-items: flex-start; gap: 12px; }
  .p-partners-note-logos { flex-wrap: wrap; gap: 12px; }
  .p-testi-card { padding: 20px; }
}
