@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #0F1F3D;
  --navy-mid:   #1a3358;
  --navy-light: #243d6e;
  --gold:       #C9A96E;
  --gold-light: #e8d5b0;
  --white:      #FFFFFF;
  --off-white:  #F8F8F5;
  --text:       #1a1a2e;
  --text-light: #5a6178;
  --border:     #E4E4DF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 2rem;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }
.nav-logo-name { font-size: 1rem; font-weight: 600; color: var(--navy); letter-spacing: -0.02em; }
.nav-logo-sub  { font-size: 0.58rem; font-weight: 500; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.875rem; font-weight: 450; color: var(--text-light);
  text-decoration: none; transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 0.5rem 1.1rem; border-radius: 4px;
  font-size: 0.82rem !important; font-weight: 500 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

/* ── UTILS ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

.tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
h1,h2,h3,h4 { font-weight: 600; line-height: 1.15; letter-spacing: -0.025em; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--text-light); line-height: 1.75; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.6rem; border-radius: 4px;
  font-size: 0.875rem; font-weight: 500; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none; letter-spacing: 0.01em;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; }
.btn-gold:hover { background: #b8924f; color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 68px; overflow: hidden; position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.hero-eyebrow-line { width: 28px; height: 1.5px; background: var(--gold); }
.hero-eyebrow-text {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
}
.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: var(--text-light); max-width: 480px;
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-direction: column; gap: 0.6rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--text-light);
}
.trust-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(201,169,110,0.15); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 0.6rem; font-weight: 700;
}

/* ── OPTICAL SVG VISUAL ── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.optical-svg { width: 100%; max-width: 480px; opacity: 0.9; }

/* ── INSIDER CLAIMS ── */
.claims-section { background: var(--navy); padding: 5rem 0; }
.claims-intro { text-align: center; margin-bottom: 3rem; }
.claims-intro h2 { color: var(--white); }
.claims-intro p { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0.75rem auto 0; }
.claims-slider-wrap { position: relative; }
.claims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.claims-dots { display: none; justify-content: center; gap: 8px; margin-top: 1.5rem; }
.claims-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.2s; }
.claims-dot.active { background: var(--gold); }
.claim-card {
  padding: 1.75rem; border: 1px solid rgba(201,169,110,0.2); border-radius: 6px;
}
.claim-quote {
  font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.8;
  margin-bottom: 1.25rem; font-style: italic;
}
.claim-divider { width: 24px; height: 1px; background: var(--gold); margin-bottom: 1rem; }
.claim-response { font-size: 0.85rem; color: var(--gold); font-weight: 500; line-height: 1.6; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; margin-top: 3rem;
}
.step-num {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.step p  { font-size: 0.875rem; }
.step-connector {
  display: none;
}

/* ── TRUST ── */
.trust-section { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 2.5rem 2rem; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon-wrap {
  width: 40px; height: 40px; background: var(--navy); border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-item h4 { font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--navy); }
.trust-item p  { font-size: 0.82rem; }

/* ── CTA SECTION ── */
.cta-section { background: var(--navy); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-section p  { color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── JOB CARDS ── */
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 2rem; }
.job-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  padding: 1.6rem; transition: all 0.25s; position: relative;
}
.job-card:hover { border-color: var(--navy); box-shadow: 0 8px 32px rgba(15,31,61,0.08); transform: translateY(-2px); }
.job-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; }
.job-badge {
  display: inline-flex; align-items: center; padding: 0.28rem 0.7rem; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em;
}
.badge-op   { background: rgba(15,31,61,0.08); color: var(--navy); }
.badge-kon  { background: rgba(201,169,110,0.15); color: #8a6830; }
.badge-mix  { background: rgba(44,96,160,0.1); color: #2d5a8e; }
.badge-rad  { background: rgba(30,90,120,0.1); color: #1e5a78; }
.badge-derm { background: rgba(140,60,80,0.1); color: #8c3c50; }
.badge-anae { background: rgba(30,100,80,0.1); color: #1e6450; }
.job-new   { font-size: 0.65rem; font-weight: 600; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }
.job-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.job-card .job-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1rem; }
.job-meta-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.78rem; color: var(--text-light);
}
.job-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.job-tag {
  padding: 0.22rem 0.6rem; background: var(--off-white);
  border-radius: 3px; font-size: 0.72rem; color: var(--text-light);
}
.job-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.job-discreet { font-size: 0.72rem; color: var(--text-light); display: flex; align-items: center; gap: 0.35rem; }
.jobs-more {
  grid-column: 1 / -1; border: 1.5px dashed var(--border); border-radius: 8px;
  padding: 2.5rem; text-align: center; background: var(--off-white);
}
.jobs-more p { font-size: 0.95rem; margin-bottom: 1rem; }

/* filter pills */
.filter-row { display: flex; gap: 0.6rem; margin-top: 1.25rem; flex-wrap: wrap; }
.filter-row + .filter-row { margin-top: 0.6rem; }
.filter-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); display: flex; align-items: center; margin-right: 0.2rem; }
.filter-pill {
  padding: 0.4rem 0.9rem; border-radius: 100px; font-size: 0.78rem;
  font-weight: 500; border: 1.5px solid var(--border); background: var(--white);
  color: var(--text-light); cursor: pointer; transition: all 0.2s;
}
.filter-pill:hover, .filter-pill.active {
  border-color: var(--navy); color: var(--navy); background: var(--off-white);
}
.filter-pill.active-specialty { border-color: var(--gold); color: #8a6830; background: rgba(201,169,110,0.08); }

/* claim specialty tag */
.claim-specialty { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.75rem; display: block; }

/* ── ABOUT ── */
.page-hero { padding: 8rem 0 4rem; }
.page-hero-dark { background: var(--navy); }
.page-hero-dark h1, .page-hero-dark .tag { color: var(--white); }
.page-hero-dark h1 em { font-style: normal; color: var(--gold); }
.page-hero-dark p { color: rgba(255,255,255,0.55); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.sticky-col { position: sticky; top: 100px; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; margin: 1.75rem 0; }
.value-list li { display: flex; gap: 0.85rem; align-items: flex-start; font-size: 0.9rem; }
.v-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); margin-top: 0.6rem; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: 8px; overflow: hidden; margin-top: 2rem; }
.faq-item { background: var(--white); padding: 1.4rem 1.6rem; }
.faq-item h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.45rem; }
.faq-item p { font-size: 0.85rem; }

/* ── KLINIKEN ── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin: 3rem 0; }
.stat-card { padding: 2rem; border: 1px solid var(--border); border-radius: 8px; text-align: center; }
.stat-card .stat-num { font-size: 2.5rem; font-weight: 700; color: var(--navy); letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.4rem; }
.stat-card .stat-num span { color: var(--gold); }
.stat-card p { font-size: 0.82rem; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(15,31,61,0.65); z-index: 1000;
  align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 10px; padding: 2.25rem;
  max-width: 440px; width: 90%; position: relative;
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  color: var(--text-light); font-size: 1.4rem; line-height: 1;
}
.modal h3 { margin-bottom: 0.35rem; }
.modal-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 0.9rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 500; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.6rem 0.85rem; border: 1.5px solid var(--border);
  border-radius: 5px; font-family: 'Inter', sans-serif; font-size: 0.85rem;
  color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 70px; }
.form-upload-label {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; padding: 1.1rem; border: 1.5px dashed var(--border);
  border-radius: 5px; cursor: pointer; transition: border-color 0.2s; text-align: center;
}
.form-upload-label:hover { border-color: var(--navy); }
.form-upload-label span { font-size: 0.78rem; color: var(--text-light); }
.form-upload-label strong { font-size: 0.82rem; color: var(--navy); }
.form-privacy { font-size: 0.72rem; color: var(--text-light); margin-top: 0.6rem; line-height: 1.55; }
.form-privacy strong { color: var(--navy); }
.form-privacy a { color: var(--navy); }
.form-checkbox { margin-top: 0.75rem; }
.form-checkbox .checkbox-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.75rem; color: var(--text-light); line-height: 1.5; cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 0.15rem; flex-shrink: 0; width: 15px; height: 15px;
  accent-color: var(--navy); cursor: pointer;
}
.form-checkbox a { color: var(--navy); text-decoration: underline; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 2.5rem 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand { text-decoration: none; }
.footer-brand-name { font-size: 0.9rem; font-weight: 600; color: var(--white); display: block; letter-spacing: -0.01em; }
.footer-brand-sub  { font-size: 0.58rem; font-weight: 500; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.75rem; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 0.5rem 0 1rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(15,31,61,0.08);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; padding-bottom: 0.5rem; }
  .nav-links a { padding: 0.9rem 2rem; display: block; font-size: 0.95rem; }
  .nav-cta { margin: 0.75rem 1.5rem 0 !important; padding: 0.65rem 1.25rem !important; text-align: center; display: block !important; }

  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .kliniken-deco { display: none; }
  .positionen-deco { display: none; }
  .claims-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }
  .claims-grid::-webkit-scrollbar { display: none; }
  .claims-grid .claim-card {
    min-width: 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
  }
  .claims-dots { display: flex; }
  .steps-grid, .trust-grid, .stat-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .jobs-grid { grid-template-columns: 1fr; }

  /* Über-uns hero grid (inline style override) */
  .about-hero-grid { grid-template-columns: 1fr !important; }
  .about-hero-grid img { max-width: 100% !important; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
}
