/* ===== TEAM SECTION (full) ===== */
.team-section { padding:90px 0; background:linear-gradient(180deg,#fff 0%,#f6fbfd 100%); }
.team-section .section-tag { display:inline-block; background:rgba(32,173,233,0.10); color:#0e6e8c; font-size:13px; font-weight:700; padding:6px 14px; border-radius:20px; letter-spacing:1px; text-transform:uppercase; margin-bottom:14px; }
.team-section .section-title { font-size:clamp(28px,4vw,40px); color:#0d1b3e; margin-bottom:14px; }
.team-section .section-subtitle { font-size:16px; color:#5a6e80; line-height:1.55; }
.team-section .section-subtitle strong { color:#0e6e8c; }
.team-section .section-header { text-align:center; margin-bottom:48px; }

.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(360px,1fr)); gap:28px; max-width:900px; margin:0 auto; }
.team-card {
  background:#fff; border-radius:20px; overflow:hidden;
  box-shadow:0 10px 40px rgba(14,110,140,0.08); border:1px solid #e6eef5;
  transition:transform 0.3s, box-shadow 0.3s;
  display:flex; flex-direction:column;
}
.team-card:hover { transform:translateY(-6px); box-shadow:0 18px 50px rgba(14,110,140,0.15); }

.team-card__photo-wrap { position:relative; aspect-ratio:1/1; overflow:hidden; background:#f0f7fa; }
.team-card__photo { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.team-card:hover .team-card__photo { transform:scale(1.04); }
.team-card__badge { position:absolute; top:14px; left:14px; background:rgba(255,255,255,0.95); color:#0e6e8c; font-size:11px; font-weight:800; padding:6px 12px; border-radius:14px; letter-spacing:0.5px; text-transform:uppercase; box-shadow:0 4px 12px rgba(0,0,0,0.10); }
.team-card__online { position:absolute; top:14px; right:14px; width:14px; height:14px; background:#43A047; border:3px solid #fff; border-radius:50%; box-shadow:0 0 0 0 rgba(67,160,71,0.5); animation:teamOnlinePulse 1.8s infinite; }
@keyframes teamOnlinePulse { 0%{box-shadow:0 0 0 0 rgba(67,160,71,0.45)} 70%{box-shadow:0 0 0 11px rgba(67,160,71,0)} 100%{box-shadow:0 0 0 0 rgba(67,160,71,0)} }

.team-card__body { padding:24px 26px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.team-card__name-wrap { display:flex; flex-wrap:wrap; align-items:baseline; gap:8px; }
.team-card__name { font-family:'Jost',sans-serif; font-size:24px; font-weight:800; color:#0d1b3e; margin:0; line-height:1.1; }
.team-card__name-ru { font-size:14px; color:#8a99a8; font-weight:500; }
.team-card__title { font-size:14px; color:#5a8198; font-weight:600; letter-spacing:0.3px; text-transform:uppercase; }
.team-card__bio { font-size:14.5px; color:#475569; line-height:1.55; margin:6px 0 4px; flex:1; }
.team-card__tg-btn {
  display:inline-flex; align-items:center; gap:8px; justify-content:center;
  background:linear-gradient(135deg,#229ED9 0%,#1a7fc1 100%); color:#fff !important;
  text-decoration:none; padding:13px 20px; border-radius:11px;
  font-size:15px; font-weight:700; font-family:inherit;
  transition:all 0.25s; box-shadow:0 6px 18px rgba(34,158,217,0.35); margin-top:6px;
}
.team-card__tg-btn:hover { transform:translateY(-2px); box-shadow:0 10px 26px rgba(34,158,217,0.50); color:#fff; }

.team-trust-bar {
  display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:18px;
  max-width:900px; margin:48px auto 0; padding:24px 28px;
  background:#fff; border-radius:18px; border:1px solid #e6eef5; box-shadow:0 6px 24px rgba(14,110,140,0.06);
}
.team-trust-item { display:flex; align-items:center; gap:12px; }
.team-trust-item svg { flex-shrink:0; }
.team-trust-item strong { display:block; font-size:18px; color:#0d1b3e; font-family:'Jost',sans-serif; line-height:1.1; }
.team-trust-item span { display:block; font-size:12px; color:#7a8898; margin-top:2px; }

@media(max-width:480px) {
  .team-section { padding:60px 0; }
  .team-grid { grid-template-columns:1fr; gap:20px; max-width:380px; }
  .team-card__body { padding:20px; }
  .team-card__name { font-size:20px; }
  .team-trust-bar { padding:18px; gap:14px; }
}

/* ===== TEAM COMPACT (sidebar / contact) ===== */
.team-compact { background:#fff; border:1px solid #e1e8f0; border-radius:18px; padding:24px; box-shadow:0 6px 24px rgba(14,110,140,0.06); }
.team-compact__header { text-align:center; margin-bottom:20px; padding-bottom:16px; border-bottom:1px solid #eef3f8; }
.team-compact__title { font-family:'Jost',sans-serif; font-size:20px; font-weight:800; color:#0d1b3e; margin-bottom:4px; }
.team-compact__since { font-size:12px; color:#7a8898; }
.team-compact__since strong { color:#0e6e8c; }
.team-compact__grid { display:flex; flex-direction:column; gap:14px; }
.team-compact__card { display:flex; align-items:center; gap:14px; padding:12px; border-radius:12px; background:#f9fbfd; transition:background 0.2s; }
.team-compact__card:hover { background:#f0f7fa; }
.team-compact__photo-wrap { position:relative; flex-shrink:0; }
.team-compact__photo { width:60px; height:60px; border-radius:50%; object-fit:cover; border:2.5px solid #fff; box-shadow:0 3px 10px rgba(14,110,140,0.18); }
.team-compact__online { position:absolute; bottom:0; right:0; width:13px; height:13px; background:#43A047; border:2.5px solid #fff; border-radius:50%; }
.team-compact__info { flex:1; min-width:0; }
.team-compact__name { font-family:'Jost',sans-serif; font-size:16px; font-weight:700; color:#0d1b3e; line-height:1.2; }
.team-compact__role { font-size:12px; color:#5a8198; margin:2px 0 5px; line-height:1.3; }
.team-compact__years { font-size:11px; color:#9aa6b3; margin-bottom:5px; }
.team-compact__tg { display:inline-flex; align-items:center; font-size:13px; color:#229ED9; font-weight:700; text-decoration:none; }
.team-compact__tg:hover { color:#1a7fc1; text-decoration:underline; }

/* ===== TEAM FOOTER (small block in footer) ===== */
.team-footer { padding:28px 0 22px; border-top:1px solid rgba(255,255,255,0.10); border-bottom:1px solid rgba(255,255,255,0.10); margin-bottom:30px; }
.team-footer__title { font-family:'Jost',sans-serif; font-size:16px; font-weight:800; color:#fff; text-align:center; letter-spacing:0.5px; margin-bottom:4px; }
.team-footer__since { font-size:12px; color:rgba(255,255,255,0.65); text-align:center; margin-bottom:18px; }
.team-footer__since strong { color:#FFD740; }
.team-footer__row { display:flex; justify-content:center; gap:22px; flex-wrap:wrap; }
.team-footer__card {
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.10);
  border-radius:14px; padding:10px 16px 10px 10px;
  text-decoration:none; transition:all 0.25s;
}
.team-footer__card:hover { background:rgba(255,255,255,0.10); border-color:rgba(255,215,64,0.40); transform:translateY(-2px); }
.team-footer__photo { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid rgba(255,255,255,0.20); flex-shrink:0; }
.team-footer__info { color:#fff; }
.team-footer__name { font-family:'Jost',sans-serif; font-size:14px; font-weight:700; line-height:1.2; }
.team-footer__role { font-size:11px; color:rgba(255,255,255,0.65); margin:2px 0; }
.team-footer__tg { font-size:12px; color:#20ade9; font-family:monospace; font-weight:600; }

@media(max-width:480px) {
  .team-footer__row { flex-direction:column; align-items:center; gap:12px; }
  .team-footer__card { width:100%; max-width:280px; }
}
