:root {
  --navy: #0F172A;
  --navy2: #1E2937;
  --gold: #D4AF37;
  --gold-light: #E5C45F;
  --cream: #F8FAFC;
  --cream2: #F1F5F9;
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-nav: #ffffff;
  --surface: #FFFFFF;
  --text-primary: #475569;
  --text-secondary: #64748B;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  --heading-color: #0F172A;
  --border-color: rgba(212,175,55,0.25);
  --shadow: rgba(212,175,55,0.12);
  --card-bg: #FFFFFF;
  --icon-bg: #F8FAFC;
  --stat-bg: #FFFFFF;
  --contact-icon-bg: #F8FAFC;
  --footer-bg: #0F172A;
  --input-bg: #FFFFFF;
  --input-border: rgba(212,175,55,0.3);
  --overlay-bg: rgba(15,23,42,0.88);
  --overlay-content: #FFFFFF;
  --overlay-text: #475569;
  --section-alt: #F1F5F9;
}
[data-theme="dark"] {
  --bg-primary: #0F172A;
  --bg-secondary: #1E2937;
  --bg-card: #1E2937;
  --bg-nav: #ffffffd3;
  --surface: #1E2937;
  --text-primary: #E2E8F0;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-inverse: #FFFFFF;
  --heading-color: #E5C45F;
  --border-color: rgba(212,175,55,0.35);
  --shadow: rgba(212,175,55,0.15);
  --card-bg: #1E2937;
  --icon-bg: rgba(212,175,55,0.15);
  --stat-bg: #1E2937;
  --contact-icon-bg: rgba(212,175,55,0.15);
  --footer-bg: #0F172A;
  --input-bg: #1E2937;
  --input-border: rgba(212,175,55,0.25);
  --overlay-bg: rgba(15,23,42,0.95);
  --overlay-content: #1E2937;
  --overlay-text: #CBD5E1;
  --section-alt: #1E2937;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}
/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding: 0 5% !important;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  transition: background 0.3s;
}
.logo-img {
  height: 60px; width: auto; display: block;
  object-fit: contain; margin: 0;
}
.logo-fallback {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.04em; text-decoration: none;
}
.logo-fallback span { color: var(--text-inverse); }
.nav-links {
  display: flex; align-items: center; gap: 1.6rem; list-style: none;
}
.nav-links a {
  color: #d1a338;
  text-decoration: none; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-controls { display: flex; align-items: center; gap: 8px; }
.lang-toggle {
  display: flex; gap: 3px;
  background: #d4af3770;
  border-radius: 20px; padding: 3px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: #d4af37;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 16px; transition: all 0.2s;
}
.lang-btn.active { background: var(--gold); color: var(--navy); }
.theme-btn {
  background: #d4af3770;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; cursor: pointer;
  color: rgba(255,255,255,0.9); font-size: 0.9rem;
  padding: 5px 12px; transition: all 0.2s;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
}
.theme-btn:hover { background: rgba(212,175,55,0.25); border-color: var(--gold); color: var(--gold-light); }
.theme-btn .theme-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #121c2e; border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }
.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: 70px; left: 0; width: 100%;
  background: var(--navy2); padding: 1.5rem 5%;
  border-bottom: 1px solid rgba(255, 0, 0, 0.1);
  z-index: 99; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 1rem; font-weight: 500; padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; gap: 10px; flex-wrap: wrap;
}
.mobile-menu .mobile-lang { display: flex; gap: 4px; }
.mobile-menu .mobile-lang .lang-btn { padding: 6px 14px; font-size: 0.85rem; }
.mobile-theme-btn {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px; cursor: pointer;
  color: rgba(255,255,255,0.9); font-size: 0.85rem; padding: 6px 14px;
  transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy2) 55%, #1E2937 100%);
  display: flex; align-items: center;
  padding: 100px 5% 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,175,55,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(212,175,55,0.08) 0%, transparent 60%);
}
.hero-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute;
  border: 1px solid rgba(212,175,55,0.12); border-radius: 50%;
}
.hero-lines::before { width: 800px; height: 800px; top: -200px; right: -200px; }
.hero-lines::after { width: 500px; height: 500px; bottom: -150px; left: -100px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-content { animation: fadeUp 1s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold-light);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 2rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.18;
  color: var(--text-inverse); margin-bottom: 1.2rem;
}
h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 0.98rem; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 1.6rem; max-width: 520px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 2rem; }
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem; padding: 6px 14px; border-radius: 20px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); font-weight: 700; font-size: 0.92rem;
  padding: 14px 32px; border-radius: 4px; text-decoration: none;
  letter-spacing: 0.04em; border: none; cursor: pointer;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(212,175,55,0.5); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.hero-visual { animation: fadeUp 1s ease 0.2s both; position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.2);
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.7) 100%);
}
/* ===== SECTIONS ===== */
section { padding: 96px 5%; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.section-label::after {
  content: ''; flex: 1; max-width: 40px; height: 1px;
  background: var(--gold); opacity: 0.4;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--heading-color); margin-bottom: 1rem;
  transition: color 0.3s;
}
.section-desc {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.7; max-width: 560px; margin-bottom: 3rem;
  transition: color 0.3s;
}
#hero, #leistungen, #ablauf, #ueber, #kandidaten, #kontakt { scroll-margin-top: 80px; }
/* ===== IMAGE MARQUEE ===== */
.image-marquee {
  background: var(--bg-secondary);
  padding: 32px 0; overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  transition: background 0.3s;
}
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-track {
  display: flex; gap: 28px;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0; height: 92px; width: 92px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 22px var(--shadow); transition: all 0.4s ease;
}
.marquee-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.marquee-item:hover { transform: scale(1.06); }
.marquee-item:hover img { transform: scale(1.12); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
/* ===== LEISTUNGEN ===== */
#leistungen { background: var(--bg-card); transition: background 0.3s; }
.leistungen-inner { max-width: 1100px; margin: 0 auto; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 4px; padding: 2rem;
  position: relative; overflow: hidden; transition: all 0.3s;
  box-shadow: 0 4px 12px var(--shadow);
  cursor: pointer;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 32px rgba(212,175,55,0.2); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.4rem;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--heading-color); margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; transition: color 0.3s; }
