/* ===== PARTNERY PAGE ===== */

    .p-hero {
      padding: 48px 0 56px;
    }
    .p-h1 {
      font-size: 40px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 32px;
    }
    .p-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: start;
    }
    .p-hero-text h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 20px;
      line-height: 1.3;
    }
    .p-hero-text p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .p-hero-text .btn--red {
      margin-top: 12px;
    }
    .p-hero-media {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }
    .p-hero-video {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, #0d1e35 0%, #1a3a5c 60%, #0d1e35 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .p-hero-video__text {
      font-size: 32px;
      font-weight: 900;
      color: var(--white);
      text-align: center;
      line-height: 1.2;
      z-index: 1;
      padding: 20px;
    }
    .p-hero-video__play {
      position: absolute;
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }
    .p-hero-video__play::after {
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 12px 0 12px 22px;
      border-color: transparent transparent transparent rgba(255,255,255,.9);
      margin-left: 4px;
    }
    .p-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 20px;
    }
    .p-stat {
      background: var(--gray-bg);
      border-radius: 16px;
      padding: 20px 24px;
      position: relative;
    }
    .p-stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--blue);
      border-radius: 4px 0 0 4px;
    }
    .p-stat__title {
      font-size: 17px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }
    .p-stat__text {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Что вы получите */
    .p-benefits {
      background: var(--gray-bg);
      padding: 60px 0;
    }
    .p-benefits__title {
      font-size: 30px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 32px;
    }
    .p-benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .p-benefit-card {
      background: var(--white);
      border-radius: 20px;
      padding: 28px 28px 32px;
    }
    .p-benefit-card__icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: #e8f4fd;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      margin-bottom: 18px;
    }
    .p-benefit-card h3 {
      font-size: 16px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .p-benefit-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* С кем сотрудничаем */
    .p-partners {
      padding: 60px 0;
    }
    .p-partners__title {
      font-size: 30px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 10px;
    }
    .p-partners__sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .p-partners-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .p-partner-card {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .p-partner-card__img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
    }
    .p-partner-card__img--1 { background: linear-gradient(135deg, #c8d8e8 0%, #a0bcd4 100%); }
    .p-partner-card__img--2 { background: linear-gradient(135deg, #d4c8e8 0%, #b8a8d0 100%); }
    .p-partner-card__img--3 { background: linear-gradient(135deg, #c8e8d4 0%, #a8d0bc 100%); }
    .p-partner-card__body {
      padding: 24px;
    }
    .p-partner-card h3 {
      font-size: 17px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 10px;
    }
    .p-partner-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* Приглашаем в офис */
    .p-office {
      background: var(--gray-bg);
      padding: 60px 0;
    }
    .p-office__title {
      font-size: 30px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 8px;
    }
    .p-office__sub {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }
    .p-office-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 28px;
      align-items: start;
    }
    .p-office-map iframe {
      width: 100%;
      height: 380px;
      border-radius: 16px;
      border: none;
      display: block;
    }
    .p-office-contacts {
      background: var(--white);
      border-radius: 20px;
      padding: 28px;
    }
    .p-contact-item {
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
    }
    .p-contact-item:last-child { border-bottom: none; }
    .p-contact-item__label {
      font-size: 12px;
      color: var(--text-light);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: .5px;
    }
    .p-contact-item__val {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
    }
    .p-contact-item__val a { color: var(--blue); }
    .p-contact-item__sub {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 2px;
    }
    .p-contact-item__reqs {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    @media (max-width: 960px) {
      .p-h1 { font-size: 30px; }
      .p-hero-grid { grid-template-columns: 1fr; }
      .p-benefits-grid { grid-template-columns: 1fr 1fr; }
      .p-partners-grid { grid-template-columns: 1fr 1fr; }
      .p-office-layout { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .p-h1 { font-size: 26px; }
      .p-stats-row { grid-template-columns: 1fr; }
      .p-benefits-grid { grid-template-columns: 1fr; }
      .p-partners-grid { grid-template-columns: 1fr; }
      .p-hero-text h2 { font-size: 20px; }
    }