/* ========== БАЗОВЫЕ СТИЛИ ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Exo 2', Arial, sans-serif;
  background-color: #ebf2f9;
  color: #2e353f;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== КНОПКИ ========== */
.btn {
  display: inline-block;
  border-radius: 120px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #79ccff 0%, #2fafff 48%, #79ccff 100%);
  background-size: 200% auto;
  color: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 75, 188, 0.3);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 10px 20px rgba(0, 75, 188, 0.5);
}
/* Кнопка "Подробнее" - стиль как на лендинге */
.btn-detail {
  display: inline-block;
  background: transparent;
  border: 2px solid #2fafff;
  color: #2fafff;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-detail:hover {
  background: #2fafff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 175, 255, 0.3);
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .btn-detail {
      padding: 8px 16px;
      font-size: 0.8rem;
  }
}
/* ========== ЗАГОЛОВКИ ========== */
.section-title {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 30px;
}

.section-title span {
  color: #2fafff;
}

/* ========== ХЕДЕР (фиксированный) ========== */
.uc-bigmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ebf2f9;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo img {
  height: 52px;
}

.menu-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #5b6370;
  transition: 0.2s;
}

.menu-links a:hover,
.menu-links a.active {
  color: #2fafff;
}

.phone-block {
  text-align: right;
}

.phone-block .phone {
  font-size: 18px;
  font-weight: 500;
  color: #2e353f;
  text-decoration: none;
}

.phone-block .callback {
  font-size: 13px;
  font-weight: 600;
  color: #5b6370;
  text-decoration: none;
  border-bottom: 1px dashed;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2fafff;
}

.uc-filler {
  height: 95px;
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  transition: 0.3s;
  padding: 20px;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu .close-menu {
  text-align: right;
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #5b6370;
  text-decoration: none;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
}

.overlay.show {
  display: block;
}

/* ========== ПОПАПЫ ========== */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100000;
  justify-content: center;
  align-items: center;
}

.popup.active {
  display: flex;
}

.popup-content {
  background: #fbfbf9;
  max-width: 700px;
  width: 90%;
  border-radius: 50px;
  padding: 40px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}
