:root {
  --color-white: #FFFFFF;
  --color-gray: #4D4D4D;
  --color-gold: #FFC031;
  --color-gold-hover: #e5ab2a;
  --color-gold-soft: rgba(255, 192, 49, 0.15);
  --color-gray-light: #f5f5f5;
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: min(1200px, 100% - 2rem);
  --header-height: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.28s var(--ease);
  --transition-slow: 0.35s var(--ease);
  --bg-body: #12141a;
  --bg-main: #1e2028;
  --bg-dark: #0d0e14;
  --bg-section: #15161c;
  --bg-card: #1a1c24;
  --bg-card-hover: #22262f;
  --bg-card-alt: #252a34;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-gray);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-hover);
}

ul {
  list-style: none;
}

.first-block {
  width: 100%;
  max-width: none;
  background: var(--bg-body);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: var(--color-white);
  border-bottom: 1px solid rgba(77, 77, 77, 0.12);
  transition: transform 0.35s var(--ease), background var(--transition), border-color var(--transition);
}

.header--hidden {
  transform: translateY(-100%);
}

.header--dark {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(160, 160, 160, 0.5);
}

.header--dark .header__inner {
  flex-wrap: wrap;
}

.header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-gray);
  transition: opacity var(--transition);
}

.logo:hover {
  opacity: 0.9;
}

.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover .logo__icon {
  transform: scale(1.03);
}

.logo__text {
  color: var(--color-gray);
}

.logo__text span {
  color: var(--color-gold);
}

.logo--white .logo__text {
  color: var(--color-white);
}

.logo--white .logo__text span {
  color: var(--color-gold);
}

.nav--white .nav__link {
  color: var(--color-white);
  transition: color var(--transition);
}

.nav--white .nav__link:hover {
  color: var(--color-gold);
}

.header__phone {
  color: var(--color-white);
  font-weight: 500;
  transition: color var(--transition);
}

.header__phone:hover {
  color: var(--color-gold);
}

.header__cta--dark {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
  padding: 0.45rem 0.9rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s var(--ease);
}

.header__cta--dark:hover {
  background: var(--color-gold);
  color: var(--color-gray);
  transform: translateY(-1px);
}

.menu-toggle--white span {
  background: var(--color-white);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--color-gray);
  font-weight: 500;
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--color-gold);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  background: var(--color-gold);
  color: var(--color-gray) !important;
  font-weight: 500;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform 0.2s var(--ease);
}

.header__cta:hover {
  background: var(--color-gold-hover);
  color: var(--color-white) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity var(--transition);
}

.menu-toggle:hover {
  opacity: 0.85;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gray);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main {
  flex: 1;
  background: var(--bg-main);
}

.hero {
  padding: 4rem 0;
  background: var(--color-gray);
  color: var(--color-white);
}

.hero--banner {
  position: relative;
  padding: 6rem 0 4rem;
  height: 600px;
  
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  opacity: 0.45;
  transition: opacity var(--transition-slow);
}

.hero--banner:hover .hero__bg img {
  opacity: 0.5;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.66) 100%);
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__inner--split {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  padding-top: 6rem;
}

.hero__content {
  padding-right: 2.5rem;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--color-gold);
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}

.hero__subtitle:empty {
  margin-bottom: 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  background: var(--color-gold);
  color: var(--color-gray);
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.25s var(--ease), box-shadow var(--transition);
}

.hero__cta:hover {
  background: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--color-gold-soft);
}

.hero__cta--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-gold);
}

.hero__cta--outline:hover {
  background: var(--color-gold);
  color: var(--color-gray);
  box-shadow: 0 8px 24px var(--color-gold-soft);
}

.hero__divider {
  width: 3px;
  min-height: 200px;
  margin: 0 2rem;
  background: linear-gradient(180deg, transparent 0%, var(--color-gold) 15%, var(--color-gold) 85%, transparent 100%);
  flex-shrink: 0;
  align-self: center;
  border-radius: 2px;
  opacity: 0.95;
}

