:root {
  --red: #d72631;
  --black: #0b0b0b;
  --white: #ffffff;
  --text: #222;
  --text-h: #0b0b0b;
  --muted: #6b6b6b;

  --sans: system-ui, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font: 18px/1.6 var(--sans);
  color: var(--text);
  background: var(--white);
}

#root {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

h1,
h2 {
  font-family: var(--sans);
  color: var(--text-h);
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  :root {
    font-size: 16px;
  }
}
.site-main {
  flex: 1 1 auto;
  padding: 88px 20px 72px; /* reserve space for header/footer */
  box-sizing: border-box;
}

.container {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.page h1 {
  margin: 0 0 12px;
  color: var(--text-h);
}

.lead {
  color: var(--text);
  margin: 0 0 18px;
}

.sessions-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.session-item {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.session-time {
  width: 100px;
  color: var(--muted);
}

.session-title {
  color: var(--text-h);
}

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

.account-card {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.account-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(215, 38, 49, 0.1);
}

.account-card h2 {
  font-size: 20px;
  margin-bottom: 12px;
}

.account-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--red);
  margin: 16px 0 24px;
}

.account-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.account-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--text);
}

.account-features li:last-child {
  border-bottom: none;
}

.account-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.account-button:hover {
  background: #bb1f27;
}

@media (max-width: 768px) {
  .accounts-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 4px solid var(--red);
  z-index: 999;
}

.footer-inner {
  width: 1126px;
  max-width: 100%;
  padding: 0 16px;
}
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 72px;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  z-index: 1000;
  border-bottom: 4px solid var(--red);
}

.header-inner {
  width: 1126px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.language-switch {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
  font-size: 14px;
}

.language-switch:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.language-switch option {
  background: var(--black);
  color: var(--white);
}

.nav-link,
.nav-text {
  color: var(--white);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition:
    background 0.15s,
    color 0.15s;
}

.nav-link:hover {
  background: rgba(215, 38, 49, 0.08);
}

.nav-link.active {
  background: var(--red);
  color: var(--white);
}

.button {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}

.button:hover {
  background: rgba(215, 38, 49, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 600px) {
  .header-inner {
    padding: 0 12px;
  }
  .brand {
    font-size: 18px;
  }
  .main-nav {
    gap: 12px;
  }
}
