:root {
  --color-primary: #0f172a;
  --color-secondary: #38bdf8;
  --color-accent: #f97316;
  --color-bg: #020617;
  --color-surface: #020617;
  --color-text: #e5e7eb;
  --radius-base: Large card corners;
  --layout-container-width: 1200px;
  --layout-gutter-x: 1.5rem;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
}

/* Базовый контейнер, чтобы все страницы были визуально согласованы */
.site-container {
  max-width: var(--layout-container-width);
  margin-inline: auto;
  padding-inline: var(--layout-gutter-x);
}

/* Общие utility-классы, которые ИИ может использовать в Tailwind-окружении */
.site-card {
  border-radius: var(--radius-base);
  background-color: var(--color-surface);
}

/* Кнопки на всякий случай (если модель захочет использовать эти классы) */
.btn-primary-soft {
  border-radius: var(--radius-base);
  background: var(--color-primary);
  color: white;
}

.btn-primary-soft:hover {
  filter: brightness(1.05);
}

/* Минимальная адаптация шапки/футера, если модель захочет использовать */
.site-header,
.site-footer {
  backdrop-filter: blur(12px);
}
.faq-icon {
  transition: transform 0.3s ease;
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}
.process-step {
  border-radius: 32px;
}
.title-condensed {
  font-stretch: condensed;
  letter-spacing: -0.02em;
}
.title-condensed {
  font-stretch: condensed;
  letter-spacing: -0.02em;
}
.btn-rounded {
  border-radius: 22px;
}
.card-rounded {
  border-radius: 22px;
}
.card-showcase {
  border-radius: 32px;
}
.testimonial-card {
  border-radius: 22px;
}

.avatar-circle {
  display: inline-block;
}
.btn-rounded {
  border-radius: 22px;
}
.title-condensed {
  font-stretch: condensed;
  letter-spacing: -0.02em;
}
.title-condensed {
  font-stretch: condensed;
  letter-spacing: -0.02em;
}

.btn-rounded {
  border-radius: 22px;
}

.avatar-circle {
  display: inline-block;
}
.journey-section {
  background-color: #ffffff;
  color: #0f172a;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .journey-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .journey-section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.journey-container {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.journey-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .journey-title {
    font-size: 3rem;
  }
}

.journey-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-item {
  display: flex;
  gap: 1.5rem;
}

.journey-year {
  flex-shrink: 0;
  width: 5rem;
  text-align: right;
  font-weight: 700;
  color: #facc15;
}

.journey-content {
  flex: 1;
}

.journey-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.journey-text {
  color: #475569;
}