/* Modern Laboratory Page Styles — Glassmorphism + Organic Design */
/* Adapted from PediatricsPage.modern.css for Laboratory */

/* ========== CSS Variables ========== */
:root {
  --primary: #1B5E45;
  --primary-light: #2D7A5F;
  --primary-dark: #124734;
  --primary-soft: rgba(27, 94, 69, 0.08);
  --primary-medium: rgba(27, 94, 69, 0.15);
  --accent-warm: #E8B86D;
  --accent-purple: #7B68EE;
  --accent-blue: #4FC3F7;
  --bg-warm: #FEFCF8;
  --bg-cream: #FDF9F3;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --text-dark: #1A2E1A;
  --text-medium: #3D5A3D;
  --text-light: #6B8B6B;
  --shadow-soft: 0 4px 20px rgba(27, 94, 69, 0.08);
  --shadow-medium: 0 8px 32px rgba(27, 94, 69, 0.12);
  --shadow-strong: 0 20px 60px rgba(27, 94, 69, 0.15);
}

/* ========== Hero Section ========== */
.lab-hero {
  background: linear-gradient(135deg, #F5FAF8 0%, #E8F5F0 40%, #F0F8F4 100%);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.lab-hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  animation: lab-pulse-organic 10s ease-in-out infinite;
}

.lab-hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: lab-pulse-organic 12s ease-in-out infinite reverse;
}

@keyframes lab-pulse-organic {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.8; }
}

.lab-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lab-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 28px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
}

.lab-hero__badge-dot {
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  animation: lab-pulse-glow 2s infinite;
}

@keyframes lab-pulse-glow {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(27, 94, 69, 0.4);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
    box-shadow: 0 0 20px 5px rgba(27, 94, 69, 0.2);
  }
}

.lab-hero__title {
  font-size: 64px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.lab-hero__title em {
  color: var(--primary);
  font-style: normal;
  position: relative;
}

.lab-hero__title em::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, rgba(27, 94, 69, 0.2), rgba(79, 195, 247, 0.3));
  border-radius: 4px;
  z-index: -1;
}

.lab-hero__subtitle {
  font-size: 20px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
}

.lab-hero__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.lab-hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.lab-hero__feature:hover {
  background: white;
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-medium);
  border-color: rgba(27, 94, 69, 0.2);
}

.lab-hero__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(27, 94, 69, 0.3);
}

.lab-hero__feature-icon--blue {
  background: linear-gradient(135deg, #4FC3F7, #0288D1);
  box-shadow: 0 4px 15px rgba(79, 195, 247, 0.3);
}

.lab-hero__feature-icon--purple {
  background: linear-gradient(135deg, #7B68EE, #4A3CB5);
  box-shadow: 0 4px 15px rgba(123, 104, 238, 0.3);
}

.lab-hero__feature-icon--gold {
  background: linear-gradient(135deg, #E8B86D, #C7953C);
  box-shadow: 0 4px 15px rgba(232, 184, 109, 0.3);
}

.lab-hero__feature span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.lab-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.lab-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 1280px) {
  .lab-hero__image-wrapper {
    max-width: 620px;
  }
}

.lab-hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.lab-hero__blob-bg {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.08) 0%, rgba(79, 195, 247, 0.06) 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: lab-blob-morph 10s ease-in-out infinite;
}

@keyframes lab-blob-morph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
  75% { border-radius: 60% 30% 60% 40% / 70% 40% 50% 60%; }
}

.lab-hero__deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.1), rgba(79, 195, 247, 0.1));
}

.lab-hero__deco-circle--1 {
  width: 180px;
  height: 180px;
  top: -60px;
  right: -20px;
  animation: lab-float-circle 7s ease-in-out infinite;
}

.lab-hero__deco-circle--2 {
  width: 100px;
  height: 100px;
  bottom: -10px;
  left: -60px;
  animation: lab-float-circle 5s ease-in-out infinite reverse;
}

.lab-hero__deco-circle--3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: -70px;
  animation: lab-float-circle 6s ease-in-out infinite;
}

@keyframes lab-float-circle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.lab-hero__image-container {
  position: relative;
  z-index: 1;
}

.lab-hero__image-blob {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(27, 94, 69, 0.25),
    0 10px 30px rgba(27, 94, 69, 0.1);
  animation: lab-blob-morph 10s ease-in-out infinite;
  border: 8px solid white;
  position: relative;
}

.lab-hero__image-blob::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(27, 94, 69, 0.05) 100%);
  z-index: 1;
  pointer-events: none;
}

.lab-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lab-hero__image-blob:hover .lab-hero__img {
  transform: scale(1.05);
}

/* ========== Stats Bar ========== */
.lab-stats {
  padding: 60px 0;
  background: linear-gradient(135deg, #1B5E45 0%, #124734 100%);
  position: relative;
  overflow: hidden;
}

.lab-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.lab-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.lab-stats__item {
  text-align: center;
  padding: 24px;
}

.lab-stats__number {
  font-size: 42px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #fff, #A3D4B8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lab-stats__label {
  font-size: 14px;
  color: #A3D4B8;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ========== Why Section ========== */
.lab-why {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-warm) 0%, white 50%, var(--bg-warm) 100%);
  position: relative;
  overflow: hidden;
}

.lab-why::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 94, 69, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.lab-why::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.lab-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

.lab-why__card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.lab-why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.lab-why__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-strong);
  background: white;
}

.lab-why__card:hover::before {
  transform: scaleX(1);
}

.lab-why__card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.3);
  transition: transform 0.4s ease;
}

