/* ==========================================================================
   DESIGN SYSTEM — Lars Wallenhorst · Betriebsvermögen
   Hell · Seriös · Analog wave-gmbh.com
   ========================================================================== */

:root {
  --white:        #FFFFFF;
  --off-white:    #F5F5F7;
  --light-grey:   #E8E8ED;
  --mid-grey:     #86868B;
  --dark:         #2A2A2E;
  --accent:       #1A5FBF;
  --accent-bright:#2E7AE6;
  --accent-soft:  rgba(26, 95, 191, 0.08);
  --accent-border:rgba(26, 95, 191, 0.2);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius:       18px;
  --radius-sm:    8px;
  --transition:   cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2rem);

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2.5rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--space-3xl) 0;
}

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

/* ==========================================================================
   TYPOGRAPHY HELPERS
   ========================================================================== */

.section__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.section__title em {
  font-style: italic;
  color: var(--accent);
}

.section__intro {
  font-size: 17px;
  color: var(--mid-grey);
  max-width: 680px;
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  padding: 14px 28px;
  font-size: 15px;
}
.btn--primary:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 95, 191, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent-border);
  padding: 12px 24px;
  font-size: 14px;
}
.btn--outline:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--mid-grey);
  padding: 14px 24px;
  font-size: 15px;
}
.btn--ghost:hover { color: var(--dark); }

.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--container-pad);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.nav__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.nav__logo-sep {
  font-size: 16px;
  color: var(--mid-grey);
  font-weight: 400;
}

.nav__name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.nav__sub {
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.02em;
  margin-top: -1px;
}

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

.hero {
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
  background: var(--white);
  overflow: hidden;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: var(--space-lg);
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__sub {
  font-size: 18px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

/* Stat-Row */
.hero__stats {
  display: flex;
  gap: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--light-grey);
}

.hero__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  display: block;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Hero Foto */
.hero__photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin: 0 auto;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero__photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--light-grey);
}

.hero__photo-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__photo-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.hero__photo-badge-sub {
  font-size: 11px;
  color: var(--mid-grey);
  display: block;
  margin-top: 1px;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.cards-row {
  display: grid;
  gap: var(--space-lg);
}

.cards-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-xl);
  transition: border-color 0.2s var(--transition), box-shadow 0.2s var(--transition);
}

.card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 24px rgba(26, 95, 191, 0.08);
}

.card--featured {
  border-color: var(--accent-border);
  background: var(--accent-soft);
}

.card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: var(--space-md);
}

.card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.card--featured .card__number {
  color: var(--accent-border);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.card__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.card__list {
  margin-bottom: var(--space-lg);
}

.card__list li {
  font-size: 14px;
  color: var(--dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card__list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.card__for {
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: var(--space-md);
}

.card__highlight {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: var(--space-md);
}

/* ==========================================================================
   KOMBINATIONS-HINWEIS
   ========================================================================== */

.kombination-hint {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--off-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-xl);
  margin-top: var(--space-xl);
}

.kombination-hint__icon {
  font-size: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.kombination-hint__text {
  font-size: 15px;
  color: var(--mid-grey);
}

.kombination-hint__text strong {
  color: var(--dark);
}

/* ==========================================================================
   WARUM JETZT
   ========================================================================== */

.warum-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.warum-points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.warum-point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.warum-point__icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.warum-point strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.warum-point p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.6;
}

/* EZB Chart — hell */
.ezb-chart {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-xl);
}

.ezb-chart__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.02em;
}

.ezb-chart__area {
  margin: var(--space-md) 0;
}

.ezb-chart__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--mid-grey);
}

.ezb-chart__note {
  font-size: 11px;
  color: var(--mid-grey);
  margin-top: var(--space-md);
}

/* ==========================================================================
   HORIZONT-BAR (Produkte)
   ========================================================================== */

.horizont-bar {
  margin-bottom: var(--space-xl);
}

.horizont-bar__track {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  height: 36px;
  border: 1px solid var(--light-grey);
}

