:root {
  --gold: #d5a411;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #222;
}

/* отступ, чтобы контент не залезал под fixed-top navbar */
.page-offset {
  padding-top: 80px;
}

/* Hero */

.hero {
  min-height: 100vh;
  padding-top: 96px;
  padding-bottom: 96px;
  background: radial-gradient(circle at top left, #333, #000);
  color: #fff;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 32rem;
}

.hero-label {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-card {
  background: rgba(0, 0, 0, 0.55);
  border-radius: 1rem;
  padding: 1.75rem;
}

/* Navbar */

.navbar {
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.92) !important;
}

.navbar .nav-link {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.navbar .nav-link.active {
  color: var(--gold) !important;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 0.8rem;
}

/* Кнопки */

.btn-gold {
  background-color: var(--gold);
  border-color: var(--gold);
  color: #000;
  border-radius: 999px;
  padding-inline: 1.5rem;
}

.btn-gold:hover {
  background-color: #e4b723;
  border-color: #e4b723;
  color: #000;
}

/* Общие блоки */

.section-padding {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 600;
}

/* Список с галочками */

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
}

.list-check li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--gold);
  font-weight: 700;
}

/* Иконки-преимущества */

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Ссылки */

.link-gold {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.link-gold:hover {
  color: #f0c52d;
}

/* Таблица расписания */

.schedule-table thead th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.schedule-table tbody td {
  font-size: 0.9rem;
}

/* Карточки */

.teacher-card img {
  object-fit: cover;
  height: 260px;
}

.tariff-card {
  border-radius: 1rem;
}

.tariff-price {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Footer */

.footer {
  font-size: 0.85rem;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}