/*
 * IVANOV.LAW Landing Page Design System
 * Style: Premium Law Firm Boutique
 * Version: 3.2 THEME-INTEGRATED - Nutzt WordPress Customizer Typography
 * 
 * WICHTIG: Diese Version respektiert Theme-Einstellungen:
 * - Fonts: Montserrat (Headings) + Open Sans (Body) aus Customizer
 * - Größen: Basiert auf Customizer Typography Settings
 * - Layouts: Eigene Landing Page Komponenten bleiben erhalten
 */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Colors - DYNAMISCH GENERIERT via acmethemes/hooks/landing-pages-dynamic.php */
  /* Diese Variablen werden von PHP mit Customizer-Werten gefüllt:
     --color-primary: Kommt von lawyer-zone-primary-color
     --color-primary-light: Kommt von lawyer-zone-primary-color (15% dunkler)
     --color-accent: Kommt von lawyer-zone-link-color
     --color-accent-hover: Kommt von lawyer-zone-link-color (10% dunkler)
     --color-text-dark: Kommt von lawyer-zone-heading-color
     --color-text-body: Kommt von lawyer-zone-body-text-color
     --color-accent-25: Wird dynamisch berechnet (rgba mit 25% Opacity)
  */

  /* Neutrale Farben - bleiben fix (sind universell) */
  --color-bg-white: #ffffff;
  --color-bg-light: #f8f8f8;
  --color-border: #e0e0e0;
  --color-border-strong: #d5d5d5;

  /* Typography - ÜBERNIMMT VOM THEME! */
  /* inherit = nutzt Theme Customizer Einstellungen */
  --font-heading: inherit; /* Montserrat aus Customizer */
  --font-body: inherit;    /* Open Sans aus Customizer */

  /* Spacing */
  --section-padding: 80px;
  --section-padding-mobile: 60px;
  --content-max-width: 1200px;

  /* Effects */
  --border-radius: 5px;
  --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES - RESPEKTIERT THEME
   ============================================ */
html { scroll-behavior: smooth; }

/* ENTFERNT: body font-size !important 
   Nutzt jetzt automatisch Theme Customizer Einstellung (18px) */
body {
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-body);
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga","kern","onum";
}

/* Focus visibility (A11y) */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
.btn:focus-visible,
.lp-hero .btn-primary:focus-visible,
.lp-cta .btn-primary:focus-visible {
  box-shadow: 0 0 0 4px var(--color-accent-25);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce){
  * { animation: none !important; transition: none !important; }
  html:focus-within { scroll-behavior: auto; }
}

/* Links (neutral, Boutique) */
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-light); text-decoration: underline; }

/* ============================================
   HERO SECTION - FULL WIDTH
   ============================================ */
.lp-hero {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
  color: var(--color-text-dark);
  margin-bottom: 0;
  width: 100%;
  border-bottom: 3px solid var(--color-accent);
}

.lp-hero .page-title,
.lp-hero h1 {
  /* Nutzt Theme H1 Größe aus Customizer (48px) */
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
  margin-bottom: 20px;
  max-width: var(--content-max-width);
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-dark);
}

.lp-hero .lead {
  font-family: var(--font-body);
  font-size: 1.2em; /* 20% größer als Theme Body (18px → 21.6px) */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-body);
}

/* Buttons nutzen Theme-Styling (.btn-primary vom Theme) */
/* Farben kommen von lawyer-zone-primary-color (Customizer) */

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.lp-content-section {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--section-padding) 20px;
}

/* Robust statt :nth-of-type(even) → gezielt .is-alt setzen */
.lp-content-section.is-alt {
  background: var(--color-bg-light);
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  padding-left: calc((100% - var(--content-max-width)) / 2 + 20px);
  padding-right: calc((100% - var(--content-max-width)) / 2 + 20px);
}

.lp-content-section h2 {
  /* Nutzt Theme H2 Größe aus Customizer (36px) */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-content-section h3 {
  /* Nutzt Theme H3 Größe aus Customizer (28px) */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-content-section h4 {
  /* Nutzt Theme H4 Größe aus Customizer (22px) */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-content-section p {
  /* Nutzt Theme Body Font Size aus Customizer (18px) */
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 20px;
  hyphens: auto;
}

.lp-content-section ul,
.lp-content-section ol {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.lp-content-section ul li,
.lp-content-section ol li {
  font-family: var(--font-body);
  /* Nutzt Theme Body Font Size */
  line-height: 1.8;
  color: var(--color-text-body);
  padding: 15px 0 15px 40px;
  position: relative;
}

.lp-content-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-size: 1.5em;
}

.lp-content-section ol { counter-reset: item; }
.lp-content-section ol li { counter-increment: item; }
.lp-content-section ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.25em;
}

/* Dark-context helper (falls benötigt) */
.dark .lp-content-section ul li::before { color: #fff; }

/* ============================================
   TABLE STYLING
   ============================================ */
.lp-table-wrapper {
  width: 100%;
  margin: 30px 0;
  box-shadow: var(--shadow-soft);
  border-radius: var(--border-radius);
  overflow: auto; /* allows horizontal scroll on mobile */
}

.lp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-white);
  font-family: var(--font-body);
}

.lp-table thead {
  background: var(--color-primary);
  color: var(--color-bg-white);
}
.lp-table thead th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 1.1em; /* 10% größer als Body */
  position: sticky;
  top: 0;
  z-index: 1;
}

