/* ===== REKVIZITY PAGE ===== */

    .rek-hero {
      padding: 40px 0 60px;
    }
    .rek-h1 {
      font-size: 40px;
      font-weight: 900;
      color: var(--text);
      margin-bottom: 32px;
    }
    .rek-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
    .rek-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 28px;
      position: relative;
    }
    .rek-badge {
      display: inline-block;
      background: var(--red);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      border-radius: 50px;
      padding: 5px 16px;
      margin-bottom: 24px;
    }
    .rek-section {
      margin-bottom: 24px;
    }
    .rek-section:last-child {
      margin-bottom: 0;
    }
    .rek-label {
      font-size: 17px;
      font-weight: 800;
      color: var(--red);
      margin-bottom: 10px;
    }
    .rek-text {
      font-size: 14px;
      color: var(--text);
      line-height: 1.7;
    }
    .rek-row2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .rek-phone {
      font-size: 22px;
      font-weight: 800;
      color: var(--blue);
      display: block;
      margin-top: 6px;
    }
    .rek-email {
      font-size: 22px;
      font-weight: 800;
      color: var(--blue);
      display: block;
      margin-top: 6px;
    }
    .rek-map {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--border);
      height: 100%;
      min-height: 500px;
    }
    .rek-map iframe {
      width: 100%;
      height: 100%;
      min-height: 500px;
      display: block;
      border: none;
    }

    /* Objects banner */
    .rek-objects-banner {
      background: var(--navy);
      border-radius: 20px;
      margin: 0 0 60px;
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .rek-objects-banner__btn {
      width: 48px;
      height: 48px;
      background: rgba(255,255,255,.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      flex-shrink: 0;
      transition: background .2s;
    }
    .rek-objects-banner:hover .rek-objects-banner__btn {
      background: var(--blue);
    }
    .rek-objects-banner__title {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
    }

    @media (max-width: 960px) {
      .rek-h1 { font-size: 30px; }
      .rek-layout { grid-template-columns: 1fr; }
      .rek-map { min-height: 350px; }
      .rek-map iframe { min-height: 350px; }
      .rek-objects-banner { padding: 24px; }
    }
    @media (max-width: 640px) {
      .rek-h1 { font-size: 26px; }
      .rek-row2 { grid-template-columns: 1fr; }
      .rek-phone, .rek-email { font-size: 18px; }
    }