/* Кнопка в попапе */
.popup-call-btn {
  background: linear-gradient(135deg, #2fafff 0%, #1a8fd9 100%);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}
.btn-primary {
  padding: 14px 32px;  /* Увеличьте вертикальный отступ */
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 10px;
}
.popup-call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 175, 255, 0.3);
}
/* ========== КАРТОЧКИ ТЕХНОЛОГИЙ ========== */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.tech-card {
  background: white;
  border-radius: 50px;
  padding: 30px 20px;
  width: calc(33% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tech-card img {
  width: 100px;
  margin-bottom: 20px;
}

.tech-card h3 {
  font-size: 26px;
  font-weight: 400;
  margin: 15px 0;
}

/* ========== БЛОК ВРАЧЕЙ / СЛАЙДЕР ========== */
.doctors-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
}

.doctors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.doctor-item {
  background: #fff;
  border-radius: 30px;
  width: calc(25% - 30px);
  text-align: center;
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.doctor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.doctor-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.doctor-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2e353f;
  margin: 15px 0 8px;
}

.doctor-item p {
  font-size: 14px;
  line-height: 1.45;
  color: #5b6370;
}

/* ========== ФУТЕР ========== */
.footer {
  background-color: #ebf2f9;
  padding: 40px 0 30px;
  border-top: 2px solid #2fafff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col a {
  display: block;
  color: #5b6370;
  text-decoration: none;
  margin: 8px 0;
  font-size: 14px;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #2fafff;
  font-size: 28px;
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 980px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 32px; text-align: center; }
  .menu-links { display: none; }
  .burger { display: block; }
  .phone-block { margin-right: 20px; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 15px 0; }
  .tech-card { width: calc(50% - 15px) !important; }
  .footer-inner { flex-direction: row; flex-wrap: wrap; gap: 30px; }
  .footer-col { flex: 1 1 calc(50% - 30px); min-width: 200px; }
  .doctors-grid { flex-wrap: nowrap; overflow-x: auto; gap: 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 10px 5px 25px 5px; }
  .doctor-item { flex: 0 0 270px; scroll-snap-align: start; width: 270px !important; margin: 0; }
  .doctors-grid::-webkit-scrollbar { height: 5px; }
  .doctors-grid::-webkit-scrollbar-track { background: #e0e7f0; border-radius: 10px; }
  .doctors-grid::-webkit-scrollbar-thumb { background: #2fafff; border-radius: 10px; }
}

@media (max-width: 768px) {
  .section-title { font-size: 28px; }
  .tech-card h3 { font-size: 22px; }
  .btn-primary { padding: 12px 25px; font-size: 14px; }
  .doctor-item { flex: 0 0 250px; width: 250px !important; }
}

@media (max-width: 640px) {
  .container { padding: 0 15px; }
  .section-title { font-size: 26px; line-height: 1.3; margin-bottom: 25px; }
  .tech-card { width: 100% !important; padding: 25px 20px !important; }
  .tech-card img { height: 70px; width: auto; }
  div[style*="background: linear-gradient"] { border-radius: 25px !important; flex-direction: column; text-align: center; }
  div[style*="background: linear-gradient"] div { padding: 30px 20px !important; }
  .footer-inner { flex-direction: column; gap: 25px; }
  .footer-col { flex: 1 1 100%; text-align: center; }
  .social-icons { justify-content: center; }
  .mobile-menu { width: 85%; max-width: 300px; }
  .popup-content { width: 95%; padding: 30px 20px; border-radius: 25px; }
  .uc-filler { height: auto; min-height: 70px; }
  img { max-width: 100%; height: auto; }
  a, button, .btn { touch-action: manipulation; }
  section { padding: 40px 0 !important; }
  .doctor-item { flex: 0 0 260px; width: 260px !important; padding: 20px 15px; }
  .doctor-item img { width: 120px; height: 120px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .section-title { font-size: 24px; }
  .btn-primary { padding: 10px 20px; font-size: 14px; width: 100%; text-align: center; }
  .logo img { height: 40px; }
  .phone-block .phone { font-size: 14px; }
  .phone-block .callback { font-size: 11px; }
  p { font-size: 14px; line-height: 1.45; }
  h3 { font-size: 22px !important; }
  .social-icons a { font-size: 24px; }
  section { padding: 30px 0 !important; }
  .tech-grid { gap: 20px; }
  .doctor-item { flex: 0 0 240px; width: 240px !important; }
  .doctor-item img { width: 100px; height: 100px; }
}

@media (min-width: 981px) {
  .doctors-grid { display: flex; flex-wrap: wrap; }
  .doctors-slider-wrapper::after { display: none; }
}

/* ========== БЛОК С ВИДЕО ========== */
.video-section {
  background: #ebf2f9;
  padding: 60px 0;
}

.video-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5b6370;
  margin-bottom: 40px;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.video-card {
  flex: 1;
  min-width: 280px;
  max-width: calc(33.333% - 20px);
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-preview {
  transform: scale(1.05);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
}

.video-play-btn svg {
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.2s ease;
}

.video-play-btn:hover svg {
  transform: scale(1.1);
}

.video-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  pointer-events: none;
}

.video-wrapper:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.video-info {
  padding: 20px 20px 25px;
}

.video-title {
  font-size: 20px;
  font-weight: 600;
  color: #2e353f;
  margin-bottom: 8px;
}

.video-descr {
  font-size: 14px;
  color: #5b6370;
  line-height: 1.45;
}

.video-more-btn {
  text-align: center;
  margin-top: 50px;
}

.video-more-btn .btn {
  padding: 14px 40px;
}

/* ========== ВИДЕО-ПОПАП ========== */
.video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 100001;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.video-popup.active {
  display: flex;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
}

.video-popup-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease;
  z-index: 2;
}

.video-popup-close:hover {
  opacity: 0.7;
}

.video-popup-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

#video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Адаптив видео */
@media (max-width: 980px) {
  .video-card { max-width: calc(50% - 15px); }
  .video-title { font-size: 18px; }
}
@media (max-width: 640px) {
  .video-section { padding: 40px 0; }
  .video-subtitle { font-size: 16px; margin-bottom: 25px; }
  .video-grid { flex-direction: column; gap: 25px; }
  .video-card { max-width: 100%; width: 100%; min-width: auto; }
  .video-play-btn svg { width: 55px; height: 55px; }
  .video-info { padding: 15px 18px 20px; }
  .video-title { font-size: 18px; }
  .video-descr { font-size: 14px; }
  .video-more-btn { margin-top: 35px; }
  .video-more-btn .btn { padding: 12px 30px; font-size: 14px; }
  .video-popup-content { width: 95%; }
  .video-popup-close { top: -35px; font-size: 28px; }
}
@media (max-width: 480px) {
  .video-play-btn svg { width: 48px; height: 48px; }
  .video-title { font-size: 16px; }
  .video-descr { font-size: 13px; }
  .video-more-btn .btn { width: 100%; display: block; }
}

/* ========== БЛОК ОЧИЩАЕТ / ПИТАЕТ / ЗАЩИЩАЕТ / ДАЕТ ЭНЕРГИЮ ========== */
.hydro-benefits-section {
  padding: 20px 0;
  background-color: #ebf2f9;
}
.hydro-benefits-section .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
.hb-row {
  display: flex;

}
.hb-row:last-child { margin-bottom: 0; }
.hb-visual-col { flex: 1; position: relative; }
.hb-img-box {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 40px;
  overflow: hidden;
}
.hb-img-box .hb-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hb-label {
  position: absolute;
  background: #ffffff;
  color: #2e353f;
  padding: 15px 20px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 180px;
  z-index: 2;
}
.hb-label-tl { top: 20px; left: 20px; }
.hb-label-br { bottom: 20px; right: 20px; text-align: right; }
.hb-card {
  flex: 1;
  background: #ffffff;
  border-radius: 40px;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.hb-card-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 54px;
  font-weight: 400;
  color: #2fafff;
  margin: 0 0 40px 0;
  line-height: 1;
}
.hb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 35px;
  margin-bottom: 40px;
}
.hb-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  color: #5b6370;
  line-height: 1.5;
}
.hb-icon { flex-shrink: 0; margin-top: 2px; color: #2fafff; }
.hb-icon svg { width: 24px; height: 24px; }
.hb-item-full { grid-column: 1 / -1; }
.hb-link {
  display: inline-block;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2fafff;
  text-decoration: none;
  border-bottom: 1px dashed #2fafff;
  transition: 0.2s;
}
.hb-link:hover { opacity: 0.8; }
.hb-play-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: rgba(47, 175, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-blue 2s infinite;
  box-shadow: 0 0 0 0 rgba(47, 175, 255, 0.7);
}
.hb-play-large:hover {
  background: rgba(47, 175, 255, 1);
  transform: translate(-50%, -50%) scale(1.05);
  animation: none;
  box-shadow: 0 10px 40px rgba(47, 175, 255, 0.5);
}
.hb-play-large svg { width: 80px; height: 80px; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); }
@keyframes pulse-blue {
  0% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(47, 175, 255, 0.7); }
  50% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 0 20px rgba(47, 175, 255, 0); }
  100% { transform: translate(-50%, -50%) scale(0.95); box-shadow: 0 0 0 0 rgba(47, 175, 255, 0); }
}
@media (max-width: 980px) {
  .hb-row { flex-direction: column; gap: 30px; margin-bottom: 5px; }
  .hb-row-bottom { flex-direction: column-reverse; }
  .hb-card-title { font-size: 42px; }
  .hb-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hydro-benefits-section { padding: 40px 0; }
  .hb-card { padding: 30px 20px; border-radius: 25px; }
  .hb-card-title { font-size: 36px; margin-bottom: 20px; }
  .hb-item { font-size: 20px; line-height: 1.3; gap: 12px; margin-bottom: 15px; }
  .hb-icon svg { width: 24px; height: 24px; }
  .hb-grid { gap: 15px 20px; margin-bottom: 20px; }
  .hb-link { font-size: 16px; }
  .hb-label { max-width: 150px; font-size: 14px; padding: 12px 15px; }
  .hb-img-box { min-height: 300px; border-radius: 25px; }
  .hb-play-large { width: 80px; height: 80px; }
  .hb-play-large svg { width: 48px; height: 48px; }
}
@media (max-width: 480px) {
  .hb-card-title { font-size: 32px; }
  .hb-item { font-size: 18px; }
}

