@media (max-width: 600px) {
  .hero__video {
    display: block !important;
    position: absolute !important;
    width: 100vw !important;
    height: 100% !important;
    min-height: 200px !important;
    object-fit: cover !important;
    z-index: 0 !important;
  }
  .hero {
    min-height: 200px !important;
    height: auto !important;
    position: relative !important;
  }
}
:root {
  --blue-900: #0b2e7a;
  --blue-700: #155eef;
  --blue-600: #1d6df2;
  --blue-100: #e9f1ff;
  --blue-50: #f4f8ff;
  --orange-600: #ff7a00;
  --orange-700: #f16d00;
  --text-900: #0b1220;
  --text-700: #344054;
  --text-500: #667085;
  --bg: #ffffff;
  --bg-light: #fafbfc;
  --border: #eef2f6;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 12px 24px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.12);
  --shadow-xl: 0 32px 64px rgba(16, 24, 40, 0.16);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-900);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue-900);
  transition: var(--transition);
}

.logo:hover {
  color: var(--blue-700);
}

.logo__img {
  height: 72px;
  width: auto;
  display: block;
}

.logo__icon {
  font-size: 24px;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--text-700);
  font-weight: 500;
  font-size: 15px;
}

.nav a {
  transition: var(--transition);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-700);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--blue-700);
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--orange-600);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(255, 122, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--orange-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 122, 0, 0.4);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn--outline {
  background: transparent;
  color: var(--blue-700);
  border-color: var(--blue-700);
  box-shadow: none;
}

.btn--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-700);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--blue-700);
  border: 2px solid var(--blue-700);
  box-shadow: none;
}

.btn--ghost:hover {
  background: var(--blue-700);
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--blue-50) 0%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 248, 255, 0.6) 100%);
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(21, 94, 239, 0.2);
  animation: floatIn 0.8s ease both;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.hero__subtitle {
  color: var(--text-700);
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeUp 0.95s ease both;
}

.hero__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--text-700);
  animation: fadeUp 1s ease both;
}

.hero__list li::before {
  content: "✔";
  color: var(--blue-700);
  margin-right: 10px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1.05s ease both;
}

.hero__note {
  margin-top: 16px;
  color: var(--text-500);
}

.hero__card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease both;
  border: 1px solid var(--border);
}

.hero__card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.18), transparent 70%);
}

.hero__card--banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #FF7A00 0%, #FF9500 100%);
  border: 3px solid #FF7A00;
  box-shadow: 0 20px 60px rgba(255, 122, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  position: relative;
  overflow: hidden;
}

.hero__card--banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

.hero__card--banner::after {
  content: "⭐ ЛУЧШИЙ";
  position: absolute;
  top: 16px;
  right: 16px;
  background: #FFD700;
  color: #FF7A00;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
  animation: scaleIn 0.8s ease both 0.5s;
}

.hero__banner-content h2 {
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero__banner-content p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero__banner-photo {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  z-index: 1;
}

.hero__banner-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 5px rgba(255, 255, 255, 0.4);
  background: var(--blue-100);
  border: 4px solid #fff;
  animation: floatIn 1.2s ease both;
}

.hero__badge--inline {
  background: #fff;
  color: #FF7A00;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeUp 1s ease both;
  border: 2px solid rgba(255, 122, 0, 0.3);
}

.hero__card h2 {
  font-size: 24px;
}

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

.hero__stats > div {
  text-align: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.hero__stats > div:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.hero__stat {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-bottom: 4px;
}

.hero__stats span:not(.hero__stat) {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section {
  padding: 90px 0;
}

.section--accent {
  background: var(--blue-50);
}

.section--light {
  background: var(--bg-light);
}

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 48px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section__head h2 {
  color: var(--text-900);
}

.section__head p {
  color: var(--text-700);
  font-size: 17px;
  line-height: 1.6;
}

.section__actions {
  margin-top: 28px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--features {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.grid--process {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid--masters {
  grid-template-columns: repeat(3, 1fr);
}

.grid--reviews {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid--gallery {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 94, 239, 0.2);
}

.card__icon {
  width: 72px;
  height: 72px;
  display: block;
  transition: var(--transition);
  object-fit: contain;
  flex-shrink: 0;
}

.card:hover .card__icon {
  transform: scale(1.1) translateY(-4px);
}

.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-900);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 8px 0 0 0;
}

.card p {
  color: var(--text-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.card__price {
  display: inline-block;
  margin-top: auto;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--blue-100);
  align-self: flex-start;
}

.master-card {
  text-align: center;
  gap: 20px;
  padding: 28px;
}

.master-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--blue-100);
  object-fit: cover;
  border: 4px solid var(--blue-100);
  box-shadow: var(--shadow-sm);
}

.master-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.master-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-900);
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 4px;
}

