.lasur-main {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(30, 183, 197, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfb 46%, #ffffff 100%);
}

.lasur-shell {
  width: min(var(--lasur-max), calc(100% - 32px));
  margin: 0 auto;
}

.lasur-section {
  padding: 78px 0;
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-eyebrow,
.lasur-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  color: var(--lasur-green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-eyebrow::before,
.lasur-kicker::before {
  width: 28px;
  height: 2px;
  background: var(--lasur-red);
  content: "";
}

.section-heading h2,
.about-copy h2,
.doctor-summary h2,
.contact-panel h2 {
  margin: 0;
  color: var(--lasur-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2 span {
  color: var(--lasur-green);
}

.section-heading p,
.about-copy p,
.doctor-summary p,
.contact-panel p {
  margin: 14px 0 0;
  color: var(--lasur-muted);
  font-size: 1rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  will-change: transform;
}

.lasur-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(610px, calc(100vh - 88px), 760px);
  background: #ffffff;
  isolation: isolate;
}

.lasur-hero__slides {
  position: absolute;
  inset: 0;
}

.lasur-hero__slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.lasur-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lasur-hero__image {
  position: absolute;
  inset: -24px 0 0 0;
  z-index: -3;
  width: 100%;
  height: calc(100% + 48px);
  object-fit: cover;
  object-position: center right;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.03);
  transition: transform 7s ease;
}

.lasur-hero__slide.is-active .lasur-hero__image {
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1);
}

.lasur-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 34%, rgba(255, 255, 255, 0.2) 64%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 22% 26%, rgba(7, 140, 161, 0.12), transparent 35%);
}

.lasur-hero::after {
  position: absolute;
  right: -16vw;
  bottom: -28vw;
  z-index: -1;
  width: min(44vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(30, 183, 197, 0.92), rgba(7, 140, 161, 0.92) 58%, rgba(139, 207, 104, 0.86) 58.5%);
  content: "";
  opacity: 0.2;
}

.lasur-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(610px, calc(100vh - 88px), 760px);
  padding: 44px 0 88px;
}

.lasur-hero__content > * {
  width: min(570px, 100%);
}

.lasur-hero__slide.is-active .lasur-kicker,
.lasur-hero__slide.is-active h1,
.lasur-hero__slide.is-active .lasur-hero__subtitle,
.lasur-hero__slide.is-active .lasur-hero__text,
.lasur-hero__slide.is-active .lasur-hero__actions {
  animation: heroLift 0.7s ease both;
}

.lasur-hero__slide.is-active h1 {
  animation-delay: 0.05s;
}

.lasur-hero__slide.is-active .lasur-hero__subtitle {
  animation-delay: 0.1s;
}

.lasur-hero__slide.is-active .lasur-hero__text {
  animation-delay: 0.15s;
}

.lasur-hero__slide.is-active .lasur-hero__actions {
  animation-delay: 0.2s;
}

.lasur-hero h1 {
  margin: 0;
  color: #203142;
  font-size: clamp(3.1rem, 8vw, 5.9rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.lasur-hero h1 span {
  display: block;
  color: var(--lasur-green);
}

.lasur-hero__subtitle {
  margin: 22px 0 0;
  color: #203142;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.lasur-hero__text {
  margin: 18px 0 0;
  color: #435466;
  font-size: 1.06rem;
  max-width: 510px;
}

.lasur-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.lasur-hero__controls {
  position: absolute;
  right: max(18px, calc((100vw - var(--lasur-max)) / 2));
  bottom: 34px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(7, 140, 161, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 44px rgba(23, 66, 78, 0.14);
  backdrop-filter: blur(10px);
}

.hero-arrow,
.hero-dot {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--lasur-green);
  background: #eef8f5;
  font-size: 1.8rem;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
  color: #ffffff;
  background: var(--lasur-green);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #a9c7cc;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--lasur-green);
}

.laser-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 6;
  height: 4px;
  background: rgba(240, 75, 56, 0.12);
}

.laser-progress__track,
.laser-progress__bar {
  position: absolute;
  inset: 0 auto 0 0;
}

.laser-progress__track {
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 75, 56, 0.32), transparent);
}