.hero__list {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.875rem;
}

.hero__list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color var(--transition), padding-left var(--transition);
}

.hero__list li:hover {
  color: var(--color-white);
  padding-left: 1.5rem;
}

@keyframes hero-bullet-glow {
  0%, 12% { background: var(--color-gray); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25); }
  25%, 75% { background: var(--color-gold); box-shadow: 0 0 0 1px var(--color-gold), 0 0 12px var(--color-gold-soft); }
  88%, 100% { background: var(--color-gray); box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25); }
}

.hero__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gray);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
  transition: background var(--transition), box-shadow var(--transition);
  animation: hero-bullet-glow 2.5s ease-in-out infinite;
}

.hero__list li:nth-child(1)::before { animation-delay: 0s; }
.hero__list li:nth-child(2)::before { animation-delay: 2s; }
.hero__list li:nth-child(3)::before { animation-delay: 4s; }
.hero__list li:nth-child(4)::before { animation-delay: 6s; }
.hero__list li:nth-child(5)::before { animation-delay: 8s; }

.hero__list li:hover::before {
  background: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold), 0 0 12px var(--color-gold-soft);
  animation-play-state: paused;
}

.hero__image-wrap {
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-gray);
}

.hero__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about {
  color: var(--color-white);
}

.about--banner {
  position: relative;
  padding: 6.5rem 0;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
  opacity: 0.45;
}

.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(145deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.66) 100%);
}

.about__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-white);
  text-align: center;
  margin: 0 0 3rem;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.about__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}

.about__icon-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dotted var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  box-sizing: border-box;
}

.about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.about__icon svg {
  width: 52px;
  height: 52px;
}

.about__text {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.advantages {
  padding: 7rem 0;
  background: var(--bg-dark);
}

.advantages__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantages__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--color-gold);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  animation: advantages-pulse 2.2s ease-in-out infinite, advantage-glow-bg 20s ease-in-out infinite;
}

.advantages__item:nth-child(1) .advantages__circle { animation-delay: 0s, 0s; }
.advantages__item:nth-child(2) .advantages__circle { animation-delay: 0.5s, 5s; }
.advantages__item:nth-child(3) .advantages__circle { animation-delay: 1s, 10s; }
.advantages__item:nth-child(4) .advantages__circle { animation-delay: 1.5s, 15s; }

.advantages__circle::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 192, 49, 0.35);
  animation: advantages-ring 2.8s ease-in-out infinite;
}

.advantages__item:nth-child(1) .advantages__circle::after { animation-delay: 0s; }
.advantages__item:nth-child(2) .advantages__circle::after { animation-delay: 0.7s; }
.advantages__item:nth-child(3) .advantages__circle::after { animation-delay: 1.4s; }
.advantages__item:nth-child(4) .advantages__circle::after { animation-delay: 2.1s; }

@keyframes advantages-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 192, 49, 0.2), 0 0 12px rgba(255, 192, 49, 0.06); }
  50% { box-shadow: 0 0 0 14px rgba(255, 192, 49, 0), 0 0 18px rgba(255, 192, 49, 0.03); }
}

@keyframes advantages-ring {
  0%, 100% { opacity: 0.35; transform: scale(1); border-color: rgba(255, 192, 49, 0.35); }
  50% { opacity: 0; transform: scale(1.1); border-color: rgba(255, 192, 49, 0.15); }
}

@keyframes advantage-glow-bg {
  0% { background: transparent; }
  2% {
    background: var(--color-gold);
    box-shadow: 0 6px 20px rgba(255, 192, 49, 0.18);
  }
  24% {
    background: var(--color-gold);
    box-shadow: 0 6px 20px rgba(255, 192, 49, 0.18);
  }
  26% { background: transparent; }
  100% { background: transparent; }
}

