/* Regular */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Regular.woff2") format("woff2"), url("../fonts/InterTight-Regular.woff") format("woff"), url("../fonts/InterTight-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Medium */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Medium.woff2") format("woff2"), url("../fonts/InterTight-Medium.woff") format("woff"), url("../fonts/InterTight-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* SemiBold */
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-SemiBold.woff2") format("woff2"), url("../fonts/InterTight-SemiBold.woff") format("woff"), url("../fonts/InterTight-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InterTight";
  src: url("../fonts/InterTight-Bold.woff2") format("woff2"), url("../fonts/InterTight-Bold.woff") format("woff"), url("../fonts/InterTight-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --default-ff: "InterTight", sans-serif;
  --default-fz: 18px;
  --default-fw: 500;
  --default-lh: 1.6;
  --default-color: #1D3D63;
  --page-bc: #F5FAFC;
  --grid-padding: 80px;
}
@media (max-width: 1024px) {
  :root {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  :root {
    --grid-padding: 15px;
  }
}
:root {
  --screen-width: 1920px;
  --header-height: 0;
  --primary-title-ff: "InterTight", sans-serif;
  --secondary-title-ff: "BDO Grotesk", sans-serif;
  --steel-blue: #4E6C8D;
  --navy-blue: #1D3D63;
  --white: #fff;
  --light: #f5fafc;
  --bg-color-intro: #d2e4f2;
  --bg-color-footer: #D2E4F2;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-margin-top: var(--header-height);
  height: 100%;
}

body {
  font-family: var(--default-ff);
  font-size: var(--default-fz);
  font-weight: var(--default-fw);
  line-height: var(--default-lh);
  color: var(--default-color);
  background-color: var(--page-bc);
  position: relative;
  transition: opacity 0.5s ease;
  overflow-y: hidden;
  opacity: 0;
  height: 100%;
}
body.is-loaded {
  overflow-y: auto;
  opacity: 1;
}
body.is-locked {
  overflow: hidden;
}

li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  text-decoration: none;
}

input,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: var(--white);
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button,
textarea::-webkit-outer-spin-button,
textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input::placeholder,
textarea::placeholder {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}
input:focus,
textarea:focus {
  outline: none;
}

address {
  font-style: normal;
}

a,
button {
  display: inline-flex;
  cursor: pointer;
  background-color: transparent;
}

button,
time {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
}

select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
}

svg {
  cursor: pointer;
}
svg path {
  cursor: pointer;
}

main {
  flex: 1;
  margin-top: var(--header-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-ff);
  font-weight: 500;
  margin: 0;
}

small {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
}

.container {
  padding-left: var(--grid-padding);
  padding-right: var(--grid-padding);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.gradient-button {
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 83.823%), rgba(245, 250, 252, 0.04);
  transition: 0.5s;
}

.secondary-title {
  font-size: 54px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .secondary-title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .secondary-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .secondary-title {
    font-size: 28px;
    word-break: break-word;
  }
}

.badge-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .badge-label {
    margin-bottom: 20px;
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .badge-label {
    margin-bottom: 16px;
    padding: 6px 16px 6px 6px;
    gap: 6px;
  }
}
.badge-label span:first-child {
  height: 32px;
  width: 32px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .badge-label span:first-child {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .badge-label span:first-child {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 480px) {
  .badge-label span:first-child {
    width: 24px;
    height: 24px;
  }
}
.badge-label span:first-child img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .badge-label span:first-child img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .badge-label span:first-child img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .badge-label span:first-child img {
    width: 15px;
    height: 15px;
  }
}
.badge-label span:last-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .badge-label span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .badge-label span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .badge-label span:last-child {
    font-size: 14px;
  }
}

.padding-lg {
  padding: 160px 0;
}
@media (max-width: 1024px) {
  .padding-lg {
    padding: 120px 0;
  }
}
@media (max-width: 768px) {
  .padding-lg {
    padding: 100px 0;
  }
}
@media (max-width: 480px) {
  .padding-lg {
    padding: 80px 0;
  }
}

.margin-lg {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .margin-lg {
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .margin-lg {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .margin-lg {
    margin-bottom: 32px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--light);
}
@media (max-width: 480px) {
  .header {
    padding-top: 20px;
  }
}
@media (max-width: 1024px) {
  .header.header-has-bg {
    padding-top: 30px;
  }
}
@media (max-width: 480px) {
  .header.header-has-bg {
    padding-top: 20px;
  }
}
.header.header-has-bg .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .header.header-has-bg .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .header.header-has-bg .container {
    --grid-padding: 15px;
  }
}
.header.header-has-bg .header__inner {
  padding: 32px 80px;
  margin-top: 30px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  background: var(--bg-color-intro);
}
@media (max-width: 1024px) {
  .header.header-has-bg .header__inner {
    padding: 12px 11px 32px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    margin-top: 0;
  }
}
.header.is-scrolled .header__inner {
  background: none;
}
.header.header-has-bg.is-scrolled .header__inner {
  background: none;
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  transition: 0.5s;
}
@media (max-width: 480px) {
  .header__inner.is-not-transparent {
    padding: 12px 11px 32px;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background: var(--bg-color-intro);
  }
}
@media (max-width: 384px) {
  .header__inner {
    padding: 12px 8px 24px;
  }
}
.header__logo {
  max-width: 210px;
}
@media (max-width: 1024px) {
  .header__logo {
    max-width: 180px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    max-width: 135px;
    margin-right: 12px;
  }
}
@media (max-width: 384px) {
  .header__logo {
    margin-right: 15px;
  }
}
.header__nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  max-width: max-content;
  width: 100%;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-link {
  font-size: 20px;
  font-weight: 400;
}
.header__nav-link.active {
  font-weight: 600;
}
.header__langs {
  margin-left: auto;
  margin-right: 24px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header__langs {
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .header__langs {
    margin-right: 0;
  }
}
.header__langs-current {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid rgba(29, 61, 99, 0.12);
  padding: 0 20px;
}
@media (max-width: 1024px) {
  .header__langs-current {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
    gap: 5px;
  }
}
@media (max-width: 480px) {
  .header__langs-current {
    height: 36px;
    gap: 8px;
    padding: 0 12px;
  }
}
@media (max-width: 384px) {
  .header__langs-current {
    font-size: 12px;
    gap: 5px;
    height: 32px;
  }
}
.header__langs-current span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
.header__button {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 34px;
  color: var(--white);
  height: 48px;
}
@media (max-width: 1024px) {
  .header__button {
    font-size: 14px;
    height: 40px;
    padding-inline: 15px;
  }
}
@media (max-width: 768px) {
  .header__button {
    display: none;
  }
}
.header__burger {
  display: none;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--navy-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: 12px;
  z-index: 101;
}
.header__burger span {
  display: block;
  width: 12.5px;
  height: 1px;
  background: var(--white);
  border-radius: 10px;
}
.header__burger.is-open {
  gap: 0;
}
.header__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(0.5px);
}
.header__burger.is-open span:nth-child(2) {
  transform: rotate(-45deg) translateY(-0.5px);
}
.header__burger.is-open span:nth-child(3) {
  display: none;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
@media (max-width: 384px) {
  .header__burger {
    height: 32px;
    width: 32px;
    margin-left: 8px;
  }
}

.header__langs {
	position: relative;
}

.header__langs-arrow svg {
	transition: transform .3s ease;
}

.header__langs.is-open .header__langs-arrow svg {
	transform: rotate(180deg);
}

.header__langs-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;

	min-width: 140px;

	padding: 8px;

	border-radius: 20px;

	background: rgba(255,255,255,.92);
	backdrop-filter: blur(20px);

	border: 1px solid rgba(29,61,99,.08);

	box-shadow:
		0 10px 30px rgba(29,61,99,.08),
		0 2px 10px rgba(29,61,99,.05);

	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);

	transition:
		opacity .25s ease,
		transform .25s ease,
		visibility .25s ease;

	z-index: 200;
}

