@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: #2C3E50;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
}

h4 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #5A6C7D;
  line-height: 1.7;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #2C3E50;
  font-weight: 500;
}
@media (max-width: 768px) {
  .text-large {
    font-size: 1.1rem;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
}

.section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
}
.section--gray {
  background: #F8FAFC;
}

.section__title {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .section__title {
    margin-bottom: 3rem;
  }
}

.section__description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  color: #5A6C7D;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-height: 50px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: #4A90E2;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: #357ABD;
  box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  background: transparent;
  color: #4A90E2;
  border: 2px solid #4A90E2;
}
.btn--secondary:hover {
  background: #E8F2FC;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn--full {
  width: 100%;
}
@media (max-width: 480px) {
  .btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
}

.top-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E1E8ED;
  padding: 1rem 0;
  font-size: 0.9rem;
}
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
}
.top-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.top-bar__contacts {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.top-bar__phone, .top-bar__email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2C3E50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}
.top-bar__phone svg, .top-bar__email svg {
  color: #4A90E2;
  flex-shrink: 0;
}
.top-bar__phone:hover, .top-bar__email:hover {
  color: #4A90E2;
}
.top-bar__hours, .top-bar__address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5A6C7D;
}
.top-bar__hours svg, .top-bar__address svg {
  color: #8696A8;
  flex-shrink: 0;
}
.top-bar__info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nav__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0;
  gap: 3rem;
}
@media (max-width: 768px) {
  .nav__wrapper {
    padding: 0 1.5rem;
  }
}
@media (max-width: 480px) {
  .nav__wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 768px) {
  .nav__wrapper {
    height: 70px;
  }
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: #2C3E50;
  flex-shrink: 0;
}
.nav__logo svg {
  color: #4A90E2;
}
.nav__logo img {
  max-height: 80px;
}
@media (max-width: 768px) {
  .nav__logo {
    font-size: 1.1rem;
  }
  .nav__logo span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav__menu li {
  margin: 0;
}
.nav__menu a {
  font-weight: 500;
  color: #5A6C7D;
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav__menu a:hover {
  color: #4A90E2;
}
@media (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .nav__menu.active {
    transform: translateX(0);
    height: fit-content;
  }
}
.nav__cta {
  background: #4A90E2;
  color: white;
  padding: 1rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__cta:hover {
  background: #357ABD;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(74, 144, 226, 0.4);
}
.nav__cta:active {
  transform: translateY(0);
}
@media (max-width: 1140px) {
  .nav__cta {
    display: none;
  }
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  width: 24px;
  height: 2px;
  background: #2C3E50;
  transition: all 0.25s ease;
}
.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__burger.active span:nth-child(2) {
  opacity: 0;
}
.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media (max-width: 1024px) {
  .nav__burger {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(135deg, #FFFFFF 0%, #E8F2FC 100%);
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/bg-3.png");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 4rem 0;
  animation: fadeInUp 0.6s ease;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 3rem 0;
  }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #2C3E50;
}
.hero__subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: #5A6C7D;
  margin-bottom: 3rem;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero__features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5A6C7D;
  font-size: 0.95rem;
  padding: 5px;
  background: white;
  border-radius: 8px;
  border: 1px solid #E1E8ED;
}
.hero__feature svg {
  color: #52C41A;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 480px) {
  .problems__grid {
    grid-template-columns: 1fr;
  }
}
.problems__note {
  text-align: center;
  font-style: italic;
  color: #8696A8;
  max-width: 700px;
  margin: 0 auto;
}

.problem-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  text-align: center;
}
.problem-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.problem-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 50%;
  color: #4A90E2;
  transition: all 0.25s ease;
}
.problem-card__title {
  margin-bottom: 1rem;
  color: #2C3E50;
}
.problem-card__text {
  color: #5A6C7D;
  font-size: 0.95rem;
  margin: 0;
}
.problem-card:hover .problem-card__icon {
  background: #4A90E2;
  color: #FFFFFF;
  transform: scale(1.1);
}

.method__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .method__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.method__text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.diagram__item {
  text-align: center;
  max-width: 200px;
}
.diagram__item h4 {
  margin: 1rem 0;
  color: #2C3E50;
}
.diagram__item p {
  font-size: 0.9rem;
  color: #5A6C7D;
  margin: 0;
}
.diagram__icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 50%;
  color: #4A90E2;
}
.diagram__icon svg {
  width: 64px;
  height: 64px;
}
.diagram__arrow {
  font-size: 2rem;
  color: #4A90E2;
  font-weight: bold;
}
@media (max-width: 768px) {
  .diagram__arrow {
    display: none;
  }
}

