/* ================================================================
   WHIEDA — Стили страницы «О компании»
   ================================================================ */

.section {
  padding: 60px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #28251D;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.section-lede {
  font-size: 17px;
  color: #7A7974;
  margin: 0 0 40px;
  max-width: 720px;
  line-height: 1.5;
}

/* -------- Brands -------- */
.brands-section {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 241, 232, 0.35) 100%);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.brand-card {
  padding: 32px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfaf5 100%);
  border-radius: 20px;
  border: 1px solid rgba(1, 105, 111, 0.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(1,105,111,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  transition: transform 0.4s ease;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(1, 105, 111, 0.12);
  border-color: rgba(1, 105, 111, 0.3);
}
.brand-card:hover::before {
  transform: translate(20%, -20%) scale(1.3);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #01696F;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  position: relative;
}
.brand-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #504F4B;
  margin: 0;
  position: relative;
}

/* -------- Leaders -------- */
.leaders-section {
  background: linear-gradient(180deg, rgba(240, 250, 245, 0.4) 0%, rgba(245, 241, 232, 0.5) 100%);
}
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.leader-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(0, 40, 45, 0.04),
    0 12px 32px rgba(0, 40, 45, 0.06);
  border: 1px solid rgba(1, 105, 111, 0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease;
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 8px 20px rgba(0, 40, 45, 0.08),
    0 24px 48px rgba(0, 40, 45, 0.12);
}
.leader-photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f5f0 0%, #e8f0eb 100%);
  position: relative;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.leader-card:hover .leader-photo img {
  transform: scale(1.05);
}
.leader-body {
  padding: 26px 28px 28px;
}
.leader-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: #28251D;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.leader-title {
  font-size: 13.5px;
  color: #01696F;
  font-weight: 600;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(1, 105, 111, 0.12);
  line-height: 1.4;
  letter-spacing: 0.01em;
}
.leader-roles {
  list-style: none;
  padding: 0;
  margin: 0;
}
.leader-roles li {
  font-size: 13.5px;
  line-height: 1.6;
  color: #504F4B;
  padding-left: 20px;
  position: relative;
  margin-bottom: 9px;
}
.leader-roles li:last-child { margin-bottom: 0; }
.leader-roles li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #01696F;
  border-radius: 50%;
  opacity: 0.5;
}

/* -------- Certs -------- */
.certs-section {
  background: linear-gradient(135deg, #01696F 0%, #024C51 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.certs-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
  transform: rotate(-15deg);
}
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.cert-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.cert-badge:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
}
.cert-badge strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.cert-badge span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  display: block;
}

/* -------- CTA -------- */
.cta-section {
  background: linear-gradient(135deg, #F5F1E8 0%, #EBF3EC 100%);
  padding: 80px 0;
}
.cta-section h2 {
  color: #28251D;
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 40px 0; }
  .leader-photo { aspect-ratio: 5/4; }
  .brands-grid, .leaders-grid { gap: 18px; }
  .brand-card { padding: 24px 22px; }
  .leader-body { padding: 22px 22px 24px; }
}