.lp-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.lp-table tbody tr:hover { background: var(--color-bg-light); }
.lp-table tbody tr:last-child { border-bottom: none; }

.lp-table tbody td {
  padding: 15px;
  color: var(--color-text-body);
  line-height: 1.6;
  /* Nutzt Theme Body Font Size */
}
.lp-table tbody td:first-child {
  font-weight: 600;
  color: var(--color-text-dark);
}

/* ============================================
   STEPS/PROCESS
   ============================================ */
.lp-steps { counter-reset: step; margin: 40px 0; }

.lp-step-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
  font-family: var(--font-body);
  line-height: 1.7;
}
.lp-step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5em; font-weight: bold;
  letter-spacing: .5px;
  box-shadow: 0 3px 12px var(--color-accent-25);
}

.lp-step-item h3 {
  /* Nutzt Theme H3 oder H4 Größe */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-step-item strong {
  display: block;
  font-size: 1.2em;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.lp-step-item p {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.lp-testimonials {
  background: var(--color-bg-light);
  padding: 60px 40px;
  margin: var(--section-padding) 0;
}

.lp-testimonials h2 {
  /* Nutzt Theme H2 Größe */
  font-family: var(--font-heading);
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.lp-testimonial-card {
  background: var(--color-bg-white);
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  min-height: 200px;
}

.lp-testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.lp-testimonial-text {
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 20px;
  position: relative;
}
.lp-testimonial-text::before {
  content: '"';
  position: absolute;
  left: -15px;
  top: -10px;
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.25;
  font-family: Georgia, serif;
}

.lp-testimonial-author {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 5px;
}

.lp-testimonial-role {
  font-family: var(--font-body);
  font-size: 0.95em;
  color: var(--color-text-body);
  opacity: 0.8;
}

.lp-testimonial-stars {
  margin-top: 15px;
  color: var(--color-accent);
  font-size: 1.125rem;
  letter-spacing: 2px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq {
  max-width: 900px;
  margin: var(--section-padding) auto;
  padding: 0 20px;
}

.lp-faq h2 {
  /* Nutzt Theme H2 Größe */
  font-family: var(--font-heading);
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
}

/* ============================================
   BOOTSTRAP 4 CARD COMPATIBILITY
   (Theme nutzt Bootstrap 3, aber HTML nutzt BS4 Markup)
   ============================================ */
.lp-faq .card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: visible;
}

.lp-faq .card-header {
  background: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.lp-faq .card-header h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.lp-faq .card-header .btn-link {
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.15em;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 20px;
  text-decoration: none;
  display: block;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: var(--transition);
  border: none;
  border-radius: 0;
  background: transparent;
}

.lp-faq .card-header .btn-link:hover,
.lp-faq .card-header .btn-link:focus {
  background: #ececec;
  color: var(--color-text-dark);
  text-decoration: none;
  outline: none;
}

.lp-faq .card-header .btn-link[aria-expanded="true"] {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

.lp-faq .card-body {
  padding: 20px;
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text-body);
}

.lp-faq .card-body p {
  margin-bottom: 15px;
}

.lp-faq .card-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   LEGACY FAQ STYLES (Falls alte Struktur)
   ============================================ */
.lp-faq-item {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: visible;
}

.lp-faq-question {
  width: 100%;
  background: var(--color-bg-light);
  border: none;
  padding: 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.15em;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  gap: 16px;
  min-height: 44px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lp-faq-question:hover { background: #ececec; }
.lp-faq-question.active {
  background: var(--color-primary);
  color: var(--color-bg-white);
}

.lp-faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}
.lp-faq-question .lp-faq-toggle::before { content: "+"; }
.lp-faq-question.active .lp-faq-toggle::before { content: "–"; }

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--color-bg-white);
}
.lp-faq-answer.active {
  max-height: 500px;
  padding: 20px;
}
.lp-faq-answer p {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.7;
  color: var(--color-text-body);
}

/* ============================================
   POSITIONING/USP SECTION
   ============================================ */
.lp-positioning {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #ffffff 100%);
  padding: 60px 40px;
  border-top: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  max-width: 100%;
  margin: var(--section-padding) 0;
}

.lp-positioning h2 {
  /* Nutzt Theme H2 Größe */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-positioning > p {
  font-family: var(--font-body);
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 40px;
  max-width: var(--content-max-width);
}

.lp-positioning h3 {
  /* Nutzt Theme H3 Größe */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-positioning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.lp-positioning-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.lp-positioning-icon {
  width: 50px;
  height: 50px;
  background: var(--color-accent);
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.lp-positioning-content h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 10px;
  margin-top: 5px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-positioning-content p {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.lp-cta {
  max-width: var(--content-max-width);
  margin: var(--section-padding) auto;
  padding: 60px 40px;
  text-align: center;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  border-radius: 10px;
  border: 3px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

.lp-cta h2 {
  /* Nutzt Theme H2 Größe */
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: .2px;
}

.lp-cta p {
  font-family: var(--font-body);
  font-size: 1.25em; /* 25% größer als Body */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-body);
}

.lp-cta .lead {
  font-size: 1.25em;
  margin-bottom: 20px;
  color: var(--color-text-body);
}

/* Buttons nutzen Theme-Styling (.btn-primary vom Theme) */
/* Farben kommen von lawyer-zone-primary-color (Customizer) */

/* ============================================
   FEATURES GRID
   ============================================ */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.lp-feature-item {
  background: var(--color-bg-white);
  padding: 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  text-align: center;
  overflow: visible; /* Wichtig: Text darf nicht abgeschnitten werden */
}

.lp-feature-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
  border-color: var(--color-accent);
}

.lp-feature-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  color: var(--color-bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.lp-feature-item h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  margin-bottom: 15px;
  margin-top: 0;
  font-weight: 600;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.lp-feature-item p {
  font-family: var(--font-body);
  line-height: 1.7;
  color: var(--color-text-body);
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ============================================
   CONTACT FORM 7 STYLES (in CTA Section)
   ============================================ */
.lp-cta .wpcf7-form {
  text-align: left;
}

.lp-cta .wpcf7 label {
  display: block;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.lp-cta .wpcf7 input[type="text"],
.lp-cta .wpcf7 input[type="email"],
.lp-cta .wpcf7 input[type="tel"],
.lp-cta .wpcf7 textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-size: 1em;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  transition: var(--transition);
}

.lp-cta .wpcf7 input:focus,
.lp-cta .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-25);
}

.lp-cta .wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.lp-cta .wpcf7-submit {
  margin-top: 20px;
}

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

/* Tablets */
@media (max-width: 1024px) {
  .lp-positioning-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  /* KEIN body font-size Override mehr! Theme entscheidet */

  .lp-hero { padding: 40px 20px; }
  .lp-content-section { padding: var(--section-padding-mobile) 20px; }
  .lp-content-section.is-alt { padding-left: 20px; padding-right: 20px; }

  .lp-table thead th, .lp-table tbody td { padding: 10px; }
  .lp-table td:first-child { min-width: 220px; }

  .lp-step-item { padding-left: 70px; }
  .lp-step-item::before { width: 40px; height: 40px; font-size: 1.2em; }

  .lp-testimonials-grid { display: block; }

  .lp-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* FAQ Mobile: Kleinere Schriftgröße für bessere Lesbarkeit */
  .lp-faq .card-header .btn-link,
  .lp-faq-question {
    font-size: 1.05em;
    padding: 15px;
  }

  .lp-faq .card-body {
    padding: 15px;
  }

  /* Feature Items: Noch bessere Lesbarkeit auf kleinen Screens */
  .lp-feature-item {
    padding: 20px;
  }

  .lp-feature-item h3 {
    font-size: 1.1em;
  }

  /* Buttons auf Mobile: Volle Breite für bessere Bedienbarkeit */
  .lp-hero .btn-primary,
  .lp-cta .btn-primary {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.lp-text-center { text-align: center; }

.lp-mt-0 { margin-top: 0 !important; }
.lp-mt-20 { margin-top: 20px !important; }
.lp-mt-40 { margin-top: 40px !important; }
.lp-mt-60 { margin-top: 60px !important; }

.lp-mb-0 { margin-bottom: 0 !important; }
.lp-mb-20 { margin-bottom: 20px !important; }
.lp-mb-40 { margin-bottom: 40px !important; }
.lp-mb-60 { margin-bottom: 60px !important; }

/* Screenreader & Print helpers */
.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;
}
@media print {
  .lp-hero, .lp-cta {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #ccc !important;
  }
  a::after { content: " (" attr(href) ")"; font-size: .9em; }
}

/* ============================================
   XL MODE: RESPEKTIERT THEME, NUR RELATIVE ANPASSUNGEN
   ============================================ */

/* Ab Desktop-XL: leicht relativ größer */
@media (min-width: 1200px){
  /* Theme body-size wird beibehalten, nur relative Anpassungen */
  .lp-content-section p,
  .lp-content-section li,
  .lp-testimonial-text,
  .lp-faq-answer p { 
    font-size: 1.05em; /* 5% größer als Theme */
  }
}

/* Sehr große Screens: breiteres Layout, Theme-Größen bleiben */
@media (min-width: 1400px){
  :root{ --content-max-width: 1320px; } /* vorher 1200px */
  
  /* Relative Vergrößerungen statt feste Werte */
  .lp-hero .lead { font-size: 1.3em; }
  .lp-content-section p,
  .lp-content-section li { font-size: 1.1em; }
  .lp-table thead th,
  .lp-table tbody td { padding: 18px 22px; }
}

/* Ultra-wide: noch luftiger */
@media (min-width: 1700px){
  :root{ --content-max-width: 1400px; }
  .lp-cta p { font-size: 1.35em; }
}