.header__langs.is-open .header__langs-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__langs-dropdown-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.header__langs-dropdown-link {
	display: flex;
	align-items: center;
	gap: 10px;

	padding: 12px 14px;

	border-radius: 14px;

	font-size: 15px;
	font-weight: 600;

	transition:
		background .25s ease,
		transform .25s ease;
}

.header__langs-dropdown-link:hover {
	background: rgba(29,61,99,.06);
	transform: translateX(2px);
}

.header__langs-dropdown-link.is-active {
	background: rgba(29,61,99,.08);
}

@media (max-width: 480px) {
	.header__langs-dropdown {
		right: -10px;
	}
}

.footer {
  background-color: var(--bg-color-footer);
}
.footer__wrapper {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/footer/bg.webp");
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-block: 80px;
  border-bottom: 1px solid rgba(29, 61, 99, 0.2);
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    padding: 60px 0 48px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .footer__top {
    padding: 40px 0 32px;
    margin-bottom: 32px;
  }
}
.footer__content {
  max-width: 460px;
}
@media (max-width: 1024px) {
  .footer__content {
    max-width: 100%;
  }
}
.footer__logo {
  margin-bottom: 32px;
}
.footer__description {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .footer__description {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .footer__description {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .footer__description {
    font-size: 24px;
  }
}
.footer__cerificates {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__certificate-picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 96px;
  border-radius: 7px;
  background: var(--navy-blue);
}
.footer__certificate-picture img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__navs {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__navs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .footer__navs {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer__nav {
  max-width: 312px;
  width: 100%;
}
@media (max-wdith: 480px) {
  .footer__nav {
    max-width: 100%;
  }
}
.footer__nav.footer-nav-first {
  margin-left: auto;
}
@media (max-width: 480px) {
  .footer__nav.footer-nav-first {
    margin-left: 0;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav-label {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 32px;
}
.footer__nav-link {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.footer__overlay {
  max-width: 312px;
  width: 100%;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: rgba(29, 61, 99, 0.24);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  background-color: rgba(0, 0, 0, 0.1);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.is-open .mobile-menu__overlay {
  right: 0%;
}
.mobile-menu__overlay {
  position: absolute;
  top: 0;
  right: -100%;
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  background-color: var(--white);
  height: 100%;
  transition: 0.5s;
}
.mobile-menu__body {
  display: flex;
  flex-direction: column;
  padding: var(--header-height) 20px 20px;
  height: 100dvh;
}
.mobile-menu__nav-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 480px) {
  .mobile-menu__nav-link {
    font-size: 16px;
  }
}
.mobile-menu__button {
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  height: 40px;
  padding-inline: 15px;
  margin-top: auto;
}

.doctor-advice-card {
  max-width: 565px;
  width: 100%;
  position: relative;
}
.doctor-advice-card__box {
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: rgb(210, 228, 242);
}
.doctor-advice-card__picture {
  border-radius: 20px;
  overflow: hidden;
}
.doctor-advice-card__picture img {
  height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1024px) {
  .doctor-advice-card__picture img {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__picture img {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__picture img {
    height: 255px;
  }
}
.doctor-advice-card__body {
  padding: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .doctor-advice-card__body {
    padding: 24px 20px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__body {
    padding: 24px 16px;
  }
}
.doctor-advice-card__date {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(24px);
  background: rgb(236, 180, 86);
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .doctor-advice-card__date {
    margin-bottom: 28px;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__date {
    margin-bottom: 24px;
  }
}
.doctor-advice-card__date span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-advice-card__date span:first-child {
  width: 24px;
  height: 24px;
}
@media (max-width: 1024px) {
  .doctor-advice-card__date span:first-child {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__date span:first-child {
    width: 16px;
    height: 16px;
  }
}
.doctor-advice-card__date span:last-child {
  color: rgba(29, 61, 99, 0.8);
  line-height: 1.3;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .doctor-advice-card__date span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__date span:last-child {
    font-size: 14px;
  }
}
.doctor-advice-card__label {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 1024px) {
  .doctor-advice-card__label {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__label {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__label {
    font-size: 24px;
  }
}
.doctor-advice-card__text {
  font-size: 22px;
  color: #60656C;
}
@media (max-width: 1024px) {
  .doctor-advice-card__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__text {
    font-size: 16px;
  }
}
.doctor-advice-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 24px 32px;
}
@media (max-width: 1024px) {
  .doctor-advice-card__footer {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__footer {
    padding: 16px;
  }
}
.doctor-advice-card__more {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .doctor-advice-card__more {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__more {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__more {
    font-size: 14px;
  }
}
.doctor-advice-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  background-color: #F4FAFC;
}
@media (max-width: 1024px) {
  .doctor-advice-card__link {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__link {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__link {
    width: 32px;
    height: 32px;
  }
}
.doctor-advice-card__link svg {
  height: 30px;
  width: 30px;
}
@media (max-width: 1024px) {
  .doctor-advice-card__link svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 768px) {
  .doctor-advice-card__link svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .doctor-advice-card__link svg {
    width: 20px;
    height: 20px;
  }
}
.doctor-advice-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.checkup-info__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.checkup-info__title {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .checkup-info__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .checkup-info__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .checkup-info__title {
    margin-bottom: 32px;
  }
}
.checkup-info__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .checkup-info__content {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px 20px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .checkup-info__content {
    gap: 24px;
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .checkup-info__content {
    margin-bottom: 32px;
  }
}
.checkup-info__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: rgb(210, 228, 242);
  padding: 80px;
  background-image: url("../images/checkup-info/bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  grid-column: 1/4;
}
@media (max-width: 1024px) {
  .checkup-info__main {
    grid-column: 1/2;
    padding: 64px 40px;
  }
}
@media (max-width: 768px) {
  .checkup-info__main {
    padding: 40px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main {
    padding: 32px 20px;
  }
}
.checkup-info__main__icon {
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .checkup-info__main__icon {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .checkup-info__main__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
  }
}
.checkup-info__main-blockquote {
  font-size: 48px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 60px;
  text-align: center;
  max-width: 1360px;
}
@media (max-width: 1024px) {
  .checkup-info__main-blockquote {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .checkup-info__main-blockquote {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main-blockquote {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.checkup-info__main-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgb(245, 250, 252);
  border-radius: 100px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.96) 0%, rgba(245, 250, 252, 0.96) 100%);
  padding: 4px 32px 4px 4px;
}
@media (max-width: 1024px) {
  .checkup-info__main-badge {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main-badge {
    gap: 8px;
  }
}
.checkup-info__main-picture {
  border-radius: 50%;
  overflow: hidden;
  width: 64px;
  height: 64px;
}
@media (max-width: 1024px) {
  .checkup-info__main-picture {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 768px) {
  .checkup-info__main-picture {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main-picture {
    width: 32px;
    height: 32px;
  }
}
.checkup-info__main-label {
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .checkup-info__main-label {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .checkup-info__main-label {
    font-size: 14px;
  }
}
.checkup-info__main-line {
  width: 2px;
  height: 23px;
  background-color: rgba(29, 61, 99, 0.4);
}
@media (max-width: 1024px) {
  .checkup-info__main-line {
    height: 18px;
  }
}
.checkup-info__elem {
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: rgb(210, 228, 242);
  padding: 32px;
  height: 100%;
}
@media (max-width: 1024px) {
  .checkup-info__elem {
    padding: 28px;
  }
}
@media (max-width: 768px) {
  .checkup-info__elem {
    padding: 26px;
  }
}
@media (max-width: 480px) {
  .checkup-info__elem {
    padding: 24px;
  }
}
.checkup-info__elem-icon {
  width: 64px;
  height: 64px;
  border-radius: 82.05px;
  background: rgb(29, 61, 99);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .checkup-info__elem-icon {
    height: 56px;
    width: 56px;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .checkup-info__elem-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 24px;
  }
}
.checkup-info__elem-icon img {
  width: 28px;
  height: 28px;
}
@media (max-width: 1024px) {
  .checkup-info__elem-icon img {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 768px) {
  .checkup-info__elem-icon img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .checkup-info__elem-icon img {
    width: 21px;
    height: 21px;
  }
}
.checkup-info__elem-label {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .checkup-info__elem-label {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .checkup-info__elem-label {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .checkup-info__elem-label {
    font-size: 18px;
  }
}
.checkup-info__elem-text {
  color: rgb(78, 108, 141);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .checkup-info__elem-text {
    font-size: 16px;
  }
}
.checkup-info__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .checkup-info__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .checkup-info__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .checkup-info__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.checkup-info__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .checkup-info__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .checkup-info__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .checkup-info__link span:first-child {
    font-size: 16px;
  }
}
.checkup-info__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .checkup-info__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .checkup-info__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .checkup-info__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.checkup-info__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .checkup-info__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .checkup-info__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .checkup-info__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.main-services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main-services__title {
  margin-bottom: 80px;
  text-align: center;
  max-width: 995px;
  width: 100%;
}
@media (max-width: 1024px) {
  .main-services__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .main-services__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .main-services__title {
    margin-bottom: 32px;
  }
}
.main-services__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .main-services__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .main-services__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .main-services__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.main-services__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .main-services__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .main-services__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .main-services__link span:first-child {
    font-size: 16px;
  }
}
.main-services__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .main-services__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .main-services__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .main-services__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.main-services__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .main-services__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .main-services__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .main-services__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.place__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}
@media (max-width: 768px) {
  .place__inner {
    flex-direction: column;
    gap: 32px;
  }
}
.place__info {
  position: relative;
  max-width: 885px;
  width: 100%;
}
@media (max-width: 1024px) {
  .place__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .place__info {
    order: 2;
  }
}
.place__picture {
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .place__picture img {
    max-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.place__wrapper {
  position: absolute;
  top: 32px;
  left: 32px;
  padding: 24px;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.8) 0%, rgba(245, 250, 252, 0.8) 100%);
  max-width: 360px;
  width: 100%;
}
@media (max-width: 1024px) {
  .place__wrapper {
    position: relative;
    top: 0;
    left: 0;
    background: rgb(210, 228, 242);
    max-width: 100%;
  }
}
.place__wrapper-logo {
  width: 28px;
  height: 28px;
}
@media (max-width: 768px) {
  .place__wrapper-logo {
    width: 24px;
    height: 24px;
  }
}
.place__wrapper-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__wrapper-head {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-head {
    margin-bottom: 24px;
  }
}
.place__wrapper-label {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.place__wrapper-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  background: rgba(245, 250, 252, 0.64);
  padding: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__wrapper-list {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-list {
    margin-bottom: 24px;
    gap: 8px;
  }
}
.place__wrapper-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.place__wrapper-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 199, 99, 0.24);
  border-radius: 75px;
  background: rgb(255, 199, 99);
  flex-shrink: 0;
}
.place__wrapper-text {
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .place__wrapper-text {
    font-size: 14px;
  }
}
.place__wrapper-link {
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .place__wrapper-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .place__wrapper-link {
    font-size: 14px;
  }
}
.place__content {
  max-width: 50%;
}
@media (max-width: 768px) {
  .place__content {
    max-width: 100%;
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.place__badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px 10px 10px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .place__badge {
    padding: 8px 20px 8px 8px;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .place__badge {
    padding: 6px 16px 6px 6px;
    gap: 6px;
  }
}
.place__badge.margened {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .place__badge.margened {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .place__badge.margened {
    margin-bottom: 16px;
  }
}
.place__badge span:first-child {
  height: 32px;
  width: 32px;
  background-color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .place__badge span:first-child {
    height: 30px;
    width: 30px;
  }
}
@media (max-width: 768px) {
  .place__badge span:first-child {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 480px) {
  .place__badge span:first-child {
    width: 24px;
    height: 24px;
  }
}
.place__badge span:first-child img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .place__badge span:first-child img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .place__badge span:first-child img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .place__badge span:first-child img {
    width: 15px;
    height: 15px;
  }
}
.place__badge span:last-child {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .place__badge span:last-child {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .place__badge span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .place__badge span:last-child {
    font-size: 14px;
  }
}
.place__title {
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .place__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .place__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .place__title {
    margin-bottom: 16px;
  }
}
.place__title strong {
  font-weight: 600;
  padding: 4px 12px;
  background-color: #FFC763;
  border-radius: 12px;
}
@media (max-width: 480px) {
  .place__title strong {
    padding: 2px 8px;
    border-radius: 8px;
  }
}
.place__text {
  color: rgb(109, 128, 147);
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__text {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .place__text {
    margin-bottom: 36px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .place__text {
    margin-bottom: 32px;
  }
}
.place__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .place__badges {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .place__badges {
    margin-bottom: 40px;
    gap: 8px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .place__badges {
    margin-bottom: 32px;
  }
}
.place__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .place__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .place__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .place__link {
    height: 52px;
  }
}
.place__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .place__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .place__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .place__link span:first-child {
    font-size: 16px;
  }
}
.place__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .place__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .place__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .place__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.place__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .place__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .place__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .place__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about__title {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .about__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .about__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .about__title {
    margin-bottom: 32px;
  }
}
.about__overlay {
  display: flex;
  align-items: center;
  gap: 64px;
  border: 4px solid rgba(245, 250, 252, 0.9);
  border-radius: 32px;
  background: rgb(210, 228, 242);
  padding: 48px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 35%;
  background-image: url("../images/about/bg.png");
}
@media (max-width: 1024px) {
  .about__overlay {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    gap: 32px;
  }
}
@media (max-width: 786px) {
  .about__overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px;
  }
}
@media (max-width: 480px) {
  .about__overlay {
    padding: 16px;
  }
}
.about__picture {
  max-width: 600px;
  width: 100%;
  height: 750px;
  border: 4px solid rgba(245, 250, 252, 0.6);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(187.41, 217.97, 242.65, 0.96) 0%, rgba(239.18, 246.28, 255, 0.96) 100%);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .about__picture {
    height: 600px;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .about__picture {
    height: 500px;
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .about__picture {
    height: 311px;
    max-width: 311px;
  }
}
.about__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__content {
  max-width: 1000px;
  width: 100%;
}
.about__label {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .about__label {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about__label {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .about__label {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.about__text {
  font-size: 22px;
  font-weight: 500;
  color: #4E6C8D;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .about__text {
    font-size: 20px;
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .about__text {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .about__text {
    font-size: 16px;
    margin-bottom: 32px;
  }
}
.about__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .about__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 22px;
    margin-bottom: 56px;
  }
}
@media (max-width: 768px) {
  .about__list {
    gap: 20px;
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .about__list {
    gap: 16px;
    margin-bottom: 32px;
  }
}
.about__box {
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  padding: 32px;
  height: 100%;
}
@media (max-width: 1024px) {
  .about__box {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .about__box {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .about__box {
    padding: 20px;
  }
}
.about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  background-color: #FFC763;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .about__icon {
    height: 58px;
    width: 58px;
    margin-bottom: 28px;
  }
}
@media (max-width: 768px) {
  .about__icon {
    height: 52px;
    width: 52px;
    margin-bottom: 24px;
  }
}
@media (max-width: 480px) {
  .about__icon {
    height: 42px;
    width: 42px;
    margin-bottom: 16px;
  }
}
.about__icon img {
  width: 32px;
  height: 32px;
}
@media (max-width: 1024px) {
  .about__icon img {
    width: 28px;
    width: 28px;
  }
}
@media (max-width: 768px) {
  .about__icon img {
    width: 24px;
    width: 24px;
  }
}
@media (max-width: 480px) {
  .about__icon img {
    width: 21px;
    width: 21px;
  }
}
.about__value {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .about__value {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .about__value {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .about__value {
    font-size: 28px;
  }
}
.about__description {
  color: #4E6C8D;
}
@media (max-width: 1024px) {
  .about__description {
    font-size: 16px;
  }
}
.about__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .about__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .about__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .about__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.about__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .about__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .about__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about__link span:first-child {
    font-size: 16px;
  }
}
.about__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .about__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .about__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .about__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.about__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .about__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .about__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .about__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.posts__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.posts__title {
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 1024px) {
  .posts__title {
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .posts__title {
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .posts__title {
    margin-bottom: 32px;
  }
}
.posts__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .posts__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    margin-bottom: 64px;
  }
}
@media (max-width: 768px) {
  .posts__list {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .posts__list {
    margin-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .posts__list li img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .posts__list li {
    max-width: 100%;
  }
}
.posts__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .posts__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .posts__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .posts__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.posts__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .posts__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .posts__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .posts__link span:first-child {
    font-size: 16px;
  }
}
.posts__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .posts__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .posts__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .posts__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.posts__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .posts__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .posts__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .posts__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.faq {
  background-color: #D2E4F2;
  background-image: url("../images/price/bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faq__inner {
  display: flex;
  gap: 64px;
}
@media (max-width: 1024px) {
  .faq__inner {
    flex-direction: column;
    gap: 56px;
  }
}
@media (max-width: 768px) {
  .faq__inner {
    gap: 48px;
  }
}
@media (max-width: 480px) {
  .faq__inner {
    gap: 32px;
  }
}
.faq__content {
  max-width: 710px;
  width: 100%;
}
@media (max-width: 768px) {
  .faq__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.faq__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgb(245, 250, 252);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  height: 52px;
  padding: 0 24px 0 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .faq__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .faq__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .faq__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.faq__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F5FAFC;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .faq__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .faq__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .faq__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.faq__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .faq__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .faq__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .faq__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.faq__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .faq__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .faq__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .faq__badge-text {
    font-size: 14px;
  }
}
.faq__title {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .faq__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .faq__title {
    margin-bottom: 18px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .faq__title {
    margin-bottom: 16px;
  }
}
.faq__text {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 500;
  color: #60656C;
}
@media (max-width: 1024px) {
  .faq__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .faq__text {
    font-size: 18px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .faq__text {
    font-size: 16px;
  }
}
.faq__accordions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.faq__accordion {
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 24px;
  box-shadow: 0px 4px 24px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.48) 0%, rgba(245, 250, 252, 0.48) 100%);
  padding: 32px;
}
@media (max-width: 1024px) {
  .faq__accordion {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion {
    padding: 20px;
    border-radius: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion {
    padding: 16px;
    border-radius: 20px;
  }
}
.faq__accordion.is-active .faq__accordion-icon span:last-child {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}
.faq__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__accordion-head {
    gap: 50px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-head {
    gap: 40px;
  }
}
.faq__accordion-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq__accordion-number {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(29, 61, 99, 0.6);
}
@media (max-width: 1024px) {
  .faq__accordion-number {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-number {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-number {
    font-size: 20px;
  }
}
.faq__accordion-text {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .faq__accordion-text {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-text {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-text {
    font-size: 20px;
  }
}
.faq__accordion-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E6B24D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .faq__accordion-icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-icon {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-icon {
    width: 32px;
    height: 32px;
  }
}
.faq__accordion-icon span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #1D3D63;
  border-radius: 10px;
  transition: 0.3s ease;
}
.faq__accordion-icon span:last-child {
  transform: rotate(90deg);
}
.faq__accordion-body {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.faq__accordion-content {
  font-size: 22px;
  font-weight: 500;
  padding-top: 32px;
  color: #60656C;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .faq__accordion-content {
    font-size: 20px;
    padding-top: 24px;
  }
}
@media (max-width: 768px) {
  .faq__accordion-content {
    font-size: 18px;
    padding-top: 20px;
  }
}
@media (max-width: 480px) {
  .faq__accordion-content {
    font-size: 16px;
    padding-top: 16px;
  }
}

.consultation {
  background-position: center;
  background-size: cover;
  background-position: no-repeat;
}
.consultation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 120px;
}
@media (max-width: 1024px) {
  .consultation__inner {
    padding-block: 100px;
  }
}
@media (max-width: 768px) {
  .consultation__inner {
    padding-block: 80px;
  }
}
.consultation__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  width: 100%;
  border: 4px solid rgba(245, 250, 252, 0.32);
  border-radius: 32px;
  box-shadow: 0px 0px 32px 0px rgba(29, 61, 99, 0.12);
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(245.36, 249.87, 252.13, 0.8) 0%, rgba(245, 250, 252, 0.8) 100%);
  padding: 48px 32px;
}
@media (max-width: 1024px) {
  .consultation__form {
    padding: 40px 24px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .consultation__form {
    padding: 32px 20px;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .consultation__form {
    padding: 32px 16px;
    gap: 16px;
  }
}
.consultation__title {
  text-align: center;
}
.consultation__label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1024px) {
  .consultation__label {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .consultation__label {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .consultation__label {
    gap: 8px;
  }
}
.consultation__field {
  font-weight: 400;
  height: 80px;
  padding: 0 25px;
  border-radius: 14px;
  background: var(--light);
  border: none;
}
@media (max-width: 1024px) {
  .consultation__field {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .consultation__field {
    height: 60px;
  }
}
@media (max-width: 480px) {
  .consultation__field {
    font-size: 16px;
    height: 54px;
  }
}
.consultation__field::-moz-placeholder {
  color: #60656C;
}
.consultation__field::placeholder {
  color: #60656C;
}
.consultation__textarea {
  font-weight: 400;
  height: 175px;
  padding: 19px 25px;
  border-radius: 14px;
  background: var(--light);
  border: none;
}
@media (max-width: 1024px) {
  .consultation__textarea {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .consultation__textarea {
    height: 125px;
  }
}
@media (max-width: 480px) {
  .consultation__textarea {
    font-size: 16px;
    padding: 16px;
  }
}
.consultation__textarea::-moz-placeholder {
  color: #60656C;
}
.consultation__textarea::placeholder {
  color: #60656C;
}
.consultation__submit {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
  height: 80px;
  border-radius: 2000px;
  background-color: var(--navy-blue);
  color: var(--white);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 32px;
  transition: 0.5s;
}
@media (max-width: 1024px) {
  .consultation__submit {
    font-size: 20px;
    height: 70px;
  }
}
@media (max-width: 768px) {
  .consultation__submit {
    font-size: 18px;
    height: 60px;
  }
}
@media (max-width: 480px) {
  .consultation__submit {
    font-size: 16px;
    height: 54px;
  }
}
@media (hover: hover) {
  .consultation__submit:hover {
    background-color: var(--light);
    color: var(--navy-blue);
  }
}

.svc {
  background: #fff;
  padding: 72px 0 80px;
}

.svc__head {
  text-align: center;
  margin-bottom: 56px;
}

.svc__badge {
  margin-inline: auto;
}

.svc__title {
  font-size: clamp(28px, 3.8vw, 56px); 
  line-height: 1.1;
  letter-spacing: -0.02em; 
  text-transform: uppercase;
}

.svc__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
}

.svc-card {
  display: flex;
  flex-direction: row;
  border-radius: 32px;
  border: 4px solid rgba(245,250,252,0.32);
  background: rgba(210,228,242,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 24px;
  gap: 24px;
  min-height: 300px;
}

.svc-card--img-right { flex-direction: row-reverse; }

.svc-card__media {
  flex: 0 0 36%;
  position: relative;
  background: linear-gradient(180deg, rgba(187,218,243,0.96) 0%, rgba(239,246,255,0.96) 100%);
  border: 4px solid rgba(245,250,252,0.6);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 260px;
  overflow: hidden;
}

.svc-card__media img {
  width: 90%;
  max-width: 240px;
  height: 240px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.svc-card__time {
  position: absolute;
  top: 20px; left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 6px 14px;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 13px; font-weight: 400;
  color: var(--blue);
  white-space: nowrap;
}

.svc-card__time strong { font-weight: 600; }

.svc-card__time svg {
  width: 14px; height: 14px;
  fill: none; stroke: #1D3D63;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

.svc-card__content {
  flex: 1;
  padding: 16px 8px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.svc-card__name {
  font-size: clamp(20px, 2vw, 42px); 
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 10px;
}

.svc-card__desc {
  font-size: 15px; font-weight: 400; line-height: 1.6;
  color: var(--blue); opacity: 0.7;
}

.svc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(210,228,242,0.72) 0%, rgba(210,228,242,0.72) 100%);
  border: 2px solid rgba(245,250,252,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 32px;
  padding: 10px 24px 10px 10px;
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  color: var(--blue);
  white-space: nowrap;
}

.svc-card__tag-icon {
  width: 28px; height: 28px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.svc-card__tag-icon svg {
  width: 14px; height: 14px;
  fill: none; stroke: var(--blue);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.svc-card__footer {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 16px;
}

.svc-card__info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 20px;
  width: 100%;
}

.svc-card__info-item + .svc-card__info-item {
  padding-left: 20px;
  padding-right: 20px;
  border-left: 1px solid rgba(29,61,99,0.12);
}

.svc-card__info-icon {
  width: 20px; height: 20px;
  fill: none; stroke: var(--blue);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.5;
  margin-bottom: 2px;
}

.svc-card__info-label {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 12px; font-weight: 400;
  color: var(--blue); opacity: 0.6;
}

.svc-card__info-value {
  font-size: 14px;
  color: var(--blue);
}

.svc-card__arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: #FF9C00A3;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.2s, transform 0.2s;
  margin-top: auto;
}

.svc-card__arrow svg {
  width: 16px; height: 16px;
  fill: none;
  stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
  stroke: #1D3D63;
}

@media (max-width: 1024px) {
  .svc { padding: 56px 0 64px; }
  .svc-card,
  .svc-card--img-right { 
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  .svc-card__media { display: flex; align-items: center; justify-content: center; flex: 0 0 40%; }
  .svc-card__media img { height: 200px; max-width: 200px; }
  .svc-card__content { padding: 12px 8px 12px 12px; }
  .svc-card__info-item + .svc-card__info-item { padding-left: 14px; padding-right: 14px; }
}

@media (max-width: 768px) {
  .svc { padding: 48px 0 56px; }
  .svc__head { margin-bottom: 36px; }
  .svc__badge-text { font-size: 14px; }

  .svc-card__media {
    flex: none;
    min-height: 220px;
    padding: 20px;
    border-radius: 20px;
  }

  .svc-card__media img { height: 180px; max-width: 180px; }

  .svc-card__time { font-size: 12px; }

  .svc-card__content { padding: 8px 4px 4px; gap: 16px; }

  .svc-card__tags { gap: 6px; }
  .svc-card__tag { font-size: 12px; padding: 8px 16px 8px 8px; }

  .svc-card__footer { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 14px; gap: 0; }
  .svc-card__info-item { padding-right: 12px; }
  .svc-card__info-item + .svc-card__info-item { padding-left: 12px; padding-right: 12px; }
  .svc-card__info-value { font-size: 13px; }
  .svc-card__info-label { font-size: 11px; }
  .svc-card__arrow {
    grid-column: 1 / 4;
    margin-left: auto;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .svc { padding: 36px 0 44px; }
  .svc__head { margin-bottom: 28px; }
  .svc__title { font-size: clamp(22px, 6.5vw, 32px); }

  .svc__list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 16px 12px;
    margin-bottom: 20px;
    scrollbar-width: none;
  }
  .svc__list::-webkit-scrollbar { display: none; }

  .svc-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: calc(100vw - 64px);
    padding: 12px;
    gap: 12px;
    border-radius: 24px;
    flex-direction: column;
  }

  .svc-card--img-right { flex-direction: column; }

  .svc-card__media {
    flex: none;
    min-height: 200px;
    padding: 16px;
    border-radius: 16px;
  }

  .svc-card__media img { height: 160px; max-width: 160px; }
  .svc-card__time { font-size: 11px; padding: 5px 10px; top: 12px; left: 12px; }

  .svc-card__content { padding: 4px; gap: 12px; }
  .svc-card__name { font-size: 18px; margin-bottom: 6px; }
  .svc-card__desc { font-size: 13px; }

  .svc-card__tags { gap: 6px; }
  .svc-card__tag { font-size: 11px; padding: 7px 12px 7px 8px; gap: 8px; }
  .svc-card__tag-icon { width: 22px; height: 22px; }

  .svc-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
  }

  .svc-card__info-item {
    flex: none;
    border-left: none !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(29,61,99,0.1);
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .svc-card__info-item:last-of-type { border-bottom: none; }

  .svc-card__info-icon { margin-bottom: 0; flex-shrink: 0; }
}
@media (max-width: 384px) {
  .svc-card__info-item {
    flex-direction: column;
    align-items: flex-start;
  }
}


.svc__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .svc__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .svc__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .svc__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.svc__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .svc__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .svc__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .svc__link span:first-child {
    font-size: 16px;
  }
}
.svc__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .svc__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .svc__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .svc__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.svc__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .svc__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .svc__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .svc__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.reviews {
  background: #D2E4F2;
  border-radius: 32px;
  overflow: hidden;
  margin: 40px 40px;
  position: relative;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 35%;
  background-image: url("../images/feedback/picture.png");
}

/* Blur-блоб — как в hero */
.reviews::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -80px;
  width: 500px;
  height: 400px;
  background: #8FBCE3;
  filter: blur(120px);
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

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

.reviews__badge {
  margin-bottom: 24px;
}


.reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgb(245, 250, 252);
  border-radius: 32px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180deg, rgba(210, 228, 242, 0.72) 0%, rgba(210, 228, 242, 0.72) 100%);
  height: 52px;
  padding: 0 24px 0 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 24px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .reviews__badge {
    gap: 10px;
    height: 44px;
    padding: 0 20px 0 8px;
  }
}
@media (max-width: 768px) {
  .reviews__badge {
    gap: 8px;
    height: 40px;
    padding: 0 18px 0 6px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .reviews__badge {
    gap: 6px;
    height: 36px;
    padding: 0 16px 0 6px;
    margin-bottom: 16px;
  }
}
.reviews__badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #F5FAFC;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .reviews__badge-icon {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 768px) {
  .reviews__badge-icon {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .reviews__badge-icon {
    width: 24px;
    height: 24px;
  }
}
.reviews__badge-icon img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1024px) {
  .reviews__badge-icon img {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 768px) {
  .reviews__badge-icon img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 480px) {
  .reviews__badge-icon img {
    width: 15px;
    height: 15px;
  }
}
.reviews__badge-text {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .reviews__badge-text {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .reviews__badge-text {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .reviews__badge-text {
    font-size: 14px;
  }
}

.reviews__title {
  font-size: clamp(24px, 3vw, 48px); 
  line-height: 1.1; letter-spacing: -0.02em; 
  text-transform: uppercase; text-align: center;
  margin-bottom: 48px;
}

.reviews__swiper-wrap {
  overflow: hidden;
  margin: 0 -40px;
  padding: 0 40px;
}

.reviews__swiper { overflow: visible !important; padding: 0 40px; }

.swiper-slide { width: 280px; flex-shrink: 0; }

.review-card__thumb {
  position: relative;
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #2a3f5a, #0d1f35);
  margin-bottom: 16px; cursor: pointer;
}

.review-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}

.review-card:hover .review-card__thumb img { transform: scale(1.04); }

.review-card__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  pointer-events: none;
}

.review-card__play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 82px; height: 52px;
  background: linear-gradient(180deg, rgba(245,250,252,0.48) 0%, rgba(245,250,252,0.48) 100%);
  border: 4px solid rgba(245,250,252,0.32);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0px 4px 24px 0px rgba(29,61,99,0.12);
  border-radius: 16px; cursor: pointer;
  z-index: 2; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.review-card__play:hover {
  background: linear-gradient(180deg, rgba(245,250,252,0.72) 0%, rgba(245,250,252,0.72) 100%);
  transform: translate(-50%, -50%) scale(1.06);
}

.review-card__play svg { width: 18px; height: 20px; }

.review-card__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-radius: 16px;
  border: 2px solid rgba(245, 250, 252, 0.9);
  padding: 12px 24px;
  backdrop-filter: blur(24px);
  background: linear-gradient(180.00deg, rgba(210, 228, 242, 0.72) 0%,rgba(210, 228, 242, 0.72) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  margin-top: 8px;
}

.review-card__name {
  font-family: 'BDO Grotesk', 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; color: var(--blue);
  line-height: 1.2; margin-bottom: 4px;
}

.review-card__role {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 13px; font-weight: 400; color: var(--blue); opacity: 0.6;
}

.review-card__stars { display: flex; gap: 3px; flex-shrink: 0; }
.review-card__stars svg { width: 16px; height: 16px; fill: #FFA300; }

.reviews__nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 40px;
}

.reviews__btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: #FF9C00A3; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.reviews__btn:hover { background: #e09010; transform: scale(1.08); }
.reviews__btn.swiper-button-disabled { opacity: 0.4; cursor: default; transform: none; }

.reviews__btn svg {
  width: 20px; height: 20px; fill: none;
  stroke: #1D3D63; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .reviews { margin: 32px; padding: 48px 0 56px; }
  .reviews__swiper { padding: 0 32px; }
  .reviews__swiper-wrap { margin: 0 -32px; padding: 0 32px; }
  .swiper-slide { width: 240px; }
}

@media (max-width: 768px) {
  .reviews { margin: 24px; padding: 40px 0 48px; border-radius: 24px; }
  .reviews__swiper { padding: 0 24px; }
  .reviews__swiper-wrap { margin: 0 -24px; padding: 0 24px; }
  .swiper-slide { width: 220px; }
  .reviews__title { margin-bottom: 32px; }
}

@media (max-width: 480px) {
  .reviews { margin: 16px; padding: 28px 0 40px; border-radius: 20px; }
  .reviews__decor { display: none; }

  .reviews__title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 24px;
  }

  .reviews__swiper { padding: 0 16px; }
  .reviews__swiper-wrap { margin: 0 -16px; padding: 0 16px; }
  .swiper-slide { width: calc(100% - 48px); }

  .review-card__info {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 16px;
  }

  .review-card__name { font-size: 15px; }
  .review-card__role { font-size: 12px; }
  .review-card__stars svg { width: 14px; height: 14px; }

  .review-card__play { width: 68px; height: 44px; }

  .reviews__nav { margin-top: 28px; }
  .reviews__btn { width: 52px; height: 52px; }
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.is-open { display: flex; }

.video-modal__inner {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.video-modal__inner video,
.video-modal__inner iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

.video-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px; height: 36px;
  border: none; border-radius: 50%;
  background: #fff;
  color: #000; font-size: 36px; line-height: 1;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-modal__close:hover { background: rgba(255,255,255,0.3); }


/* -------------- */

.hero {
  position: relative;
  border-radius: 0 0 48px 48px;
}

.hero .container {
  --grid-padding: 30px;
}
@media (max-width: 1024px) {
  .hero .container {
    --grid-padding: 20px;
  }
}
@media (max-width: 480px) {
  .hero .container {
    --grid-padding: 15px;
  }
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  background: var(--bg-color-intro);
  padding: 60px 80px 160px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
}

.hero__content {
  max-width: 880px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero__badge,
.hero__title,
.hero__desc 
{ position: relative; z-index: 1; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.hero__badge-star svg { width: 16px; height: 16px; fill: #FFC763; display: block; }
.hero__badge-divider  { color: #c0cdd8; }

.hero__title {
  margin-bottom: 20px;
}

.hero__desc {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--blue);
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 880px;
}

.hero__link {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 74px;
  padding: 0 7px 0 32px;
  border: 2px solid rgba(245, 250, 252, 0.12);
  border-radius: 2000px;
  background: linear-gradient(205.12deg, rgb(29, 61, 99) 10.42%, rgb(58.88, 123.85, 201) 65.825%, rgb(58.88, 123.85, 201) 82.058%), rgba(245, 250, 252, 0.04);
  max-width: -moz-max-content;
  max-width: max-content;
}
@media (max-width: 1024px) {
  .hero__link {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .hero__link {
    height: 64px;
    padding: 0 5px 0 24px;
  }
}
@media (max-width: 480px) {
  .hero__link {
    justify-content: space-between;
    height: 52px;
    max-width: 100%;
    width: 100%;
  }
}
.hero__link span:first-child {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
}
@media (max-width: 1024px) {
  .hero__link span:first-child {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero__link span:first-child {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hero__link span:first-child {
    font-size: 16px;
  }
}
.hero__link span:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white);
  height: 60px;
  width: 60px;
}
@media (max-width: 1024px) {
  .hero__link span:last-child {
    height: 54px;
    width: 54px;
  }
}
@media (max-width: 768px) {
  .hero__link span:last-child {
    height: 48px;
    width: 48px;
  }
}
@media (max-width: 480px) {
  .hero__link span:last-child {
    height: 42px;
    width: 42px;
  }
}
.hero__link span:last-child svg {
  width: 25px;
  height: 25px;
}
@media (max-width: 1024px) {
  .hero__link span:last-child svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .hero__link span:last-child svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 480px) {
  .hero__link span:last-child svg {
    width: 18px;
    height: 18px;
  }
}

.hero__visual {
  max-width: 600px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__doctor-card {
  background: linear-gradient(180deg, rgba(187,218,243,0.96) 0%, rgba(239,246,255,0.96) 100%);
  border-radius: 124px 32px 124px 32px;
  border: 4px solid rgba(245,250,252,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 3 / 4;
  position: relative;
  margin-bottom: -140px;
  z-index: 1;
}

.hero__doctor-card img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.hero__stat {
  position: absolute;
  background: linear-gradient(180deg, rgba(245,250,252,0.48) 0%, rgba(245,250,252,0.48) 100%);
  border: 4px solid rgba(245,250,252,0.32);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0px 4px 24px 0px rgba(29,61,99,0.12);
  border-radius: 24px;
  padding: 8px 17px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  z-index: 10;
}

.hero__stat--ops { 
  top: 20px;
  right: -20%; 
  max-width: 265px;
  width: 100%;
}
.hero__stat--exp { 
  bottom: 80px; 
  left: -20%;  
  max-width: 265px;
  width: 100%;
}

.hero__stat-icon {
  width: 40px; height: 40px;
  background: #1D3D63;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 20px; height: 20px;
  fill: none; stroke: var(--white);
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.hero__stat-number {
  display: block;
  font-family: 'BDO Grotesk', 'Inter', sans-serif;
  font-size: 20px; font-weight: 600; line-height: 1.3;
  letter-spacing: 0.01em; color: var(--blue);
}

.hero__stat-label {
  display: block;
  font-family: 'BDO Grotesk', 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.01em;
  text-transform: uppercase; opacity: 0.7;
}

/* ── Services ── */
.services {
  background: transparent;
  position: relative;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -120px;
}

.service-card {
  background: linear-gradient(180deg, rgba(245,250,252,0.72) 0%, rgba(245,250,252,0.72) 100%);
  border: 4px solid rgba(245,250,252,0.9);
  backdrop-filter: blur(48px); -webkit-backdrop-filter: blur(48px);
  box-shadow: 0px 4px 24px 0px rgba(29,61,99,0.12);
  border-radius: 32px;
  position: relative; z-index: 3; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 220px;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(29,61,99,0.15); }

.service-card__arrow {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: #FF9C00A3; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background 0.2s; z-index: 2;
}

.service-card__arrow:hover { background: #e09010; }

.service-card__arrow svg {
  width: 18px; height: 18px; fill: none;
  stroke: #1D3D63; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__arrow svg { transform: rotate(-45deg); }

.service-card__left {
  display: flex;
  height: 100%; min-height: 220px;
  padding: 20px 20px 22px 20px; gap: 12px;
  justify-content: space-between;
}

.service-card__img {
  width: 100%; max-width: 160px; height: 200px;
  object-fit: contain; object-position: bottom left;
  display: block; flex-shrink: 0;
}

.service-card__title {
  font-size: 28px; font-weight: 500; line-height: 1.3;
  letter-spacing: 0.01em; color: var(--blue);
  text-align: end;
  margin-top: auto;
}

/* Responsive hero */
@media (max-width: 1024px) {
  .hero__inner { flex-direction: column; align-items: center; gap: 36px; padding: 48px 30px; }
  .hero__doctor-card { max-width: 360px; margin-bottom: 0; }
  .hero__stat--ops { right: -8px; }
  .hero__stat--exp { left: 0; bottom: 60px; }
  .services {
    padding: 80px 0;
  }
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 0; }
  .service-card:last-child { grid-column: 1 / -1; }
  .service-card { min-height: 200px; }
  .service-card__left { align-items: center; min-height: 200px; padding: 16px; }
  .service-card__img { height: 120px; }
  .service-card__title { font-size: 24px; }
}

@media (max-width: 768px) {
  .hero { border-radius: 0 0 36px 36px; }
  .hero__content { max-width: 100%; }
  .hero__visual { flex-direction: column; align-items: stretch; gap: 10px; width: 100%; }
  .hero__doctor-card { max-width: 100%; aspect-ratio: 16/10; border-radius: 48px 24px 48px 24px; }
  .services {
    padding: 60px 0;
  }
  .services__grid { grid-template-columns: 1fr; gap: 12px; }
  .hero__stat { position: static; white-space: normal; border-radius: 20px; padding: 12px 16px; gap: 12px; }
  .hero__stat--exp { order: 2; max-width: 100%; }
  .hero__stat--ops { order: 3; max-width: 100%; }
  .service-card { min-height: 180px; }
  .service-card__left { min-height: 180px; padding: 16px; }
  .service-card__img { height: 110px; }
  .service-card__title { font-size: 22px; }
}

@media (max-width: 480px) {
  .hero { border-radius: 0 0 32px 32px; }
  .hero__badge { font-size: 11px; padding: 6px 12px; gap: 6px; }
  .hero__desc { font-size: 14px; }
  .hero__doctor-card { max-width: 100%; aspect-ratio: 3/4; margin-bottom: 0; border-radius: 40px 16px 40px 16px; order: 1; }
  .services {
    padding: 30px 0;
  }
  .hero__stat-icon { width: 36px; height: 36px; }
  .hero__stat-icon svg { width: 18px; height: 18px; }
  .hero__stat-number { font-size: 18px; }
  .hero__stat-label { font-size: 10px; opacity: 0.6; }
  .service-card:last-child { grid-column: auto; }
  .service-card { min-height: 160px; }
  .service-card__left { min-height: 160px; padding: 16px; gap: 8px; }
  .service-card__img { height: 100px; max-width: 130px; }
  .service-card__title { font-size: 20px; }
}