/* -------------------------
   Reset & Basics
------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2a2f45;
  line-height: 1.6;
  background: #f9f9fb;
}
img, video { max-width: 100%; height: auto; border-radius: 12px; }
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 700;
  color: #1d2238;
  margin-bottom: 0.6em;
}
p { margin-bottom: 1em; color: #444; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Ankerverschiebung bei Sticky-Nav */
section { scroll-margin-top: 90px; }

/* -------------------------
   Buttons
------------------------- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
}
.btn:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 32px;
}
.btn-primary {
  background: linear-gradient(135deg, #2a2f45, #4d5676);
  color: #fff;
  box-shadow: 0 4px 14px rgba(42,47,69,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(42,47,69,0.45);
}
.btn-ghost {
  border: 2px solid #2a2f45;
  color: #2a2f45;
  background: transparent;
}
.btn-ghost:hover { background: #2a2f45; color: #fff; }

/* -------------------------
   Header / Navigation
------------------------- */
.lc-nav {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.nav-logo img { max-height: 48px; width: auto; }

.nav-list {
  list-style: none; display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
}
.nav-list a {
  color: #2a2f45; font-weight: 500; text-decoration: none;
  padding: 8px 10px; border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-list a:hover { color: #4d5676; background: rgba(77,86,118,0.08); }
.nav-list a[href="#hybrid"] { font-weight: 700; } /* Start-Link etwas stärker */

/* -------------------------
   (ALT) Hero Section – wird NICHT genutzt,
   lassen wir neutral stehen (falls später gebraucht)
------------------------- */
.hero { padding: 0; background: transparent; border-radius: 0; overflow: visible; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
.subline { font-size: 1.2rem; margin-bottom: 20px; color: #555; }
.hero-ctas { display: flex; gap: 15px; margin-bottom: 25px; }
.hero-bullets { list-style: none; padding: 0; }
.hero-bullets li { margin: 6px 0; padding-left: 20px; position: relative; }
.hero-bullets li::before { content: "✔"; position: absolute; left: 0; color: #2a2f45; }
.hero-video video {
  border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.15); transition: transform 0.4s ease;
}
.hero-video video:hover { transform: scale(1.03); }

/* -------------------------
   (ALT) Split Sections (Problem/Lösung)
------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 80px 0;
}
.panel {
  padding: 30px; border-radius: 16px; background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease;
}
.panel:hover { transform: translateY(-5px); }

/* -------------------------
   Steps (Basis)
------------------------- */
.steps {
  display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 40px;
}
.step {
  background: #fff; padding: 25px; border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06); text-align: center;
}
.step-num {
  font-size: 2rem; background: #2a2f45; color: #fff; width: 50px; height: 50px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-bottom: 15px;
}

/* -------------------------
   Demo Section (ALT)
------------------------- */
.demo-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; padding: 80px 0;
}
.phone-mock img { box-shadow: 0 8px 24px rgba(0,0,0,0.15); border-radius: 30px; }

/* -------------------------
   Mehr von LocalCrypta / Features (ALT)
------------------------- */
.more-localcrypta {
  padding: 80px 20px; background: #f9f9fb; text-align: center;
}
.more-localcrypta h2 { font-size: 2.5rem; margin-bottom: 50px; color: #2a2f45; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px; margin-bottom: 60px;
}
.feature-card {
  background: #fff; padding: 30px 20px; border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.feature-card h3 { font-size: 1.5rem; margin-bottom: 15px; color: #2a2f45; }
.feature-card p { font-size: 1rem; margin-bottom: 20px; color: #555; }

/* Testimonials (generisch) */
.testimonials { text-align: center; max-width: 900px; margin: 0 auto; }
.testimonials h3 { font-size: 2rem; margin-bottom: 40px; color: #2a2f45; }
.testimonial-card {
  background: #fff; padding: 25px 20px; margin-bottom: 20px; border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card p { font-style: italic; color: #444; margin-bottom: 12px; }
.testimonial-card span { font-weight: bold; color: #2a2f45; display: block; }

/* -------------------------
   Benefits (ALT)
------------------------- */
.benefit-grid {
  display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 40px;
}
.benefit {
  background: #fff; border-radius: 16px; padding: 30px; text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease;
}
.benefit:hover { transform: translateY(-6px); }
.benefit-icon { font-size: 2rem; margin-bottom: 10px; }

/* -------------------------
   Pricing
------------------------- */
.pricing-grid {
  display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 40px;
}
.price-card {
  background: #fff; padding: 30px; border-radius: 16px; text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.price-card--featured {
  border: 3px solid #2a2f45; transform: scale(1.05);
  box-shadow: 0 12px 34px rgba(42,47,69,0.16);
}
.price { font-size: 2rem; margin: 15px 0; color: #2a2f45; }
.price-note { font-size: 0.9rem; color: #666; }

/* -------------------------
   FAQ
------------------------- */
.faq-item {
  margin: 15px 0; border-radius: 12px; background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); padding: 15px 20px;
}
.faq-item summary { font-weight: 600; cursor: pointer; }
.faq-item p { margin-top: 10px; font-size: 0.95rem; }

/* -------------------------
   Footer
------------------------- */
.site-footer { background: #2a2f45; color: #fff; padding: 40px 20px; margin-top: 80px; }
.footer-grid {
  display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: center;
}
.footer-links { list-style: none; display: flex; gap: 15px; flex-wrap: wrap; }
.footer-links a { color: #fff; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { text-decoration: underline; }
.footer-contact a {
  display: inline-block; margin: 5px; padding: 8px 14px; border-radius: 8px;
  border: 1px solid #fff; color: #fff; font-size: 0.9rem; transition: all 0.3s ease;
}
.footer-contact a:hover { background: #fff; color: #2a2f45; }

/* -------------------------
   NEU: Hybrid-Hero (Text-Claim)
------------------------- */
.hybrid-hero{
  padding: 70px 20px;
  background: linear-gradient(120deg, #e6e9f7, #ffffff);
  border-radius: 0 0 40px 40px;
}
.hybrid-grid{ display: grid; grid-template-columns: 1fr; gap: 20px; }
.hybrid-copy{
  text-align: center; max-width: 900px; margin: 0 auto;
}
.hybrid-copy h2{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15; margin-bottom: 10px;
}
.hybrid-copy .subline{
  font-size: clamp(16px, 2.2vw, 19px);
  color: #555; margin-bottom: 18px;
}
.cta-row{ display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* -------------------------
   NEU: Features (4er-Grid)
   Namespaced, kollidiert nicht mit .feature-grid (ALT)
------------------------- */
.features{ padding: 70px 20px; background: #f9f9fb; }
.features h2{
  text-align: center; font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 16px;
}
.features .feature-grid{
  display: grid; grid-template-columns: repeat(4, minmax(220px,1fr));
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.features .feature{
  background: #fff; border-radius: 16px; padding: 20px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: left;
}
.features .feature:hover{ transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.features .feature h3{ font-size: 1.15rem; margin-bottom: 8px; color: #2a2f45; }
.features .feature p{ margin: 0; color: #555; line-height: 1.55; }
@media (max-width: 980px){ .features .feature-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .features .feature-grid{ grid-template-columns: 1fr; } }

/* -------------------------
   NEU: How it works (3 Schritte)
   Nutzt deine Basis-Styles, leicht produktiver
------------------------- */
.howitworks{ padding: 70px 20px; background: #fff; }
.howitworks h2{
  text-align: center; font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 16px;
}
.steps{ max-width: 1100px; margin: 0 auto; }
.step{ text-align: left; }
.step h3{ margin-bottom: 6px; }
.step p{ color:#4b5563; margin: 0; }

/* -------------------------
   NEU: USP-Block (dunkel)
------------------------- */
.usp-block{
  padding: 70px 20px; background: #1d2238; color: #eaeefb;
  border-radius: 40px; width: 90%; max-width: 1200px; margin: 50px auto 0;
}
.usp-block h2{
  text-align: center; color: #fff;
  font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 18px;
}
.usp-list{
  list-style: none; display: grid; gap: 12px; max-width: 900px; margin: 0 auto; padding: 0;
}
.usp-list li{
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px; border-radius: 12px;
}
.usp-list strong{ color: #fff; }

/* -------------------------
   Responsive Sammelblock
------------------------- */
@media (max-width: 1100px){
  .nav-list { gap: 14px; }
}
@media (max-width: 900px) {
  .hero-grid, .split, .demo-wrap { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .phone-mock { margin-top: 30px; }
  .nav-list { gap: 10px; font-size: 0.9rem; }
  .nav-wrap { padding: 14px 0; }
  .nav-logo img { max-height: 44px; }
  .usp-block { padding: 56px 16px; border-radius: 28px; }
  .features, .howitworks, .hybrid-hero { padding: 56px 16px; }
}
@media (max-width: 560px){
  .btn { padding: 10px 18px; }
  .price { font-size: 1.7rem; }
}
/* -------------------------
   Hybrid-Hero mit Bild
------------------------- */
.hybrid-hero {
  padding: 70px 20px;
  background: linear-gradient(120deg, #e6e9f7, #ffffff);
  border-radius: 0 0 40px 40px;
}

.hybrid-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.hybrid-copy {
  flex: 1 1 400px;
}

.hybrid-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hybrid-copy .subline {
  font-size: clamp(16px, 2.2vw, 19px);
  color: #555;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hybrid-image {
  flex: 1 1 400px;
  text-align: center;
}

.hybrid-image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.hybrid-image img:hover {
  transform: scale(1.03);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .hybrid-grid {
    flex-direction: column;
    gap: 30px;
  }
  .hybrid-copy {
    text-align: center;
  }
  .cta-row {
    justify-content: center;
  }
}
/* =======================================
   MOBILE FIXES (<= 768px)
   1) NAV-BAR
   2) SERVICES ("Mehr von LocalCrypta")
   3) TESTIMONIALS
======================================= */
@media (max-width: 768px) {

  /* ========= 1) NAV-BAR ========= */
  .lc-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  }

  .nav-wrap {
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
  }

  .nav-logo {
    display: flex;
    justify-content: center;
  }
  .nav-logo img { max-height: 34px; }

  .nav-list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 6px 0 10px;
    border-bottom: 1px solid #eee;
  }

  .nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    padding: 6px 4px;
    border: none;
    border-radius: 0;
    background: none;
  }
  .nav-list a:hover {
    color: #4d5676;
    background: none;
  }

  /* Aktiver Tab mit Unterstrich */
  .nav-list a[aria-current="page"],
  .nav-list a[href="#hybrid"] {
    font-weight: 700;
    border-bottom: 2px solid #2a2f45;
  }

  /* Buttons raus aus der Leiste */
  .nav-list .btn,
  .nav-list .btn-primary { display: none; }

  /* ========= 2) SERVICES ========= */
  .services { padding: 48px 16px; }
  .services h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 18px 16px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .service-card .btn,
  .service-card .btn-ghost,
  .service-card .btn-primary {
    width: 100%;
    text-align: center;
  }

  /* ========= 3) TESTIMONIALS ========= */
  .testimonials { padding: 0 12px; }
  .testimonial-card {
    text-align: left;
    padding: 18px 16px;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
  }
  .testimonial-card span {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #374151;
  }
}
/* =======================================
   MOBILE: Testimonials als Karten
======================================= */
.mobile-testimonials { display: none; }

@media (max-width: 768px) {
  .mobile-testimonials {
    display: block;
    background: #f9f9fb;
    padding: 48px 16px;
  }

  .mobile-testimonials h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #1d2238;
  }

  .mobile-testimonials .testimonial-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 18px 16px;
    margin-bottom: 18px;
  }

  .mobile-testimonials .testimonial-card p {
    font-style: italic;
    margin: 0 0 10px 0;
    line-height: 1.55;
    color: #444;
    font-size: 1rem;
  }

  .mobile-testimonials .testimonial-card span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2a2f45;
  }

  /* Verhindert Doppelung mit Desktop-Testimonials */
  .testimonials { display: none; }
}
/* -------------------------
   Druckoptionen (unter Preise)
------------------------- */
.print-options-compact {
  margin: 40px auto;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  max-width: 900px;
}

.print-options-compact h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  color: #1d2238;
}

.print-options-compact .print-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px 20px;
  align-items: center;
  margin-bottom: 16px;
}

.print-options-compact label {
  font-weight: 600;
  color: #2a2f45;
}

.print-options-compact select {
  padding: 12px 14px;
  min-height: 44px;               /* bessere Touch-Ziele */
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  width: 100%;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;                /* konsistenter Look */
}

.print-options-compact select:focus {
  border-color: #4d5676;
  box-shadow: 0 0 0 3px rgba(77, 86, 118, 0.25);
  outline: none;
}

.print-options-compact .disclaimer {
  margin-top: 20px;
  font-size: 0.85rem;
  text-align: center;
  color: #555;
}

/* -------------------------
   Mobile / Tablet
------------------------- */
@media (max-width: 900px) {
  .print-options-compact {
    max-width: 680px;
    padding: 18px 18px;
    border-radius: 14px;
  }
  .print-options-compact h3 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 720px) {
  .print-options-compact {
    margin: 28px 16px;            /* mehr Luft zu den Rändern */
    padding: 16px;
  }
  .print-options-compact .print-row {
    grid-template-columns: 1fr;   /* Label über dem Select */
    gap: 8px;
    margin-bottom: 14px;
  }
  .print-options-compact label {
    font-size: 0.95rem;
  }
  .print-options-compact select {
    font-size: 16px;              /* iOS Zoom vermeiden */
    border-radius: 12px;
  }
}

/* XS-Phones */
@media (max-width: 420px) {
  .print-options-compact {
    padding: 14px;
    border-radius: 12px;
  }
  .print-options-compact h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  .print-options-compact .disclaimer {
    font-size: 0.8rem;
  }
}

/* Accessibility: sichtbarer Keyboard-Fokus */
.print-options-compact select:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 12px;
}

/* Optional: dezente Trenner zwischen Rows auf Mobile */
@media (max-width: 720px) {
  .print-options-compact .print-row + .print-row {
    padding-top: 10px;
    border-top: 1px dashed #eaeaea;
  }
}

/* Optional Dark Mode (falls später aktiviert) */
@media (prefers-color-scheme: dark) {
  .print-options-compact {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .print-options-compact h3,
  .print-options-compact label { color: #e5e7eb; }
  .print-options-compact select {
    background: #0b1220;
    color: #e5e7eb;
    border-color: #334155;
  }
  .print-options-compact .disclaimer { color: #9ca3af; }
}
/* ===========================
   Digitale Visitenkarte – Formular (angleichen an .print-options-compact)
=========================== */
.digital-options {
  margin: 40px auto;
  padding: 20px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  max-width: 900px;
}

.digital-options h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
  color: #1d2238;
  font-weight: 700;
}

/* Zeilen wie bei .print-row (Label links, Feld rechts) */
.digital-options .form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px 20px;
  align-items: center;
  margin-bottom: 16px;
}

.digital-options label {
  font-weight: 600;
  color: #2a2f45;
  font-size: 0.95rem;
}

/* Felder: identische Eingabestile */
.digital-options input[type="text"],
.digital-options input[type="email"],
.digital-options input[type="tel"],
.digital-options input[type="url"],
.digital-options input[type="file"],
.digital-options select {
  padding: 12px 14px;
  min-height: 44px;                /* bessere Touch-Ziele */
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  width: 100%;
  color: #1f2937;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;                /* konsistenter Look */
}

.digital-options input:focus,
.digital-options select:focus {
  border-color: #4d5676;
  box-shadow: 0 0 0 3px rgba(77, 86, 118, 0.25);
  outline: none;
}

/* Social-Felder (Stack) */
.digital-options #linkedin,
.digital-options #instagram,
.digital-options #tiktok,
.digital-options #facebook,
.digital-options #youtube {
  margin-bottom: 8px;
}

/* Datei-Upload wie bei print clean */
.digital-options input[type="file"] {
  background: transparent;
  padding: 6px 0;
  min-height: unset;
  border: none;                    /* meist eigenes Native-Control */
}

/* Accessibility: sichtbarer Keyboard-Fokus */
.digital-options input:focus-visible,
.digital-options select:focus-visible {
  outline: 3px solid #93c5fd;
  outline-offset: 2px;
  border-radius: 12px;
}

/* -------------------------
   Mobile / Tablet (Match zu .print-options-compact)
------------------------- */
@media (max-width: 900px) {
  .digital-options {
    max-width: 680px;
    padding: 18px 18px;
    border-radius: 14px;
  }
  .digital-options h4 {
    font-size: 1.15rem;
    margin-bottom: 16px;
  }
}

@media (max-width: 720px) {
  .digital-options {
    margin: 28px 16px;             /* mehr Luft zu den Rändern */
    padding: 16px;
  }
  .digital-options .form-row {
    grid-template-columns: 1fr;    /* Label über dem Feld */
    gap: 8px;
    margin-bottom: 14px;
  }
  .digital-options label {
    font-size: 0.95rem;
  }
  .digital-options input[type="text"],
  .digital-options input[type="email"],
  .digital-options input[type="tel"],
  .digital-options input[type="url"],
  .digital-options input[type="file"],
  .digital-options select {
    font-size: 16px;               /* iOS Zoom vermeiden */
    border-radius: 12px;
  }
}

/* XS-Phones */
@media (max-width: 420px) {
  .digital-options {
    padding: 14px;
    border-radius: 12px;
  }
  .digital-options h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
}

/* Optional: dezente Trenner zwischen Rows auf Mobile */
@media (max-width: 720px) {
  .digital-options .form-row + .form-row {
    padding-top: 10px;
    border-top: 1px dashed #eaeaea;
  }
}

/* Optional Dark Mode (falls aktiv) */
@media (prefers-color-scheme: dark) {
  .digital-options {
    background: #111827;
    border-color: #1f2937;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .digital-options h4,
  .digital-options label { color: #e5e7eb; }
  .digital-options input[type="text"],
  .digital-options input[type="email"],
  .digital-options input[type="tel"],
  .digital-options input[type="url"],
  .digital-options select {
    background: #0b1220;
    color: #e5e7eb;
    border-color: #334155;
  }
}
/* ===== QUICK POLISH FOR FEATURES + HOW + CTA ===== */

/* Farb-/Typo-Setup (falls du schon Variablen hast, gerne anpassen) */
:root{
  --lc-bg:#f7f8fb;
  --lc-card:#ffffff;
  --lc-text:#111319;
  --lc-muted:#5a6072;
  --lc-primary:#24324a;        /* dein Navy */
  --lc-primary-2:#2f4470;      /* Hover */
  --lc-ring: rgba(36,50,74,.18);
  --lc-shadow: 0 10px 30px rgba(22,29,39,.08);
  --radius: 18px;
}

/* Section spacing */
.features-boost,
.how-boost { padding: 36px 0 44px; background: var(--lc-bg); }

/* Section heading */
.features-boost h2,
.how-boost h2{
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: .2px;
  margin: 0 0 14px;
  color: var(--lc-text);
}

/* TRUST BAR */
.features-boost .trust-bar{
  display:flex; flex-wrap:wrap; gap:.6rem .6rem;
  margin:0 0 18px; font-size:.94rem;
}
.features-boost .trust-bar span{
  background:#fff; color:var(--lc-muted);
  padding:.45rem .75rem; border-radius:999px;
  border:1px solid rgba(0,0,0,.06);
}

/* GRID */
.features-boost .feature-grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1100px){ .features-boost .feature-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 640px){  .features-boost .feature-grid{ grid-template-columns: 1fr; }}

/* CARD */
.features-boost .card{
  background: var(--lc-card);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  box-shadow: var(--lc-shadow);
  border:1px solid rgba(0,0,0,.04);
  display:flex; flex-direction:column; gap:.6rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.features-boost .card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(22,29,39,.12);
}

/* Titles & text */
.features-boost .card h3{
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  margin: 2px 0 4px; color: var(--lc-text);
}
.features-boost .bullets{ margin:.2rem 0 .6rem; padding-left:1.05rem; color:var(--lc-muted); }
.features-boost .bullets li{ margin:.28rem 0; }

/* Meta row (Preis / Badge + Link) */
.features-boost .meta{
  margin-top:auto; padding-top:.4rem;
  display:flex; align-items:center; justify-content:space-between; gap:.75rem;
  border-top:1px solid rgba(0,0,0,.06);
}
.features-boost .price{ font-weight:800; color:var(--lc-primary); }
.features-boost .badge{
  font-weight:700; color:var(--lc-primary);
  background: rgba(36,50,74,.06);
  padding:.28rem .6rem; border-radius:10px;
  border:1px solid rgba(36,50,74,.14);
}
.features-boost .link-cta{
  font-weight:800; text-decoration:none; color:var(--lc-primary);
}
.features-boost .link-cta:hover{ color:var(--lc-primary-2); text-decoration:underline; }

/* CTA-Stripe */
.features-boost .cta-stripe{
  margin-top:20px; padding:14px 16px; border-radius:16px;
  background:#fff; border:1px solid rgba(0,0,0,.06);
  box-shadow: var(--lc-shadow);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.features-boost .cta-stripe p{ margin:0; color:var(--lc-text); }
@media (max-width:720px){ .features-boost .cta-stripe{ flex-direction:column; align-items:flex-start; }}

/* Primary Button (falls noch nicht vorhanden) */
.btn.btn-primary{
  background: var(--lc-primary); color:#fff; border:none;
  padding:.78rem 1.05rem; border-radius:14px; font-weight:800; letter-spacing:.2px;
  box-shadow: 0 6px 18px var(--lc-ring);
  transition: transform .08s ease, background .15s ease, box-shadow .2s ease;
}
.btn.btn-primary:hover{ background: var(--lc-primary-2); box-shadow:0 10px 26px var(--lc-ring); }
.btn.btn-primary:active{ transform: translateY(1px); }

/* HOW section */
.how-boost .steps{
  display:grid; gap:16px; grid-template-columns: repeat(3,1fr);
}
@media (max-width: 980px){ .how-boost .steps{ grid-template-columns: repeat(2,1fr);} }
@media (max-width: 640px){ .how-boost .steps{ grid-template-columns: 1fr;} }

.how-boost .step{
  background:#fff; border-radius:16px; padding:18px;
  box-shadow: var(--lc-shadow); border:1px solid rgba(0,0,0,.05);
}
.how-boost .step h3{ margin:.25rem 0 .35rem; font-size:1.05rem; color:var(--lc-text); }
.how-boost .step p{ color:var(--lc-muted); margin:0; }
.how-boost .step-num{
  width:30px; height:30px; border-radius:50%;
  display:grid; place-items:center; font-weight:800;
  background: var(--lc-primary); color:#fff; margin-bottom:.5rem;
}

.how-boost .how-cta{ margin-top:14px; display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.how-boost .hint{ color:var(--lc-muted); font-size:.95rem; }

/* Small accessibility + focus */
a:focus, .btn:focus{
  outline:2px solid transparent; box-shadow:0 0 0 4px var(--lc-ring);
  border-radius:12px;
}
/* ===== MOBILE POWER-OVERRIDES ===== */
@media (max-width: 480px){

  /* Container & Spacing */
  .container { padding-left:14px; padding-right:14px; }
  .features-boost, .how-boost { padding: 22px 0 26px; }

  /* Headings kompakt & kräftig */
  .features-boost h2, .how-boost h2{
    font-size: 1.35rem; line-height:1.15; margin-bottom:10px;
    letter-spacing:.1px;
  }

  /* Trust-Bar als Chips mit Snap-Scroll für Daumen */
  .features-boost .trust-bar{
    margin-bottom:12px; gap:8px;
    overflow-x:auto; white-space:nowrap; -webkit-overflow-scrolling:touch;
    padding-bottom:4px; scrollbar-width:none;
  }
  .features-boost .trust-bar::-webkit-scrollbar{ display:none; }
  .features-boost .trust-bar span{ display:inline-block; }

  /* Grid → 1 Spalte, mehr Luft */
  .features-boost .feature-grid{ grid-template-columns:1fr; gap:12px; }

  /* Cards: größere Tap-Zonen, weniger Text */
  .features-boost .card{
    border-radius:16px; padding:14px 14px 12px;
    box-shadow:0 8px 22px rgba(22,29,39,.08);
  }
  .features-boost .card h3{ font-size:1.02rem; margin:2px 0 2px; }
  .features-boost .bullets{ font-size:.95rem; margin:.1rem 0 .4rem; }
  .features-boost .bullets li{ margin:.18rem 0; }

  /* Preis first, Link groß & rechts */
  .features-boost .meta{
    border-top:1px solid rgba(0,0,0,.06);
    padding-top:.35rem; gap:.5rem;
  }
  .features-boost .price{ font-size:1.02rem; font-weight:800; }
  .features-boost .link-cta{
    margin-left:auto; padding:.55rem .7rem; border-radius:10px;
    background:var(--lc-primary); color:#fff; font-weight:800;
    box-shadow:0 6px 16px rgba(36,50,74,.18);
  }
  .features-boost .link-cta:hover{ background:var(--lc-primary-2); }

  /* CTA-Stripe kompakt & immer sichtbar über Sticky-Bar */
  .features-boost .cta-stripe{
    margin-top:12px; padding:12px; gap:10px; border-radius:14px;
    flex-direction:column; align-items:flex-start;
  }
  .btn.btn-primary{ width:100%; text-align:center; padding:.9rem 1rem; border-radius:14px; }

  /* HOW-Section dichter */
  .how-boost .steps{ gap:12px; }
  .how-boost .step{ padding:14px; border-radius:14px; }
  .how-boost .step h3{ font-size:1rem; }
  .how-boost .step-num{ width:26px; height:26px; font-size:.95rem; }
  .how-boost .how-cta{ flex-direction:column; align-items:stretch; gap:10px; }
  .how-boost .hint{ font-size:.9rem; }

  /* Kleine Feinheiten */
  a:focus, .btn:focus{ box-shadow:0 0 0 4px rgba(36,50,74,.25); }
}
/* ===== Trust chips: desktop grid, mobile swipe with snap + fades ===== */
.trust-wrap{ position:relative; }
.trust-bar{
  display:flex; flex-wrap:wrap; gap:.6rem .6rem;
}
.trust-bar .chip{
  background:#fff; color:var(--lc-muted);
  padding:.45rem .75rem; border-radius:999px;
  border:1px solid rgba(0,0,0,.06);
  white-space:nowrap;
}

/* Mobile: horizontal scroll + snap + arrows + fades */
@media (max-width: 640px){
  .trust-bar{
    flex-wrap:nowrap; overflow-x:auto; scroll-snap-type:x mandatory;
    gap:.55rem; padding:0 .25rem .2rem; -webkit-overflow-scrolling:touch;
  }
  .trust-bar::-webkit-scrollbar{ display:none; }
  .trust-bar .chip{
    scroll-snap-align:center; font-size:.95rem;
    box-shadow:0 6px 16px rgba(22,29,39,.06);
  }

  .trust-nav{
    position:absolute; top:50%; transform:translateY(-50%);
    background:var(--lc-primary); color:#fff; border:0; padding:.35rem .55rem;
    border-radius:10px; box-shadow:0 6px 16px rgba(36,50,74,.18);
    font-weight:800; line-height:1; cursor:pointer; opacity:.96;
  }
  .trust-prev{ left:2px; }
  .trust-next{ right:2px; }

  /* Fade edges (mask) */
  .trust-fade{
    position:absolute; top:0; bottom:0; width:36px; pointer-events:none;
    background:linear-gradient(to right, #f7f8fb 40%, rgba(247,248,251,0));
  }
  .trust-fade--left{ left:0; transform:rotate(180deg); }
  .trust-fade--right{ right:0; }

  /* nur auf Mobile sichtbar */
  .trust-nav, .trust-fade{ display:block; }
}
@media (prefers-reduced-motion: reduce){
  .trust-bar{ scroll-behavior:auto; }
}

/* ===== Reviews Desktop ===== */
@media (min-width: 981px){
  .reviews{ padding:38px 0 18px; }
  .reviews-head{
    display:flex; align-items:end; justify-content:space-between; gap:20px;
    margin-bottom:16px;
  }
  .reviews h2{ margin:0; }
  .rating-badge{
    display:flex; align-items:center; gap:10px; padding:10px 12px;
    border-radius:999px; background:#fff; border:1px solid rgba(0,0,0,.06);
    box-shadow:0 8px 22px rgba(22,29,39,.06);
    font-weight:700;
  }
  .stars{
    position:relative; display:inline-block; color:#cfd5e2; /* graue Sterne */
    font-size:1.1rem; letter-spacing:1px; line-height:1;
  }
  .stars .stars-fill{
    position:absolute; inset:0; width:98%; overflow:hidden; color:#f5b301; /* gold */
  }
  .rating-badge .score{ color:var(--lc-text); }
  .rating-badge .count{ color:var(--lc-muted); font-weight:600; }

  .reviews-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
  }
  .review{
    margin:0; background:#fff; border:1px solid rgba(0,0,0,.06);
    border-radius:16px; padding:18px; box-shadow:0 10px 26px rgba(22,29,39,.06);
  }
  .review blockquote{ margin:0 0 10px; font-size:1.02rem; line-height:1.45; }
  .review figcaption{ color:var(--lc-muted); font-weight:700; }
}
/* ===== Preise Desktop-polish ===== */
@media (min-width: 981px){
  .features-boost .meta{
    display:flex; align-items:center; justify-content:space-between;
    gap:1rem; padding-top:.6rem; border-top:1px solid rgba(0,0,0,.06);
  }
  .features-boost .price--desktop{
    font-size:1.05rem;           /* größer */
    font-variation-settings: "wght" 800;
    white-space:nowrap;           /* bricht nie */
    color: var(--lc-primary);
  }
  .features-boost .price--desktop strong{
    font-size:1.15rem;
    font-variation-settings: "wght" 900;
  }
  .features-boost .link-cta{
    margin-left:auto; font-weight:800; text-decoration:none;
  }
  .features-boost .link-cta:hover{ text-decoration:underline; }
}
/* ===== HOW: Step-Nummern in die Cards (DESKTOP ONLY) ===== */
@media (min-width: 981px){
  .how-boost .step{
    position: relative;
    padding: 18px 18px 16px 62px;   /* links Platz für die Nummer */
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 26px rgba(22,29,39,.06);
    overflow: hidden;               /* falls die Badge größer ist */
  }

  .how-boost .step-num{
    position: absolute;
    left: 16px;
    top: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: var(--lc-primary);
    box-shadow: 0 6px 16px rgba(36,50,74,.18);
    line-height: 1;
  }

  /* Optional: Headline etwas enger, damit optisch bündig */
  .how-boost .step h3{
    margin: 0 0 6px;
    font-size: 1.08rem;
  }
}
.card-options h3 {
  font-size: 1.55rem;
  font-weight: 800;
  text-align: center;
  margin: 0 0 .4rem;
  color: #111827; /* dunkles Grau fast Schwarz */
}

.card-options > p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  color: #4b5563; /* softeres Grau */
  margin: 0 0 1.6rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: kleiner farbiger Balken unter der H3 */
.card-options h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: .6rem auto 0;
  background: #2563eb; /* deine Primärfarbe */
  border-radius: 2px;
}

