/*
Theme Name: Kanzlei GOLDWACHT
Theme URI: https://www.kanzlei-goldwacht.de
Author: Kanzlei GOLDWACHT
Description: Custom theme für Kanzlei GOLDWACHT – Recht und Steuern in Berlin
Version: 1.0.0
License: Private
Text Domain: goldwacht
Tags: law, legal, steuerrecht
*/

/* === DESIGN TOKENS === */
:root {
  --color-dark:        #0F1B2D;
  --color-dark-2:      #162236;
  --color-gold:        #B8952A;
  --color-gold-light:  #D4AF50;
  --color-gold-dark:   #8B6E1A;
  --color-white:       #FFFFFF;
  --color-light:       #F7F5F0;
  --color-light-2:     #EDE9DF;
  --color-text:        #1A1A2E;
  --color-text-light:  #5A5A72;
  --color-border:      #E0DAD0;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(15,27,45,0.08);
  --shadow-lg:   0 12px 48px rgba(15,27,45,0.16);
  --transition:  0.3s ease;

  --container-max: 1200px;
  --header-h: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-dark); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--color-text-light); }
.tagline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; position: relative; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.bg-dark { background: var(--color-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark p, .bg-dark li { color: var(--color-white); }
.bg-dark .tagline { color: var(--color-gold-light); }
.bg-dark .lead { color: rgba(255,255,255,0.75); }

.bg-gold { background: var(--color-gold); }
.bg-gold h1, .bg-gold h2, .bg-gold h3 { color: var(--color-dark); }
.bg-gold p { color: var(--color-dark); }

.bg-light { background: var(--color-light); }

/* Grid */
.row { display: flex; flex-wrap: wrap; gap: 2rem; }
.col-half { flex: 1 1 300px; }
.col-third { flex: 1 1 250px; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,42,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}
.btn-dark:hover {
  background: var(--color-dark-2);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.buttons-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(15,27,45,0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-logo img { height: 55px; width: auto; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 0; }

.main-nav > ul > li { position: relative; }

.main-nav a {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current-menu-ancestor > a { color: var(--color-gold); }

/* Dropdown */
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  border-top: 2px solid var(--color-gold);
  flex-direction: column;
  display: flex;
}

.main-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-border);
}
.main-nav .sub-menu li:last-child a { border-bottom: none; }
.main-nav .sub-menu a:hover { background: var(--color-light); color: var(--color-gold); }

/* Header CTA */
.header-cta { display: flex; gap: 0.75rem; align-items: center; }
.header-tel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 0.9rem;
}
.header-tel:hover { color: var(--color-gold); }
.header-tel svg { width: 16px; height: 16px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  overflow-y: auto;
  z-index: 999;
  padding: 2rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a {
  display: block;
  padding: 0.9rem 0;
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
}
.mobile-nav a:hover { color: var(--color-gold); }
.mobile-nav .sub-menu { padding-left: 1rem; }
.mobile-nav .sub-menu a { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.mobile-nav-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* === WAVE DIVIDER === */
.wave-divider { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; }
.wave-divider--top { top: 0; bottom: auto; transform: rotate(180deg); }

/* === HERO SECTION === */
.section-hero {
  background: var(--color-dark);
  padding: 120px 0 160px;
  position: relative;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,149,42,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(184,149,42,0.15);
  border: 1px solid rgba(184,149,42,0.3);
  color: var(--color-gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--color-gold); }

.hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}
.hero-badge svg { color: var(--color-gold); flex-shrink: 0; }

/* Hero Form Card */
.hero-form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.form-card-subtitle { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* Form Styles */
.gw-form { display: flex; flex-direction: column; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--color-text); }

.form-input,
.form-textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(184,149,42,0.12);
}

.form-textarea,
.wpcf7-form textarea { resize: vertical; min-height: 100px; }

.form-privacy { font-size: 0.8rem; color: var(--color-text-light); }
.form-privacy a { color: var(--color-gold); }

.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: var(--color-gold);
  color: var(--color-dark);
  border: none;
  padding: 1rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* === CONTENT + BILD SECTION === */
.section-content-bild { padding: 80px 0; }

.content-bild-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.content-bild-grid.reverse { direction: rtl; }
.content-bild-grid.reverse > * { direction: ltr; }

.content-bild-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.content-bild-image img { width: 100%; height: 400px; object-fit: cover; }

.content-block .tagline { margin-bottom: 0.5rem; }

/* === VORTEILE / BENEFITS SECTION === */
.section-vorteile { padding: 80px 0; }

.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.vorteil-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}
.vorteil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.bg-dark .vorteil-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.bg-dark .vorteil-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-gold);
}

