/* ===================================================
   Lokal Im Fokus – Globales Stylesheet
   =================================================== */

/* --- Local Fonts --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- CSS Custom Properties --- */
:root {
  --primary:     #1B3A6B;
  --primary-dark:#132D54;
  --accent:      #E8722A;
  --accent-dark: #D0641F;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F7FB;
  --text:        #1A1A2E;
  --text-muted:  #6B7280;
  --border:      #DDE3EE;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(27, 58, 107, 0.10);
  --shadow-lg:   0 8px 40px rgba(27, 58, 107, 0.16);
  --max-width:   1100px;
  --nav-height:  72px;
  --transition:  0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-muted); }

/* --- Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  margin-bottom: 1rem;
}

.section__desc {
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 114, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 16px rgba(27, 58, 107, 0.10);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.nav__logo-text span {
  color: var(--accent);
}

.nav--hero .nav__logo-text {
  color: #fff;
}

.nav--hero .nav__logo-text span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.nav--hero .nav__link {
  color: rgba(255,255,255,0.78);
}

.nav--hero .nav__link:hover {
  color: #fff;
}

.nav__cta {
  margin-left: 1rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav--hero .nav__hamburger span {
  background: #fff;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--bg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile .nav__link {
  color: var(--text);
  font-size: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,114,42,0.10) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 5rem;
}

.hero__content {
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 114, 42, 0.18);
  border: 1px solid rgba(232, 114, 42, 0.35);
  color: #F9A875;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__title {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero__title .accent {
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.35);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* --- Steps (Wie es funktioniert) --- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.step__number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.step__connector {
  display: none;
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

@media (min-width: 640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 960px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .step:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
}

/* --- USPs --- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
  row-gap: 0.5rem;
}

@media (max-width: 768px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.usp-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.usp-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.usp-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 114, 42, 0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.usp-card h3 {
  margin-bottom: 0;
  align-self: start;
  color: var(--text);
}

/* --- Gemeinschaftsprinzip --- */
.prinzip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: 1.5rem;
  row-gap: 0;
}

.prinzip-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.prinzip-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.prinzip-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(232, 114, 42, 0.10);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
  align-self: start;
}

.prinzip-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text);
  align-self: start;
}

.prinzip-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
  align-self: start;
}

@media (max-width: 768px) {
  .prinzip-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    row-gap: 1.5rem;
  }
  .prinzip-card {
    display: block;
    grid-row: auto;
  }
  .prinzip-card__icon {
    padding-bottom: 0;
    box-sizing: border-box;
    margin-bottom: 1.25rem;
  }
  .prinzip-card h3 {
    padding-bottom: 0;
    margin-bottom: 0.75rem;
  }
}

/* --- Leistungen (Werbefelder) --- */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto 1fr auto;
  column-gap: 1.75rem;
  row-gap: 0;
}

.leistung-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
}

.leistung-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.leistung-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.leistung-card__badge {
  background: transparent;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  text-align: center;
  line-height: 1.4;
}

.leistung-card--featured .leistung-card__badge {
  background: var(--accent);
  color: #fff;
}

.leistung-card__body {
  padding: 1.75rem;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  align-content: start;
}

.leistung-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
  align-self: start;
}

.leistung-card p {
  margin-bottom: 1.25rem;
  align-self: start;
}

.leistung-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-self: start;
}

.leistung-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.leistung-card__feature::before {
  content: '';
  width: 16px;
  height: 16px;
  background: rgba(27, 58, 107, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%231B3A6B' d='M6.5 11.5l-3-3 1.06-1.06L6.5 9.38l5-5L12.56 5.44z'/%3E%3C/svg%3E");
  background-size: cover;
}

.leistung-card__anfrage {
  display: block;
  margin-top: 0;
  padding-top: 1.5rem;
  align-self: end;
  text-align: center;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Über uns --- */
.ueber-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.ueber-text h2 {
  margin-bottom: 1.25rem;
}

.ueber-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.ueber-text p:last-of-type {
  margin-bottom: 2rem;
}

.ueber-visual {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}

.ueber-stat {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.ueber-stat:last-child {
  border-bottom: none;
}

.ueber-stat__number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.ueber-stat__label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* --- Kontakt --- */
.kontakt {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.kontakt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,114,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.kontakt__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.kontakt h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.kontakt p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.kontakt__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.kontakt__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
}

.kontakt__channel:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
}

.kontakt__channel svg {
  display: inline-block;
}

.kontakt__note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 0;
}

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

.footer__copy {
  font-size: 0.88rem;
}

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

.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__link:hover {
  color: #fff;
}

/* --- Legal Pages --- */
.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page main {
  flex: 1;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 5rem;
}

.legal-page .nav {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}

.legal-page .nav__logo-text {
  color: var(--primary);
}

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

/* Zurück-Button in der Rechtsseiten-Navigation */
.nav__back {
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__back-short {
  display: none;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.legal-content .legal-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.75rem;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-content p {
  color: var(--text);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}

.legal-content ul, .legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 0.4rem;
  color: var(--text);
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-highlight {
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.legal-highlight p {
  margin: 0;
  font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* "Anfragen"-Button auf Mobil ausblenden – der Button im Hamburger-Menü genügt.
     !important überschreibt das per JS gesetzte inline display:inline-flex. */
  .nav__cta {
    display: none !important;
  }

  .ueber-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

}

@media (max-width: 600px) {
  .section {
    padding: 3.5rem 0;
  }

  /* Auf schmalen Handys kurzen Button-Text zeigen, Logo etwas verkleinern */
  .nav__back-full {
    display: none;
  }

  .nav__back-short {
    display: inline;
  }

  .legal-page .nav__logo-text {
    font-size: 0.95rem;
  }

  .hero__inner {
    padding-top: calc(var(--nav-height) + 5.5rem);
    padding-bottom: 4rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 768px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 1.25rem;
  }

  .leistung-card {
    display: flex;
    flex-direction: column;
    grid-row: auto;
  }

  .leistung-card__badge {
    position: static;
  }

  .leistung-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    grid-row: auto;
  }

  .leistung-card__features {
    flex: 1;
  }

  .leistung-card__anfrage {
    margin-top: auto;
    padding-top: 1.5rem;
    align-self: auto;
  }
}