.lab-why__card:hover .lab-why__card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.lab-why__card-icon--blue {
  background: linear-gradient(135deg, #4FC3F7, #0288D1);
  box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
}

.lab-why__card-icon--purple {
  background: linear-gradient(135deg, #7B68EE, #4A3CB5);
  box-shadow: 0 10px 30px rgba(123, 104, 238, 0.3);
}

.lab-why__card-icon--gold {
  background: linear-gradient(135deg, #E8B86D, #C7953C);
  box-shadow: 0 10px 30px rgba(232, 184, 109, 0.3);
}

.lab-why__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.lab-why__card-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ========== Services Section - Accordion ========== */
.lab-services {
  padding: 120px 0;
  background: white;
  position: relative;
}

.lab-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 94, 69, 0.1), transparent);
}

.lab-services__accordion {
  max-width: 900px;
  margin: 60px auto 0;
}

.lab-services__item {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-soft);
}

.lab-services__item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateX(4px);
}

.lab-services__item--active {
  border-color: rgba(27, 94, 69, 0.3);
  box-shadow: var(--shadow-strong);
  background: white;
  transform: scale(1.01);
}

.lab-services__header {
  width: 100%;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.lab-services__header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lab-services__header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.1), rgba(27, 94, 69, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lab-services__item--active .lab-services__header-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  transform: scale(1.1);
}

.lab-services__header-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.lab-services__header-desc {
  font-size: 14px;
  color: var(--text-light);
}

.lab-services__header-arrow {
  width: 44px;
  height: 44px;
  background: rgba(27, 94, 69, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lab-services__item--active .lab-services__header-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: white;
}

.lab-services__content {
  padding: 0 32px 32px;
}

.lab-services__description {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 24px;
}

.lab-services__includes {
  background: linear-gradient(135deg, rgba(27, 94, 69, 0.03), rgba(79, 195, 247, 0.03));
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  border: 1px solid rgba(27, 94, 69, 0.08);
}

.lab-services__includes h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lab-services__includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lab-services__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-medium);
}

.lab-services__includes li i {
  color: var(--primary);
  font-size: 12px;
  width: 20px;
  height: 20px;
  background: rgba(27, 94, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lab-services__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 94, 69, 0.1);
}

.lab-services__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(27, 94, 69, 0.3);
}

.lab-services__btn:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(27, 94, 69, 0.4);
}

/* ========== Equipment Section ========== */
.lab-equipment {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--bg-warm) 0%, #F5FAF8 50%, var(--bg-cream) 100%);
  position: relative;
  overflow: hidden;
}

.lab-equipment::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(27, 94, 69, 0.03), transparent);
}

.lab-equipment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.lab-equipment__card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.lab-equipment__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transition: height 0.4s ease;
  z-index: 0;
}

.lab-equipment__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.lab-equipment__card:hover::after {
  height: 6px;
}

.lab-equipment__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(27, 94, 69, 0.3);
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.lab-equipment__card:hover .lab-equipment__icon {
  transform: scale(1.15) rotate(10deg);
}

.lab-equipment__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.lab-equipment__text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========== Prices Section ========== */
.lab-prices {
  padding: 100px 0;
  background: white;
}

.lab-prices__cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-medium);
  max-width: 700px;
  margin: 60px auto 0;
}

.lab-prices__cta-text {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 500;
}

/* ========== CTA Section ========== */
.lab-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1B5E45 0%, #124734 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lab-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.lab-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.lab-cta__subtitle {
  font-size: 18px;
  color: #A3D4B8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.lab-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ========== Section Header ========== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  font-weight: 400;
}

/* ========== Container ========== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Animations ========== */
@keyframes lab-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lab-why__card,
.lab-services__item,
.lab-equipment__card {
  animation: lab-fadeInUp 0.6s ease forwards;
}

/* ========== Partner Note ========== */
.lab-partner-note {
  margin-top: 24px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(79, 195, 247, 0.08), rgba(123, 104, 238, 0.08));
  border-radius: 16px;
  border: 1px solid rgba(79, 195, 247, 0.15);
  display: flex;
  align-items: center;
  gap: 16px;
}

.lab-partner-note__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4FC3F7, #0288D1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.lab-partner-note__text {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

.lab-partner-note__text strong {
  color: var(--primary);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .lab-hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .lab-hero__title {
    font-size: 48px;
  }

  .lab-hero__subtitle {
    margin: 0 auto 40px;
  }

  .lab-hero__features {
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .lab-hero__cta {
    justify-content: center;
  }

  .lab-hero__image-wrapper {
    max-width: 450px;
  }

  .lab-why__grid,
  .lab-equipment__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lab-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lab-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .lab-hero__title {
    font-size: 36px;
  }

  .lab-hero__features {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }

  .lab-why__grid,
  .lab-equipment__grid {
    grid-template-columns: 1fr;
  }

  .lab-services__includes ul {
    grid-template-columns: 1fr;
  }

  .lab-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .lab-stats__number {
    font-size: 32px;
  }

  .lab-cta__title {
    font-size: 32px;
  }

  .lab-prices__cta {
    padding: 36px 24px;
  }

  .lab-partner-note {
    flex-direction: column;
    text-align: center;
  }

  .lab-hero__image-wrapper {
    max-width: 340px;
    margin: 0 auto;
  }

  .lab-hero__deco-circle--1 {
    width: 50px;
    height: 50px;
    top: -15px;
  }

  .lab-hero__deco-circle--2 {
    width: 25px;
    height: 25px;
  }
}
