:root {
  --bg-body: #061224;
  --bg-header: #040c1a;
  --bg-card: #0c1d38;
  --bg-item: #112647;

  --accent-orange: #ff5e00;
  --accent-orange-hover: #ff7700;

  --text-white: #ffffff;
  --text-light: #d0e0f5;
  --text-muted: #8ca2c0;

  --border-color: rgba(255, 255, 255, 0.08);

  --radius-sm: 6px;
  --radius-md: 8px;

  --container-max: 1000px;
  --font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.content {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px 0.5rem;
}
html,
body {
  background-color: var(--bg-body);
  color: var(--text-light);
  font-family: var(--font-family);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Container System */
.content-shell {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .content-shell {
    padding: 0 1rem;
  }
}

/* Header Bar */
.site-header {
  background-color: var(--bg-header);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.6rem 0;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--text-white);
  text-transform: uppercase;
  font-style: italic;
}

.logo-text span {
  color: var(--accent-orange);
  font-style: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-header-login {
  background-color: var(--bg-item);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-block;
}

.btn-header-reg {
  background: linear-gradient(180deg, #ff7700 0%, #ff5e00 100%);
  color: var(--text-white);
  border: none;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(255, 94, 0, 0.4);
}

/* Headings - Center aligned without bar indicators */
.general-h1 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-align: center;
}

.general-h2 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  text-align: center;
}

.general-h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0.75rem 0 0.4rem 0;
  text-align: center;
}

.general-p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.text-accent-subtitle {
  font-weight: 700;
  color: var(--text-white);
  margin: 0.85rem 0 0.5rem 0;
  display: block;
}

/* Compact Sections - Minimal gaps */
.content-section {
  padding: 0.25rem 0;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 0.4rem;
}

@media (min-width: 640px) {
  .section-card {
    padding: 1.1rem;
    margin-bottom: 0.5rem;
  }
}

/* Tables */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0.65rem 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--bg-item);
  -webkit-overflow-scrolling: touch;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.88rem;
}

.general-table th {
  background-color: #09172e;
  color: var(--accent-orange);
  font-weight: 700;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.general-table td {
  padding: 0.55rem 0.75rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  word-break: break-word;
}

.general-table tr:last-child td {
  border-bottom: none;
}

.general-table tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.02);
}

.spec-table td:first-child {
  font-weight: 700;
  color: var(--text-white);
  width: 38%;
  background-color: rgba(0, 0, 0, 0.15);
}

/* Lists */
.card-grid-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin: 0.65rem 0;
}

@media (min-width: 640px) {
  .card-grid-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-grid-item {
  background: var(--bg-item);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  color: var(--text-light);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-grid-item::before {
  content: "•";
  color: var(--accent-orange);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Step Cards */
.step-cards-list {
  list-style: none;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  margin: 0.65rem 0;
}

@media (min-width: 640px) {
  .step-cards-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card-item {
  counter-increment: step-counter;
  background: var(--bg-item);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem 0.55rem 2.3rem;
  color: var(--text-light);
  font-size: 0.88rem;
  position: relative;
}

.step-card-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background: var(--accent-orange);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.72rem;
}

/* Centered CTA Elements */
.cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0.85rem 0;
}

.cta-element {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  background: linear-gradient(180deg, #ff7700 0%, #ff5e00 100%);
  color: var(--text-white);
  font-weight: 800;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  box-shadow: 0 3px 10px rgba(255, 94, 0, 0.35);
  text-align: center;
  border: none;
}

/* FAQ */
.faq-stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.faq-card {
  background: var(--bg-item);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.faq-card .general-h3 {
  margin: 0 0 0.35rem 0;
  color: var(--text-white);
  font-size: 0.95rem;
  text-align: center;
}

.faq-card .general-p {
  margin-bottom: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.25rem 0;
  background: var(--bg-header);
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-wrap {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.logo img {
  display: block;
  max-width: 100%;
  height: auto;
}