.vorteil-icon {
  width: 52px;
  height: 52px;
  background: rgba(184,149,42,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-gold);
  font-size: 1.4rem;
}

.vorteil-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.bg-dark .vorteil-title { color: var(--color-white); }

.vorteil-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}
.bg-dark .vorteil-text { color: rgba(255,255,255,0.65); }

/* === CTA SECTION === */
.section-cta {
  padding: 80px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,149,42,0.15) 0%, transparent 70%);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-white);
  margin-bottom: 1rem;
}
.cta-title span { color: var(--color-gold); }
.cta-text { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

.cta-person { text-align: center; flex-shrink: 0; }
.cta-person-img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-gold);
}
.cta-person-name { color: var(--color-white); font-weight: 600; margin-top: 0.75rem; font-size: 0.9rem; }
.cta-person-role { color: var(--color-gold); font-size: 0.8rem; }

/* === TESTIMONIALS === */
.section-testimonials { padding: 80px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--color-gold);
  opacity: 0.2;
  font-size: 3rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-stars { color: var(--color-gold); margin-bottom: 1rem; font-size: 1rem; }
.testimonial-text {
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-author-role { font-size: 0.8rem; color: var(--color-text-light); }
.testimonial-source { font-size: 0.8rem; color: var(--color-text-light); margin-top: 0.25rem; }

/* === FAQ ACCORDION === */
.section-faq { padding: 80px 0; }

.faq-list { margin-top: 2.5rem; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item.open { box-shadow: var(--shadow); border-color: var(--color-gold); }

.bg-dark .faq-item { border-color: rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); }
.bg-dark .faq-item.open { border-color: var(--color-gold); background: rgba(255,255,255,0.08); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  gap: 1rem;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.bg-dark .faq-question { color: var(--color-white); }

.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-dark);
  transition: transform var(--transition);
  font-size: 0.8rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}
.faq-answer p { color: var(--color-text-light); }
.bg-dark .faq-answer p { color: rgba(255,255,255,0.7); }

/* === KONTAKTFORMULAR SECTION === */
.section-kontakt { padding: 80px 0; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kontakt-image img { width: 100%; height: 500px; object-fit: cover; }

.kontakt-info { margin-bottom: 2.5rem; }
.kontakt-info h2 { margin-bottom: 1rem; }

.contact-details { margin: 2rem 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: rgba(184,149,42,0.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}
.contact-item a { color: var(--color-text); font-weight: 600; }
.contact-item a:hover { color: var(--color-gold); }

/* === LOGO TICKER === */
.section-logos { padding: 48px 0; overflow: hidden; }

.logos-title { text-align: center; margin-bottom: 2.5rem; }
.logos-title .tagline { justify-content: center; }

.logos-track-wrapper { overflow: hidden; position: relative; }
.logos-track-wrapper::before,
.logos-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
}
.logos-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--color-dark), transparent); }
.logos-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--color-dark), transparent); }

.logos-track {
  display: flex;
  gap: 2rem;
  animation: logoScroll 30s linear infinite;
  width: max-content;
}
.logos-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-item img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

/* === BLOCKQUOTE === */
.section-blockquote { padding: 80px 0; background: var(--color-light); text-align: center; }
.blockquote-box { max-width: 700px; margin: 0 auto; }
.blockquote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--color-dark);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.blockquote-text::before { content: '"'; color: var(--color-gold); }
.blockquote-text::after { content: '"'; color: var(--color-gold); }
.blockquote-author { color: var(--color-text-light); font-weight: 600; font-size: 0.9rem; }
.blockquote-author span { color: var(--color-gold); }

