/* ==========================================================================
   fixmedika B2B Praxen Landing Page — Styles
   LP-Slug: b2b-praxen | URL: praxen.fixmedika.de
   Mobile-First | BEM Naming | CSS Custom Properties
   ========================================================================== */

/* ---------- 1. Custom Properties (Design Tokens) ---------- */

:root {
  /* Brand Colors */
  --color-primary: #4baa30;
  --color-primary-dark: #3d8c28;
  --color-primary-light: #f1f7e9;
  --color-secondary: #a01b68;
  --color-secondary-dark: #8a1759;
  --color-secondary-light: #fdf2f9;

  /* Text */
  --color-text-dark: #262626;
  --color-text-medium: #8b8b8b;
  --color-text-light: #aaaaaa;

  /* Backgrounds & Borders */
  --color-bg-white: #ffffff;
  --color-bg-alt: #f4f6f8;
  --color-border-light: #ebebeb;
  --color-border: #dcdcdc;

  /* Status */
  --color-success: #41c28e;

  /* Font */
  --font-family: "Roboto", sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  /* Type Scale (mobile-first) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2rem;
  --text-4xl: 2rem;

  /* Line Heights */
  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Section */
  --section-padding: 60px;

  /* Container */
  --container-max-width: 1200px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-round: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

  /* Z-Index */
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
}

/* Desktop type scale overrides */
@media (min-width: 1024px) {
  :root {
    --text-2xl: 1.875rem;
    --text-3xl: 2.625rem;
    --text-4xl: 3.5rem;
    --section-padding: 100px;
  }
}

/* ---------- 2. Reset & Base ---------- */

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

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

body {
  font-family: var(--font-family);
  font-size: var(--text-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--lh-body);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. Skip Link ---------- */

.lp-skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: var(--z-modal);
  font-weight: var(--font-weight-bold);
}

.lp-skip-link:focus {
  top: var(--space-md);
}

/* ---------- 4. Layout ---------- */

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

.lp-container--narrow {
  max-width: 800px;
}

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

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

.lp-section__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-lg);
  text-align: center;
}

/* ---------- 5. Buttons ---------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  min-height: 48px;
  min-width: 44px;
}

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

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

.lp-btn--secondary {
  background-color: var(--color-secondary);
  color: #fff;
}

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

.lp-btn--ghost {
  background: transparent;
  color: var(--color-text-dark);
  border-color: var(--color-text-dark);
}

.lp-btn--ghost:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-text-dark);
}

.lp-btn--sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
}

/* ---------- 6. Cards ---------- */

.lp-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
}

/* ---------- 7. Header ---------- */

.lp-header {
  padding: var(--space-md) 0;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border-light);
}

.lp-header__logo {
  height: 40px;
  width: auto;
}

/* ---------- 8. Hero ---------- */

.lp-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--color-bg-white);
}

.lp-hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.lp-hero__content {
  max-width: 600px;
}

.lp-hero__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.lp-hero__title {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-md);
}

.lp-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
}

.lp-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .lp-hero__ctas {
    flex-direction: row;
  }
}

/* Desktop: 2-Spalten-Layout (Text links, Bild rechts) */
@media (min-width: 1024px) {
  .lp-hero {
    padding: var(--space-3xl) 0;
  }

  .lp-hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .lp-hero__content {
    flex: 0 0 55%;
    padding-right: var(--space-2xl);
  }

  .lp-hero__visual {
    flex: 0 0 45%;
    aspect-ratio: 4 / 3;
  }
}

/* ---------- 9. USP Bar ---------- */

.lp-usp {
  padding: var(--space-lg) 0;
  background: var(--color-primary-light);
}

.lp-usp__list {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
}

.lp-usp__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  scroll-snap-align: start;
  flex-shrink: 0;
  gap: var(--space-xs);
}

.lp-usp__icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.lp-usp__text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}

