/* ===========================
   SANTOS ROLEPLAY – GLOBAL STYLE
   =========================== */

/* Root Variables: Colors, Spacing, Fonts */
:root {
  /* SRP Color Palette */
  --srp-mint: #65F0C8;
  --srp-sky: #65BDF0;
  --srp-cyan: #64E9F0;
  --srp-lime: #65F099;
  --srp-blue: #6591F0;
  --srp-aqua: #41E7F0;

  /* Neutrals & Backgrounds */
  --bg-main: #05060a;
  --bg-elevated: #0c1018;
  --bg-elevated-2: #151b26;
  --border-subtle: rgba(255, 255, 255, 0.05);

  --text-main: #f9fbff;
  --text-muted: #9aa3b8;
  --text-soft: #6b7280;

  /* Accent / States */
  --accent-primary: var(--srp-cyan);
  --accent-secondary: var(--srp-blue);
  --accent-success: var(--srp-lime);
  --accent-danger: #ff4c6a;
  --accent-warning: #ffd95e;

  /* Shadows + Radius */
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);
  --shadow-subtle: 0 8px 25px rgba(0, 0, 0, 0.35);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 999px;

  /* Layout */
  --max-width: 1120px;
  --section-padding-y: 1.5rem;
  --section-padding-y-mobile: 1.5rem;
  --gutter: 1.5rem;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: clamp(2.3rem, 5vw, 3.2rem);

  /* Animation */
  --transition-fast: 150ms ease-out;
  --transition-med: 220ms ease-out;
  --transition-slow: 320ms ease;
}

/* ===========================
   RESET & BASE
   =========================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs-md);
  line-height: 1.6;
  background: radial-gradient(circle at top, #151b26 0, #05060a 45%, #020307 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Scrollbar (nice but subtle) */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #05060a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--srp-aqua),
    var(--srp-blue)
  );
  border-radius: 999px;
}

/* ===========================
   LAYOUT HELPERS
   =========================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.section {
  padding: var(--section-padding-y-mobile) 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section__header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--srp-aqua);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  margin: 0 0 0.75rem;
}

.section__subtitle {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--text-muted);
}

/* ===========================
   NAVIGATION
   =========================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.92),
    rgba(5, 6, 10, 0.7),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 0.8rem;
  background: radial-gradient(circle at 30% 20%, var(--srp-mint), #05060a 60%);
  box-shadow: 0 0 25px rgba(101, 240, 200, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.nav__brand-text {
  display: flex;
  flex-direction: column;
}

.nav__title {
  font-size: var(--fs-md);
  font-weight: 600;
}

.nav__subtitle {
  font-size: var(--fs-xs);
  color: var(--text-soft);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
  font-size: var(--fs-sm);
}

.nav__link {
  position: relative;
  padding-block: 0.25rem;
  color: var(--text-muted);
  transition: color var(--transition-med);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--srp-mint), var(--srp-blue));
  transition: width var(--transition-med);
}

.nav__link:hover {
  color: var(--text-main);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  display: none;
}

/* Mobile Toggle (if du später JS nutzt) */
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 20, 0.85);
  cursor: pointer;
  transition: background var(--transition-med), transform var(--transition-fast);
}

.nav__toggle:active {
  transform: scale(0.96);
}

.nav__toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
  position: relative;
}

.nav__toggle-line::before,
.nav__toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-main);
}

.nav__toggle-line::before {
  top: -6px;
}
.nav__toggle-line::after {
  bottom: -6px;
}

/* ===========================
   HERO
   =========================== */

.hero {
  padding: 4.5rem 0 4rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: center;
}

.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(101, 240, 200, 0.4);
  background: radial-gradient(circle at 0 0, rgba(101, 240, 200, 0.25), transparent 65%);
  font-size: var(--fs-xs);
  color: var(--text-main);
}

.hero__ping {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-success);
  box-shadow: 0 0 12px rgba(101, 240, 153, 0.9);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  margin: 0 0 0.75rem;
}

.hero__highlight {
  background: linear-gradient(120deg, var(--srp-mint), var(--srp-blue));
  -webkit-background-clip: text;
  color: transparent;
}

.hero__text {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Reusable Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-med), color var(--transition-med),
    border-color var(--transition-med);
}

.btn--primary {
  background-image: linear-gradient(
    135deg,
    var(--srp-mint),
    var(--srp-sky),
    var(--srp-blue)
  );
  color: #020308;
  box-shadow: 0 10px 25px rgba(101, 189, 240, 0.45);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(101, 189, 240, 0.7);
}

.btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(101, 189, 240, 0.5);
}

.btn--ghost {
  background: rgba(12, 16, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(15, 21, 34, 0.95);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-size: var(--fs-xs);
  color: var(--text-soft);
}

.hero__meta-pill {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 10, 17, 0.85);
}

/* Hero Right: Visual Card / Mockup */
.hero__visual {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #151b26 0, #05060a 60%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-card__inner {
  border-radius: calc(var(--radius-lg) - 0.25rem);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at 10% 0, rgba(101, 240, 200, 0.18), transparent 60%),
    radial-gradient(circle at 90% 100%, rgba(101, 145, 240, 0.18), transparent 55%);
  padding: 1.25rem;
  position: relative;
}

/* Simple server-status style rows */
.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  padding: 0.5rem 0;
}

.status-row + .status-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.status-row__label {
  color: var(--text-soft);
}

.status-row__value {
  font-weight: 600;
}

/* A tiny progress bar style for player slots etc. */
.progress {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.progress__fill {
  width: 60%; /* adjust via inline style in HTML später */
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--srp-mint),
    var(--srp-cyan),
    var(--srp-blue)
  );
}

/* Floating tags in hero visual */
.hero-tag {
  position: absolute;
  inset-inline-start: 8%;
  inset-block-start: 10%;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(5, 6, 10, 0.85);
  border: 1px solid rgba(101, 240, 200, 0.35);
  font-size: var(--fs-xs);
  box-shadow: var(--shadow-subtle);
}

/* ===========================
   FEATURE GRID / ABOUT
   =========================== */

.features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.3rem;
  background: linear-gradient(
    145deg,
    rgba(21, 29, 44, 0.96),
    rgba(7, 10, 17, 0.98)
  );
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 0.9rem;
  background: radial-gradient(circle at 30% 20%, var(--srp-aqua), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.feature-card__title {
  font-size: var(--fs-lg);
  font-weight: 600;
}

.feature-card__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ===========================
   TIMELINE / HOW-TO-START
   =========================== */

.timeline {
  display: grid;
  gap: 1.25rem;
}

.timeline-step {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(9, 12, 20, 0.92);
  position: relative;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  inset-block-start: 1rem;
  inset-inline-end: 1.1rem;
  font-size: var(--fs-xs);
  padding: 0.1rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
}

.timeline-step__title {
  font-size: var(--fs-md);
  font-weight: 600;
}

.timeline-step__text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ===========================
   FAQ
   =========================== */

.faq {
  max-width: 42rem;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 12, 20, 0.95);
  padding: 0.9rem 1rem;
}

.faq-item + .faq-item {
  margin-top: 0.75rem;
}

