.brand-values {
  margin-top: 42px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 26px rgba(29, 39, 51, .045);
}

.brand-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.brand-value {
  min-width: 0;
  min-height: 108px;
  padding: 18px;
  border: 1px solid #e0e4e0;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-value h3 {
  margin: 0 0 5px;
  color: #24282a;
  font-size: 17px;
  letter-spacing: -.01em;
}

.brand-value p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.brand-value-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: #f0f3ee;
  color: #5c7055;
  display: grid;
  place-items: center;
}

.brand-value-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-value-branch {
  overflow: hidden;
}

.brand-value-branch img {
  width: 64px;
  height: 46px;
  object-fit: contain;
  transform: rotate(-3deg);
}

.ad-slot {
  min-height: 82px;
  margin-top: 18px;
  border: 1px dashed #c5cbd1;
  border-radius: 9px;
  background: #fbfcfc;
  color: #8a9096;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 13px;
}

.ad-badge {
  padding: 1px 5px;
  border: 1px solid #c4c9ce;
  border-radius: 4px;
  background: #fff;
  color: #757b81;
  font-size: 10px;
  line-height: 1.4;
}

.privacy-note {
  max-width: 820px;
  margin: 22px auto 0;
  padding-top: 19px;
  border-top: 1px solid #e2e5e7;
  color: var(--muted);
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.privacy-note p {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-note strong {
  color: #52585e;
}

.privacy-lock {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
  color: #788078;
}

.privacy-lock svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-values-compact {
  margin-top: 28px;
  padding: 20px;
}

.brand-values-compact .brand-value {
  min-height: 92px;
  padding: 15px;
}

.brand-values-compact .ad-slot {
  min-height: 68px;
}

[dir="rtl"] .brand-value,
[dir="rtl"] .privacy-note {
  text-align: right;
}

@media (max-width: 860px) {
  .brand-value-grid {
    grid-template-columns: 1fr;
  }

  .brand-value {
    min-height: 88px;
  }
}

@media (max-width: 560px) {
  .brand-values,
  .brand-values-compact {
    margin-top: 26px;
    padding: 15px;
    border-radius: 9px;
  }

  .brand-value {
    min-height: 82px;
    padding: 14px;
  }

  .brand-value-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .brand-value-branch img {
    width: 56px;
    height: 40px;
  }

  .ad-slot {
    min-height: 64px;
  }

  .privacy-note {
    text-align: left;
  }
}