.horizont-bar__segment {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.horizont-bar__segment--1 { background: var(--off-white); color: var(--mid-grey); }
.horizont-bar__segment--2 { background: var(--accent-soft); color: var(--accent); }
.horizont-bar__segment--3 { background: var(--accent); color: var(--white); }

.horizont-bar__arrow {
  text-align: right;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 6px;
}

/* ==========================================================================
   TIMELINE (Produkte)
   ========================================================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.timeline__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ==========================================================================
   STEUER
   ========================================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.two-col__text p {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.two-col__text p strong {
  color: var(--dark);
}

.steuer-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md) var(--space-lg);
  font-size: 13px;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.steuer-note__icon { flex-shrink: 0; font-size: 16px; }

.steuer-table-wrap {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-xl);
}

.steuer-table-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.steuer-table-sub {
  font-size: 12px;
  color: var(--mid-grey);
  margin-bottom: var(--space-lg);
}

.steuer-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.steuer-table th {
  text-align: left;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding: 10px 8px;
  border-bottom: 2px solid var(--light-grey);
}

.steuer-table td {
  padding: 12px 8px;
  border-bottom: 1px solid var(--off-white);
  color: var(--dark);
}

.steuer-table__row--highlight td {
  font-weight: 600;
  color: var(--accent);
}

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

.steuer-table__row--highlight td:first-child {
  color: var(--dark);
}

.steuer-table-note {
  font-size: 11px;
  color: var(--mid-grey);
  margin-top: var(--space-md);
  line-height: 1.5;
}

/* ==========================================================================
   TRUST BANNER (Sondervermögen)
   ========================================================================== */

.trust-banner {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-xl) var(--space-2xl);
}

.trust-banner__icon {
  font-size: 40px;
  flex-shrink: 0;
}

.trust-banner h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.trust-banner p {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ==========================================================================
   ÜBER LARS
   ========================================================================== */

.lars__role {
  font-size: 14px;
  color: var(--mid-grey);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.lars__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.lars__credential {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.lars__credential-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.lars__credential strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.lars__credential span {
  font-size: 13px;
  color: var(--mid-grey);
}

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

.tag {
  font-size: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 5px 12px;
}

.lars__photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.lars__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lars__quote {
  margin-top: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.6;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--accent-border);
}

/* ==========================================================================
   PROZESS
   ========================================================================== */

.prozess-steps {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
}

.prozess-step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: var(--space-xl);
  transition: border-color 0.2s var(--transition);
}

.prozess-step:hover {
  border-color: var(--accent-border);
}

.prozess-step__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.prozess-step__content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.prozess-step__content p {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.65;
}

.prozess-step__arrow {
  font-size: 24px;
  color: var(--light-grey);
  padding-top: 40px;
  flex-shrink: 0;
}

/* ==========================================================================
   KONTAKTFORMULAR
   ========================================================================== */

.contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-row--2 { grid-template-columns: 1fr 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
}

.form-required { color: var(--accent); }

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C0C0C5;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

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

.form-error {
  background: #FFF0F0;
  border: 1px solid #FFCCCC;
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  font-size: 14px;
  color: #C0392B;
  margin-bottom: var(--space-md);
}

.form__hint {
  text-align: center;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: var(--space-md);
}

.contact-form__success {
  text-align: center;
  padding: var(--space-2xl);
}

.success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin: 0 auto var(--space-lg);
}

.contact-form__success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: var(--space-sm);
}

.contact-form__success p {
  font-size: 15px;
  color: var(--mid-grey);
}

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

.footer {
  background: var(--dark);
  color: var(--white);
  padding: var(--space-2xl) 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-xl);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  padding: 4px;
  flex-shrink: 0;
}

.footer__logo-sep {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.footer__brand strong {
  color: var(--white);
  font-weight: 600;
}

.footer__links {
  display: flex;
  gap: var(--space-lg);
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--white); }

.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__disclaimer p { margin-bottom: 8px; }

.footer__disclaimer strong { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   SCROLL INDICATOR
   ========================================================================== */

.hero__scroll-indicator {
  display: flex;
  justify-content: center;
  padding-top: var(--space-xl);
}

.hero__scroll-indicator span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: fadeInUp 1s ease 1s both;
}

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

@media (max-width: 900px) {
  .hero__layout,
  .warum-layout,
  .two-col,
  .two-col--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .hero__photo-wrap {
    aspect-ratio: 3/2;
    max-width: 100%;
  }

  .cards-row--3 {
    grid-template-columns: 1fr;
  }

  .prozess-steps {
    flex-direction: column;
  }

  .prozess-step__arrow {
    transform: rotate(90deg);
    padding-top: 0;
    align-self: center;
  }

  .trust-banner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 100px;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero__cta {
    flex-direction: column;
  }

  .form-row--2 {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .kombination-hint {
    flex-direction: column;
    gap: var(--space-md);
  }
}