.faq-item__question {
  font-size: var(--fs-sm);
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq-item__answer {
  margin-top: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* ===========================
   CTA / JOIN SECTION
   =========================== */

.cta {
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  background: radial-gradient(circle at 0 0, rgba(101, 240, 200, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(101, 145, 240, 0.25), transparent 60%),
    #05060a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.25rem;
}

.cta__title {
  font-size: var(--fs-xl);
  margin: 0 0 0.15rem;
}

.cta__text {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

.cta__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ===========================
   FORM ELEMENTS (Kontakt / Whitelist)
   =========================== */

.form {
  display: grid;
  gap: 1rem;
}

.form__row {
  display: grid;
  gap: 0.75rem;
}

.form__label {
  font-size: var(--fs-sm);
  color: var(--text-soft);
}

.form__control {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 17, 0.95);
  padding: 0.6rem 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-main);
  outline: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med),
    background var(--transition-med);
}

.form__control::placeholder {
  color: var(--text-soft);
}

.form__control:focus {
  border-color: rgba(101, 189, 240, 0.9);
  box-shadow: 0 0 0 1px rgba(101, 189, 240, 0.6);
  background: rgba(9, 13, 22, 1);
}

textarea.form__control {
  min-height: 120px;
  resize: vertical;
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at bottom, #151b26 0, #05060a 45%, #020307 100%);
}

.footer__inner {
  display: grid;
  gap: 1.5rem;
  font-size: var(--fs-xs);
  color: var(--text-soft);
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__link {
  text-decoration: none;
  color: var(--text-soft);
}

.footer__link:hover {
  color: var(--text-main);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

/* ===========================
   UTILITIES
   =========================== */

.text-center {
  text-align: center;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(9, 13, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--fs-xs);
  color: var(--text-soft);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  background: rgba(9, 12, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Generic grid helper */
.grid {
  display: grid;
  gap: 1.25rem;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* ≥ 640px - small tablets */
@media (min-width: 640px) {
  .section {
    padding: var(--section-padding-y) 0;
  }

  .hero {
    padding-top: 5.5rem;
    padding-bottom: 4.75rem;
  }

  .cta {
    padding: 2rem 2.1rem;
  }

  .form__row--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

/* ≥ 768px - tablets / small laptops */
@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }

  .nav__cta {
    display: inline-flex;
  }

  .nav__toggle {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2.75rem;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: start;
  }

  .cta {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }

  .footer__inner {
    gap: 1rem;
  }
}

/* ≥ 1024px - desktops */
@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.2rem;
  }

  .section__title {
    font-size: 2.1rem;
  }

  .hero-card {
    transform: translateY(6px);
  }

  .hero__visual {
    max-width: 420px;
    margin-left: auto;
  }

  .container {
    padding-inline: 1.5rem;
  }
}

/* ≥ 1280px - large desktops */
@media (min-width: 1280px) {
  :root {
    --max-width: 1200px;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero__inner {
    gap: 3.5rem;
  }
}

.nav__img-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.hero__visual--logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-anim {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: contain;
  animation: floatLogo 4s ease-in-out infinite;
}

/* leichtes floaten für premium vibes */
@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* NAV: Mobile Dropdown, wenn .nav--open gesetzt ist */
.nav--open .nav__links,
.nav--open .nav__cta {
  display: flex;
}

.nav--open .nav__links {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding: 0.75rem 1.25rem 1rem;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.98),
    rgba(5, 6, 10, 0.96)
  );
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav--open .nav__cta {
  justify-content: flex-start;
  padding: 0.5rem 1.25rem 0.75rem;
}

@media (min-width: 768px) {
  .nav--open .nav__links {
    position: static;
    flex-direction: row;
    padding: 0;
    background: transparent;
    border-bottom: none;
  }

  .nav--open .nav__cta {
    padding: 0;
  }
}

/* Logo-Bild in der Navigation */
.nav__img-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===========================
   TABS (Regelwerk / Wörterliste / Fraktionsregeln)
   =========================== */

.tabs {
  margin-bottom: 2rem;
}

.tabs__list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(7, 10, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tabs__tab {
  position: relative;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  color: var(--text-soft);
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: none;
  transition:
    background var(--transition-med),
    color var(--transition-med),
    box-shadow var(--transition-med),
    transform var(--transition-fast);
}

.tabs__tab:hover {
  color: var(--text-main);
  background: rgba(13, 18, 30, 0.95);
}

.tabs__tab--active {
  color: #020308;
  background-image: linear-gradient(
    135deg,
    var(--srp-mint),
    var(--srp-cyan),
    var(--srp-blue)
  );
  box-shadow: 0 10px 25px rgba(101, 189, 240, 0.5);
  transform: translateY(-1px);
}

/* ============================
   LISTEN-STYLES (UL / OL)
   Für Regelwerk, Wörterliste, Fraktionsregeln
   ============================ */

.feature-card__text ul,
.feature-card__text ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.4rem;
}

.feature-card__text li {
  margin-bottom: 0.6rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

/* Bullet-Styling für UL */
.feature-card__text ul li {
  list-style: none;
  position: relative;
  padding-left: 1.2rem;
}

.feature-card__text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;

  /* Bullet in Santos-Farben (leichtes Glow) */
  background: #65E9F0;
  box-shadow: 0 0 6px #65E9F0aa;
}

/* Nummerierte Listen hübscher machen */
.feature-card__text ol {
  counter-reset: santosCounter;
  padding-left: 0;
}

.feature-card__text ol > li {
  list-style: none;
  counter-increment: santosCounter;
  padding-left: 2rem;
  position: relative;
}

.feature-card__text ol > li::before {
  content: counter(santosCounter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;

  /* Nummer im Santos-Akzent */
  color: #65E9F0;
}

/* Verschachtelte UL in OL (z. B. Beispiele) */
.feature-card__text ol ul {
  margin-top: 0.4rem;
  padding-left: 1.4rem;
}

.feature-card__text ol ul li::before {
  background: #65BDF0;
  box-shadow: 0 0 5px #65BDF0aa;
}

/* Optional: Abstand letzter Punkt */
.feature-card__text li:last-child {
  margin-bottom: 0.2rem;
}
