:root {
  --bg-dark: #050814;
  --bg-gradient: radial-gradient(circle at top, #151b3a, #050814 60%, #020309);
  --text-light: #f5f7ff;
  --text-muted: #b7bed8;
  --border-color: #252b3f;
  --accent-1: #6fd4ff;
  --accent-2: #a77bff;
  --card-bg: rgba(13, 18, 40, 0.85);
  --card-highlight: rgba(255, 255, 255, 0.04);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  background: #020309;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  background: none;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-gradient);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a {
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 8, 20, 0.95);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 18px;
}

.tagline {
  font-size: 12px;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: #a2aac5;
  font-size: 14px;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-1);
}

.nav-links a.active {
  color: var(--accent-1);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid #3a4260;
  color: var(--text-light);
  padding: 6px 10px;
  border-radius: 6px;
  margin-left: auto;
}

main {
  flex: 1 0 auto;
  padding: 44px 5% 90px;
  max-width: 1100px;
  margin: 90px auto 0;
}

.hero {
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.hero.hero-alt {
  padding-bottom: 40px;
}

.hero .eyebrow {
  display: inline-block;
  letter-spacing: 0.1em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--accent-1);
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

.faq-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.btn-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero .btn-row {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.2s ease,
    background 0.2s ease, color 0.2s ease;
  transform: translateY(0) scale(1);
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(111, 212, 255, 0.35);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #050814;
  font-weight: 600;
  box-shadow: 0 15px 30px rgba(111, 212, 255, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 25px 40px rgba(111, 212, 255, 0.35);
}

.btn-secondary {
  border-color: #3a4260;
  color: #d0d5f0;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--accent-1);
  color: var(--accent-1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: opacity 0.2s ease, border-color 0.2s ease;
  }

  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }

  .btn::before,
  .btn:hover::before {
    opacity: 0;
  }
}

.section {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.section h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.section p,
.section li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

.section-note {
  font-size: 12px;
  color: #8f97b8;
  margin-top: 12px;
}

.section-note a {
  color: var(--accent-1);
  text-decoration: none;
}

.section-note a:hover {
  text-decoration: underline;
}

.faq-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.faq-section {
  padding: 0 4px;
}

.faq-section h2 {
  font-size: 24px;
  margin-bottom: 22px;
  color: #eef2ff;
  border-bottom: 1px solid rgba(111, 212, 255, 0.3);
  padding-bottom: 12px;
}

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

.faq-card {
  background: rgba(9, 14, 32, 0.9);
  border-radius: 18px;
  padding: 24px;
  border-left: 4px solid transparent;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.faq-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 18px;
}

.faq-card ul {
  margin: 0;
  padding-left: 18px;
  color: #cfd5f5;
}

.faq-card li + li {
  margin-top: 8px;
}

.faq-card--ok {
  border-left-color: #22c55e;
}

.faq-card--ok h3 {
  color: #86efac;
}

.faq-card--ng {
  border-left-color: #ef4444;
}

.faq-card--ng h3 {
  color: #f87171;
}

.faq-credit-card {
  background: rgba(11, 17, 36, 0.95);
  border-radius: 18px;
  padding: 28px;
  box-shadow: inset 0 0 0 1px rgba(111, 212, 255, 0.2);
  color: #d2d6f5;
}

.faq-credit-card p {
  margin-top: 0;
  margin-bottom: 14px;
  color: inherit;
}

.credit-example {
  background: rgba(0, 0, 0, 0.45);
  padding: 16px;
  border-radius: 12px;
  font-family: ui-monospace, SFMono-Regular, SFMono, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #e2e8ff;
}

.credit-example p {
  margin: 4px 0;
}

.highlight {
  color: var(--accent-1);
  font-weight: 600;
}

.faq-note {
  background: rgba(13, 20, 45, 0.9);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #cbd5ff;
  line-height: 1.7;
}

.faq-note a {
  color: var(--accent-1);
}

@media (max-width: 640px) {
  .faq-section {
    padding: 0;
  }
}

.section.use-cases {
  margin-top: 80px;
  padding: 70px 0;
  border: none;
  background: linear-gradient(135deg, rgba(7, 12, 32, 0.98), rgba(5, 22, 62, 0.9));
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 40px 80px rgba(0, 0, 0, 0.45);
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.use-cases-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.section.use-cases::before,
.section.use-cases::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 212, 255, 0.2), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.section.use-cases::before {
  top: -40px;
  right: -60px;
}

.section.use-cases::after {
  bottom: -80px;
  left: -40px;
}

.section.use-cases h2,
.use-cases-subtitle {
  text-align: center;
  position: relative;
  z-index: 1;
}

.section.use-cases h2 {
  font-size: 28px;
  color: var(--accent-1);
  margin-bottom: 10px;
}

.use-cases-subtitle {
  font-size: 16px;
  color: #c7d0f5;
  margin-bottom: 32px;
}

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

.use-cases-grid {
  gap: 24px;
  position: relative;
  z-index: 1;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-highlight);
  border-radius: 12px;
  padding: 20px;
}

.use-case-card {
  text-align: left;
  padding: 30px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background: rgba(8, 13, 32, 0.8);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 15px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 1024px) {
  .use-cases-grid {
    display: flex;
    gap: 24px;
    width: 100%;
    padding: 0 40px;
  }

  .use-case-card {
    flex: 1 1 25%;
    min-height: 100%;
  }
}

.use-case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(111, 212, 255, 0.6);
  box-shadow: 0 20px 35px rgba(6, 15, 40, 0.8), 0 0 25px rgba(111, 212, 255, 0.25);
}