/* === SOFORTHILFE BANNER === */
.soforthilfe-banner {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  padding: 1.25rem 0;
  text-align: center;
}
.soforthilfe-banner p {
  color: var(--color-dark);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.soforthilfe-banner a { color: var(--color-dark); text-decoration: underline; font-weight: 800; }

/* === LEISTUNGEN OVERVIEW === */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.leistung-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  text-decoration: none;
}
.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.leistung-card-icon {
  width: 60px; height: 60px;
  background: rgba(184,149,42,0.12);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--color-gold);
  font-size: 1.6rem;
  transition: all var(--transition);
}
.leistung-card:hover .leistung-card-icon {
  background: var(--color-gold);
  color: var(--color-dark);
}
.leistung-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 700;
}
.leistung-card:hover .leistung-card-title { color: var(--color-gold); }
.leistung-card-desc { font-size: 0.85rem; color: var(--color-text-light); margin-top: 0.5rem; }

/* === PAGE HERO (für Unterseiten) === */
.page-hero {
  background: var(--color-dark);
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,149,42,0.1) 0%, transparent 70%);
}
.page-hero .tagline { color: var(--color-gold-light); }
.page-hero h1 { color: var(--color-white); max-width: 700px; }
.page-hero .lead { color: rgba(255,255,255,0.7); max-width: 600px; }

/* === BREADCRUMB === */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--color-gold-light); }

/* === WARNUNG BOX (für Steuerstrafrecht) === */
.alert-box {
  border-left: 4px solid var(--color-gold);
  background: rgba(184,149,42,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}
.alert-box h3 { color: var(--color-gold-dark); margin-bottom: 0.5rem; font-size: 1.1rem; }
.alert-box p { color: var(--color-text); margin: 0; }

.alert-box--danger {
  border-color: #C0392B;
  background: rgba(192,57,43,0.06);
}
.alert-box--danger h3 { color: #C0392B; }

/* === 3-STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card {
  position: relative;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.step-number {
  width: 48px; height: 48px;
  background: var(--color-gold);
  color: var(--color-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}
.step-title { font-weight: 700; margin-bottom: 0.5rem; }
.step-text { font-size: 0.9rem; color: var(--color-text-light); }

/* === TEAM SECTION === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--color-gold); }
.team-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; }
.team-role { color: var(--color-gold); font-size: 0.85rem; margin-top: 0.25rem; }

/* === KARRIERE CARD === */
.karriere-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.karriere-card:hover { border-color: var(--color-gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.karriere-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.karriere-title { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 0.5rem; }
.karriere-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 1.25rem; }

/* === FOOTER === */
.site-footer {
  background: var(--color-dark);
  padding: 80px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 50px; filter: brightness(0) invert(1); }

.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--color-gold); }
.footer-contact-icon { color: var(--color-gold); flex-shrink: 0; }

.footer-heading {
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav { list-style: none; }
.footer-nav li { margin-bottom: 0.5rem; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 1rem;
}
.footer-social a:hover { background: var(--color-gold); color: var(--color-dark); }

.footer-badges { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.footer-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer-badge svg { color: var(--color-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-text { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--color-gold); }

/* === WHATSAPP BUTTON === */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
  font-size: 1.5rem;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  color: white;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--color-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-gold); color: var(--color-dark); }

/* === SECTION TITLES === */
.section-title-block { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.section-title-block .tagline { justify-content: center; display: flex; }
.section-title-block h2 { margin-bottom: 1rem; }
.section-title-block p { color: var(--color-text-light); }
.bg-dark .section-title-block p { color: rgba(255,255,255,0.65); }

/* === UTILITY === */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; }
  .content-bild-grid { grid-template-columns: 1fr; }
  .content-bild-grid.reverse { direction: ltr; }
  .cta-box { grid-template-columns: 1fr; }
  .cta-person { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: flex; }
  .section { padding: 60px 0; }
  .section-hero { padding: 80px 0 120px; }
  .page-hero { padding: 70px 0 110px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .leistungen-grid { grid-template-columns: 1fr; }
  .buttons-group { flex-direction: column; }
  .hero-badges { display: none; }
}