.card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  margin-top: 1rem; transition: gap 0.2s;
}
.card:hover .card-arrow { gap: 10px; }
/* ===== CARD MODAL ===== */
.card-modal {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,0.9); backdrop-filter: blur(8px);
  overflow-y: auto; padding: 60px 5%;
  align-items: flex-start; justify-content: center;
}
.card-modal.active { display: flex; }
.card-modal-content {
  background: var(--overlay-content); border-radius: 12px;
  padding: 2.5rem; max-width: 680px; width: 100%;
  position: relative; animation: fadeUp 0.3s ease;
  border: 1px solid var(--border-color);
  transition: background 0.3s;
}
.card-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--text-muted); line-height: 1; padding: 4px 8px;
}
.card-modal-close:hover { color: var(--heading-color); }
.card-modal-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.2rem;
}
.card-modal-content h2 { font-size: 1.6rem; margin-bottom: 0.5rem; color: var(--heading-color); }
.card-modal-content .modal-sub {
  font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.8rem; line-height: 1.6;
}
.modal-section-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; margin-top: 1.4rem;
}
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.modal-tag {
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--text-primary); font-size: 0.8rem;
  padding: 5px 13px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
}
.modal-tag::before { content: '✔'; color: var(--gold); font-size: 0.7rem; }
.modal-strong-words { margin-top: 1.2rem; }
.modal-strong-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--text-secondary);
  padding: 5px 0; border-bottom: 1px solid var(--border-color);
}
.modal-strong-item::before { content: '✔'; color: var(--gold); font-weight: 700; }
/* ===== ABLAUF ===== */
#ablauf { background: var(--navy); position: relative; overflow: hidden; }
[data-theme="dark"] #ablauf { background: #1E2937; }
#ablauf::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 70%);
  pointer-events: none;
}
#ablauf h2 { color: var(--text-inverse); }
#ablauf .section-label { color: var(--gold-light); }
#ablauf .section-desc { color: rgba(255,255,255,0.7); }
.ablauf-inner { max-width: 900px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(212,175,55,0.15) 100%);
}
.step { display: flex; gap: 2rem; padding: 1.8rem 0; position: relative; }
.step-num {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--navy); position: relative; z-index: 1;
}
.step-body { padding-top: 10px; }
.step-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--text-inverse); margin-bottom: 0.3rem; }
.step-body p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
/* ===== ÜBER UNS ===== */
#ueber { background: var(--section-alt); transition: background 0.3s; }
.ueber-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ueber-visual { position: relative; aspect-ratio: 1; max-width: 440px; }
.ueber-box {
  width: 85%; aspect-ratio: 1;
  background:linear-gradient(135deg, #ffffff 0%, #ffffff 100%);;
  border-radius: 4px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
}
[data-theme="dark"] .ueber-box { background: linear-gradient(135deg, #ffffff 0%, #0F172A 100%); border: 1px solid rgba(212,175,55,0.2); }
.ueber-logo-large { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.ueber-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase; }
.ueber-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; aspect-ratio: 1;
  border: 3px solid var(--gold); border-radius: 4px; opacity: 0.25; pointer-events: none;
}
.ueber-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.stat-box {
  background: var(--stat-bg); border: 1px solid var(--border-color);
  border-radius: 4px; padding: 1.2rem; text-align: center; transition: background 0.3s;
}
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; transition: color 0.3s; }
/* ===== UEBER TEXT SECTION ===== */
.ueber-text-section { background: var(--bg-card); padding: 80px 5%; transition: background 0.3s; }
.ueber-text-inner { max-width: 1100px; margin: 0 auto; }
.ueber-text-inner h2 { margin-bottom: 1.2rem; }
.ueber-text-inner p { font-size: 1rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; max-width: 700px; transition: color 0.3s; }
.ueber-feature-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.ueber-feat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px; padding: 1.4rem;
  display: flex; align-items: flex-start; gap: 12px;
  transition: all 0.3s;
}
.ueber-feat-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.ueber-feat-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ueber-feat-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: var(--heading-color);
  margin-bottom: 0.3rem; transition: color 0.3s;
}
.ueber-feat-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; transition: color 0.3s; }
/* ===== CV CANDIDATE CARDS ===== */
#kandidaten { background: var(--bg-secondary); transition: background 0.3s; }
.cv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.cv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px; overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 4px 16px var(--shadow);
}
.cv-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(212,175,55,0.18);
}
.cv-card-header {
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}
/* ===== CV AVATAR (ŞƏKİL) ===== */
.cv-avatar {
  width: 64px; /* Bir az böyütdüm ki, daha gözəl görünsün */
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  flex-shrink: 0;
  margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.cv-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%; /* ƏSAS DÜZƏLİŞ BURADADIR! */
}
.cv-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--heading-color); margin-bottom: 3px;
  transition: color 0.3s;
}
.cv-card-location {
  font-size: 0.8rem; color: var(--text-muted);
  margin-bottom: 10px; transition: color 0.3s;
}
.cv-type-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  padding: 4px 12px; border-radius: 20px; letter-spacing: 0.04em;
}
.cv-card-body { padding: 1.2rem 1.5rem 1.5rem; }
.cv-tagline {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 1rem;
  transition: color 0.3s;
}
.cv-section-title {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold);
  margin: 1rem 0 0.5rem;
}
.cv-skills-wrap { display: flex; flex-wrap: wrap; gap: 5px; }
.cv-skill-tag {
  font-size: 0.75rem; padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary); background: var(--bg-secondary);
  transition: color 0.3s, background 0.3s;
}
.cv-exp-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.82rem; padding: 4px 0;
  border-bottom: 1px solid var(--border-color);
}
.cv-exp-row:last-child { border-bottom: none; }
.cv-exp-title { color: var(--text-primary); font-weight: 500; transition: color 0.3s; }
.cv-exp-year { color: var(--text-muted); font-size: 0.75rem; transition: color 0.3s; }
.cv-lang-wrap { display: flex; flex-wrap: wrap; gap: 5px; }
.cv-lang-tag {
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
}
/* ===== KONTAKT ===== */
#kontakt { background: var(--bg-card); transition: background 0.3s; }
.kontakt-inner { max-width: 900px; margin: 0 auto; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--contact-icon-bg); border: 1px solid var(--border-color);
  border-radius: 3px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: background 0.3s;
}
.contact-item strong {
  display: block; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 2px; transition: color 0.3s;
}
.contact-item a, .contact-item p { color: var(--text-primary); font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: color 0.3s; }
.contact-link-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.contact-link {
  color: var(--text-primary); font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: color 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.contact-link:hover { color: var(--gold); }
.contact-action-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 7px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; text-decoration: none;
  border: 1.5px solid; transition: all 0.22s; cursor: pointer;
  white-space: nowrap;
}
.contact-action-btn.phone { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.4); color: #3b82f6; }
.contact-action-btn.phone:hover { background: #3b82f6; color: #fff; border-color: #3b82f6; box-shadow: 0 4px 14px rgba(59,130,246,0.4); }
.contact-action-btn.email { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.4); color: var(--gold); }
.contact-action-btn.email:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); box-shadow: 0 4px 14px rgba(212,175,55,0.4); }
.contact-action-btn.whatsapp { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.4); color: #25D366; }
.contact-action-btn.whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
.contact-action-btn svg { width: 14px; height: 14px; }
/* ===== FOOTER ===== */
footer { background: var(--footer-bg); transition: background 0.3s; }
.footer-top {
  padding: 60px 5% 48px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto;
}
.footer-brand .logo-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.05em;
  text-decoration: none; display: block; margin-bottom: 1rem;
}
.footer-brand .logo-footer span { color: var(--text-inverse); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--gold-light); margin-bottom: 1.2rem; letter-spacing: 0.05em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-col h4 {
  font-family: 'Playfair Display', serif; font-size: 0.95rem;
  font-weight: 700; color: var(--gold-light); margin-bottom: 1.2rem; letter-spacing: 0.05em;
}
.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; }
.fc-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.footer-contact-item a, .footer-contact-item span {
  color: rgba(255,255,255,0.8); font-size: 0.85rem;
  text-decoration: none; transition: color 0.2s; font-weight: 500;
}
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 22px 5%; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1rem; max-width: 1200px; margin: 0 auto;
}
.footer-copy { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
/* ===== FLOATING CONTACT BUTTONS ===== */
.float-contact-stack {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  position: relative;
}
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp-btn { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
.float-btn.phone-btn { background: #3b82f6; box-shadow: 0 4px 20px rgba(59,130,246,0.45); }
.float-btn.email-btn { background: var(--gold); box-shadow: 0 4px 20px rgba(212,175,55,0.45); }
.float-btn svg { width: 24px; height: 24px; }
.float-tooltip {
  position: absolute; right: 62px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--text-inverse);
  font-size: 0.78rem; font-weight: 600;
  padding: 5px 11px; border-radius: 4px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.float-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 5px solid transparent; border-left-color: var(--navy);
}
.float-btn:hover .float-tooltip { opacity: 1; }
/* ===== OVERLAYS ===== */
.overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--overlay-bg); backdrop-filter: blur(6px);
  overflow-y: auto; padding: 60px 5%;
}
.overlay.active { display: flex; align-items: flex-start; justify-content: center; }
.overlay-content {
  background: var(--overlay-content); border-radius: 4px; padding: 3rem;
  max-width: 760px; width: 100%; position: relative;
  animation: fadeUp 0.3s ease; transition: background 0.3s;
}
.overlay-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--text-muted); line-height: 1; padding: 4px 8px;
}
.overlay-close:hover { color: var(--heading-color); }
.overlay-content h2 { margin-bottom: 1.5rem; }
.overlay-content h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--heading-color); }
.overlay-content p, .overlay-content li { font-size: 0.92rem; color: var(--overlay-text); line-height: 1.7; }
.overlay-content ul { padding-left: 1.2rem; }
.overlay-content a { color: var(--gold); }
/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
/* ===== LANGUAGE TOGGLE ===== */
[data-lang] { display: none; }
[data-lang].active { display: block; }
span[data-lang].active { display: inline; }
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inner { gap: 2.5rem; }
}
@media (max-width: 900px) {
  
  .hero-inner { grid-template-columns: 1fr; }
.hero-visual {
  display: block;
  width: 100%;
  margin-top: 2rem;
}

.hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  max-height: 260px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 260px;
}  .ueber-inner {
  grid-template-columns: 1fr;
  gap: 2rem;
}
.ueber-visual {
  max-width: 100%;
  margin: 0 auto 1rem;
}
.ueber-box {
  width: 100%;
  aspect-ratio: auto;
  padding: 1.5rem;
}
.ueber-logo-large {
  max-height: 60px;
}
#ueber h2 {
  font-size: 1.6rem;
}
#ueber .section-desc {
  max-width: 100%;
  font-size: 0.92rem;
}
#ueber .btn-primary {
  width: 100%;
  justify-content: center;
}
.ueber-stats {
  grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .theme-btn .theme-label { display: none; }
  #themeBtnMob { display: flex !important; }
  section { padding: 64px 5%; }
  .steps::before { left: 22px; }
  .step-num { width: 44px; height: 44px; font-size: 1rem; }
  .step { gap: 1.2rem; }
  .marquee-item { height: 72px; width: 72px; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .float-contact-stack { bottom: 20px; right: 16px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; }
  .cv-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .ueber-stats { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-pills { gap: 6px; }
  .contact-link-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (min-width: 769px) {
  #themeBtnMob { display: none !important; }
}
.ueber-logo-large {
  max-height: 80px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

 element.style {
      max-height: 100px;
      width: auto;
      display: block;
      margin: 0 auto;
    }

/* .ueber-logo-large {
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.ueber-logo-large:hover {
  transform: scale(1.03);
} */
/* ════════════════════════════════════════════════════════════
   MOBILE POLISH — supplemental responsive fixes
   ════════════════════════════════════════════════════════════ */

/* Global safe sizing */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }

/* Tablets and below */
@media (max-width: 900px) {
  nav { padding: 14px 5%; }
  .logo-img { max-height: 44px; }
  .float-contact-stack { gap: 10px; }
  .image-marquee { padding: 30px 0; }
  .marquee-track { gap: 14px; }
  .card-modal-content { padding: 1.5rem; max-height: 88vh; }
  .overlay-content { padding: 1.8rem; max-height: 88vh; }
}

/* Phones */
@media (max-width: 768px) {
  /* Hero */
  #hero { padding-top: 100px; padding-bottom: 50px; min-height: auto; }
  .hero-inner { padding: 0 5%; }
  .hero-content h1 { font-size: 1.95rem; line-height: 1.2; }
  .hero-badge { font-size: 0.72rem; padding: 5px 12px; }
  .hero-sub { font-size: 0.95rem; line-height: 1.65; }
  .hero-pills { flex-wrap: wrap; gap: 6px; }
  .hero-pills .pill { font-size: 0.78rem; padding: 5px 11px; }
  .btn-primary { font-size: 0.95rem; padding: 12px 22px; }

  /* Sections */
  section { padding: 56px 5%; }
  h2 { font-size: 1.7rem; line-height: 1.25; }
  .section-label { font-size: 0.75rem; }
  .section-desc { font-size: 0.95rem; line-height: 1.65; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 22px; }
  .card-icon { font-size: 2rem; }
  .card h3 { font-size: 1.05rem; }
  .card p { font-size: 0.88rem; }

  /* Card modals */
  .card-modal { padding: 1rem; }
  .card-modal-content { padding: 1.4rem; border-radius: 14px; }
  .card-modal-content h2 { font-size: 1.3rem; }
  .modal-tag { font-size: 0.78rem; padding: 5px 10px; }
  .modal-strong-item { font-size: 0.82rem; padding: 8px 12px; }
  .modal-strong-words { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Steps */
  .steps { padding-left: 10px; }
  .step-body h3 { font-size: 1rem; }
  .step-body p { font-size: 0.88rem; }

  /* Über uns features */
  .ueber-feature-cards { grid-template-columns: 1fr; gap: 14px; }
  .ueber-feat-card { padding: 18px; }
  .ueber-feat-icon { font-size: 1.7rem; }

  /* Kandidaten */
  .cv-card { padding: 0; }
  .cv-card-header { padding: 1.2rem; }
  .cv-card-body { padding: 1.2rem; }
  .cv-card-name { font-size: 1.1rem; }
  .cv-tagline { font-size: 0.88rem; line-height: 1.55; }

  /* Kontakt */
  .kontakt-inner { padding: 0 5%; }
  .contact-items { gap: 14px; }
  .contact-item { padding: 14px; }
  .contact-link-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact-action-btn { width: 100%; justify-content: center; }

  /* Overlays */
  .overlay-content { padding: 1.4rem; border-radius: 14px; max-height: 92vh; }
  .overlay-content h2 { font-size: 1.4rem; }
  .overlay-content h3 { font-size: 1.05rem; margin-top: 1.2rem; }
  .overlay-content p { font-size: 0.88rem; }

  /* Mobile menu */
  .mobile-menu { padding: 80px 24px 24px; }
  .mobile-menu .nav-link { font-size: 1.1rem; padding: 10px 0; }
  .mobile-bottom-row { flex-direction: column; gap: 12px; align-items: stretch; }
  .mobile-bottom-row .lang-toggle,
  .mobile-bottom-row .mobile-theme-btn { width: 100%; justify-content: center; }
}

/* Small phones */
@media (max-width: 480px) {
  nav { padding: 10px 4%; }
  .logo-img { max-height: 36px; }
  section { padding: 44px 4%; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-badge { font-size: 0.68rem; }
  .btn-primary { width: 100%; justify-content: center; padding: 13px 18px; }
  .card-icon { font-size: 1.8rem; }
  .float-contact-stack { bottom: 14px; right: 12px; gap: 6px; }
  .float-btn { width: 42px; height: 42px; }
  .float-btn svg { width: 18px; height: 18px; }
  .float-tooltip { display: none; }
  .modal-strong-words { grid-template-columns: 1fr; }
  .stat-box { padding: 14px 10px; }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: 0.78rem; }
  .ueber-stats { gap: 8px; }
  .footer-top { padding: 0 5%; }
  .footer-bottom { padding: 0 5%; }
}

/* Touch targets — minimum 44x44 */
@media (hover: none) and (pointer: coarse) {
  .nav-link, .btn-primary, .float-btn, .card, .cv-card,
  .lang-btn, .theme-btn, .hamburger { min-height: 44px; }
}