.lp-usp__subtext {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-usp__list {
    overflow-x: visible;
    justify-content: center;
    flex-wrap: wrap;
  }

  .lp-usp__item {
    min-width: auto;
    flex: 0 1 auto;
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1024px) {
  .lp-usp__list {
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .lp-usp__item {
    flex: 1;
  }
}

/* ---------- 10. Problem ---------- */

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

.lp-problem__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.lp-problem__heading {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.lp-problem__item p {
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-problem__items {
    flex-direction: row;
    gap: var(--space-xl);
  }

  .lp-problem__item {
    flex: 1;
    text-align: left;
  }
}

/* ---------- 11. Solution ---------- */

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

.lp-solution__text {
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

.lp-solution__text:last-of-type {
  margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
  .lp-solution__text {
    font-size: var(--text-lg);
  }
}

/* ---------- 12. Pascorbin ---------- */

.lp-pascorbin {
  background: var(--color-secondary-light);
  text-align: center;
}

.lp-pascorbin__header {
  position: relative;
  margin-bottom: var(--space-lg);
}

.lp-pascorbin__badge {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-round);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: var(--space-sm);
}

.lp-pascorbin__body {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  text-align: left;
}

.lp-pascorbin__body p {
  margin-bottom: var(--space-md);
}

/* Tabelle */
.lp-pascorbin__table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-md);
  -webkit-overflow-scrolling: touch;
}

.lp-pascorbin__table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.lp-pascorbin__table thead {
  background: var(--color-secondary);
  color: #fff;
}

.lp-pascorbin__table th,
.lp-pascorbin__table td {
  padding: var(--space-md);
  text-align: left;
  font-size: var(--text-sm);
}

.lp-pascorbin__table th {
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.lp-pascorbin__table tbody tr {
  border-bottom: 1px solid var(--color-border-light);
}

.lp-pascorbin__table tbody tr:last-child {
  border-bottom: none;
}

.lp-pascorbin__table tbody tr:hover {
  background: var(--color-secondary-light);
}

.lp-pascorbin__table td:first-child {
  font-weight: var(--font-weight-bold);
}

.lp-pascorbin__footnote {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
  margin-bottom: var(--space-xl);
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps */
.lp-pascorbin__steps {
  margin-bottom: var(--space-xl);
}

.lp-pascorbin__steps-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}

.lp-pascorbin__steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
  counter-reset: none;
}

.lp-pascorbin__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xs);
}

.lp-pascorbin__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: #fff;
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-sm);
}

.lp-pascorbin__step p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-pascorbin__steps-list {
    flex-direction: row;
    gap: var(--space-xl);
  }

  .lp-pascorbin__step {
    flex: 1;
  }
}

/* ---------- 13. Sortiment ---------- */

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

.lp-sortiment__text {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* Logos */
.lp-sortiment__logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  align-items: center;
  justify-items: center;
  margin-bottom: var(--space-xl);
}

.lp-sortiment__logo-item {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.6;
  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.lp-sortiment__logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.lp-sortiment__logo-item img {
  height: 48px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 768px) {
  .lp-sortiment__logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-sortiment__logos {
    grid-template-columns: repeat(5, 1fr);
  }

  .lp-sortiment__logo-item img {
    height: 56px;
  }
}

/* Highlights */
.lp-sortiment__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.lp-sortiment__card h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.lp-sortiment__card p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-sortiment__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-sortiment__highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- 14. Benefits ---------- */

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

.lp-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.lp-benefits__icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.lp-benefits__card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.lp-benefits__card p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  margin-bottom: var(--space-sm);
}

.lp-benefits__micro-cta {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .lp-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- 15. Social Proof ---------- */

.lp-social-proof {
  text-align: center;
}

.lp-social-proof__intro {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: left;
}

.lp-social-proof__intro p {
  font-size: var(--text-md);
}

/* Standorte */
.lp-social-proof__locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-2xl);
  font-size: var(--text-sm);
  color: var(--color-text-medium);
}

/* Team */
.lp-social-proof__team {
  margin-bottom: var(--space-2xl);
}

.lp-social-proof__team h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

.lp-social-proof__team > p {
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
}

.lp-social-proof__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.lp-social-proof__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-sm);
  background: var(--color-bg-alt);
}

.lp-social-proof__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.lp-social-proof__name {
  display: block;
  font-weight: var(--font-weight-bold);
  font-size: var(--text-xs);
}

.lp-social-proof__role {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-social-proof__team-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 100%;
  }

  .lp-social-proof__avatar {
    width: 96px;
    height: 96px;
  }
}

/* Testimonials */
.lp-social-proof__testimonials {
  margin-bottom: var(--space-2xl);
}

.lp-social-proof__testimonials h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-lg);
}

.lp-social-proof__testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.lp-testimonial {
  text-align: left;
}

.lp-testimonial__icon {
  color: var(--color-primary-light);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.lp-testimonial__text {
  font-size: var(--text-md);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.lp-testimonial__source {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
  font-style: normal;
}

@media (min-width: 768px) {
  .lp-social-proof__testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Trusted Shops (Textlink) */
.lp-social-proof__trusted-shops {
  margin-bottom: var(--space-xl);
}

.lp-social-proof__ts-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-dark);
  font-size: var(--text-sm);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.lp-social-proof__ts-link:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
  color: var(--color-text-dark);
}

.lp-social-proof__ts-link .fa-star {
  color: #f5a623;
}

.lp-social-proof__ts-external {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
}

/* Expertise */
.lp-social-proof__expertise {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
  border-top: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
  text-align: left;
  font-size: var(--text-sm);
}

/* Zahlen */
.lp-social-proof__numbers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.lp-social-proof__number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-social-proof__number-value {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
}

.lp-social-proof__number-label {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  .lp-social-proof__numbers {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ---------- 16. FAQ ---------- */

.lp-faq {
  text-align: left;
}

.lp-faq .lp-section__title {
  text-align: center;
}

.lp-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq__item {
  border-bottom: 1px solid var(--color-border-light);
}

.lp-faq__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-size: var(--text-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-dark);
  text-align: left;
  gap: var(--space-md);
  min-height: 44px;
}

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

.lp-faq__chevron {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.lp-faq__trigger[aria-expanded="true"] .lp-faq__chevron {
  transform: rotate(180deg);
}

.lp-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.lp-faq__answer:not([hidden]) {
  max-height: 500px;
  padding-bottom: var(--space-lg);
}

.lp-faq__answer[hidden] {
  display: block;
  visibility: hidden;
  max-height: 0;
  padding: 0;
}

.lp-faq__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  line-height: var(--lh-body);
}

/* ---------- 17. Kontakt / Finale CTA ---------- */

.lp-kontakt {
  text-align: center;
  background: var(--color-bg-white);
}

.lp-kontakt__intro {
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-medium);
}

/* Channels */
.lp-kontakt__channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.lp-kontakt__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-align: center;
}