.procedure__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.125rem;
  color: #5A6C7D;
  font-weight: 500;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: #E1E8ED;
}
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
}
.timeline__item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .timeline__item {
    gap: 1.5rem;
  }
}
.timeline__number {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4A90E2;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .timeline__number {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }
}
.timeline__content {
  flex: 1;
  padding-top: 0.5rem;
}
.timeline__title {
  margin-bottom: 0.5rem;
  color: #2C3E50;
}
.timeline__text {
  color: #5A6C7D;
  margin: 0;
}

.detection__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.detection__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #E1E8ED;
  transition: all 0.25s ease;
}
.detection__item:hover {
  border-color: #4A90E2;
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.1);
}
.detection__item p {
  margin: 0;
  color: #5A6C7D;
}
.detection__icon {
  color: #4A90E2;
  flex-shrink: 0;
}
.detection__note {
  background: #E8F2FC;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
}
.detection__note strong {
  color: #4A90E2;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .audience__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.audience-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  text-align: center;
}
.audience-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.audience-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 50%;
  color: #4A90E2;
}
.audience-card__title {
  margin-bottom: 1rem;
  color: #2C3E50;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.audience-card__text {
  color: #5A6C7D;
  font-size: 0.95rem;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.complaints__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.complaint-tag {
  padding: 1rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #5A6C7D;
  transition: all 0.25s ease;
  cursor: default;
}
.complaint-tag:hover {
  background: #E8F2FC;
  border-color: #4A90E2;
  color: #4A90E2;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 480px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}

.advantage-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  transition: all 0.25s ease;
}
.advantage-card:hover {
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.1);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.advantage-card__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 8px;
  color: #4A90E2;
}
.advantage-card__title {
  margin-bottom: -10px;
  font-size: 1.125rem;
  color: #2C3E50;
  text-align: center;
}
.advantage-card__text {
  color: #5A6C7D;
  font-size: 0.95rem;
  margin: 0;
  text-align: center;
}

.safety__content {
  max-width: 900px;
  margin: 0 auto;
}
.safety__contraindications {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #FAAD14;
  margin: 3rem 0;
}
.safety__contraindications h3 {
  color: #FAAD14;
  margin-bottom: 1.5rem;
}
.safety__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.safety__list li {
  padding-left: 1.5rem;
  position: relative;
  color: #5A6C7D;
}
.safety__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #FAAD14;
  font-weight: bold;
}
.safety__note {
  text-align: center;
  font-weight: 500;
  color: #2C3E50;
}

.equipment__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .equipment__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.equipment__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #F8FAFC;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #E1E8ED;
}
.equipment__placeholder svg {
  color: #4A90E2;
  opacity: 0.3;
}
.equipment__text h3 {
  margin: 2rem 0 1.5rem;
  color: #2C3E50;
}
.equipment__text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.equipment__list li {
  padding: 1rem 0 1rem 2rem;
  position: relative;
  color: #5A6C7D;
  border-bottom: 1px solid #E1E8ED;
}
.equipment__list li:last-child {
  border-bottom: none;
}
.equipment__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52C41A;
  font-weight: bold;
  font-size: 1.25rem;
}