.master-card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.master-card__stars {
  color: var(--orange-600);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.master-card__score {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-900);
}

.master-card__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.master-card__info li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-700);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.master-card__info strong {
  color: var(--blue-700);
  font-weight: 600;
}

.master-card p {
  color: var(--text-500);
  font-weight: 500;
}

.list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--text-700);
}

.list li::before {
  content: "•";
  color: var(--orange-600);
  margin-right: 10px;
}

.feature {
  background: #fff;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-700);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 94, 239, 0.2);
}

.step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  color: var(--text-700);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(21, 94, 239, 0.2);
}

.step span {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-100);
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 14px;
}

.table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.table__row {
  display: flex;
  justify-content: space-between;
  padding: 20px 28px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 15px;
  transition: background 0.2s ease;
}

.table__row:hover {
  background: var(--bg-light);
}

.table__row--head {
  background: var(--blue-100);
  font-weight: 700;
  color: var(--blue-900);
}

.table__row--head:hover {
  background: var(--blue-100);
}

.table__row:last-child {
  border-bottom: none;
}

/* Reviews Slider */
.reviews-slider {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
  margin-top: 48px;
}

.reviews-slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
  padding-right: 0px;
}

.reviews-slider .review {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  color: var(--text-700);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  line-height: 1.7;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 280px;
}

.reviews-slider .review:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.reviews-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  color: var(--blue-700);
  transition: all 0.2s;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.reviews-slider__btn:hover {
  background: var(--blue-700);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.reviews-slider__btn--prev {
  left: 0;
}

.reviews-slider__btn--next {
  right: 0;
}

.reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.reviews-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue-100);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.reviews-slider__dot:hover {
  background: var(--blue-600);
  transform: scale(1.2);
}

.reviews-slider__dot--active {
  background: var(--blue-700);
  width: 32px;
  border-radius: 6px;
}

.review__header {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-100);
  box-shadow: var(--shadow-xs);
}

.review__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.review__name {
  font-weight: 600;
  color: var(--text-900);
  font-size: 16px;
  letter-spacing: -0.01em;
}

.review__location {
  font-size: 13px;
  color: var(--text-500);
}

.review__rating {
  color: var(--orange-600);
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
}

.review__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-700);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.slider__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider__item {
  min-width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
}

.slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-700);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  font-weight: 300;
}

.slider__btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.slider__btn--prev {
  left: 16px;
}

.slider__btn--next {
  right: 16px;
}

.slider__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider__dot--active {
  background: #fff;
  width: 28px;
  border-radius: 5px;
}

.slider__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.price-category {
  margin-bottom: 48px;
}

.price-category:last-child {
  margin-bottom: 0;
}

.price-category__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blue-50);
  border: 2px solid var(--blue-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 16px;
}

.price-category__header:hover {
  background: var(--blue-100);
  border-color: var(--blue-600);
}

.price-category__header.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
}

.price-category__header.active .price-category__title {
  color: #fff;
}

.price-category__header.active .price-category__icon {
  color: #fff;
  transform: rotate(180deg);
}

.price-category__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-900);
  margin: 0;
  text-align: left;
}

.price-category__icon {
  font-size: 20px;
  color: var(--blue-700);
  transition: transform 0.3s ease;
  line-height: 1;
}

.price-list {
  display: grid;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-bottom: 0;
}

.price-list.active {
  max-height: 5000px;
  opacity: 1;
  margin-bottom: 24px;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.price-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(21, 94, 239, 0.2);
}

.price-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.price-item__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-900);
}

.price-item__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-700);
}

.btn--small {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.form {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  max-width: 600px;
  margin: 0 auto;
}

.form label {
  display: grid;
  gap: 10px;
  color: var(--text-700);
  font-weight: 600;
  font-size: 15px;
}

.form input,
.form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  font-family: inherit;
  font-size: 15px;
  transition: var(--transition);
  background: var(--bg);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(21, 94, 239, 0.1);
  background: #fff;
}

.form__note {
  color: var(--text-500);
  font-size: 14px;
  text-align: center;
}

.footer {
  padding: 50px 0;
  background: #0b1b3f;
  color: #fff;
}

