﻿/* ——— ОБЩИЕ СТИЛИ ——— */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --ice: #f0f9ff;
  --frost: #e0f2fe;
  --glacier: #bae6fd;
  --deep-blue: #1e5daf;
  --midnight: #1e293b;
  --snow: #f8fafc;
  --text: #0f172a;
  --subtext: #475569;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(30, 64, 175, 0.08);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--ice);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— УТИЛИТЫ ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— ХЕДЕР ——— */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.logo-text {
  background: linear-gradient(135deg, var(--deep-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ——— НАВИГАЦИЯ ——— */
.main-nav {
  display: block;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--subtext);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--accent);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

/* ——— ГАМБУРГЕР ——— */
.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  transition: background-color var(--transition);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background-color: rgba(30, 41, 59, 0.06);
  outline: none;
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  cursor: pointer;
}

.hamburger span,
.hamburger span::before,
.hamburger span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.55, 0.09, 0.68, 0.53);
  position: absolute;
  left: 0;
}

.hamburger span {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span::before {
  content: '';
  top: -6px;
}

.hamburger span::after {
  content: '';
  top: 6px;
}

/* Анимация → крестик */
.menu-toggle[aria-expanded="true"] .hamburger span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .hamburger span::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ——— HERO ——— */
.hero {
  background: linear-gradient(135deg, var(--ice) 0%, var(--frost) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge i {
  color: #10b981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--deep-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--subtext);
  margin-bottom: 2.2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--accent);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 1.1rem 2.4rem;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.cta-button i {
  font-size: 24px;
}

.cta-button:hover {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(14, 165, 233, 0.3);
}

/* ——— СЕКЦИИ ——— */
section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-align: center;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--subtext);
  max-width: 680px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

/* Преимущества */
.features {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: var(--snow);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--glacier);
}

.feature-card i {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 1.3rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--text);
}

/* Тарифы */
.tariffs {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
}

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.tariff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tariff-card:hover {
  transform: scale(1.02);
}

.tariff-card i {
  font-size: 2.2rem;
  color: var(--subtext);
  margin-bottom: 1.2rem;
}

.tariff-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem 0 0.8rem;
  color: var(--text);
}

.price {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0.6rem 0;
}

.price span {
  font-size: 1rem;
  color: var(--subtext);
  font-weight: 500;
}

.show-all-button {
  display: block;
  margin: 2.5rem auto 0;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.15rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.show-all-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-hover), var(--deep-blue));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.show-all-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.45);
}

.show-all-button:hover::before {
  opacity: 1;
}

.show-all-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

/* ——— МОДАЛЬНОЕ ОКНО ——— */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 15px;
}

.modal-overlay.active {
  display: flex;
}

.modal-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow: visible;
}

.modal-dialog {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 90vh;
  overflow: hidden;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-header {
  padding: 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

/* Крестик — теперь относительно позиционированный, но с отступами */
.modal-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%); /* сместить вверх и вправо */
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--frost);
  border: none;
  color: var(--subtext);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.modal-close-btn:hover,
.modal-close-btn:focus-visible {
  background: var(--glacier);
  color: var(--accent);
  outline: none;
}

.modal-close-btn:hover {
  transform: translate(50%, -50%) rotate(90deg);
}

.modal-body {
  padding: 1.8rem 2rem 2rem;
  overflow-y: auto;
  max-height: calc(90vh - 140px);
  scrollbar-width: thin;
  scrollbar-color: var(--glacier) transparent;
}

/* Адаптив: на мобильных — чуть меньше размер, но тот же эффект */
@media (max-width: 768px) {
  .modal-close-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    transform: translate(40%, -40%);
  }

  .modal-header {
    padding: 16px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
    max-height: calc(90vh - 120px);
  }
}

@media (max-width: 480px) {
  .modal-close-btn {
    /*! width: 32px; */
    /*! height: 32px; */
    /*! font-size: 0.95rem; */
    /*! transform: translate(30%, -30%); */
  }

  .modal-header {
    padding: 14px;
  }

  .modal-title {
    font-size: 1.4rem;
  }
}

.price-category {
  margin-bottom: 2rem;
}

.price-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-category-title i {
  color: var(--accent);
}

.price-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--snow);
  border-radius: 10px;
  transition: var(--transition);
}

.price-list li:hover {
  background: var(--frost);
}

.price-label {
  font-weight: 600;
  color: var(--text);
}

.price-value {
  font-weight: 700;
  color: var(--accent);
}

.price-note {
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--frost);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--subtext);
  line-height: 1.6;
}

/* ——— РЕФЕРАЛЬНАЯ ПРОГРАММА ——— */
.referral {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.referral::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.referral-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 2;
}

.referral-card {
  background: var(--snow);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.referral-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--glacier);
}

/* Цветные акценты */
.referral-card.silver {
  border-top: 6px solid #cbd5e1;
}
.referral-card.gold {
  border-top: 6px solid #fbbf24;
  background: #fefce8;
}
.referral-card.platinum {
  border-top: 6px solid #a78bfa;
  background: #f5f3ff;
}

/* Иконки статусов */
.referral-card::before {
  content: '★';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.2rem;
  opacity: 0.2;
  pointer-events: none;
}