.doctor__content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .doctor__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.doctor__placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E1E8ED;
}
.doctor__placeholder svg {
  color: #4A90E2;
  opacity: 0.2;
}
.doctor__name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #2C3E50;
}
.doctor__credentials {
  color: #4A90E2;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}
.doctor__details {
  margin: 2rem 0;
}
.doctor__details li {
  padding: 1rem 0;
  color: #5A6C7D;
  border-bottom: 1px solid #E1E8ED;
}
.doctor__details li:last-child {
  border-bottom: none;
}
.doctor__details li strong {
  color: #2C3E50;
  margin-right: 0.5rem;
}
.doctor__approach {
  background: #E8F2FC;
  padding: 1.5rem;
  border-radius: 8px;
  color: #5A6C7D;
  font-style: italic;
  margin-top: 2rem;
}

.reviews {
  max-width: 100svw;
  overflow-x: hidden;
}
.reviews .section__title {
  text-align: center;
}
.reviews .section__description {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews__slider {
  position: relative;
  margin-bottom: 3rem;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .reviews__slider {
    padding: 0 50px;
  }
}
@media (max-width: 480px) {
  .reviews__slider {
    padding: 0 40px;
  }
}
.reviews__track {
  position: relative;
}
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid #E1E8ED;
  color: #4A90E2;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__arrow:hover {
  background: #4A90E2;
  border-color: #4A90E2;
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.reviews__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.reviews__arrow:disabled:hover {
  background: #FFFFFF;
  color: #4A90E2;
  transform: translateY(-50%);
}
.reviews__arrow--prev {
  left: 0;
}
.reviews__arrow--next {
  right: 0;
}
@media (max-width: 480px) {
  .reviews__arrow {
    width: 40px;
    height: 40px;
  }
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.reviews__footer {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #E1E8ED;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.reviews__footer .btn {
  margin-bottom: 1.5rem;
}
.reviews__note {
  font-size: 0.95rem;
  color: #5A6C7D;
  margin: 0;
}

.reviews__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 2rem;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .reviews__track {
    grid-auto-columns: 100%;
  }
}

.reviews__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E1E8ED;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}
.reviews__dot:hover {
  background: #4A90E2;
  transform: scale(1.2);
}
.reviews__dot.active {
  background: #4A90E2;
  width: 32px;
  border-radius: 6px;
}

.review-card {
  background: #FFFFFF;
  border: 2px solid #E1E8ED;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.review-card:hover {
  border-color: #4A90E2;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.12);
  transform: translateY(-2px);
}
.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E1E8ED;
}
.review-card__author {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex: 1;
}
.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F2FC 0%, #4A90E2 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-card__author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card__name {
  font-weight: 600;
  color: #2C3E50;
  font-size: 1rem;
}
.review-card__meta {
  font-size: 0.85rem;
  color: #8696A8;
}
.review-card__rating {
  color: #FAAD14;
  font-size: 1.1rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.review-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.review-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.review-card__text {
  color: #2C3E50;
  line-height: 1.6;
  margin: 0;
}
.review-card__result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: rgba(82, 196, 26, 0.1);
  border-radius: 8px;
  color: #52C41A;
  font-weight: 500;
  font-size: 0.95rem;
}
.review-card__result svg {
  flex-shrink: 0;
  color: #52C41A;
}
.review-card__result span {
  color: #2C3E50;
}

.review-tag {
  display: inline-flex;
  padding: 0.5rem 1rem;
  background: #E8F2FC;
  color: #4A90E2;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.faq__list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2C3E50;
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-item__question:hover {
  background: #E8F2FC;
  color: #4A90E2;
}
.faq-item__question svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #4A90E2;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item__answer p {
  padding: 0 2rem 1.5rem;
  margin: 0;
}
.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .booking__grid {
    grid-template-columns: 1fr;
  }
}

.promo-banner {
  background: linear-gradient(135deg, rgba(250, 173, 20, 0.15) 0%, rgba(250, 173, 20, 0.05) 100%);
  border: 3px solid #FAAD14;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(250, 173, 20, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .promo-banner {
    padding: 2rem;
  }
}
.promo-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  background: #FAAD14;
  color: white;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}
.promo-banner__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .promo-banner__content {
    flex-direction: column;
    gap: 3rem;
  }
}
.promo-banner__left {
  flex: 1;
}
.promo-banner__title {
  font-size: 2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .promo-banner__title {
    font-size: 1.5rem;
  }
}
.promo-banner__price {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.promo-banner__old-price {
  font-size: 1.75rem;
  color: #8696A8;
  text-decoration: line-through;
}
.promo-banner__new-price {
  font-size: 3rem;
  font-weight: 700;
  color: #FAAD14;
  line-height: 1;
}
@media (max-width: 768px) {
  .promo-banner__new-price {
    font-size: 2.5rem;
  }
}
.promo-banner__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.promo-banner__list li {
  color: #2C3E50;
  font-size: 1.05rem;
  position: relative;
  padding-left: 2rem;
}
.promo-banner__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52C41A;
  font-weight: 700;
  font-size: 1.2rem;
}
.promo-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .promo-banner__right {
    width: 100%;
  }
}
.promo-banner__right .btn {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .promo-banner__right .btn {
    width: 100%;
  }
}
.promo-banner__note {
  font-size: 0.95rem;
  color: #5A6C7D;
  margin: 0;
}
.promo-banner__note strong {
  color: #FAAD14;
  font-weight: 700;
  font-size: 1.2rem;
}