/* ========== БЛОК ВЕБИНАР ========== */
.webinar-section {
  background-image: url('img/fon1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
}
.webinar-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.webinar-content { flex: 1; }
.webinar-badge {
  display: inline-block;
  background-color: #ebf2f9;
  color: #2fafff;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.webinar-title {
  font-family: 'Exo 2', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #2e353f;
  line-height: 1.2;
  margin: 0 0 20px 0;
}
.webinar-title span { color: #2fafff; }
.webinar-descr {
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #5b6370;
}
.webinar-action { text-align: center; min-width: 280px; flex-shrink: 0; }
.btn-large { padding: 20px 40px; font-size: 18px; display: block; width: 100%; }
.webinar-note { display: block; margin-top: 12px; font-size: 13px; color: #5b6370; opacity: 0.7; }
@media (max-width: 980px) {
  .webinar-section { padding: 60px 0; }
  .webinar-card { flex-direction: column; text-align: center; padding: 40px 30px; gap: 30px; }
  .webinar-action { min-width: auto; width: 100%; }
}
@media (max-width: 640px) {
  .webinar-section { padding: 40px 0; }
  .webinar-card { padding: 30px 20px; border-radius: 25px; }
  .webinar-title { font-size: 24px; }
  .webinar-descr { font-size: 14px; }
  .btn-large { padding: 16px 20px; font-size: 16px; }
}

/* ========== БЛОК ОФИЦИАЛЬНЫЙ МАГАЗИН ========== */
.official-store-section {
  padding: 80px 0;
  background-image: url('img/fon1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}
.official-store-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(235, 242, 249, 0.85);
  z-index: 1;
}
.official-store-section .container { position: relative; z-index: 2; }
.store-grid { display: flex; gap: 30px; justify-content: center; margin: 40px 0; }
.store-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 30px;
  flex: 1;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.store-card:hover { transform: translateY(-5px); }
.store-icon {
  width: 70px;
  height: 70px;
  background: #ebf2f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.store-icon svg { width: 32px; height: 32px; }
.store-card h3 { font-size: 22px; font-weight: 600; color: #2e353f; margin-bottom: 15px; }
.store-card p { font-size: 16px; color: #5b6370; line-height: 1.5; }
@media (max-width: 980px) {
  .official-store-section { background-attachment: scroll; padding: 60px 0; }
  .store-grid { flex-wrap: wrap; }
  .store-card { flex: 0 0 calc(50% - 15px); max-width: calc(50% - 15px); }
}
@media (max-width: 640px) {
  .official-store-section { padding: 50px 0; background-attachment: scroll; }
  .store-grid { flex-direction: column; gap: 20px; margin: 30px 0; }
  .store-card { flex: auto; max-width: 100%; padding: 30px 20px; }
  .store-icon { width: 60px; height: 60px; }
  .store-icon svg { width: 28px; height: 28px; }
  .store-card h3 { font-size: 20px; }
  .store-card p { font-size: 15px; }
}

/* ========== БЛОК РЕЗУЛЬТАТЫ ОБРАБОТКИ ВОДЫ ========== */
.water-results-section { padding: 60px 0; background-color: #ebf2f9; }
.wr-card {
  background: linear-gradient(135deg, #8ed4ff 0%, #3aa8ff 40%, #1e7de0 100%);
  border-radius: 40px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(47, 175, 255, 0.25);
}
.wr-table-wrap { flex: 0 0 55%; padding: 30px 30px 30px 40px; display: flex; align-items: center; justify-content: center; }
.wr-table-img { width: 100%; max-width: 560px; height: auto; border-radius: 20px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.wr-content { flex: 1; padding: 50px 40px 50px 30px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.wr-title { font-size: 36px; font-weight: 300; color: #ffffff; line-height: 1.2; margin: 0 0 20px 0; }
.wr-descr { font-size: 16px; color: rgba(255, 255, 255, 0.85); line-height: 1.5; margin: 0 0 30px 0; }
.btn-white {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  font-size: 17px;
  font-weight: 700;
  border-radius: 120px;
  padding: 18px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-white:hover { background: rgba(255, 255, 255, 0.35); border-color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.table-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100002;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.table-modal.active { display: flex; }
.table-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.table-modal-content {
  position: relative;
  z-index: 2;
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  background: linear-gradient(135deg, #8ed4ff 0%, #3aa8ff 40%, #1e7de0 100%);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.table-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 44px;
  height: 44px;
  background: #2fafff;
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s;
}
.table-modal-close:hover { transform: scale(1.1); background: #1e7de0; }
.table-modal-close svg { width: 20px; height: 20px; }
.table-modal-scroll {
  overflow-y: auto;
  overflow-x: auto;
  flex: 1;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  scrollbar-width: thin;
  scrollbar-color: #2fafff #e0e7f0;
}
.table-modal-scroll::-webkit-scrollbar { width: 8px; height: 8px; }
.table-modal-scroll::-webkit-scrollbar-track { background: #e0e7f0; border-radius: 10px; }
.table-modal-scroll::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #79ccff, #2fafff); border-radius: 10px; }
.table-modal-img { width: 100%; min-width: 600px; height: auto; display: block; border-radius: 10px; }
@media (max-width: 980px) {
  .wr-card { flex-direction: column; }
  .wr-table-wrap { flex: none; padding: 25px 25px 15px; }
  .wr-content { padding: 15px 30px 30px; align-items: center; text-align: center; }
  .wr-title { font-size: 28px; }
}
@media (max-width: 640px) {
  .water-results-section { padding: 40px 0; }
  .wr-card { border-radius: 25px; }
  .wr-table-wrap { padding: 20px 20px 10px; }
  .wr-table-img { max-width: 100%; }
  .wr-content { padding: 15px 20px 25px; }
  .wr-title { font-size: 24px; }
  .wr-descr { font-size: 14px; margin-bottom: 20px; }
  .btn-white { padding: 14px 30px; font-size: 15px; }
  .table-modal-content { width: 98%; padding: 15px; border-radius: 20px; max-height: 95vh; }
  .table-modal-scroll { padding: 15px; }
  .table-modal-img { min-width: 400px; }
  .table-modal-close { top: -10px; right: -10px; width: 36px; height: 36px; }
  .table-modal-close svg { width: 16px; height: 16px; }
}

/* ========== БЛОК КАЧЕСТВО И ПОДАРОК ========== */
.quality-gift-section { padding: 60px 0; background-color: #ebf2f9; }
.qg-grid { display: flex; gap: 30px; align-items: stretch; }
.qg-card {
  background: #ffffff;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1;
  overflow: hidden;
}
.qg-header { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.qg-icon {
  width: 50px;
  height: 50px;
  background: #2fafff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.qg-header h3 { font-size: 28px; font-weight: 600; color: #2e353f; margin: 0; }
.qg-text { font-size: 16px; color: #5b6370; line-height: 1.5; margin: 0 0 15px 0; }
.qg-highlight { font-weight: 500; color: #2e353f; }
.qg-card-gift {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}
.qg-gift-content { flex: 1; padding-right: 30px; z-index: 2; }
.qg-gift-text { font-size: 18px; line-height: 1.4; color: #2e353f; margin-bottom: 30px; }
.qg-gift-text strong { color: #2fafff; }
.btn-gift {
  display: inline-block;
  background: #2fafff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(47, 175, 255, 0.3);
}
.btn-gift:hover { background: #1a8ee0; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47, 175, 255, 0.4); }
.qg-gift-img { flex-shrink: 0; width: 180px; z-index: 1; }
.qg-gift-img img { width: 100%; height: auto; display: block; transform: rotate(-5deg); transition: transform 0.3s ease; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15)); }
.qg-card-gift:hover .qg-gift-img img { transform: rotate(0deg) scale(1.02); }
@media (max-width: 980px) {
  .qg-grid { flex-direction: column; gap: 20px; }
  .qg-card { padding: 30px; }
  .qg-header h3 { font-size: 24px; }
}
@media (max-width: 640px) {
  .quality-gift-section { padding: 40px 0; }
  .qg-card { padding: 25px 20px; border-radius: 25px; }
  .qg-icon { width: 40px; height: 40px; }
  .qg-icon svg { width: 24px; height: 24px; }
  .qg-header h3 { font-size: 22px; }
  .qg-text { font-size: 14px; }
  .qg-card-gift { flex-direction: column-reverse; text-align: center; padding: 30px 20px; }
  .qg-gift-content { padding-right: 0; }
  .qg-gift-text { font-size: 16px; margin-bottom: 20px; }
  .qg-gift-img { width: 140px; margin-bottom: 20px; }
  .btn-gift { width: 100%; text-align: center; padding: 14px 20px; }
}

/* ========== ПОПАП ДЛЯ ВИДЕО КЛЕТКИ ========== */
.cell-video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100002;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cell-video-popup.active { display: flex; }
.cell-video-popup-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.cell-video-popup-close {
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cell-video-popup-close:hover { opacity: 0.7; transform: rotate(90deg); }
.cell-video-popup-container { position: relative; width: 100%; padding-bottom: 56.25%; }
.cell-video-popup iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 640px) { .cell-video-popup-close { top: -40px; font-size: 32px; } }
@media (max-width: 480px) { .cell-video-popup-content { width: 95%; } }

/* ========== ХЕДЕР (фиксированный) ========== */
.uc-bigmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ebf2f9;
  z-index: 9998;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 30px;
}

.logo {
  flex-shrink: 0;
}

.nav {
  flex: 1;
}

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.nav-menu li a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #5b6370;
  white-space: nowrap;
  transition: 0.2s;
}

.nav-menu li a:hover {
  color: #2fafff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}

.btn-order {
  background: linear-gradient(90deg, #79ccff 0%, #2fafff 48%, #79ccff 100%);
  background-size: 200% auto;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 120px;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(47, 175, 255, 0.3);
}

.btn-order:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 175, 255, 0.4);
}

.phone-block {
  text-align: right;
}

.phone-block .phone {
  font-size: 18px;
  font-weight: 500;
  color: #2e353f;
  text-decoration: none;
  white-space: nowrap;
}

.phone-block .callback {
  font-size: 13px;
  font-weight: 600;
  color: #5b6370;
  text-decoration: none;
  border-bottom: 1px dashed;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #2fafff;
}

.uc-filler {
  height: 95px;
}

/* ========== АДАПТИВ: ПЛАНШЕТЫ И ТЕЛЕФОНЫ ========== */
@media (max-width: 1100px) {
  .header-inner {
    gap: 20px;
  }
  .nav-menu {
    gap: 20px;
  }
  .nav-menu li a {
    font-size: 14px;
  }
  .btn-order {
    padding: 8px 18px;
    font-size: 13px;
  }
  .phone-block .phone {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .burger {
    display: block;
  }
  .header-actions {
    gap: 15px;
  }
  .btn-order {
    padding: 8px 16px;
  }
}

@media (max-width: 640px) {
  .header-actions {
    gap: 10px;
  }
  .btn-order {
    padding: 6px 12px;
    font-size: 12px;
  }
  .phone-block .phone {
    font-size: 14px;
  }
  .phone-block .callback {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .btn-order {
    display: none; /* на совсем маленьких экранах скрываем кнопку, чтобы не сжимать телефон */
  }
}
/* ========== БЛОК КАТАЛОГ ТОВАРОВ (КРУГОВОЙ СЛАЙДЕР) ========== */
.catalog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ebf2f9 0%, #e0eaf4 100%);
  overflow: hidden;
}

.catalog-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5b6370;
  margin-bottom: 50px;
}

.catalog-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.catalog-slider-container {
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.catalog-item {
  flex: 0 0 calc(33.333% - 20px);
  background: #fff;
  border-radius: 30px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.catalog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(47, 175, 255, 0.15);
}

.catalog-item-img {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f8fe 0%, #e8f0ff 100%);
  border-radius: 50%;
  padding: 20px;
}

.catalog-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-item-img img {
  transform: scale(1.05);
}

.catalog-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #2e353f;
  margin: 15px 0 10px;
}

.catalog-item-desc {
  font-size: 14px;
  color: #5b6370;
  line-height: 1.5;
  margin: 0 0 15px;
  min-height: 60px;
}

.catalog-item-price {
  font-size: 28px;
  font-weight: 700;
  color: #2fafff;
  margin: 15px 0;
}

.btn-catalog {
  display: inline-block;
  background: linear-gradient(90deg, #79ccff 0%, #2fafff 48%, #79ccff 100%);
  background-size: 200% auto;
  color: #fff;
  padding: 12px 30px;
  border-radius: 120px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-catalog:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 175, 255, 0.4);
}

/* Стрелки слайдера */
.slider-arrow {
  background: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  z-index: 10;
}

.slider-arrow:hover {
  background: #2fafff;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(47, 175, 255, 0.3);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

/* Точки пагинации */
.catalog-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #2fafff;
  width: 30px;
  border-radius: 20px;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 1024px) {
  .catalog-item {
    flex: 0 0 calc(50% - 15px);
  }
  .catalog-slider {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .catalog-section {
    padding: 50px 0;
  }
  .catalog-item {
    flex: 0 0 calc(100% - 20px);
  }
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow svg {
    width: 18px;
    height: 18px;
  }
  .catalog-item-img {
    width: 140px;
    height: 140px;
  }
  .catalog-item-title {
    font-size: 18px;
  }
  .catalog-item-price {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .catalog-slider-wrapper {
    gap: 10px;
  }
  .slider-arrow {
    width: 35px;
    height: 35px;
  }
  .btn-catalog {
    padding: 10px 20px;
    font-size: 14px;
  }
}
/* ========== ПОПАП С СЕРТИФИКАТАМИ ========== */
.popup-certificates {
  max-width: 1000px;
  width: 95%;
  padding: 40px;
}

.certificates-title {
  font-size: 36px;
  font-weight: 600;
  color: #2fafff;
  text-align: center;
  margin-bottom: 15px;
}

.certificates-subtitle {
  text-align: center;
  font-size: 16px;
  color: #5b6370;
  margin-bottom: 40px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.certificate-item {
  background: #f8faff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.certificate-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(47, 175, 255, 0.15);
}

.certificate-item img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certificate-item p {
  font-size: 14px;
  font-weight: 500;
  color: #2e353f;
  margin: 0;
}

/* Увеличенный попап при клике на сертификат */
.certificate-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 100005;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.certificate-fullscreen.active {
  display: flex;
}

.certificate-fullscreen img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Адаптив */
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .certificates-title {
    font-size: 28px;
  }
  
  .popup-certificates {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .certificates-grid {
    grid-template-columns: 1fr;
  }
  
  .certificate-item img {
    max-height: 200px;
  }
}
/* ========== БЛОК ОБ ОТКРЫТИИ И ПРОФЕССОРЕ ИНЮШИНЕ ========== */
.about-scientist-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ebf2f9 100%);
}

.scientist-card {
  display: flex;
  gap: 50px;
  align-items: center;
  background: #ffffff;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.scientist-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(47, 175, 255, 0.15);
}

.scientist-image {
  flex: 1;
  position: relative;
  min-width: 300px;
  background: linear-gradient(135deg, #2fafff 0%, #1e7de0 100%);
  border-radius: 60px 0 0 60px;
  overflow: hidden;
}

.scientist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.scientist-card:hover .scientist-image img {
  transform: scale(1.05);
}

.scientist-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(47, 175, 255, 0.95);
  color: #fff;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scientist-content {
  flex: 1.2;
  padding: 50px 50px 50px 30px;
}

.scientist-title {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 15px;
  color: #2e353f;
}

.scientist-title span {
  color: #2fafff;
  font-weight: 600;
}

.scientist-subtitle {
  font-size: 18px;
  color: #5b6370;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #2fafff;
  display: inline-block;
}

.scientist-text {
  margin-bottom: 30px;
}

.scientist-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #5b6370;
  margin-bottom: 15px;
}

.scientist-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, margin 0.3s ease;
  margin: 0;
}

.scientist-hidden.show {
  max-height: 500px;
  margin-top: 15px;
}

.btn-readmore {
  background: transparent;
  border: none;
  color: #2fafff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 12px 0;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid transparent;
}

.btn-readmore:hover {
  gap: 15px;
  border-bottom-color: #2fafff;
}

/* ========== АДАПТИВ ========== */
@media (max-width: 1024px) {
  .scientist-card {
    flex-direction: column;
    border-radius: 40px;
  }
  
  .scientist-image {
    width: 100%;
    border-radius: 40px 40px 0 0;
    min-width: auto;
    max-height: 400px;
  }
  
  .scientist-content {
    padding: 40px;
  }
  
  .scientist-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .about-scientist-section {
    padding: 50px 0;
  }
  
  .scientist-content {
    padding: 30px;
  }
  
  .scientist-title {
    font-size: 28px;
  }
  
  .scientist-subtitle {
    font-size: 16px;
  }
  
  .scientist-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .scientist-card {
    border-radius: 30px;
  }
  
  .scientist-content {
    padding: 25px 20px;
  }
  
  .scientist-title {
    font-size: 24px;
  }
  
  .scientist-badge {
    font-size: 12px;
    padding: 6px 15px;
  }
  
  .btn-readmore {
    font-size: 14px;
  }
}