@keyframes advantage-glow-num {
  0% { color: var(--color-gold); }
  2% { color: #1a1a1a; }
  24% { color: #1a1a1a; }
  26% { color: var(--color-gold); }
  100% { color: var(--color-gold); }
}

.advantages__num {
  font-size: 2.75rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  animation: advantage-glow-num 20s ease-in-out infinite;
}

.advantages__item:nth-child(1) .advantages__num { animation-delay: 0s; }
.advantages__item:nth-child(2) .advantages__num { animation-delay: 5s; }
.advantages__item:nth-child(3) .advantages__num { animation-delay: 10s; }
.advantages__item:nth-child(4) .advantages__num { animation-delay: 15s; }

.advantages__text {
  font-size: 1.3125rem;
  font-weight: 400;
  color: var(--color-gold);
  line-height: 1.4;
  margin: 0;
  white-space: nowrap;
}

.section {
  padding: 6rem 0;
  background: var(--bg-section);
}

.section--dark {
  background: var(--bg-dark);
  position: relative;
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 192, 49, 0.045) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px, 64px 64px;
  background-position: 0 0, 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.section--dark .section__inner {
  position: relative;
  z-index: 1;
}

.section--dark .section__title {
  color: var(--color-white);
  margin-bottom: 2rem;
}

.reviews .section__inner {
  position: relative;
}

.reviews-slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.reviews-slider__track-wrap {
  overflow: hidden;
}

.reviews-slider__track {
  display: flex;
  transition: transform 0.4s ease-out;
  width: 250%;
}

.review-card {
  flex: 0 0 20%;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1rem 2rem;
  min-width: 0;
  text-align: left;
  box-sizing: border-box;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__body {
  flex: 1;
  min-width: 0;
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.review-card__stars {
  display: flex;
  gap: 0.2rem;
  flex-shrink: 0;
}

.review-card__star {
  width: 18px;
  height: 18px;
  position: relative;
}

.review-card__star::before {
  content: "★";
  position: absolute;
  inset: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--color-gold);
}

.review-card__stars--4 .review-card__star:nth-child(5)::before {
  opacity: 0.25;
}

.review-card__name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
}

.review-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.reviews-slider__btn:hover {
  background: var(--color-gold);
  color: #1a1a1a;
}

.reviews-slider__btn--prev {
  left: 0;
}

.reviews-slider__btn--next {
  right: 0;
}

.reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}

.reviews-slider__dot:hover {
  border-color: var(--color-gold);
}

.reviews-slider__dot.is-active {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.section--alt {
  background: var(--color-gray-light);
}

.section--white {
  background: #ffffff;
}

.extra-services__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 2rem;
}

.section__inner--narrow {
  max-width: 720px;
}

.tariff-includes__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-gold);
  margin: 0 0 2rem;
  text-align: left;
}

.tariff-includes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.tariff-includes__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tariff-includes__check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  line-height: 1;
}

.tariff-includes__check::before {
  content: "✓";
}

.tariff-includes__content {
  flex: 1;
  min-width: 0;
}

.tariff-includes__heading {
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.tariff-includes__desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
  margin: 0;
}

.tariff-includes__disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 2rem 0 0;
  font-style: italic;
}

.extra-services__table-wrap {
  overflow-x: auto;
}

.extra-services-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.extra-services-table thead {
  background: rgba(77, 77, 77, 0.12);
}

.extra-services-table th {
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 500;
  color: var(--color-gray);
}

.extra-services-table td {
  padding: 0.75rem 1rem;
  color: var(--color-gray);
  border-bottom: 1px solid rgba(77, 77, 77, 0.1);
}

.extra-services-table tbody tr:nth-child(even) {
  background: rgba(77, 77, 77, 0.04);
}

.extra-services-table tbody tr:last-child td {
  border-bottom: none;
}

.extra-services-table td:last-child {
  font-weight: 500;
}

#benefits .section__inner {
  max-width: 880px;
}