.laser-progress__bar {
  width: 0;
  background: linear-gradient(90deg, var(--lasur-red), #ff806f);
  box-shadow: 0 0 18px rgba(240, 75, 56, 0.75);
}

.laser-progress__bar::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border: 3px solid var(--lasur-red);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(240, 75, 56, 0.95);
  content: "";
  transform: translateY(-50%);
}

.laser-progress.is-running .laser-progress__bar {
  animation: laserLoad var(--hero-duration, 6500ms) linear forwards;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.treatment-card {
  display: flex;
  flex-direction: column;
  min-height: 318px;
  padding: 26px 20px 22px;
  border: 1px solid var(--lasur-line);
  border-radius: var(--lasur-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(31, 60, 68, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.treatment-card:hover {
  border-color: rgba(5, 122, 63, 0.3);
  box-shadow: 0 18px 42px rgba(31, 60, 68, 0.12);
  transform: translateY(-4px);
}

.treatment-card > img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin-bottom: 18px;
}

.treatment-card h3 {
  margin: 0;
  color: var(--lasur-ink);
  font-size: 1.08rem;
  line-height: 1.22;
}

.treatment-card p {
  margin: 11px 0 20px;
  color: #526271;
  font-size: 0.92rem;
}

.treatment-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--lasur-green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.treatment-card a img {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.treatment-card a:hover img,
.treatment-card a:focus-visible img {
  transform: translateX(3px);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--lasur-radius);
  background: linear-gradient(100deg, #eff8f5, #ffffff 48%, #ecf8f8);
  box-shadow: 0 18px 48px rgba(31, 60, 68, 0.08);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 16px 22px;
  border-right: 1px solid rgba(15, 82, 95, 0.13);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item img {
  width: 46px;
  height: 46px;
}

.benefit-item strong,
.benefit-item span {
  display: block;
}

.benefit-item strong {
  color: #223544;
  font-size: 0.92rem;
}

.benefit-item span {
  color: #596978;
  font-size: 0.84rem;
}

.symptoms-section {
  padding-top: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f0faf8 100%);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 42px;
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.symptom-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  min-height: 112px;
  padding: 20px;
  border: 1px solid rgba(7, 140, 161, 0.14);
  border-radius: var(--lasur-radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(31, 60, 68, 0.06);
}

.symptom-card span {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 3px solid var(--lasur-red);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(240, 75, 56, 0.1);
}

.symptom-card p {
  margin: 0;
  color: #34495a;
  font-weight: 700;
}

.about-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 58vw, 720px);
  padding: clamp(72px, 9vw, 118px) 0;
  overflow: hidden;
  background: #073c44;
  isolation: isolate;
}

.about-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 48, 54, 0.2) 0%, rgba(5, 122, 63, 0.18) 38%, rgba(255, 255, 255, 0.86) 72%, rgba(255, 255, 255, 0.95) 100%),
    radial-gradient(circle at 78% 28%, rgba(30, 183, 197, 0.18), transparent 34%);
  content: "";
}

.about-section::after {
  position: absolute;
  right: min(7vw, 96px);
  bottom: 38px;
  z-index: 0;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lasur-red), transparent);
  box-shadow: 0 0 18px rgba(240, 75, 56, 0.65);
  content: "";
  animation: aboutLaserSweep 4.8s ease-in-out infinite;
}

.about-media {
  position: absolute;
  inset: -70px 0;
  z-index: -2;
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.06);
}

.about-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(540px, calc(100% - 32px));
  margin-right: max(16px, calc((100vw - var(--lasur-max)) / 2));
  margin-left: auto;
  padding: clamp(30px, 4.5vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--lasur-radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 70px rgba(5, 42, 50, 0.2);
  backdrop-filter: blur(14px);
}

.about-copy h2 {
  color: var(--lasur-green);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #34495a;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.3em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--lasur-green);
  border-radius: 50%;
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 5px;
  top: 0.58em;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--lasur-green);
  border-bottom: 2px solid var(--lasur-green);
  content: "";
  transform: rotate(-45deg);
}

.doctor-section {
  position: relative;
  background:
    linear-gradient(135deg, #f4fbf8 0%, #ffffff 46%, #edf8f8 100%);
}

.doctor-section::before {
  position: absolute;
  top: 54px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(240, 75, 56, 0.24);
  border-radius: 50%;
  content: "";
}

.doctor-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: start;
}

