 /* Inter (variable, self-hosted) — subsets: Latin + Latin Extended-A (hu diacritics: á é í ó ö ő ú ü ű) */
    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400 700;
      font-display: swap;
      src: url('/assets/fonts/inter-latin-var.woff2') format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    @font-face {
      font-family: 'Inter';
      font-style: normal;
      font-weight: 400 700;
      font-display: swap;
      src: url('/assets/fonts/inter-latin-ext-var.woff2') format('woff2');
      unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
    }

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

    :root {
      --primary: #006064;
      --primary-light: #4db6ac;
      --primary-dark: #00363a;
      --accent: #4db6ac;
      --neutral-light: #f1f8f9;
      --neutral: #cfd8dc;
      --neutral-dark: #607d8b;
      --surface: #ffffff;
      --text-primary: #102a2c;
      --text-secondary: #455a64;
      --success: #2e7d32;
      --error: #c62828;
      --link: #00838f;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
      --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
      --border-radius: 12px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: var(--text-primary);
      background: var(--neutral-light);
      overflow-x: hidden;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.1);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      display: flex;
      flex-direction: column;
    }

    .logo-name {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary-dark);
      line-height: 1.1;
    }

    .logo-subtitle {
      font-size: 0.9rem;
      color: var(--text-secondary);
      font-weight: 400;
    }

    .nav-menu {
      display: none;
      gap: 2rem;
    }

    .nav-link {
      color: var(--text-primary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .menu-toggle {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--primary);
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 0.5rem;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--primary);
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      z-index: 999;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      transform: translateY(-100%);
      transition: transform 0.4s ease;
    }

    .mobile-menu.active {
      transform: translateY(0);
    }

    .mobile-menu .nav-link {
      font-size: 1.5rem;
      font-weight: 600;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('shell.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--gradient);
      opacity: 0.05;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 2rem;
      animation: fadeInUp 1s ease-out;
    }

    .hero-quote {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-medium);
      margin-bottom: 2rem;
      border-left: 4px solid var(--primary);
    }

    .hero-quote blockquote {
      font-size: 1.1rem;
      font-style: italic;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .hero-quote cite {
      font-weight: 600;
      color: var(--primary);
      font-style: normal;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gradient);
      color: white;
      padding: 1rem 2rem;
      border: none;
      border-radius: var(--border-radius);
      font-size: 1.1rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: var(--shadow-medium);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    }

    /* Services Section */
    .services {
      padding: 5rem 0;
      background: white;
    }

    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .service-card {
      background: white;
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-light);
      border-left: 4px solid var(--primary);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .service-card h3 {
      color: var(--primary);
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
    }

    .doctor-profile {
      display: grid;
      gap: 2rem;
      align-items: center;
      margin-top: 3rem;
    }

    .doctor-image {
      display: block;
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-medium);
      justify-self: center;
    }

    .subpage-links {
      background: var(--neutral-light);
      padding: 1.1rem 1.5rem;
      border-radius: var(--border-radius);
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      box-sizing: border-box;
    }

    .subpage-links h3 {
      margin-bottom: 0.4rem;
      color: var(--primary-dark);
    }

    .kviz-inline-subtitle {
      color: var(--text-secondary);
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .kviz-topics-stack {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .kviz-topic-link {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      justify-content: center;
      column-gap: 0.3rem;
      background: var(--gradient);
      color: white;
      text-decoration: none;
      padding: 0.7rem 1.25rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
    }

    .kviz-topic-link:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-medium);
    }

    .kviz-topic-title {
      font-size: 1.05rem;
      font-weight: 700;
    }

    .kviz-topic-desc {
      font-size: 0.95rem;
      font-weight: 400;
      opacity: 0.92;
    }

    /* Schedule Section */
    .schedule {
      background: var(--gradient);
      color: white;
      padding: 3rem 0;
      text-align: center;
    }

    .schedule-text {
      max-width: 560px;
      margin: 1.5rem auto 0;
      font-size: 1.15rem;
      line-height: 1.7;
    }

    .schedule-text p {
      margin: 0.4rem 0;
    }

    /* Contact Section */
    .contact {
      padding: 5rem 0;
      background: white;
    }

    .contact-content {
      display: grid;
      gap: 3rem;
    }

    .contact-card {
      background: var(--neutral-light);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-light);
    }

    .contact-card h3 {
      color: var(--primary);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .phone-numbers {
      display: grid;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .phone-number {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: white;
      padding: 1rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow-light);
    }

    .phone-link {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .phone-link:hover {
      color: var(--primary-dark);
    }

    .contact-hours {
      background: var(--primary);
      color: white;
      padding: 1rem;
      border-radius: var(--border-radius);
      margin: 1rem 0;
    }

    .address-info {
      background: white;
      padding: 1.5rem;
      border-radius: var(--border-radius);
      border-left: 4px solid var(--accent);
    }

    /* Footer */
    .footer {
      background: var(--primary-dark);
      color: white;
      padding: 2rem 0;
      text-align: center;
    }

    .footer a {
      color: var(--primary-light);
      text-decoration: none;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Floating Action Button */
    .fab {
        
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background: var(--gradient);
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-medium);
      cursor: pointer;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .fab:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    }

   .bounce {
  animation: bounce 5s ease-in-out infinite;
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  90%  { transform: translateY(0); }       /* 0–95% = Ruhe */
  97%  { transform: translateY(-40px); }   /* kurz hochspringen */
  100% { transform: translateY(0); }       /* zurück */
}

    /* Responsive Design */
    @media (min-width: 768px) {
      .nav-menu {
        display: flex;
      }

      .menu-toggle {
        display: none;
      }

      .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      }

      .doctor-profile {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .contact-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }

      .hero-quote {
        padding: 3rem;
      }

      .hero-quote blockquote {
        font-size: 1.3rem;
      }

      .section-title {
        font-size: 3rem;
      }
    }

    /* Hover effects for better interactivity */
    .interactive {
      transition: all 0.3s ease;
    }

    .interactive:hover {
      transform: translateY(-2px);
    }

    /* Scroll indicator */
    .scroll-indicator {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: var(--gradient);
      z-index: 1001;
      transition: width 0.1s ease;
    }

    /* Accessibility: skip link */
    .skip-link {
      position: absolute;
      left: 1rem;
      top: -4rem;
      background: var(--primary-dark);
      color: white;
      padding: 0.75rem 1.25rem;
      border-radius: var(--border-radius);
      z-index: 2000;
      text-decoration: none;
      font-weight: 600;
      transition: top 0.2s ease;
    }

    .skip-link:focus {
      top: 1rem;
    }

    /* Accessibility: visually hidden but available to screen readers */
    .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;
    }

    /* Accessibility: visible focus states for keyboard users */
    a:focus-visible,
    button:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }

    /* Utility classes (replace former inline styles) */
    .section-title--light {
      color: white;
    }

    .notice-box {
      background: #fff3cd;
      padding: 1rem;
      border-radius: 8px;
      border-left: 4px solid #ffc107;
    }

    .plain-list {
      list-style: none;
      padding: 0;
    }

    .u-my-1 {
      margin: 1rem 0;
    }

    .u-mt-1 {
      margin-top: 1rem;
    }

    .cta-button--outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      box-shadow: none;
    }

    .cta-button--outline:hover {
      background: var(--primary);
      color: white;
    }

    .cta-button--block {
      width: 100%;
      justify-content: center;
      margin-top: 1rem;
    }

    /* Simple placeholder-page content sections (reuses existing surfaces) */
    .placeholder-page {
      padding: 8rem 0 5rem;
      background: white;
      min-height: 60vh;
    }

    .breadcrumb-back {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      color: var(--text-secondary);
      text-decoration: none;
      font-weight: 500;
      margin-bottom: 2rem;
    }

    .breadcrumb-back:hover {
      color: var(--primary);
    }

    .placeholder-page .section-subtitle {
      margin-bottom: 2rem;
    }

    .logo-link {
      text-decoration: none;
      color: inherit;
    }

    .legal-page {
      padding: 8rem 0 5rem;
      background: white;
      min-height: 60vh;
    }

    .legal-page h1 {
      color: var(--primary-dark);
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
    }

    .legal-page h2 {
      color: var(--primary);
      font-size: 1.3rem;
      margin: 2rem 0 0.75rem;
    }

    .legal-page p,
    .legal-page li {
      color: var(--text-secondary);
      margin-bottom: 0.75rem;
    }

    .legal-page ul {
      padding-left: 1.5rem;
    }

    .todo-flag {
      display: inline-block;
      background: #fff3cd;
      color: #7a5a00;
      border: 1px solid #ffc107;
      border-radius: 6px;
      padding: 0.1rem 0.5rem;
      font-weight: 700;
      font-size: 0.85em;
    }

    .not-found {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 1rem 3rem;
    }

    .not-found h1 {
      font-size: 3rem;
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }

    .not-found p {
      color: var(--text-secondary);
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    /* Respect reduced-motion preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
      }
      html {
        scroll-behavior: auto;
      }
    }