.booking__cta {
  background: linear-gradient(135deg, #E8F2FC 0%, rgba(232, 242, 252, 0.5) 100%);
  border: 2px solid #4A90E2;
  border-radius: 16px;
  padding: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .booking__cta {
    padding: 3rem 2rem;
  }
}
.booking__cta-content {
  margin-bottom: 2rem;
}
.booking__cta-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2C3E50;
}
.booking__cta-content p {
  font-size: 1.1rem;
  color: #5A6C7D;
  margin: 0;
}
.booking__cta-form {
  display: flex;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
@media (max-width: 480px) {
  .booking__cta-form {
    flex-direction: column;
  }
}
.booking__cta-form input {
  flex: 1;
}
.booking__cta-form button {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .booking__cta-form button {
    width: 100%;
  }
}
.booking__cta-note {
  font-size: 0.9rem;
  color: #5A6C7D;
  margin: 0;
}
.booking__cta-note a {
  color: #4A90E2;
  text-decoration: underline;
}
.booking__cta-note a:hover {
  color: #357ABD;
}

.price-card {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 16px;
  border: 2px solid #E1E8ED;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card:hover {
  border-color: #4A90E2;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 144, 226, 0.15);
}
.price-card--popular {
  border-color: #4A90E2;
  background: linear-gradient(135deg, #E8F2FC 0%, #FFFFFF 100%);
  transform: scale(1.05);
}
.price-card--popular:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 16px 40px rgba(74, 144, 226, 0.25);
}
@media (max-width: 768px) {
  .price-card--popular {
    transform: scale(1);
  }
  .price-card--popular:hover {
    transform: translateY(-4px);
  }
}
.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 2rem;
  background: #4A90E2;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.price-card--promo .price-card__badge {
  background: #FAAD14;
  animation: pulse 2s ease-in-out infinite;
}
.price-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.price-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E1E8ED;
}
.price-card__old {
  font-size: 1.25rem;
  color: #8696A8;
  text-decoration: line-through;
}
.price-card__amount, .price-card__new {
  font-size: 2.5rem;
  font-weight: 700;
  color: #4A90E2;
  line-height: 1;
}
.price-card--promo .price-card__amount, .price-card--promo .price-card__new {
  color: #FAAD14;
}
.price-card__description {
  text-align: center;
  color: #5A6C7D;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem;
  flex: 1;
}
.price-card__list li {
  padding: 1rem 0;
  color: #5A6C7D;
  position: relative;
  padding-left: 2rem;
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #52C41A;
  font-weight: 700;
  font-size: 1.1rem;
}
.price-card .btn {
  margin-top: auto;
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__input {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid #E1E8ED;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.25s ease;
}
.form__input:focus {
  outline: none;
  border-color: #4A90E2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}
.form__input::placeholder {
  color: #8696A8;
}
.form textarea.form__input {
  resize: vertical;
  min-height: 100px;
}
.form__privacy {
  text-align: center;
  font-size: 0.85rem;
  color: #8696A8;
  margin-top: 1.5rem;
}
.form__privacy a {
  color: #4A90E2;
  text-decoration: underline;
}
.form__privacy a:hover {
  color: #357ABD;
}

.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 1024px) {
  .location__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.location__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.location__info h3 {
  margin-bottom: 1rem;
  color: #2C3E50;
}
.location__info p {
  margin-bottom: 0.5rem;
}
.location__info a {
  color: #4A90E2;
}
.location__info a:hover {
  text-decoration: underline;
}
.location__map {
  width: 100%;
  min-height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E1E8ED;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: #F8FAFC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 480px) {
  .related__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  text-align: center;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.service-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 50%;
  color: #4A90E2;
  transition: all 0.25s ease;
}
.service-card__title {
  margin-bottom: 1rem;
  color: #2C3E50;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.service-card__text {
  color: #5A6C7D;
  font-size: 0.95rem;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.service-card:hover .service-card__icon {
  background: #4A90E2;
  color: #FFFFFF;
  transform: scale(1.1) rotate(5deg);
}

.final-cta {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: #FFFFFF;
  text-align: center;
}
.final-cta__content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.final-cta__title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.final-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 3rem;
}
.final-cta .btn--primary {
  background: #FFFFFF;
  color: #4A90E2;
}
.final-cta .btn--primary:hover {
  background: #F8FAFC;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}
.final-cta__note {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer {
  background: #2C3E50;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.footer__logo svg {
  color: #4A90E2;
}
.footer__col h4 {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s ease;
}
.footer__col a:hover {
  color: #4A90E2;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__legal {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .footer__legal {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer__legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.footer__legal a:hover {
  color: #4A90E2;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal__container {
  transform: scale(1);
  opacity: 1;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.8);
  backdrop-filter: blur(4px);
}
.modal__container {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.25s ease;
}
@media (max-width: 480px) {
  .modal__container {
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  border-radius: 50%;
  color: #5A6C7D;
  transition: all 0.25s ease;
  z-index: 2;
}
.modal__close:hover {
  background: #4A90E2;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.modal__close svg {
  width: 20px;
  height: 20px;
}
.modal__content {
  padding: 3rem;
}
@media (max-width: 480px) {
  .modal__content {
    padding: 2rem;
  }
}
.modal__header {
  text-align: center;
  margin-bottom: 3rem;
}
.modal__icon {
  margin: 0 auto 2rem;
  animation: pulse 2s ease infinite;
}
.modal__title {
  margin-bottom: 1rem;
  color: #2C3E50;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
.modal__subtitle {
  color: #5A6C7D;
  font-size: 1rem;
  margin: 0;
}
.modal__form {
  margin-bottom: 2rem;
}
.modal__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid #E1E8ED;
}
.modal__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #5A6C7D;
  font-size: 0.9rem;
}
.modal__feature svg {
  color: #52C41A;
  flex-shrink: 0;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2C3E50;
  font-size: 0.9rem;
}

body.modal-open {
  overflow: hidden;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
}
.phone-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: #4A90E2;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4);
  transition: all 0.25s ease;
}
.phone-sticky svg {
  width: 24px;
  height: 24px;
}
.phone-sticky:hover {
  background: #357ABD;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 144, 226, 0.5);
}
@media (max-width: 768px) {
  .phone-sticky {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 1.5rem;
    border-radius: 50%;
  }
  .phone-sticky .phone-sticky__text {
    display: none;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  background: #E8F2FC;
  color: #4A90E2;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero__urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  border: 2px solid #FAAD14;
  border-radius: 12px;
  color: #2C3E50;
  font-size: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(250, 173, 20, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
.hero__urgency svg {
  color: #FAAD14;
  width: 20px;
  height: 20px;
}
.hero__urgency strong {
  color: #FAAD14;
  font-weight: 700;
}

.stats {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  color: white;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat-card__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}
.stat-card__label {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  color: #fff;
}
.stat-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.stat-card__stars {
  display: flex;
  gap: 4px;
}
.stat-card__stars svg {
  width: 20px;
  height: 20px;
  fill: #FAAD14;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cases__grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.case-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.case-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.case-card__tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #E8F2FC;
  color: #4A90E2;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.case-card__duration {
  font-size: 0.9rem;
  color: #8696A8;
  font-weight: 500;
}
.case-card__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.case-card__problem, .case-card__solution, .case-card__result {
  margin-bottom: 1.5rem;
}
.case-card__problem strong, .case-card__solution strong, .case-card__result strong {
  display: block;
  color: #2C3E50;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.case-card__problem p, .case-card__solution p, .case-card__result p {
  color: #5A6C7D;
  margin: 0;
}
.case-card__quote {
  padding: 1.5rem;
  background: #E8F2FC;
  border-left: 4px solid #4A90E2;
  border-radius: 8px;
  font-style: italic;
  color: #2C3E50;
  margin: 0;
}

.cases__note {
  padding: 2rem;
  background: #E8F2FC;
  border-radius: 12px;
  text-align: center;
}
.cases__note p {
  margin: 0;
  color: #2C3E50;
}

.review-card--featured {
  border: 2px solid #E8F2FC;
}
.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.review-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-card__rating .stars {
  color: #FAAD14;
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.review-card__rating .rating-text {
  font-weight: 700;
  color: #2C3E50;
}
.review-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 1rem;
  background: rgba(82, 196, 26, 0.1);
  color: #52C41A;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}
.review-card__verified svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.review-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.review-card__problem, .review-card__procedures {
  padding: 0.5rem 1rem;
  background: #F8FAFC;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #5A6C7D;
}
.review-card__info {
  display: flex;
  flex-direction: column;
}

.reviews__trust {
  margin-top: 3rem;
  padding: 2rem;
  background: #E8F2FC;
  border-radius: 12px;
  text-align: center;
}
.reviews__trust p {
  margin: 0;
  color: #2C3E50;
  font-size: 1rem;
}

.certificates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.certificate-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
  text-align: center;
}
.certificate-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.certificate-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  margin-bottom: 1.5rem;
}
.certificate-card__image svg {
  color: #4A90E2;
  opacity: 0.6;
}
.certificate-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.certificate-card__text {
  color: #5A6C7D;
  margin: 0;
}

.certificates__note {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: #E8F2FC;
  border-radius: 12px;
}
.certificates__note svg {
  flex-shrink: 0;
  color: #52C41A;
  margin-top: 2px;
}
.certificates__note p {
  margin: 0;
  color: #2C3E50;
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.guarantee-card {
  background: #FFFFFF;
  border: 1px solid #E1E8ED;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.25s ease;
}
.guarantee-card:hover {
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.08);
  transform: translateY(-4px);
  border-color: #E8F2FC;
}
.guarantee-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8F2FC;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.guarantee-card__icon svg {
  color: #4A90E2;
}
.guarantee-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.guarantee-card__text {
  color: #5A6C7D;
  margin: 0;
}

.price-card {
  position: relative;
}
.price-card--free {
  border: 2px solid #52C41A;
  box-shadow: 0 8px 24px rgba(82, 196, 26, 0.2);
}
.price-card--popular {
  border: 2px solid #4A90E2;
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.2);
  transform: scale(1.02);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  padding: 0.5rem 1.5rem;
  background: #4A90E2;
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.price-card__badge--hot {
  background: #FAAD14;
  animation: pulse 2s ease-in-out infinite;
}
.price-card__amount-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.price-card__old-price {
  font-size: 1.5rem;
  color: #8696A8;
  text-decoration: line-through;
}
.price-card__includes {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.price-card__includes li {
  padding: 0.5rem 0;
  color: #5A6C7D;
  font-size: 0.95rem;
}

.booking__note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #E8F2FC;
  border-radius: 8px;
  margin-top: 2rem;
}
.booking__note svg {
  flex-shrink: 0;
  color: #4A90E2;
  margin-top: 2px;
}
.booking__note p {
  margin: 0;
  color: #2C3E50;
  font-size: 0.95rem;
}

.booking__form-header {
  margin-bottom: 2rem;
}
.booking__form-header h3 {
  margin-bottom: 0.5rem;
}
.booking__form-header p {
  color: #5A6C7D;
  margin: 0;
}

.form--simple .form__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.form--simple .form__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #5A6C7D;
}
.form--simple .form__feature svg {
  color: #52C41A;
  flex-shrink: 0;
}

.modal--exit .modal__container--small {
  max-width: 500px;
}
.modal--exit .modal__icon-special {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.exit-modal__offer {
  margin-bottom: 2rem;
}

.exit-modal__text {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #2C3E50;
}

.exit-modal__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}
.exit-modal__benefits li {
  padding: 1rem;
  background: #F8FAFC;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  color: #2C3E50;
  font-weight: 500;
}
.exit-modal__benefits li:last-child {
  margin-bottom: 0;
}

.btn svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
}/*# sourceMappingURL=app.css.map */