.doctor-section {
  background: var(--surface-1);
  padding: var(--space-12) var(--space-4);
  overflow: hidden;
  position: relative;
}

@media (min-width: 1100px) {
  .doctor-section {
    padding: var(--space-16) 80px;
  }
}

.doctor-section__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: var(--brand-soft);
}

.doctor-section__blob--1 {
  width: 600px;
  height: 600px;
  top: -120px;
  right: -100px;
  opacity: 0.5;
}

.doctor-section__blob--2 {
  width: 280px;
  height: 280px;
  bottom: 80px;
  right: 500px;
  opacity: 0.35;
}

.doctor-section__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  max-width: 1280px;
  margin: 0 auto;
}

@media (min-width: 1100px) {
  .doctor-section__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    gap: var(--space-12);
  }
}

.doctor-section__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 520px;
}

.doctor-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .doctor-section__title {
    font-size: 3rem;
  }
}

.doctor-section__title span {
  color: var(--brand);
}

.doctor-section__body {
  font-size: var(--text-body-lg);
  color: var(--text-2);
  line-height: 1.65;
}

.doctor-section__visual {
  flex-shrink: 0;
  position: relative;
}

.doctor-section .mockup-phone__frame {
  animation: mockup-float 4.4s ease-in-out infinite;
}

.doctor-section__peek {
  position: absolute;
  bottom: -28px;
  left: -48px;
  z-index: 2;
}

.doctor-section__peek .mockup-phone__frame {
  animation: mockup-float 3.6s ease-in-out infinite;
  animation-delay: 1.2s;
}

@media (max-width: 1099px) {
  .doctor-section__peek {
    position: static;
    margin: var(--space-3) 0 0 auto;
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .doctor-section { padding: var(--space-6) var(--space-4); }
  .doctor-section__inner { gap: var(--space-8); }
}
