/* ===================== TOP BAR ===================== */
.top-bar {
  background: #12436d;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(180,151,90,0.15);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.top-bar-contact {
  display: flex; gap: 1.5rem;
}
.top-bar-contact a {
  color: rgba(255,255,255,0.5); font-size: 0.78rem;
  display: flex; align-items: center; gap: 0.35rem; text-decoration: none;
  transition: color 0.2s;
}
.top-bar-contact a:hover { color: #b4975a; }
.top-bar-contact ion-icon { font-size: 0.9rem; color: #b4975a; }
.top-bar .lang-switch a { font-size: 0.75rem; color: rgba(255,255,255,0.45); padding: 0.2rem 0.45rem; }
.top-bar .lang-switch a:hover,
.top-bar .lang-switch a.active-lang { color: #b4975a; background: rgba(180,151,90,0.1); }
.top-bar .lang-switch .sep { color: rgba(255,255,255,0.2); font-size: 0.65rem; }

@media (max-width: 768px) { .top-bar-contact { display: none; } }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a2e; line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ===================== TYPOGRAPHY ===================== */
h1,h2,h3,h4 { font-weight: 600; line-height: 1.2; color: #1a1a2e; }
h1 { font-size: clamp(2.8rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.1rem; }
p  { color: #555; font-size: 1.05rem; margin-bottom: 1rem; }
a  { text-decoration: none; }

.serif { font-family: 'Playfair Display', serif; font-weight: 400; }
.gold  { color: #b4975a; }
.gold-gradient {
  background: linear-gradient(135deg, #d4af37, #b4975a);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===================== LAYOUT ===================== */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }

/* ===================== NAVBAR ===================== */
.nav {
  position: fixed;
  top: 32px; /* below top-bar */
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  padding: 0.8rem 0;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); padding: 0.5rem 0; }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo img { height: 80px; width: auto; display: block; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase;
  color: #1a1a2e; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #b4975a; }
.nav-links a.active { border-bottom: 2px solid #b4975a; padding-bottom: 2px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: #1a1a2e; cursor: pointer; }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  background-color: #1a5e99;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 65px 65px;
  display: flex; align-items: center;
  padding-top: 110px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -20%; left: -10%;
  width: 65vw; height: 65vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,151,90,0.12) 0%, transparent 65%);
  filter: blur(80px);
  animation: orb1 22s infinite ease-in-out alternate;
}
.hero::after {
  content: '';
  position: absolute; bottom: -20%; right: -5%;
  width: 55vw; height: 55vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(30,50,140,0.7) 0%, transparent 65%);
  filter: blur(90px);
  animation: orb1 28s infinite ease-in-out alternate-reverse;
}
@keyframes orb1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(5%,8%) scale(1.12); }
}
.hero-layout {
  display: flex; align-items: center; justify-content: space-between; gap: 3rem;
  position: relative; z-index: 1;
}
.hero-inner { position: relative; z-index: 1; max-width: 750px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: rgba(180,151,90,0.12); border: 1px solid rgba(180,151,90,0.3);
  color: #b4975a; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.2rem; border-radius: 100px; margin-bottom: 2rem;
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.hero-badge-right {
  flex-shrink: 0;
}
.hero-badge-right img {
  width: 440px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.hero p  { color: rgba(255,255,255,0.65); font-size: 1.2rem; max-width: 620px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem; transition: all 0.25s ease; cursor: pointer; border: none;
}
.btn-gold  { background: linear-gradient(135deg,#d4af37,#b4975a); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(180,151,90,0.4); }
.btn-ghost { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-dark  { background: #1a5e99; color: #fff; }
.btn-dark:hover { background: #2382ce; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,94,153,0.3); }

/* ===================== TRUST BAR ===================== */
.trust {
  background: #1c6cae;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.trust-item { text-align: center; }
.trust-item .num  { font-size: 2.8rem; font-weight: 700; color: #b4975a; font-family: 'Playfair Display',serif; line-height: 1; }
.trust-item .label { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0; }

/* ===================== SERVICES SECTION ===================== */
.services { background: #f8f9fc; }
.services-intro { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  align-items: stretch;
}

.service-card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #d4af37, #b4975a);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; color: #b4975a; margin-bottom: 1.2rem; display: block; }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.service-card p { min-height: 220px; }
@media (max-width: 768px) {
  .service-card p { min-height: auto; }
}
.service-card ul { list-style: none; margin-top: 1rem; }
.service-card ul li { font-size: 0.92rem; color: #666; padding: 0.3rem 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: flex-start; gap: 0.5rem; }
.service-card ul li::before { content: '→'; color: #b4975a; font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }

/* ===================== KANZLEI SECTION ===================== */
.kanzlei-section { background: #fff; }
.kanzlei-text p { color: #444; }
.kanzlei-features { margin-top: 2rem; display: grid; gap: 1rem; }
.kanzlei-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; background: #f8f9fc; border-radius: 12px;
  border-left: 3px solid #b4975a;
}
.kanzlei-feature-icon { color: #b4975a; font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.kanzlei-feature h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.kanzlei-feature p  { font-size: 0.9rem; margin-bottom: 0; color: #666; }

/* ===================== STANDORTE (DARK) ===================== */
.standorte { background: #1a5e99; }
.standorte h2 { color: #fff; }
.standorte p  { color: rgba(255,255,255,0.6); }
.standorte h4 { color: #b4975a; margin-bottom: 0.5rem; }
.standort-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.standort-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.8rem;
}
.standort-card h4 { color: #b4975a; margin-bottom: 0.8rem; }
.standort-card p  { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-bottom: 0; }
.contact-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(180,151,90,0.2);
  border-radius: 20px; padding: 3rem 2.5rem; text-align: center;
}
.contact-box ion-icon { font-size: 3.5rem; color: #b4975a; margin-bottom: 1.5rem; }
.contact-box h3 { color: #fff; margin-bottom: 1rem; }
.contact-box p  { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }

/* ===================== PARTNER GRID ===================== */
.partner-section { background: #f8f9fc; }
.partner-section .section-title { text-align: center; margin-bottom: 3rem; }
.partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 2rem; }
.partner-card {
  background: #fff; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05); text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s;
}
.partner-card:hover { transform: translateY(-6px); }
.partner-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg,#1a5e99,#2382ce);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem; color: #b4975a;
}
.partner-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.partner-card .role { color: #b4975a; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.4; }
.partner-card p { font-size: 0.88rem; color: #777; margin-bottom: 0; }

/* ===================== PAGE HEADER ===================== */
.page-header {
  background: #1a5e99;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 65px 65px;
  padding: 175px 0 80px; /* extra for top-bar + navbar */ position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(circle,rgba(180,151,90,0.1) 0%,transparent 65%); filter: blur(70px);
}
.page-header h1 { color: #fff; position: relative; z-index: 1; }
.page-header p   { color: rgba(255,255,255,0.6); position: relative; z-index: 1; max-width: 600px; margin-top: 1rem; }

/* ===================== LEISTUNGEN ===================== */
.leistung-block { padding: 80px 0; }
.leistung-block:nth-child(even) { background: #f8f9fc; }
.leistung-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.leistung-inner.rev { direction: rtl; }
.leistung-inner.rev > * { direction: ltr; }
.leistung-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(180,151,90,0.1); border: 1px solid rgba(180,151,90,0.25);
  color: #b4975a; padding: 0.4rem 1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.leistung-partner {
  background: #f0f4ff; border-left: 3px solid #b4975a;
  padding: 1rem 1.2rem; border-radius: 0 10px 10px 0;
  margin-bottom: 1.5rem; font-size: 0.9rem; color: #1a1a2e;
}
.leistung-list { list-style: none; margin: 1.5rem 0 0; }
.leistung-list li {
  padding: 0.6rem 0; border-bottom: 1px solid #eee;
  display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: #444;
}
.leistung-list li::before { content: '→'; color: #b4975a; flex-shrink: 0; }
.leistung-visual {
  background: linear-gradient(135deg, #1a5e99 0%, #2382ce 100%);
  border-radius: 24px; padding: 4rem 3rem; text-align: center;
  min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.leistung-visual ion-icon { font-size: 5rem; color: #b4975a; margin-bottom: 1.5rem; }
.leistung-visual h4 { color: #fff; font-size: 1.4rem; }
.leistung-visual p  { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 0; margin-top: 0.5rem; }

/* ===================== TIMELINE ===================== */
.timeline { list-style: none; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, #b4975a, transparent); }
.timeline li { position: relative; padding: 0 0 2.5rem 1.5rem; }
.timeline li::before { content: ''; position: absolute; left: -2.15rem; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: #b4975a; border: 3px solid #fff; box-shadow: 0 0 0 2px #b4975a; }
.timeline li h4 { margin-bottom: 0.4rem; color: #b4975a; }
.timeline li p  { margin-bottom: 0; font-size: 0.95rem; }

/* ===================== BOOK CARDS ===================== */
.book-card {
  background: #fff; border-radius: 16px; padding: 2rem 2.2rem;
  border-left: 4px solid #b4975a; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem; transition: transform 0.25s, box-shadow 0.25s;
}
.book-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.book-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.book-meta { font-size: 0.85rem; color: #999; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #f0f0f0; }
.book-card .content p { color: #555; font-size: 0.95rem; margin-bottom: 0; }

/* ===================== VORTRAG CARDS ===================== */
.vortrag-section { margin-bottom: 3.5rem; }
.vortrag-section h2 { font-size: 1.8rem; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.vortrag-section h2 ion-icon { color: #b4975a; }
.vortrag-list { list-style: none; display: grid; gap: 0.8rem; }
.vortrag-list li {
  background: #fff; border-radius: 12px; padding: 1.2rem 1.5rem;
  border-left: 3px solid #b4975a; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s;
}
.vortrag-list li:hover { transform: translateX(5px); }
.vortrag-speaker { font-weight: 700; color: #b4975a; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.3rem; }
.vortrag-title { color: #1a1a2e; font-size: 0.98rem; }

/* ===================== CONTACT FORM ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info .info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info .info-item ion-icon { font-size: 1.4rem; color: #b4975a; flex-shrink: 0; margin-top: 2px; }
.contact-info .info-item h4 { margin-bottom: 0.2rem; font-size: 0.95rem; }
.contact-info .info-item p  { font-size: 0.9rem; margin-bottom: 0; }
.form-card { background: #fff; border-radius: 24px; padding: 3rem; box-shadow: 0 10px 50px rgba(0,0,0,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #1a1a2e; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid #e0e0e0; border-radius: 10px;
  font-family: 'Inter',sans-serif; font-size: 0.95rem; background: #f8f9fc;
  transition: border-color 0.2s, box-shadow 0.2s; color: #1a1a2e;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: #b4975a; box-shadow: 0 0 0 3px rgba(180,151,90,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.88rem; color: #666; }
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }

/* ===================== LEGAL ===================== */
.legal-content h3 { font-size: 1.3rem; margin: 2rem 0 0.8rem; color: #1a5e99; padding-bottom: 0.5rem; border-bottom: 2px solid #b4975a; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p  { font-size: 0.95rem; color: #555; }
.legal-content ul { list-style: disc; margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.95rem; color: #555; margin-bottom: 0.4rem; }
.legal-content ol { margin-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ol li { font-size: 0.95rem; color: #555; margin-bottom: 0.4rem; }

/* ===================== FOOTER ===================== */
.footer { background: #12436d; color: #fff; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr; gap: 4rem; margin-bottom: 60px; }
.footer-logo img { height: 80px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer-brand p  { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-bottom: 0; }
.footer-col h4   { color: #fff; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-col ul   { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a  { color: rgba(255,255,255,0.45); font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul a:hover { color: #b4975a; }
.footer-col .addr { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.8; }
.footer-col .addr a { color: #b4975a; display: block; margin-top: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.3);
}

/* ===================== REVEAL ANIMATIONS ===================== */
.reveal { opacity: 0; transform: translateY(35px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .hero-layout { flex-direction: column; align-items: flex-start; }
  .hero-badge-right img { width: 340px; margin-top: 2rem; }
  .grid-2, .grid-2.rev, .leistung-inner, .leistung-inner.rev, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .leistung-inner.rev { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-3, .grid-4, .trust-grid, .standort-cards { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid-3, .grid-4, .trust-grid, .standort-cards { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}

/* ===================== HERO WITH IMAGE ===================== */
.hero-img-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
}
.hero-img-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,94,153,0.92) 0%, rgba(26,94,153,0.75) 60%, rgba(26,94,153,0.88) 100%);
}

/* ===================== MOBILE NAV OPEN ===================== */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  gap: 1.2rem;
}

/* ===================== FLOATING PHONE BUTTON ===================== */
.float-phone {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  display: flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, #d4af37, #b4975a);
  color: #fff; padding: 0.9rem 1.4rem; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  box-shadow: 0 8px 30px rgba(180,151,90,0.45);
  transition: all 0.25s ease;
  animation: pulse-gold 3s infinite;
}
.float-phone:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(180,151,90,0.55);
}
.float-phone ion-icon { font-size: 1.2rem; }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 8px 30px rgba(180,151,90,0.45); }
  50%       { box-shadow: 0 8px 40px rgba(180,151,90,0.7); }
}
@media (max-width: 768px) {
  .float-phone .float-label { display: none; }
  .float-phone { padding: 1rem; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
}

/* ===================== BACK TO TOP ===================== */
#back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 999;
  background: #1a5e99; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: #b4975a; }

/* ===================== SECTOR TILES ===================== */
.sector-tile {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; padding: 1.5rem 1rem; border-radius: 16px;
  background: #fff; border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center; transition: all 0.25s ease;
  cursor: default;
}
.sector-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.09);
  border-color: rgba(180,151,90,0.3);
}
.sector-tile ion-icon { font-size: 2rem; color: #b4975a; }
.sector-tile span { font-size: 0.88rem; font-weight: 600; color: #1a1a2e; line-height: 1.3; }

/* ===================== SERVICE CARD IMAGE ===================== */
.service-img {
  width: 100%; height: 180px; object-fit: cover;
  border-radius: 12px; margin-bottom: 1.2rem;
  display: block;
}

/* ===================== CONTACT QUICK STRIP ===================== */
.contact-strip {
  background: #1c6cae; padding: 1.2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.contact-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.contact-strip a, .contact-strip span {
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem; text-decoration: none;
  transition: color 0.2s;
}
.contact-strip a:hover { color: #b4975a; }
.contact-strip ion-icon { color: #b4975a; font-size: 1.1rem; }

/* ===================== SCROLL PROGRESS ===================== */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, #d4af37, #b4975a);
  width: 0%; transition: width 0.1s linear;
}

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: #1c6cae; border-top: 1px solid rgba(180,151,90,0.3);
  padding: 1.2rem 2rem; display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin: 0; }
#cookie-banner a { color: #b4975a; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg,#d4af37,#b4975a); color: #fff;
  padding: 0.55rem 1.4rem; border-radius: 100px; font-weight: 600;
  font-size: 0.85rem; border: none; cursor: pointer; transition: opacity 0.2s;
}
.btn-cookie-accept:hover { opacity: 0.85; }
.btn-cookie-reject {
  background: transparent; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6);
  padding: 0.55rem 1.2rem; border-radius: 100px; font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: #fff; }

/* ===================== QUOTE BANNER ===================== */
.quote-banner {
  background: #1a5e99; padding: 80px 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);
  background-size: 65px 65px;
  text-align: center;
}
.quote-banner blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,3vw,2.2rem);
  font-style: italic; color: #fff; max-width: 800px; margin: 0 auto;
  line-height: 1.6; position: relative;
}
.quote-banner blockquote::before {
  content: '"'; font-size: 6rem; color: rgba(180,151,90,0.2);
  position: absolute; top: -2rem; left: -1rem; line-height: 1;
  font-family: 'Playfair Display', serif;
}
.quote-banner cite { display: block; margin-top: 1.5rem; color: #b4975a; font-style: normal; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.08em; }

/* ===================== NEWS CARDS ===================== */
.news-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s ease;
  display: flex; flex-direction: column;
  border: 1px solid rgba(0,0,0,0.04);
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.news-card-tag { font-size: 0.75rem; font-weight: 700; color: #b4975a; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.news-card-body { padding: 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.4; }
.news-card-body p  { font-size: 0.9rem; color: #777; flex-grow: 1; margin-bottom: 1rem; }
.news-card-date { font-size: 0.8rem; color: #bbb; margin-top: auto; padding-top: 1rem; border-top: 1px solid #f0f0f0; }

/* ===================== FAQ ===================== */
.faq-item {
  border-bottom: 1px solid #eee; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.4rem 0; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; gap: 1rem;
  font-size: 1.05rem; font-weight: 600; color: #1a1a2e;
  transition: color 0.2s;
}
.faq-question:hover { color: #b4975a; }
.faq-question ion-icon { color: #b4975a; font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.open ion-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-answer.open { max-height: 300px; padding-bottom: 1.2rem; }
.faq-answer p { color: #666; font-size: 0.97rem; margin: 0; }

/* ===================== KARRIERE ===================== */
.job-card {
  background: #fff; border-radius: 16px; padding: 2rem 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); margin-bottom: 1.5rem;
  border-left: 4px solid #b4975a; display: flex;
  justify-content: space-between; align-items: center; gap: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.job-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.job-card .job-meta { font-size: 0.85rem; color: #999; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.job-card .job-meta span { display: flex; align-items: center; gap: 0.3rem; }

/* ===================== LANG SWITCHER ===================== */
.lang-switch {
  display: flex; gap: 0.4rem; align-items: center;
}
.lang-switch a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  color: #999; padding: 0.25rem 0.5rem; border-radius: 4px; transition: all 0.2s;
}
.lang-switch a:hover, .lang-switch a.active-lang { color: #b4975a; background: rgba(180,151,90,0.08); }
.lang-switch .sep { color: #ddd; font-size: 0.7rem; }

/* ===================== PRINT ===================== */
@media print {
  .nav, .float-phone, #back-to-top, #cookie-banner, #scroll-progress, .footer { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .legal-content h3 { color: #000; border-bottom: 1px solid #000; }
  .page-header { background: #fff !important; color: #000 !important; padding: 1rem 0 !important; }
  .page-header h1, .page-header p { color: #000 !important; }
}