.section--discount {
  background: linear-gradient(120deg, #0b2e7a 0%, #155eef 60%, #1d6df2 100%);
  color: #fff;
}

.discount {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.discount h2 {
  color: #fff;
  margin-bottom: 12px;
}

.discount p {
  color: rgba(255, 255, 255, 0.8);
}

.discount__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.section--discount .btn--ghost {
  color: #fff;
  border-color: #fff;
}

.section--discount .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer {
  padding: 60px 0;
  background: linear-gradient(135deg, #0b1b3f 0%, #0b2e7a 100%);
  color: #fff;
}

.footer h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition);
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.call-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  padding: 16px 26px;
  border-radius: 999px;
  background: var(--orange-600);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.4);
  display: none;
  animation: pulse 2.4s ease-in-out infinite;
  border: 2px solid transparent;
  transition: var(--transition);
}

.call-float:hover {
  background: var(--orange-700);
  transform: scale(1.05);
}

.popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  padding: 20px;
}

.popup--show {
  opacity: 1;
  pointer-events: auto;
}

.popup__content {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.25s ease;
  border: 1px solid var(--border);
}

.popup__content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--blue-700);
}

.popup__content p {
  color: var(--text-700);
  margin-bottom: 24px;
  font-size: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal--show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(255, 122, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

@media (max-width: 960px) {
  .header__inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .hero__card {
    order: -1;
  }

  .hero__card--banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__banner-photo {
    justify-items: flex-start;
  }

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

  .section {
    padding: 70px 0;
  }

  .reviews-slider {
    padding: 0 50px;
  }

  .reviews-slider__track {
    padding-right: 0;
    gap: 24px;
  }

  .reviews-slider .review {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 720px) {
  .nav {
    display: none;
  }

  .grid--masters {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .header__inner {
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 16px 0;
    flex-wrap: nowrap;
  }

  .header__inner .btn {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
    min-width: auto;
    width: auto;
    margin-top: 5px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 333px;
  }

  .hero__content {
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__list {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .hero__list li {
    font-size: 14px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero__note {
    font-size: 12px;
  }

  .hero__card--banner {
    display: none;
  }

  .hero__video {
    height: 100%;
    object-fit: cover;
  }

  .hero__overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(244, 248, 255, 0.75) 100%);
  }

  .section {
    padding: 60px 0;
  }

  .section__head {
    margin-bottom: 36px;
  }

  .discount__actions {
    display: none;
  }

  .call-float {
    display: inline-flex;
  }

  .btn:not(.header__inner .btn) {
    width: 100%;
  }

  .grid--cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card {
    padding: 16px;
    gap: 8px;
    text-align: center;
    align-items: center;
  }

  .card__icon {
    width: 56px;
    height: 56px;
  }

  .card h3 {
    font-size: 14px;
    margin: 0;
    line-height: 1.2;
  }

  .card p {
    display: none;
  }

  .card__price {
    font-size: 13px;
    padding: 6px 12px;
    margin-top: 4px;
  }

  .table__row {
    flex-direction: column;
    gap: 8px;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn--small {
    width: 100%;
  }

  .reviews-slider {
    padding: 0 45px;
  }

  .reviews-slider__track {
    padding-right: 0;
    gap: 20px;
  }

  .reviews-slider .review {
    flex: 0 0 calc(100% - 20px);
    padding: 24px;
    gap: 16px;
  }

  .reviews-slider__btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .review__avatar {
    width: 48px;
    height: 48px;
    border-width: 2px;
  }

  .review__name {
    font-size: 15px;
  }

  .review__location {
    font-size: 12px;
  }

  .review__rating {
    font-size: 16px;
  }

  .review__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .reviews-slider__dots {
    margin-top: 24px;
    gap: 8px;
  }

  .reviews-slider__dot {
    width: 10px;
    height: 10px;
  }

  .reviews-slider__dot--active {
    width: 24px;
  }
}

@media (max-width: 520px) {
  .header__inner {
    gap: 16px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 450px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero__video {
    object-fit: cover;
  }

  .hero__overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(244, 248, 255, 0.8) 100%);
  }

  .hero__card {
    padding: 20px;
  }

  .reviews-slider {
    padding: 0 35px;
  }

  .reviews-slider__track {
    gap: 16px;
  }

  .reviews-slider .review {
    flex: 0 0 calc(100% - 16px);
    padding: 20px;
    gap: 14px;
    min-height: auto;
  }

  .reviews-slider__btn {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .review__header {
    gap: 12px;
  }

  .review__avatar {
    width: 44px;
    height: 44px;
  }

  .review__name {
    font-size: 14px;
  }

  .review__location {
    font-size: 11px;
  }

  .review__rating {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .review__text {
    font-size: 13px;
    line-height: 1.5;
  }

  .reviews-slider__dots {
    margin-top: 20px;
    gap: 6px;
  }

  .reviews-slider__dot {
    width: 8px;
    height: 8px;
  }

  .reviews-slider__dot--active {
    width: 20px;
  }

  .form {
    padding: 28px;
  }

  .section {
    padding: 50px 0;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }
}