.lp-kontakt__channel-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.lp-kontakt__channel strong {
  font-size: var(--text-md);
}

.lp-kontakt__channel a {
  font-size: var(--text-sm);
}

.lp-kontakt__channel-sub {
  font-size: var(--text-xs);
  color: var(--color-text-medium);
}

@media (min-width: 768px) {
  .lp-kontakt__channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lp-kontakt__channels {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Außendienst */
.lp-kontakt__aussendienst {
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  border-left: 4px solid var(--color-primary);
  border-right: 4px solid var(--color-primary);
  border-top: 1.5px solid var(--color-primary);
  border-bottom: 1.5px solid var(--color-primary);
  border-radius: var(--radius-md);
  text-align: left;
}

.lp-kontakt__aussendienst-inner {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

.lp-kontakt__aussendienst-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-alt);
}

.lp-kontakt__aussendienst-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lp-kontakt__aussendienst-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.lp-kontakt__aussendienst-info strong {
  font-size: var(--text-md);
}

.lp-kontakt__aussendienst-info span {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
}

.lp-kontakt__aussendienst-info em {
  font-size: var(--text-sm);
  color: var(--color-text-medium);
  font-style: italic;
}

/* Finale CTAs */
.lp-kontakt__ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .lp-kontakt__ctas {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ---------- 18. Footer ---------- */

.lp-footer {
  padding: var(--space-xl) 0;
  background: var(--color-text-dark);
  color: var(--color-text-light);
  text-align: center;
  font-size: var(--text-sm);
}

.lp-footer__text {
  margin-bottom: var(--space-md);
  line-height: var(--lh-body);
}

.lp-footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.lp-footer__nav a {
  color: var(--color-text-light);
  font-size: var(--text-sm);
}

.lp-footer__nav a:hover {
  color: #fff;
}

.lp-footer__badges {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  opacity: 0.6;
}

.lp-footer__badges a {
  color: var(--color-text-medium);
  font-size: var(--text-xs);
}

.lp-footer__badges a:hover {
  color: #fff;
}

/* ---------- 19. Sticky Bar ---------- */

.lp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-white);
  border-top: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-sticky);
  padding: var(--space-sm) 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lp-sticky-bar[hidden] {
  display: block;
  transform: translateY(100%);
}

.lp-sticky-bar.is-visible {
  transform: translateY(0);
}

.lp-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.lp-sticky-bar__text {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Sticky Bar ausblenden, wenn Consent-Banner sichtbar ist */
body.consent-visible .lp-sticky-bar {
  transform: translateY(100%);
}

/* Footer Padding für Sticky Bar */
.lp-footer {
  padding-bottom: 80px;
}

/* ---------- 20. Cookie Consent ---------- */

.lp-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-dark);
  color: #fff;
  z-index: var(--z-overlay);
  padding: var(--space-lg) 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.lp-consent[hidden] {
  display: block;
  transform: translateY(100%);
}

.lp-consent.is-visible {
  transform: translateY(0);
}

.lp-consent__inner {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.lp-consent__text {
  font-size: var(--text-sm);
  line-height: var(--lh-body);
  text-align: center;
  max-width: 600px;
}

.lp-consent__actions {
  display: flex;
  gap: var(--space-sm);
}

.lp-consent__actions .lp-btn--ghost {
  border-color: #fff;
  color: #fff;
}

.lp-consent__actions .lp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .lp-consent__inner {
    flex-direction: row;
    justify-content: space-between;
  }

  .lp-consent__text {
    text-align: left;
  }

  .lp-consent__actions {
    flex-shrink: 0;
  }
}

/* ---------- 21. Scroll Reveal Animation ---------- */

.lp-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-sticky-bar,
  .lp-consent,
  .lp-faq__answer,
  .lp-faq__chevron {
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ---------- 22. Print ---------- */

@media print {
  .lp-sticky-bar,
  .lp-consent,
  .lp-skip-link {
    display: none !important;
  }

  .lp-section {
    page-break-inside: avoid;
  }

  .lp-footer {
    padding-bottom: var(--space-xl);
  }
}