.referral-card.gold::before {
  content: '★★★';
  font-size: 1rem;
  letter-spacing: 4px;
}

.referral-card.platinum::before {
  content: '★★★★★';
  font-size: 1rem;
  letter-spacing: 4px;
}

.referral-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--text);
  background: linear-gradient(135deg, var(--deep-blue), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.referral-card.silver h3 {
  background: linear-gradient(to right, #64748b, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.referral-card.gold h3 {
  background: linear-gradient(to right, #d97706, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.referral-card.platinum h3 {
  background: linear-gradient(to right, #7e22ce, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.referral-card p {
  font-size: 0.98rem;
  color: var(--subtext);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.referral-bonus {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep-blue);
  background: rgba(239, 246, 255, 0.8);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  margin-top: 0.4rem;
  line-height: 1.4;
  border: 1px solid rgba(191, 219, 254, 0.5);
}

.referral-card.gold .referral-bonus {
  color: #b45309;
  background: rgba(254, 243, 199, 0.8);
  border-color: rgba(251, 191, 36, 0.4);
}

.referral-card.platinum .referral-bonus {
  color: #7c3aed;
  background: rgba(245, 243, 255, 0.8);
  border-color: rgba(167, 139, 250, 0.4);
}

.referral-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--subtext);
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
  padding: 0 1rem;
}

/* ——— ПАРТНЁРЫ ——— */
.partners {
  padding: 15px 0;
  background: #0ea5e924;
}

.partners-carousel {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.partners-track {
  display: inline-flex;
  gap: 40px;
  animation: scrollPartners 25s linear infinite;
  will-change: transform;
}

/* Остановка при наведении */
.partners-carousel:hover .partners-track {
  animation-play-state: paused;
}

.partner-logo,
.partners-track a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
  flex-shrink: 0;
}

.partners-track a:hover {
  opacity: 1;
  transform: scale(1.05);
}

.partners-track img {
  max-height: 100%;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(35%);
  transition: filter 0.3s;
}

.partners-track a:hover img {
  filter: grayscale(0%);
}

/* Ключевая анимация: прокрутка на 50% общей ширины (ровно до начала дублей) */
@keyframes scrollPartners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ——— FAQ ——— */
.faq {
  background: linear-gradient(135deg, var(--frost) 0%, var(--ice) 100%);
}

.faq-container {
  max-width: 760px;
  margin: 2.8rem auto 0;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 15px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0.8rem 0 0;
  color: var(--subtext);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.show {
  max-height: 200px;
  padding: 0.8rem 0;
}

/* ——— КОНТАКТЫ ——— */
.contact {
  background: var(--white);
}

.contact-box {
  max-width: 680px;
  margin: 2rem auto;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-group h3 {
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--deep-blue);
  font-size: 1.35rem;
}

.contact-desc {
  color: var(--subtext);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.6rem 0;
}

.contact-item i {
  width: 24px;
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent);
}

.telegram-link {
  color: var(--accent) !important;
  font-weight: 600;
}

.telegram-link:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.4rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.social-links a:hover {
  transform: translateY(-4px);
  color: var(--white);
  background: var(--accent);
}

/* ——— ОСНОВНОЙ КОНТЕНТ ——— */
.page-content {
  padding: 20px 0;
  background: var(--white);
}

.page-title {
  font-weight: 800;
  margin-bottom: 1.8rem;
  color: var(--text);
  text-align: center;
}

.agreement-text {
  font-size: 1.05rem;
  color: var(--text);
}

.agreement-text h2 {
  margin: 2rem 0 1rem;
  color: var(--deep-blue);
}

.agreement-text h3 {
  font-size: 1.3rem;
  margin: 1.6rem 0 0.8rem;
  color: var(--text);
}

.agreement-text p,
.agreement-text ul,
.agreement-text ol {
  margin-bottom: 1.2rem;
}

.agreement-text ul,
.agreement-text ol {
  padding-left: 1.5rem;
}

.agreement-text li {
  margin-bottom: 0.6rem;
}

hr {
  margin: 2.5rem 0;
  border: 0;
  border-top: 1px solid var(--glacier);
}

/* ——— ФУТЕР ——— */
footer {
  background: var(--midnight);
  color: #cbd5e1;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

footer p {
  margin: 0.4rem 0;
}

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* ——— АДАПТИВ ——— */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.2rem 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-radius: 0 0 var(--radius) var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 0.9rem 24px;
    color: var(--text);
    text-align: left;
    border-radius: 0;
  }

  .nav-list a:hover,
  .nav-list a:focus-visible {
    background: var(--frost);
    color: var(--accent);
  }

  .nav-list a::after {
    display: none;
  }

  /* Анимация гамбургера → крестик */
  .menu-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Секции */
  .hero h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  /* Модалка */
  .modal-title {
    font-size: 1.5rem;
  }

  .modal-close-btn {
    /*! top: 1rem; */
    /*! right: 1rem; */
  }

  .modal-body {
    padding: 20px;
    max-height: calc(90vh - 100px);
  }

  .price-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3.5rem 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .cta-button {
    padding: 1rem 1.8rem;
    font-size: 1.05rem;
  }

  .social-links a {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .modal-title {
    font-size: 1.4rem;
  }

  .price-category-title {
    font-size: 1.15rem;
  }
}

/* Поддержка prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}