.doctor-card,
.doctor-cv {
  border: 1px solid rgba(7, 140, 161, 0.13);
  border-radius: var(--lasur-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--lasur-shadow);
}

.doctor-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(239, 248, 245, 0.92)),
    radial-gradient(circle at 0 100%, rgba(30, 183, 197, 0.18), transparent 32%);
}

.doctor-photo-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  min-height: 0;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(180deg, #eaf4f5, #d9eef0);
  box-shadow: 0 16px 36px rgba(15, 56, 70, 0.16);
}

.doctor-photo-wrap::after {
  display: none;
}

.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 0;
  transform: scale(2.45);
  transform-origin: 50% 10%;
}

.doctor-summary {
  padding: 0;
}

.doctor-summary h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
}

.doctor-highlights {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(5, 122, 63, 0.12);
  border-radius: var(--lasur-radius);
  background: rgba(238, 248, 245, 0.92);
}

.doctor-highlights strong {
  color: var(--lasur-green);
  font-size: 2rem;
  line-height: 1;
}

.doctor-highlights span {
  color: #405362;
  font-weight: 800;
}

.doctor-cv {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
}

.cv-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(7, 140, 161, 0.13);
  background: linear-gradient(90deg, #f7fbfb, #ffffff);
}

.cv-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 70px;
  padding: 12px;
  border: 0;
  border-right: 1px solid rgba(7, 140, 161, 0.13);
  color: #375060;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease;
}

.cv-tab:last-child {
  border-right: 0;
}

.cv-tab img {
  width: 30px;
  height: 30px;
}

.cv-tab.is-active,
.cv-tab:hover,
.cv-tab:focus-visible {
  color: var(--lasur-green);
  background: #ffffff;
}

.cv-panel {
  padding: 26px 30px 30px;
}

.cv-timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.cv-timeline::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 26px;
  width: 2px;
  background: linear-gradient(var(--lasur-red), var(--lasur-green));
  content: "";
}

.cv-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.cv-item > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--lasur-green);
  border-radius: 50%;
  color: var(--lasur-green);
  background: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.cv-item h3,
.association-card h3,
.process-card h3,
.contact-details h3 {
  margin: 0;
  color: #203142;
  font-size: 1.02rem;
  line-height: 1.25;
}

.cv-item p {
  margin: 5px 0 0;
  color: #566878;
  font-size: 0.94rem;
}

.association-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.association-card {
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(7, 140, 161, 0.13);
  border-radius: var(--lasur-radius);
  background: linear-gradient(135deg, #ffffff, #f0faf8);
}

.association-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--lasur-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 28px 22px;
  overflow: hidden;
  border: 1px solid rgba(7, 140, 161, 0.13);
  border-radius: var(--lasur-radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(31, 60, 68, 0.06);
}

.process-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(240, 75, 56, 0.32);
  border-radius: 50%;
  content: "";
}

.process-card > span {
  display: block;
  margin-bottom: 36px;
  color: rgba(5, 122, 63, 0.22);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.75;
}

.process-card p {
  margin: 10px 0 0;
  color: #596978;
  font-size: 0.94rem;
}

.contact-section {
  padding: 78px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(3, 87, 93, 0.98), rgba(5, 122, 63, 0.94)),
    radial-gradient(circle at 78% 22%, rgba(30, 183, 197, 0.3), transparent 34%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 410px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--lasur-radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.contact-panel .section-eyebrow,
.contact-panel h2,
.contact-panel p {
  color: #ffffff;
}

.contact-panel .section-eyebrow::before {
  background: #ff806f;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-details article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  min-height: 148px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--lasur-radius);
  background: rgba(255, 255, 255, 0.96);
}

.contact-details img {
  width: 34px;
  height: 34px;
}

.contact-details p {
  margin: 6px 0 0;
  color: #506170;
  font-size: 0.92rem;
}

.contact-details a {
  color: var(--lasur-green);
  font-weight: 800;
}

@keyframes heroLift {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes laserLoad {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes aboutLaserSweep {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-20px) scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: translateX(20px) scaleX(1.08);
  }
}

@media (max-width: 1120px) {
  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .benefit-item:nth-child(2) {
    border-right: 0;
  }

  .benefit-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(15, 82, 95, 0.13);
  }

  .doctor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card {
    display: grid;
    grid-template-columns: 170px 1fr;
  }

  .doctor-photo-wrap img {
    height: 100%;
  }

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

@media (max-width: 900px) {
  .lasur-section,
  .contact-section {
    padding: 60px 0;
  }

  .lasur-hero,
  .lasur-hero__content {
    min-height: 680px;
  }

  .lasur-hero__shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(255, 255, 255, 0.45) 100%),
      radial-gradient(circle at 25% 25%, rgba(7, 140, 161, 0.12), transparent 36%);
  }

  .lasur-hero__image {
    opacity: 0.58;
    object-position: 68% center;
  }

  .symptoms-grid {
    grid-template-columns: 1fr;
  }

  .about-section {
    min-height: 620px;
    padding: 64px 0;
  }

  .about-section::before {
    background:
      linear-gradient(180deg, rgba(3, 48, 54, 0.12) 0%, rgba(255, 255, 255, 0.62) 42%, rgba(255, 255, 255, 0.94) 100%),
      radial-gradient(circle at 82% 24%, rgba(30, 183, 197, 0.16), transparent 34%);
  }

  .about-copy {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
    padding: 30px 24px;
  }

  .about-media {
    inset: -42px 0;
  }
}