.use-case-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.use-case-header h3 {
  margin: 0;
  font-size: 18px;
  color: #f5f7ff;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0;
  color: var(--accent-1);
  background: rgba(111, 212, 255, 0.08);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .section.use-cases {
    padding: 40px 28px;
  }
}

.section-flow {
  margin-top: 90px;
  padding-top: 0;
  border: none;
}

.flow-inner {
  padding: 0;
}

.flow-subtitle {
  text-align: center;
  color: #c7d0f5;
  font-size: 15px;
  margin: 12px auto 40px;
  max-width: 640px;
}

.flow-timeline {
  position: relative;
  padding: 20px 0;
  max-width: 820px;
  margin: 0 auto;
}

.flow-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  transform: none;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  display: none;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.flow-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}

.flow-node {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(14, 116, 175, 0.9), rgba(56, 189, 248, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.45);
}

.flow-info {
  max-width: 420px;
  text-align: left;
}

.flow-info h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--accent-1);
}

.flow-info h4 {
  margin: 6px 0 8px;
  font-size: 22px;
  color: #f8fbff;
}

.flow-info p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.flow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--accent-1);
  text-decoration: none;
  font-size: 14px;
}

.flow-link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .flow-line {
    display: block;
    left: 30px;
    transform: none;
  }

  .flow-step {
    padding-left: 24px;
  }
}

.process-flow {
  margin-top: 32px;
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(7, 10, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(2, 5, 16, 0.6);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  max-width: 260px;
  flex: 1;
}

.process-number {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(111, 212, 255, 0.35), rgba(167, 123, 255, 0.35));
  color: #fff;
  border: 1px solid rgba(111, 212, 255, 0.3);
  box-shadow: 0 10px 20px rgba(111, 212, 255, 0.25);
}

.process-step h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-light);
}

.process-step p {
  margin: 0;
  line-height: 1.6;
}

.process-arrow {
  display: none;
  color: var(--accent-1);
  flex: none;
  align-self: center;
  margin: 0 6px;
}

.process-arrow svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .process-step {
    max-width: none;
  }

  .process-arrow {
    display: block;
  }
}
.step {
  position: relative;
  padding: 28px 24px 26px 72px;
  border-radius: 18px;
  background: rgba(7, 10, 24, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 30px rgba(2, 5, 16, 0.7);
  overflow: hidden;
}

.step-number {
  position: absolute;
  left: 16px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-1);
  background: rgba(111, 212, 255, 0.12);
  border: 1px solid rgba(111, 212, 255, 0.4);
  box-shadow: 0 4px 12px rgba(111, 212, 255, 0.2);
}

.step p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.track-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--card-highlight);
}

.track-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.track-meta {
  font-size: 12px;
  color: #a2aac5;
  margin-bottom: 12px;
}

.track-actions {
  display: flex;
  gap: 12px;
}

.track-actions a {
  flex: 1;
  text-align: center;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #3a4260;
  font-size: 13px;
}

.track-actions a:first-child {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

footer {
  text-align: center;
  padding: 24px 16px;
  font-size: 12px;
  color: #8086a5;
  border-top: 1px solid var(--border-color);
  background: var(--bg-dark);
}

/* Free BGM page */
.filter-panel {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-highlight);
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-panel input,
.filter-panel select,
.tag-button {
  background: transparent;
  border: 1px solid #3a4260;
  color: var(--text-light);
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.filter-panel input {
  flex: 1;
}

.tag-button {
  cursor: pointer;
}

.music-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.music-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-highlight);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.music-card h3 {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  color: var(--accent-1);
}

.card-footer {
  display: flex;
  gap: 10px;
}

.card-footer a {
  flex: 1;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #3a4260;
  font-size: 13px;
}

/* License page */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.rules-list {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-highlight);
  list-style: disc inside;
}

.terms-article {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid var(--card-highlight);
  margin-top: 20px;
}

.terms-article h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.terms-article ol {
  padding-left: 1.4em;
  color: var(--text-muted);
  line-height: 1.8;
}

.terms-article p {
  color: var(--text-muted);
}

/* Creators page */
.benefits-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  position: relative;
}

.benefits-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 56px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: radial-gradient(circle at 30% 20%, rgba(111, 212, 255, 0.25), rgba(167, 123, 255, 0.1));
  box-shadow: inset 0 0 15px rgba(111, 212, 255, 0.15);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.voices-block {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px dashed rgba(111, 212, 255, 0.35);
  background: rgba(10, 14, 32, 0.7);
}

.voices-block h3 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--text-light);
}

.voices-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
  line-height: 1.7;
}

.voices-list li + li {
  margin-top: 6px;
}

.list-check {
  list-style: disc inside;
}

.status-box {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  border: 1px dashed #3a4260;
  background: rgba(14, 20, 44, 0.75);
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.contact-form {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-highlight);
}

.contact-form--google {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-desc {
  margin: 0;
  color: var(--text-muted);
}

.google-form-btn {
  align-self: center;
  padding-inline: 28px;
}

.contact-form-note {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.contact-form-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #3a4260;
  background: transparent;
  color: var(--text-light);
  font-size: 14px;
}

.form-group textarea {
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
  color: #050814;
  font-weight: 600;
  cursor: pointer;
}

.contact-info {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--card-highlight);
  font-size: 14px;
  color: var(--text-muted);
}

.contact-info a {
  color: var(--accent-1);
  text-decoration: none;
}

@media (max-width: 840px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 12px 6%;
  }

  main {
    padding: 32px 6% 80px;
    margin-top: 90px;
  }

  .nav-links {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    background: #070b1d;
    flex-direction: column;
    padding: 16px 6%;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
  }

  .cards-grid,
  .steps-grid,
  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list li {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .benefits-list li:not(:last-child)::after {
    left: 0;
  }

  .benefit-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
