.betaling-page {
  padding: 32px 0 48px;
}

.betaling-header {
  text-align: center;
  margin-bottom: 36px;
}

.betaling-header h1 {
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 12px;
}

.betaling-header .aesthetic-tag {
  display: block;
  margin-bottom: 8px;
}

.betaling-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.betaling-col p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.betaling-col h2 {
  font-size: 1.1rem;
  color: var(--secondary);
  margin: 24px 0 12px;
}

.betaling-col h2:first-of-type {
  margin-top: 0;
}

.betaling-img-wrap {
  margin: 0 0 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 500px;
}

.betaling-img-wrap img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
}

.betaling-table-wrap {
  grid-column: 1 / -1;
  margin-top: 8px;
  overflow-x: auto;
}

.betaling-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.betaling-table th,
.betaling-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 112, 166, 0.12);
}

.betaling-table th {
  background: rgba(255, 112, 166, 0.1);
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.betaling-table td {
  color: var(--muted);
}

.betaling-table tr:last-child td {
  border-bottom: none;
}

.betaling-table .neon-glow {
  color: var(--primary);
  font-weight: 600;
}

.betaling-note {
  grid-column: 1 / -1;
  background: rgba(112, 214, 255, 0.08);
  border-left: 3px solid var(--secondary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
}

.betaling-note p {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .betaling-split {
    grid-template-columns: 1fr;
  }
}