.benefits__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  color: var(--color-gold);
  text-align: center;
  margin: 0 0 2.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
}

.benefit-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  padding: 0;
  border: none;
}

.benefit-card__icon-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
}

.benefit-card__icon svg {
  width: 36px;
  height: 36px;
}

.benefit-card__content {
  min-width: 0;
}

.benefit-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-gray);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.benefit-card__text {
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.benefit-card__text p {
  margin: 0 0 0.75rem;
}

.benefit-card__text p:last-child {
  margin-bottom: 0;
}

.section--white .section__title,
.section--white .benefit-card__title,
.section--white .benefit-card__text {
  color: var(--color-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24'%3E%3Cpath d='M0 12 Q12 3 24 12 T48 12' fill='none' stroke='rgba(255,192,49,0.06)' stroke-width='0.7'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='48' viewBox='0 0 24 48'%3E%3Cpath d='M12 0 Q3 12 12 24 T12 48' fill='none' stroke='rgba(255,192,49,0.04)' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 48px 24px, 24px 48px;
  background-position: 0 0, 12px 24px;
  pointer-events: none;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-card-alt);
  border: 2px solid rgba(255, 192, 49, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-card__num {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
}

.service-card__title {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}

.service-card__price {
  white-space: nowrap;
  color: var(--color-gold);
}

.service-card__list {
  list-style: none;
  margin-bottom: 15px;
  padding: 0;
  text-align: left;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.service-card__list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}

.service-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--color-gold);
}

.service-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 0.9rem;
  background: var(--color-gold);
  color: #1a1a1a !important;
  font-weight: 500;
  border-radius: 10px;
  margin-top: 10px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background var(--transition), color var(--transition), transform 0.2s var(--ease);
}

.service-card__cta:hover {
  background: var(--color-gold-hover);
  color: #1a1a1a !important;
  transform: translateY(-1px);
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tariff-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.tariff-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='24' viewBox='0 0 48 24'%3E%3Cpath d='M0 12 Q12 3 24 12 T48 12' fill='none' stroke='rgba(255,192,49,0.06)' stroke-width='0.7'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='48' viewBox='0 0 24 48'%3E%3Cpath d='M12 0 Q3 12 12 24 T12 48' fill='none' stroke='rgba(255,192,49,0.04)' stroke-width='0.6'/%3E%3C/svg%3E");
  background-size: 48px 24px, 24px 48px;
  background-position: 0 0, 12px 24px;
  pointer-events: none;
  z-index: 0;
}

.tariff-card > * {
  position: relative;
  z-index: 1;
}

.tariff-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.tariff-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--bg-card-alt);
  border: 2px solid rgba(255, 192, 49, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tariff-card__num {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1;
}

.tariff-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.35;
  text-align: left;
}

.tariff-card__price {
  white-space: nowrap;
  color: var(--color-gold);
}

.tariff-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 0.9rem;
  background: var(--color-gold);
  color: #1a1a1a !important;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background var(--transition), color var(--transition), transform 0.2s var(--ease);
}

.tariff-card__cta:hover {
  background: var(--color-gold-hover);
  color: #1a1a1a !important;
  transform: translateY(-1px);
}

.section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section__inner:empty {
  min-height: 2rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-gray);
}

.section:not(.section--alt) .section__title,
.section:not(.section--alt) .section__subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.section:not(.section--alt) .section__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.section__title span {
  color: var(--color-gold);
}

.section__subtitle {
  color: var(--color-gray);
  margin-bottom: 2rem;
  max-width: 600px;
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.block-card {
  background: var(--color-white);
  border: 1px solid rgba(77, 77, 77, 0.1);
  border-radius: 14px;
  padding: 1.5rem;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.block-card:hover {
  box-shadow: 0 12px 28px rgba(77, 77, 77, 0.12);
  border-color: rgba(255, 192, 49, 0.25);
  transform: translateY(-2px);
}

.block-card__title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-gray);
}

