/* ════════════════════════════════════════════════
   Globales Stylesheet – ästhetik würzburg
   Basis aus index.html, + Detailseiten + index2-Weiß-Variante
   ════════════════════════════════════════════════ */
    /* Lucide icon sizing */
    [data-lucide] { display: block; }
    .icon-sm [data-lucide], [data-lucide].icon-sm { width: 16px; height: 16px; }
    .icon-md [data-lucide], [data-lucide].icon-md { width: 20px; height: 20px; }
    .icon-lg [data-lucide], [data-lucide].icon-lg { width: 24px; height: 24px; }
    .icon-xl [data-lucide], [data-lucide].icon-xl { width: 28px; height: 28px; }
  
    /* ── Reset & Base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Open Sans', sans-serif;
      color: #2b2a29;
      line-height: 1.6;
    }

    /* ── Barrierefreiheit ── */
    .skip-link {
      position: absolute;
      top: -100%;
      left: 16px;
      background: var(--primary);
      color: #fff;
      padding: 10px 18px;
      border-radius: 0 0 var(--radius) var(--radius);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      z-index: 9999;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 0; }

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

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
      html { scroll-behavior: auto; }
    }
    .visually-hidden {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    /* ── Design Tokens (Broschüren-Palette) ── */
    :root {
      /* Primärfarbe: Teal aus dem Broschüren-Logo */
      --primary:       #3b8f96;
      --primary-light: #4fa3ab;
      --primary-dark:  #2d6f75;

      /* Warme Akzente aus den Broschüren-Boxen */
      --sand:    #c9a882;
      --sand-bg: #f5ede3;
      --step-bg: #2b6b70;   /* war: #5b9094 – zu hell für weißen Text (<3,5:1); jetzt 5,8:1 */

      /* Neutrale Töne */
      --cream:   #f5ede3;
      --white:   #FFFFFF;
      --text:    #2b2a29;
      --muted:   #6b6460;
      --border:  #ddd5c8;

      --radius: 8px;
      --shadow: 0 2px 16px rgba(59,143,150,0.10);
    }

    /* ── Utility ── */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 24px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      border: 2px solid transparent;
      text-decoration: none;
      transition: all 0.2s;
    }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--primary-light); }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border-color: var(--primary);
    }
    .btn-outline:hover { background: var(--primary); color: var(--white); }
    .btn-sand {
      background: var(--sand);
      color: var(--white);
    }
    .btn-sand:hover { background: #b8956a; }
    .btn-white {
      background: var(--white);
      color: var(--primary);
    }
    .btn-white-outline {
      background: transparent;
      color: var(--white);
      border-color: var(--white);
    }
    .btn-white-outline:hover { background: var(--white); color: var(--primary); }

    .section-tag {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary-dark); /* war: var(--sand) – Kontrast auf weiß/cream zu gering (<3:1) */
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 10px;
    }
    .section-title-center { text-align: center; }
    .section-divider {
      width: 48px;
      height: 3px;
      background: var(--sand);
      margin: 0 auto 40px;
      border-radius: 2px;
    }
    .section-divider-left { margin: 0 0 24px; }
    .stars { color: #f59e0b; font-size: 20px; letter-spacing: 2px; }

    /* ── Logo-Wrapper mit Störer ── */
    .logo-wrap {
      position: relative;
      flex-shrink: 0;
    }

    /* ── Störer „Inhabergeführt!" ── */
    .sticker {
      display: inline-block;
      background: #b8dff5;
      border: 2px solid #7bbedd;
      border-radius: 50px;
      padding: 7px 20px 7px 18px;
      font-size: 15px;
      font-style: italic;
      font-weight: 600;
      color: #1e5a7a;
      transform: rotate(4deg);
      box-shadow: 2px 3px 8px rgba(0,0,0,0.12), inset 0 1px 2px rgba(255,255,255,0.6);
      white-space: nowrap;
      letter-spacing: 0.01em;
      margin-left: 8px;
    }

    /* Störer-Variante im Header unter dem Logo */
    .sticker-logo {
        position: absolute;
        bottom: 13px;
        left: 148px;
        margin-left: 0;
        font-size: 13px;
        padding: 5px 16px 5px 14px;
        transform: rotate(-19deg);
    }

    /* ══ Header ══ */
    header {
      position: relative;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 1px 6px rgba(0,0,0,0.06);
      z-index: 200;
    }
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
      border-radius: var(--radius);
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .nav-toggle:hover { background: var(--cream); }
    .nav-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
      transform-origin: center;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    header .container { padding-top: 12px; padding-bottom: 12px; }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo svg { height: 160px; width: auto; display: block; }
    nav { display: flex; align-items: center; gap: 32px; margin-left: auto; margin-right: 48px; }
    nav a {
      font-size: 16px;
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s, font-weight 0.2s;
      border-bottom: 4px solid transparent;
      padding-bottom: 4px;
      display: inline-block;
    }
    nav a:hover, nav a.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }
    /* Top-Level-Links: fette Optik ohne Layout-Verschiebung (Faux-Bold per text-shadow) */
    nav > a:hover, nav > a.active,
    .nav-item-dropdown > a:hover,
    .nav-item-dropdown:focus-within > a {
      text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
    }
    .nav-dropdown { position: relative; }
    .nav-dropdown::after { content: ' ▾'; font-size: 11px; }

    /* ══ Hero ══ */
    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
      background: var(--cream);
      overflow: hidden;
    }
    .hero-content {
      background: var(--cream);
      display: flex;
      align-items: center;
      padding: 80px 0 80px max(24px, calc((100vw - 1400px) / 2 + 24px));
      position: relative;
      z-index: 1;
    }
    .hero-content .container-left { max-width: 640px; width: 100%; }
    .hero-bg {
      position: relative;
      background-size: cover;
      background-position: center top;
    }
    /* Fallback gradient wenn kein Bild */
    .hero-bg-fallback {
      position: relative;
      background: linear-gradient(135deg, #d4e8ea 0%, #8fbfc3 50%, #5b9094 100%);
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      top: 0; right: 0; bottom: 0;
      left: -4px;
      background: linear-gradient(
        to right,
        var(--cream) 0%,
        rgba(245,237,227,0) 36%
      );
    }
    .hero h1 {
      font-family: 'Open Sans', sans-serif;
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 300;
      color: var(--primary);
      line-height: 1.12;
      margin-bottom: 6px;
    }
    .hero h1 strong {
      font-weight: 700;
      color: var(--text);
    }
    .hero h1 strong.sand {
      color: var(--sand);
    }
    .hero-subtitle {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--primary-dark); /* war: var(--sand) – auf cream nur 1,9:1 */
      margin-bottom: 16px;
    }
    .hero p {
      font-size: 18px;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 440px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-action-col { display: flex; flex-direction: column; gap: 12px; }
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
    }
    .badge-icon {
      width: 36px;
      height: 36px;
      background: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      box-shadow: var(--shadow);
    }
    .badge-text .top { font-weight: 700; font-size: 15px; }
    .badge-text .btm { font-size: 14px; color: var(--muted); }

    /* ══ Info-Banner (unter dem Hero, vor USP) ══ */
    .info-banner {
      background: var(--primary-dark); /* war: var(--primary) – weiß auf primary nur 3,3:1 */
      padding: 20px 0;
    }
    .info-banner-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }
    .info-banner p {
      color: #fff; /* war: rgba(255,255,255,0.9) – auf primary-dark jetzt 5,4:1 */
      font-size: 17px;
      font-style: italic;
      text-align: center;
    }
    .info-banner p strong {
      font-weight: 700;
      font-style: normal;
    }

    /* ══ USP-Streifen ══ */
    .usps {
      background: var(--white);
      padding: 32px 0;
      border-bottom: 1px solid var(--border);
    }
    .usp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }
    .usp-item { text-align: center; }
    .usp-icon {
      width: 56px;
      height: 56px;
      background: var(--cream);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px;
      font-size: 24px;
      color: var(--primary);
    }
    .usp-item h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
    .usp-item p { font-size: 16px; color: var(--muted); line-height: 1.5; }

    /* ══ Ablauf-Schritte ══ */
    .schritte {
      background: #f0ede8;
      padding: 40px 0 80px;
    }
    .schritte-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-top: 40px;
    }
    .schritt-card {
      background: var(--step-bg);
      border-radius: var(--radius);
      padding: 22px 18px;
      color: rgba(255,255,255,0.95);
      position: relative;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .schritt-card:hover {
      box-shadow: 0 4px 20px rgba(59,143,150,0.25);
      transform: translateY(-2px);
    }
    .schritt-number {
      font-size: 36px;
      font-weight: 700;
      color: rgba(255,255,255,0.25);
      line-height: 1;
      margin-bottom: 12px;
    }
    .schritt-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
    }
    .schritt-card p {
      font-size: 16px;
      color: rgba(255,255,255,0.92); /* war: 0.85 – auf neuem step-bg jetzt 5,1:1 */
      line-height: 1.55;
    }

    /* Info-Box unter den Schritten */
    .schritt-info {
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      padding: 28px 32px;
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .schritt-info h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .schritt-info p { font-size: 15px; color: var(--muted); line-height: 1.6; }

    /* ══ Vorbereitung (2-Spalten + Box) ══ */
    .vorbereitung {
      background: var(--white);
      padding: 80px 0;
    }
    .vorbereitung-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .vorbereitung-content .section-tag { margin-bottom: 6px; }
    .vorbereitung-content p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.7;
    }
    .info-box {
      background: var(--step-bg);
      border-radius: var(--radius);
      padding: 28px 28px;
      color: rgba(255,255,255,0.95);
    }
    .info-box h3 {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
      font-style: italic;
    }
    .info-box ul { list-style: none; padding: 0; }
    .info-box ul li {
      font-size: 16px;
      color: rgba(255,255,255,0.9);
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
      line-height: 1.5;
    }
    .info-box ul li::before {
      content: '»';
      position: absolute;
      left: 0;
      color: rgba(255,255,255,0.6);
    }
    .info-box ul li strong { color: #fff; }

    /* ══ Ästhetik / Ergänzende Behandlungen ══ */
    .aesthetik {
      background: var(--cream);
      padding: 0;
      overflow: hidden;
    }
    .aesthetik-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr 0.8fr;
      min-height: 520px;
    }
    .aesthetik-image {
      background-image: url('aesthetik-blepharoplastik.jpg');
      background-size: cover;
      background-position: center top;
      min-height: 480px;
      position: relative;
    }
    .aesthetik-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(245,237,227,0.0) 55%,
        rgba(245,237,227,0.5) 80%,
        var(--cream) 100%
      );
    }
    .aesthetik-content {
      padding: 80px 48px 80px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .aesthetik-content p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.7;
    }
    .aesthetik-checklist {
      padding: 0 48px 0 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-self: center;
      border-left: 2px solid #d4c5b4;
    }
    .aesthetik-content .section-title { margin-bottom: 16px; }
    .aesthetik-content .btn {
      align-self: stretch;
      justify-content: center;
      margin-top: 8px;
    }
    .checklist { list-style: none; }
    .checklist li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 22px;
    }
    .checklist li:last-child { margin-bottom: 0; }
    .checklist li::before {
      content: '✓';
      width: 22px;
      height: 22px;
      min-width: 22px;
      border: 1.5px solid var(--sand);
      border-radius: 50%;
      color: var(--sand);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      margin-top: 2px;
      flex-shrink: 0;
    }

    /* ══ About / Ärztin ══ */
    .about {
      background: var(--white);
      padding: 80px 0;
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
    }
    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .about-image-placeholder {
      border-radius: var(--radius);
      background: linear-gradient(135deg, var(--cream) 0%, #d4e8ea 100%);
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--muted);
      font-style: italic;
    }
    .about-content .section-tag { margin-bottom: 6px; }
    .about-content p {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 14px;
      line-height: 1.7;
    }
    .about-content .btn { margin-top: 8px; }

    /* ══ Nachsorge ══ */
    .nachsorge {
      background: #f0ede8;
      padding: 40px 0 80px;
    }
    .nachsorge-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .nachsorge-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .nachsorge-card-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .nachsorge-icon {
      width: 44px;
      height: 44px;
      background: var(--cream);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }
    .nachsorge-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--primary);
    }
    .nachsorge-card ul { list-style: none; padding: 0; }
    .nachsorge-card ul li {
      font-size: 16px;
      color: var(--muted);
      margin-bottom: 8px;
      padding-left: 18px;
      position: relative;
      line-height: 1.5;
    }
    .nachsorge-card ul li::before {
      content: '»';
      position: absolute;
      left: 0;
      color: var(--sand);
    }

    /* ══ Testimonials ══ */
    .testimonials {
      background: var(--white);
      padding: 40px 0 80px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .testimonial-card {
      background: #f9f5f0;
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .testimonial-quote {
      font-size: 32px;
      color: var(--sand);
      line-height: 1;
      margin-bottom: 12px;
      opacity: 0.5;
    }
    .testimonial-card p {
      font-size: 16px;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }
    .testimonial-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); }
    .dot.active { background: var(--primary); }

    /* ══ CTA-Banner ══ */
    .cta-banner {
      background: var(--primary-dark);
      padding: 10px 0;
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      flex-wrap: wrap;
    }
    .cta-left { display: flex; align-items: center; gap: 20px; }
    .cta-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      flex-shrink: 0;
    }
    .cta-icon [data-lucide] { width: 70px; height: 70px; }
    .cta-left h2 { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .cta-left p { font-size: 16px; color: rgba(255,255,255,0.9); /* war: 0.7 – 3,5:1; jetzt 4,8:1 */ }
    .cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ══ Footer ══ */
    footer {
      background: #1e4a4f;
      color: rgba(255,255,255,0.85);
      padding: 64px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-grid > div:nth-child(2),
    .footer-grid > div:nth-child(3),
    .footer-grid > div:nth-child(4) {
      border-left: 1px solid rgba(255,255,255,0.15);
      padding-left: 48px;
    }
    footer .logo svg { height: auto; width: 350px; }
    .footer-logo { margin-bottom: 14px; }
    .footer-tagline { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.6; }
    footer h3 {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75); /* war: 0.5 – nur 3,8:1; jetzt 6,5:1 */
      margin-bottom: 16px;
    }
    .footer-contact li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      margin-bottom: 10px;
      color: rgba(255,255,255,0.8);
    }
    .footer-contact li a { color: rgba(255,255,255,0.9); text-decoration: none; }
    .footer-contact li a:hover { color: #fff; text-decoration: underline; }
    .hours-table { width: 100%; border-collapse: collapse; }
    .hours-table td {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      padding: 3px 0;
      vertical-align: top;
    }
    .hours-table td:first-child { width: 28px; font-weight: 600; }
    .map-placeholder {
      border-radius: var(--radius);
      overflow: hidden;
      display: block;
      width: 100%;
    }
    .standort-badge {
      display: inline-block;
      background: var(--sand);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 20px;
      margin-bottom: 10px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .footer-bottom p { font-size: 16px; color: rgba(255,255,255,0.75); }
    .footer-bottom a { color: rgba(255,255,255,0.8); text-decoration: none; margin-left: 16px; font-size: 16px; }
    .footer-bottom a:hover { color: #fff; }

    /* ══ Nav-Klappmenü (Dropdown) ══ */
    .nav-item-dropdown { position: relative; display: inline-block; }
    .nav-item-dropdown > a { cursor: pointer; }
    .nav-submenu {
      position: absolute;
      top: 100%;
      left: 0;
      width: 350px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 10px 30px rgba(43,42,41,0.14);
      padding: 8px;
      list-style: none;
      margin: 6px 0 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
      z-index: 300;
    }
    .nav-item-dropdown:hover .nav-submenu,
    .nav-item-dropdown:focus-within .nav-submenu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .nav-submenu li { margin: 0; }
    .nav-submenu a {
      display: block;
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
      padding: 9px 14px;
      border-radius: 6px;
      border-bottom: none;
      white-space: nowrap;
    }
    .nav-submenu a:hover,
    .nav-submenu a:focus {
      background: var(--cream);
      color: var(--primary);
      font-weight: 700;
      border-bottom: none;
    }

    /* ══ Leistungen-Grid (Flyer) ══ */
    .leistungen {
      background: #f0ede8;
      padding: 40px 0 80px;
    }
    .leistungen-intro {
      max-width: 780px;
      margin: 0 auto;
      text-align: center;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.7;
    }
    .leistungen-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 40px;
    }
    .leistung-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 26px 22px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .leistung-card:hover {
      box-shadow: 0 8px 26px rgba(43,42,41,0.13);
      transform: translateY(-3px);
    }
    .leistung-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      background: var(--cream);
      color: var(--primary);
      flex-shrink: 0;
    }
    .leistung-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.3;
      margin-bottom: 10px;
    }
    .leistung-card p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.6;
      margin-bottom: 18px;
      flex-grow: 1;
    }
    .leistung-link {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-top: auto;
    }
    .leistung-link:hover { text-decoration: underline; }

    /* Farbvarianten der Leistungen (Flyer-Vorgabe) */
    .leistung-card.is-braun { background: #c9a882; border-color: #c9a882; }
    .leistung-card.is-blau  { background: #66bff0; border-color: #66bff0; }
    .leistung-card.is-gruen { background: #3b8f96; border-color: #3b8f96; }

    /* Dunkler Text auf den Farbflächen – AA-Kontrast (≥ 4,5:1) */
    .leistung-card.is-braun h3, .leistung-card.is-blau h3, .leistung-card.is-gruen h3,
    .leistung-card.is-braun p,  .leistung-card.is-blau p,  .leistung-card.is-gruen p,
    .leistung-card.is-braun .leistung-link,
    .leistung-card.is-blau .leistung-link,
    .leistung-card.is-gruen .leistung-link { color: #111111; }
    .leistung-card.is-braun .leistung-icon,
    .leistung-card.is-blau .leistung-icon,
    .leistung-card.is-gruen .leistung-icon {
      background: rgba(255,255,255,0.35);
      color: #111111;
    }

    /* ══ Cross-Promo (Augenarzt ↔ Ästhetik) ══ */
    .cross-promo {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .cross-promo-panel {
      padding: 52px max(28px, calc((100vw - 1400px) / 4 + 28px));
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .cross-promo-panel--augenarzt { background: #1B2E5E; }
    .cross-promo-panel--aesthetik { background: #3b8f96; }
    .cross-promo-eyebrow {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }
    .cross-promo-panel--augenarzt .cross-promo-eyebrow { color: rgba(102, 191, 240, 0.65); }
    .cross-promo-panel--aesthetik .cross-promo-eyebrow { color: rgba(200, 236, 239, 0.9); }
    .cross-promo-title {
      font-size: clamp(22px, 2.2vw, 30px);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin: 0;
    }
    .cross-promo-text {
      font-size: 16px;
      line-height: 1.7;
      margin: 0;
    }
    .cross-promo-panel--augenarzt .cross-promo-text { color: rgba(255, 255, 255, 0.6); }
    .cross-promo-panel--aesthetik .cross-promo-text { color: rgba(255, 255, 255, 0.88); }
    .cross-promo-btn {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 10px;
      padding: 13px 26px;
      background: rgba(255, 255, 255, 0.18);
      color: #ffffff;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, 0.38);
      border-radius: var(--radius);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background 0.2s, border-color 0.2s;
      width: fit-content;
    }
    .cross-promo-btn:hover {
      background: rgba(255, 255, 255, 0.28);
      border-color: rgba(255, 255, 255, 0.65);
    }
    @media (max-width: 767px) {
      .cross-promo { grid-template-columns: 1fr; }
      .cross-promo-panel { padding: 44px 20px; }
    }

    /* ══ Responsive – Tablet ══ */
    @media (max-width: 1023px) {
      .logo svg { height: 110px; }
      .nav-toggle { display: flex; }
      nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 8px 24px 20px;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        margin: 0;
        z-index: 100;
      }
      nav.open { display: flex; }
      nav a {
        font-size: 15px;
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
      }
      nav a:last-child { border-bottom: none; }

      /* Klappmenü im mobilen Menü: aufgeklappt darstellen */
      .nav-item-dropdown { display: block; width: 100%; }
      .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        margin: 0;
        padding: 2px 0 8px 14px;
        width: auto;
      }
      .nav-submenu a { padding: 10px 6px; font-size: 14px; white-space: normal; }

      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-content { padding: 60px 24px; }
      .hero-bg { min-height: 340px; }
      .hero-bg::before { background: linear-gradient(to bottom, var(--cream) 0%, rgba(245,237,227,0) 40%); }

      .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
      .schritte-grid { grid-template-columns: repeat(3, 1fr); }
      .schritt-info { grid-template-columns: 1fr; gap: 20px; }

      .aesthetik-inner { grid-template-columns: 1fr 0.85fr; min-height: auto; }
      .aesthetik-image { display: none; }
      .aesthetik-content { padding: 60px 40px; }
      .aesthetik-checklist { padding: 0 40px 0 32px; }

      .vorbereitung-inner { grid-template-columns: 1fr; gap: 32px; }
      .about-inner { gap: 48px; }
      .nachsorge-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ══ Responsive – Mobile ══ */
    @media (max-width: 767px) {
      .container { padding: 40px 16px; }
      .logo svg { height: 80px; }
      /* Header-CTA bei schmaler Ansicht ausblenden – verhindert zu breiten Header */
      header .header-inner > .btn-primary { display: none; }
      .hero { grid-template-columns: 1fr; }
      .hero-content { padding: 48px 16px; }
      .hero-bg { min-height: 240px; }
      .hero p { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .hero-action-col .btn { width: 100%; justify-content: center; }
      .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
      .leistungen-grid { grid-template-columns: 1fr; }
      .schritte-grid { grid-template-columns: 1fr; }
      .aesthetik-inner { grid-template-columns: 1fr; }
      .aesthetik-image { display: none; }
      .aesthetik-content { padding: 48px 20px 32px; }
      .aesthetik-content .btn { align-self: stretch; }
      .aesthetik-checklist {
        align-self: auto;
        border-left: none;
        border-top: 2px solid #d4c5b4;
        padding: 32px 20px 48px;
      }
      .vorbereitung-inner { grid-template-columns: 1fr; }
      .about-inner { grid-template-columns: 1fr; gap: 28px; }
      .nachsorge-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
      .cta-buttons { width: 100%; flex-direction: column; }
      .cta-buttons .btn { width: 100%; justify-content: center; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 16px;
      }
      .footer-bottom a { margin-left: 0; margin-right: 0; }
    }
  

/* ════════ Subpage-spezifisch (Leistungs-Detailseiten) ════════ */
.hero-back { display:inline-flex; align-items:center; gap:6px; font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--primary-dark); text-decoration:none; margin-bottom:16px; }
.hero-back:hover { text-decoration:underline; }
.hero-lead { font-size:18px; color:var(--muted); margin-bottom:28px; max-width:520px; line-height:1.7; }
.subpage .hero h1 { font-weight:700; }
.detail { background:var(--white); padding:72px 0; }
.detail .container, .ablauf .container, .erfolg .container { max-width:980px; }
.detail p { font-size:17px; color:var(--text); line-height:1.85; margin-bottom:18px; }
.detail p:last-child { margin-bottom:0; }
.ablauf { background:#f0ede8; padding:72px 0; }
.ablauf .section-tag { font-size:17px; }
.ablauf-box { background:var(--step-bg); border-radius:var(--radius); padding:32px 36px; }
.ablauf-box p { font-size:16px; color:rgba(255,255,255,0.92); line-height:1.75; margin-bottom:14px; }
.ablauf-box p:last-child { margin-bottom:0; }
.erfolg { background:var(--white); padding:72px 0 80px; }
.erfolg p { font-size:17px; color:var(--text); line-height:1.85; margin-bottom:16px; }
.erfolg p:last-child { margin-bottom:0; }
.erfolg-highlight { border-left:4px solid var(--sand); background:var(--sand-bg); padding:20px 24px; border-radius:0 var(--radius) var(--radius) 0; color:var(--primary-dark); font-style:italic; margin-top:24px; }
.cta-icon svg { width:44px; height:44px; }
@media (max-width:767px){ .detail,.ablauf,.erfolg{ padding:48px 0; } .ablauf-box{ padding:24px 22px; } }

/* ════════ index2: Leistungskarten weiß ════════ */
body.cards-weiss .leistung-card.is-braun,
body.cards-weiss .leistung-card.is-blau,
body.cards-weiss .leistung-card.is-gruen { background:var(--white); border-color:var(--border); }
body.cards-weiss .leistung-card.is-braun h3, body.cards-weiss .leistung-card.is-blau h3, body.cards-weiss .leistung-card.is-gruen h3 { color:var(--primary); }
body.cards-weiss .leistung-card.is-braun p, body.cards-weiss .leistung-card.is-blau p, body.cards-weiss .leistung-card.is-gruen p { color:var(--muted); }
body.cards-weiss .leistung-card.is-braun .leistung-link, body.cards-weiss .leistung-card.is-blau .leistung-link, body.cards-weiss .leistung-card.is-gruen .leistung-link { color:var(--primary); }
body.cards-weiss .leistung-card.is-braun .leistung-icon, body.cards-weiss .leistung-card.is-blau .leistung-icon, body.cards-weiss .leistung-card.is-gruen .leistung-icon { background:var(--cream); color:var(--primary); }