@media (max-width: 720px) {
  .lasur-shell {
    width: calc(100vw - 24px);
    max-width: 342px;
    margin-right: auto;
    margin-left: 12px;
  }

  .section-heading,
  .section-heading p,
  .lasur-hero__content > *,
  .lasur-hero__subtitle,
  .lasur-hero__text {
    width: 100%;
    max-width: 342px;
  }

  .section-heading {
    margin-right: auto;
    margin-left: auto;
  }

  .section-heading h2 {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.5rem;
  }

  .section-heading p {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
  }

  .lasur-hero,
  .lasur-hero__content {
    min-height: 720px;
  }

  .lasur-hero__content {
    justify-content: flex-start;
    padding-top: 64px;
    padding-bottom: 116px;
  }

  .lasur-hero h1 {
    font-size: clamp(2.35rem, 11vw, 2.8rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .lasur-hero__subtitle {
    font-size: 1.2rem;
  }

  .lasur-hero__actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lasur-btn {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    white-space: normal;
    text-align: center;
  }

  .lasur-hero__controls {
    right: 50%;
    bottom: 44px;
    transform: translateX(50%);
  }

  .about-copy {
    width: calc(100vw - 24px);
    max-width: 342px;
    margin-right: auto;
    margin-left: 12px;
    padding: 28px 22px;
  }

  .about-copy h2,
  .about-copy p,
  .about-copy .check-list,
  .doctor-summary h2,
  .doctor-summary p,
  .doctor-highlights {
    max-width: 298px;
    margin-right: auto;
    margin-left: auto;
  }

  .about-copy h2,
  .doctor-summary h2 {
    font-size: 1.65rem;
  }

  .treatment-grid,
  .symptom-list,
  .contact-details,
  .association-grid {
    grid-template-columns: 1fr;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(15, 82, 95, 0.13);
  }

  .benefit-item:last-child {
    border-bottom: 0;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .doctor-photo-wrap img {
    height: 100%;
    min-height: 0;
  }

  .cv-tabs {
    grid-template-columns: 1fr;
  }

  .cv-tab {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 140, 161, 0.13);
  }

  .cv-tab:last-child {
    border-bottom: 0;
  }

  .cv-panel,
  .doctor-summary,
  .contact-panel {
    padding: 22px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .contact-details article {
    grid-template-columns: 36px 1fr;
    padding: 18px;
  }
}

@media (max-width: 460px) {
  .section-heading h2 {
    max-width: 270px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.5rem;
  }

  .about-copy h2,
  .doctor-summary h2,
  .contact-panel h2 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.65rem;
  }

  .lasur-hero h1 {
    font-size: 2.4rem;
  }

  .lasur-hero__text {
    font-size: 0.98rem;
  }

  .treatment-card,
  .process-card {
    min-height: 0;
  }

  .cv-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .cv-item > span {
    width: 44px;
    height: 44px;
    font-size: 0.68rem;
  }

  .cv-timeline::before {
    left: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-parallax],
  .lasur-hero__image {
    transform: none !important;
  }

  .laser-progress.is-running .laser-progress__bar {
    animation: none;
    width: 100%;
  }
}