.block-card__text {
  color: var(--color-gray);
  font-size: 0.9375rem;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about__image-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.feedback-section {
  padding: 6rem 0;
}

.feedback-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.feedback-section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.feedback-section__desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 360px;
}

.feedback-section__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.feedback-section__contact:hover {
  color: var(--color-gold);
}

.feedback-section__contact-icon {
  color: var(--color-gold);
  flex-shrink: 0;
}

.feedback-section__contact-icon svg {
  display: block;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feedback-form__label {
  display: block;
}

.feedback-form__label-text {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.feedback-form__input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: border-color var(--transition), background var(--transition);
}

.feedback-form__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.feedback-form__input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.1);
}

.feedback-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.feedback-form__submit {
  margin-top: 0.25rem;
  padding: 1rem 1.5rem;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
  background: var(--color-gold);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s var(--ease);
}

.feedback-form__submit:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
}

.feedback-form__disclaimer {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin-top: -0.25rem;
}

.footer {
  background: var(--bg-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
  border-bottom: 4px solid var(--color-gold);
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  align-items: start;
}

.footer__logo-link {
  text-decoration: none;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition);
}

.footer__contact:hover {
  color: var(--color-gold);
}

.footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.footer__contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer__contact--address {
  text-decoration: none;
  cursor: default;
}

.footer__contact--address:hover {
  color: rgba(255, 255, 255, 0.82);
}

.footer__bottom {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes call-fab-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.call-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--color-gold);
  color: #1a1a1a;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(255, 192, 49, 0.4);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: call-fab-float 2.5s ease-in-out infinite;
  
  filter: none;
}

.call-fab:hover {
  transform: translateY(-4px);
  animation: none;
  color: #1a1a1a;
}

.call-fab__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-fab__icon svg {
  display: block;
}

.call-fab__number {
  white-space: nowrap;
}

@media (max-width: 900px) {

  .feedback-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__inner--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__divider {
    width: 100%;
    min-height: 2px;
  }

  .hero__content {
    padding-right: 0;
  }

  .hero__list {
    padding-left: 0;
  }

  .hero__list li::before {
    top: 0.45em;
  }

  .hero__inner,
  .about__content {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__title {
    margin-bottom: 2rem;
  }

  .hero__image-wrap {
    order: -1;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .advantages__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariffs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tariff-includes__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 768px) {
  .hero--banner {
    min-height: 720px;
    height: auto;
    padding: 4rem 0 3rem;
  }

  .header__phone {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .first-block .nav,
  .header--dark .nav {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .header--dark .nav .nav__link {
    color: var(--color-white);
  }

  .header__cta {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    text-align: center;
    align-items: center;
  }

  .footer__logo-link {
    justify-content: center;
  }

  .footer__contacts {
    align-items: center;
  }

  .reviews-slider__track {
    width: 500%;
  }

  .review-card {
    flex: 0 0 20%;
    flex-direction: column;
    align-items: center;
  }

  .reviews-slider__btn--prev {
    left: 0;
  }

  .reviews-slider__btn--next {
    right: 0;
  }

  .review-card__body {
    width: 100%;
  }

  .review-card__text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0;
  }

  .about--banner {
    padding: 4rem 0;
    min-height: auto;
  }

  .about__icon-wrap {
    width: 80px;
    height: 80px;
    padding: 12px;
  }

  .about__icon svg {
    width: 40px;
    height: 40px;
  }

  .about__text {
    font-size: 1.125rem;
  }

  .advantages__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advantages__circle {
    width: 160px;
    height: 160px;
  }

  .advantages__num {
    font-size: 2.25rem;
  }

  .advantages__text {
    font-size: 1.125rem;
    font-weight: 400;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .tariffs-grid {
    grid-template-columns: 1fr;
  }

  .tariff-includes__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .block-grid {
    grid-template-columns: 1fr;
  }
}
