/* =========================================================
   Rechtsanwaltskanzlei Kunduru – style.css
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: #D9A965 (Gold) | #111111 (Fast-Schwarz) | #f5f5f5 (Weiß-Grau)
   ========================================================= */

/* ── Variables ── */
:root {
  --ice:       #D9A965;
  --ice-light: #FBF3E4;
  --ice-dark:  #B8894A;
  --navy:      #111111;
  --navy-mid:  #333333;
  --gray:      #6b7280;
  --gray-light:#f5f5f5;
  --gray-mid:  #e5e5e5;
  --white:     #ffffff;
  --text:      #111111;
  --text-muted:#666666;

  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(17,17,17,.06);
  --shadow-md: 0 8px 32px rgba(17,17,17,.10);
  --shadow-lg: 0 20px 60px rgba(17,17,17,.14);

  --nav-h: 72px;
  --infobar-h: 0px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ice-dark);
  background: var(--ice-light);
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ice);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(217,169,101,.35);
}
.btn-primary:hover {
  background: #cfa05a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,169,101,.4);
}
.btn-outline {
  background: #ffffff;
  color: var(--ice-dark);
  border: 2px solid rgba(217,169,101,.45);
}
.btn-outline:hover {
  background: var(--ice-light);
  color: var(--ice-dark);
  border-color: var(--ice);
}
.btn-ice {
  background: var(--ice);
  color: var(--navy);
}
.btn-ice:hover {
  background: #cfa05a;
  color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: var(--infobar-h); left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.08);
  transition: top .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  top: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}
.nav > .container { height: 100%; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo { display: flex; align-items: center; line-height: 0; }
.nav__logo img { height: 54px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--ice);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__right { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  display: flex;
  background: var(--gray-light);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  color: #4b5563;
  transition: var(--transition);
}
.icon--flag {
  width: 1.25rem;
  height: .85rem;
  flex-shrink: 0;
  border-radius: 2px;
}
.lang-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.nav__cta { display: none; }
@media (min-width: 900px) { .nav__cta { display: inline-flex; } }
.nav__cta {
  padding: 8px 16px !important;
  font-size: .8rem !important;
  background: var(--ice) !important;
  color: var(--white) !important;
  border: 1.5px solid var(--ice) !important;
  box-shadow: none !important;
}
.nav__cta:hover {
  background: #cfa05a !important;
  color: var(--white) !important;
  border-color: #cfa05a !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none !important; }
}
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
}

/* ── Nav Dropdown ── */
.nav__has-dropdown { position: relative; }
.nav__has-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav__chevron { width: .8rem; height: .8rem; transition: transform var(--transition); flex-shrink: 0; }
.nav__has-dropdown:hover .nav__chevron { transform: rotate(180deg); }
/* Invisible bridge prevents hover gap between link and dropdown */
.nav__has-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px; right: -16px;
  height: 14px;
  pointer-events: auto;
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 230px;
  background: #fff;
  border: 1px solid rgba(217,169,101,.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}
.nav__has-dropdown:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown li { list-style: none; }
.nav__dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav__dropdown li:last-child a { border-bottom: none; }
.nav__dropdown li a:hover,
.nav__dropdown li a.active { background: var(--ice-light); color: var(--ice-dark); }
.nav__dropdown li a::after { display: none !important; }

/* ── Mobile Nav Sub-Items ── */
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  background: var(--ice-light);
  border-radius: var(--radius);
  border: 1px solid rgba(217,169,101,.2);
  overflow: hidden;
  margin-top: -12px;
}
.nav__mobile-sub a {
  padding: 10px 20px !important;
  font-size: .875rem !important;
  border-bottom: 1px solid rgba(217,169,101,.15) !important;
  color: var(--navy-mid) !important;
}
.nav__mobile-sub a:last-child { border-bottom: none !important; }
.nav__mobile-sub a:hover, .nav__mobile-sub a.active { color: var(--ice-dark) !important; }

/* ── FAQ Accordion ── */
.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
}
.faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--ice-dark);
  flex-shrink: 0;
}
div.faq-item.faq-open .faq-item__q::after { content: '−'; }
div.faq-item .faq-item__a { display: none; margin-top: 12px; }
div.faq-item.faq-open .faq-item__a { display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero__img-mobile { display: none; }

.hero {
  position: relative;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--ice);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--ice-dark);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}
@keyframes vertrauen-glow {
  0%, 100% {
    color: var(--ice-dark);
    text-shadow: none;
  }
  50% {
    color: var(--ice);
    text-shadow:
      0 0 16px rgba(255,255,255,.95),
      0 0 32px rgba(255,255,255,.6),
      0 0 60px rgba(217,169,101,.4);
  }
}
.hero__badge {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.hero__badge-dot { background: var(--ice); }
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--ice);
  position: relative;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero__trust-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  backdrop-filter: blur(4px);
  color: var(--white);
}
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
}
.hero__card-title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__steps-mini { display: flex; flex-direction: column; gap: 16px; }
.hero__step-mini {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hero__step-num {
  width: 36px; height: 36px;
  background: var(--ice-light);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero__step-txt {
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__step-txt strong { color: var(--text); display: block; font-size: .95rem; }
.hero__step-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 600;
  color: #0a6b5e;
  background: rgba(37,211,102,.10);
  padding: 3px 10px;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition);
  width: fit-content;
}
.hero__step-wa:hover { background: rgba(37,211,102,.20); }
.hero__step-wa .icon { width: .8rem; height: .8rem; color: #25d366; }
.hero__card-badge {
  position: absolute;
  top: -16px; right: 24px;
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 99px;
  letter-spacing: .05em;
}
.hero__float {
  position: absolute;
  bottom: -20px; left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
}
.hero__float-icon { font-size: 1.4rem; }

@media (max-width: 640px) {
  .nav__logo img { height: 41px; }
  .hero__badge { font-size: .72rem; padding: 6px 12px; gap: 6px; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 48px;
    background-position: 45% 30%;
    min-height: auto;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__card {
    padding: 28px 20px;
    max-width: 100%;
  }
  .hero__float { display: none; }
}

/* Hero Mobile: Bild in natürlichem Seitenverhältnis + Gradient-Übergang nach Navy */
@media (max-width: 640px) {
  .hero {
    background-image: none;
    background-color: #1a1a1a;
    padding-top: 0;
    padding-bottom: 40px;
  }
  .hero__img-mobile {
    display: block;
    position: relative;
    width: 100%;
    padding-top: var(--nav-h);
    background-color: #1a1a1a;
  }
  .hero__img-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }
  .hero__img-mobile::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(to bottom, transparent, #1a1a1a);
    pointer-events: none;
  }
  .hero__inner { padding-top: 20px; }

}

/* =========================================================
   PROCESS STEPS
   ========================================================= */
.process { background: var(--white); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
.process__grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--ice), var(--ice-dark), var(--navy));
}
.process__item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process__icon {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process__item:hover .process__icon {
  background: var(--ice);
  transform: scale(1.1);
}
.process__num {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ice-dark);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.process__name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.process__desc { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.process__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.process__wa-btn:hover { background: #1ebe5d; transform: translateY(-1px); }
.process__wa-btn .icon { width: 1rem; height: 1rem; }

@media (max-width: 768px) {
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid::before { display: none; }
}
@media (max-width: 480px) {
  .process__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   ABOUT / ÜBER MICH
   ========================================================= */
.about { background: var(--gray-light); }
.about__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.about__photo-wrap {
  position: relative;
}
.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}
.foto-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--ice-light), var(--gray-mid));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  border: 2px dashed var(--ice);
}
.foto-placeholder svg { width: 64px; height: 64px; opacity: .4; }
.about__card {
  position: absolute;
  bottom: 32px; left: -28px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
  font-size: .88rem;
}
.about__card-val {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about__card-lbl { color: var(--text-muted); margin-top: 2px; }
.about__qual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.about__qual-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about__qual-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.about__qual-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__qual-text strong { display: block; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.about__qual-text span { font-size: .88rem; color: var(--text-muted); }
.about__langs {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.lang-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  color: var(--navy);
}
.lang-badge .flag { font-size: 1rem; }
.about__langs .lang-btn { font-size: .92rem; padding: 7px 16px; }

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
  .about__photo-wrap { max-width: 320px; margin: 0 auto; }
}

/* =========================================================
   LEISTUNGEN / SERVICES
   ========================================================= */
.services {
  background:
    linear-gradient(rgba(251,243,228,.65), rgba(251,243,228,.65)),
    url('../Leistungen.jpg') center / cover no-repeat;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  border-color: var(--ice);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ice), var(--ice-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.service-card__title {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card__text { font-size: .93rem; color: var(--text-muted); line-height: 1.7; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ice-dark);
  transition: gap var(--transition);
}
.service-card__link:hover { gap: 10px; }

@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-lead { color: rgba(255,255,255,.65); }
.testimonials .tag { background: rgba(217,169,101,.18); color: #D9A965; }
.testimonials__carousel { margin-top: 56px; }
.testimonials__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonials__track::-webkit-scrollbar { display: none; }
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testi-prev, .testi-next {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.testi-prev:hover, .testi-next:hover { background: rgba(255,255,255,.22); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testi-dot.active { background: var(--ice); transform: scale(1.3); }
.testi-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.2);
  padding: 10px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.testi-all-link:hover { color: var(--white); border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.testimonial-card__stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(217,169,101,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: #D9A965;
  flex-shrink: 0;
}
.testimonial-card__title {
  font-size: .82rem;
  font-weight: 600;
  color: #D9A965;
  margin-bottom: 10px;
}
.testimonial-card__name { color: var(--white); font-weight: 600; font-size: .92rem; }
.testimonial-card__meta { color: rgba(255,255,255,.45); font-size: .78rem; margin-top: 2px; }
.testi-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 18px 32px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
  min-width: 220px;
}
.testi-badge:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
.testi-badge__stars {
  color: #fbbf24;
  font-size: 1.4rem;
  letter-spacing: 3px;
  line-height: 1;
}
.testi-badge__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--white);
}
.testi-badge__bar {
  height: 5px;
  width: 100%;
  background: rgba(255,255,255,.18);
  border-radius: 99px;
  overflow: hidden;
}
.testi-badge__bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #fbbf24, #f59e0b);
  border-radius: 99px;
}
.testi-badge__text {
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 900px) {
  .testimonial-card { flex: 0 0 calc((100% - 24px) / 2); }
}
@media (max-width: 580px) {
  .testimonial-card { flex: 0 0 100%; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--gray-light); }
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 56px;
  align-items: start;
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--ice); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  gap: 16px;
}
.faq-item__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: .9rem;
  color: var(--navy);
}
.faq-item.open .faq-item__icon {
  background: var(--ice);
  transform: rotate(45deg);
}
div.faq-item .faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px;
}
div.faq-item.open .faq-item__a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq__cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.faq__cta-icon { font-size: 3rem; margin-bottom: 20px; }
.faq__cta-title {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.faq__cta-text { color: var(--text-muted); font-size: .93rem; margin-bottom: 28px; line-height: 1.7; }
.faq__cta-contact { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--gray-mid); }
.faq__cta-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .9rem;
  transition: color var(--transition);
}
.faq__cta-contact a:hover { color: var(--navy); }

@media (max-width: 768px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__cta-card { position: static; }
}

/* =========================================================
   CONTACT / KONTAKT
   ========================================================= */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact__info-icon {
  width: 44px; height: 44px;
  background: var(--ice-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact__info-label { font-size: .8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.contact__info-val { font-weight: 600; color: var(--navy); }
.contact__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #dcfce7;
  color: #166534;
  border-radius: var(--radius);
  padding: 11px 22px;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: background .2s ease;
}
.contact__wa-btn:hover { background: #bbf7d0; }
.contact__wa-btn .icon { width: 1.2rem; height: 1.2rem; color: #25d366; }
.contact__form {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ice);
  box-shadow: 0 0 0 3px rgba(217,169,101,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
}
.form-check label { font-size: .85rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.form-check a { color: var(--ice-dark); text-decoration: underline; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
input.input-error, textarea.input-error, select.input-error {
  border-color: #ef4444 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(239,68,68,.15);
}
input[type="checkbox"].input-error { outline: 2px solid #ef4444; border-radius: 3px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  color: var(--navy);
}
.form-success.show { display: block; }
.form-success-icon { font-size: 3rem; margin-bottom: 16px; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,.25);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; font-size: .9rem; line-height: 1.6; color: rgba(255,255,255,.85); }
.cookie-banner__text a { color: #D9A965; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.cookie-btn-accept { background: var(--ice); color: var(--white); }
.cookie-btn-accept:hover { background: var(--ice-dark); color: var(--white); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer__top {
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo img { height: 54px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__tagline { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.80); }
.footer__col-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: #D9A965; }
.footer__widget {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.footer__widget-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.2);
}
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .82rem;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,.70); transition: color var(--transition); }
.footer__legal a:hover { color: #D9A965; }
.it-graph-link {
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: .78rem;
}
.it-graph-link:hover .it-graph-name {
  background: linear-gradient(to right, #FDB912, #A90432);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}
.footer__badge svg { width: 14px; height: 14px; opacity: .5; }

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip {
  background: #0c0c0c;
  padding: 60px 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,.12);
}
.stat-item__val {
  font-family: var(--ff-head);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
  color: #D9A965;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 480px) {
  .stats-strip__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =========================================================
   SVG ICON BASE
   ========================================================= */
.icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: middle;
  flex-shrink: 0;
}
/* Kontextspezifische Icon-Größen */
.process__icon .icon   { width: 2rem; height: 2rem; }
.service-card__icon .icon { width: 2rem; height: 2rem; }
.faq__cta-icon .icon   { width: 2.5rem; height: 2.5rem; }
.contact__info-icon .icon { width: 1.4rem; height: 1.4rem; }
.hero__trust-icon.icon { width: 1rem; height: 1rem; }
.about__qual-icon.icon { width: 1.4rem; height: 1.4rem; }
.form-success-icon .icon { width: 3rem; height: 3rem; color: #16a34a; }
.sticky-icon.icon      { width: 1.25rem; height: 1.25rem; }

/* Mobile Menu Links */
.nav__mobile-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-mid);
  text-decoration: none;
}
.nav__mobile-wa { color: #128c7e; }
.nav__mobile-cta {
  color: var(--white) !important;
  padding: 14px 24px !important;
  text-align: center;
  justify-content: center;
  border-bottom: none !important;
}

/* =========================================================
   NAV PHONE NUMBER (entfernt – jetzt nur in Sticky + Kontakt)
   ========================================================= */

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison { background: var(--gray-light); }
.comparison__table { margin-top: 56px; overflow-x: auto; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.comp-table thead tr { background: var(--navy); }
.comp-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .03em;
}
.comp-table th.th-online { background: var(--ice-dark); color: var(--white); }
.comp-table th.th-trad { background: var(--gray); }
.comp-table tbody tr {
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  transition: background var(--transition);
}
.comp-table tbody tr:last-child { border-bottom: none; }
.comp-table tbody tr:hover { background: var(--ice-light); }
.comp-table tbody td {
  padding: 16px 24px;
  font-size: .9rem;
  color: var(--text-muted);
  vertical-align: middle;
}
.comp-table tbody td:first-child { font-weight: 600; color: var(--text); }
.td-yes { color: var(--navy) !important; font-weight: 500 !important; }
.td-no { color: var(--gray) !important; }
.comp-check {
  color: var(--ice-dark);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 4px;
}
.comp-cross {
  color: var(--gray);
  font-weight: 700;
  font-size: 1rem;
  margin-right: 4px;
}
.comp-legend { display: none; }

@media (max-width: 640px) {
  .comparison__table { overflow-x: visible; }
  .comp-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 10px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .comp-legend__online {
    color: var(--navy);
    padding: 0 12px 6px;
  }
  .comp-legend__trad {
    color: var(--gray);
    padding: 0 12px 6px;
  }
  .comp-table {
    display: block;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }
  .comp-table thead { display: none; }
  .comp-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .comp-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .comp-table tbody td:first-child {
    grid-column: 1 / -1;
    background: var(--navy);
    color: var(--white) !important;
    font-size: .78rem;
    font-weight: 600;
    padding: 9px 14px;
    letter-spacing: .02em;
  }
  .comp-table td.td-yes {
    background: #f0fdf4;
    padding: 10px 12px;
    font-size: .78rem;
    border-right: 1px solid var(--gray-mid);
    color: var(--navy) !important;
  }
  .comp-table td.td-no {
    background: var(--white);
    padding: 10px 12px;
    font-size: .78rem;
    color: var(--gray) !important;
  }
  .comp-table tbody tr:hover { background: transparent; }
}

/* =========================================================
   STICKY CONTACT BUTTONS
   ========================================================= */
.sticky-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 900;
  transition: opacity .3s ease;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 99px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.sticky-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(0,0,0,.2); }
.sticky-phone { background: #ffffff; color: var(--ice-dark); border: 1.5px solid rgba(217,169,101,.45); }
.sticky-whatsapp { background: #25d366; color: var(--white); }
.sticky-icon.icon { width: 1.25rem; height: 1.25rem; }
.sticky-label { font-size: .83rem; }
@media (max-width: 480px) {
  .sticky-btn { padding: 12px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .sticky-label { display: none; }
  .sticky-icon.icon { width: 1.4rem; height: 1.4rem; }
}

/* =========================================================
   AVVOCATO-STIL – Eyebrow-Labels, dunkle Sektion, Foto-Akzent
   ========================================================= */

/* ── Eyebrow-Label (Linie + Caps-Text) ── */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-eyebrow__line {
  display: block;
  width: 44px;
  height: 2px;
  background: var(--ice);
  flex-shrink: 0;
  border-radius: 2px;
}
.section-eyebrow__text {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice-dark);
}
.section-eyebrow--light .section-eyebrow__line { background: #D9A965; opacity: .7; }
.section-eyebrow--light .section-eyebrow__text { color: #D9A965; }

/* =========================================================
   INFO-LEISTE
   ========================================================= */
.infobar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--infobar-h);
  z-index: 1001;
  background: #0f0f0f;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
}
.infobar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.infobar__left, .infobar__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.infobar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.infobar__icon { width: .85rem; height: .85rem; opacity: .7; flex-shrink: 0; }
.infobar__link {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.infobar__link:hover { color: var(--ice); }
@media (max-width: 760px) { .infobar__left { display: none; } }
@media (max-width: 480px) {
  .infobar { font-size: .72rem; }
  .infobar__right { gap: 14px; }
}

/* =========================================================
   NAV – Mobile-Menü-Position
   ========================================================= */
.nav__mobile { top: calc(var(--infobar-h) + var(--nav-h)); }
.nav.scrolled + .nav__mobile { top: var(--nav-h); }

/* =========================================================
   HERO – Split-Layout (Text links / Foto rechts)
   ========================================================= */
.hero {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  background: none !important;
  padding: 0 !important;
}
.hero__body {
  display: grid;
  grid-template-columns: 3fr 7fr;
  flex: 1;
  min-height: 0;
  background: #ffffff;
}
.hero__text-col {
  background:
    linear-gradient(
      108deg,
      rgba(248,248,245,.82) 0%,
      rgba(238,232,220,.74) 100%
    ),
    url('../hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--infobar-h) + var(--nav-h) + 72px) 64px 72px 72px;
}
.hero__text-inner { max-width: 680px; width: 100%; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  display: block;
  width: 32px; height: 2px;
  background: var(--ice);
  flex-shrink: 0;
  border-radius: 2px;
}
.hero__eyebrow span:last-child {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-dark);
}
.hero__title {
  font-family: var(--ff-head) !important;
  font-size: clamp(3rem, 5.5vw, 5rem) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  color: var(--navy) !important;
  margin-bottom: 24px !important;
  background: none !important;
}
.hero__title em {
  font-style: normal !important;
  color: var(--ice-dark) !important;
  animation: vertrauen-glow 2.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__title em { animation: none !important; }
}
.hero__lead {
  font-size: 1.05rem !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
  margin-bottom: 40px !important;
  max-width: 480px;
}
.hero__actions {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-bottom: 40px !important;
}
.hero__cta-sec {
  border-color: rgba(217,169,101,.45) !important;
  color: var(--ice-dark) !important;
  background: #ffffff !important;
}
.hero__cta-sec:hover {
  background: var(--ice-light) !important;
  color: var(--ice-dark) !important;
  border-color: var(--ice) !important;
}
.hero__trust {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  font-size: .82rem !important;
  color: var(--text-muted) !important;
}
.hero__trust-stars { color: #f59e0b; letter-spacing: 2px; font-size: .9rem; }
.hero__trust-sep { color: var(--gray-mid); }
.hero__card-col {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 28px 48px;
  position: relative;
  z-index: 1;
}
.hero__logo-panel {
  max-width: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__logo-hero-img {
  width: 100%;
  max-width: 525px;
  height: auto;
  display: block;
}
.hero__testi-quote {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,.88);
  line-height: 1.65;
  margin: 0 0 28px;
}
.hero__testi-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero__testi-stars { color: #fbbf24; letter-spacing: 3px; font-size: 1rem; }
.hero__testi-author { color: rgba(255,255,255,.85); font-weight: 600; font-size: .88rem; }
.hero__testi-source { color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: .03em; }
.hero__trust-badges { display: flex; gap: 0; }
.hero__trust-badge {
  flex: 1;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hero__trust-badge:first-child { padding-left: 0; }
.hero__trust-badge:last-child { border-right: none; padding-right: 0; }
.hero__trust-badge-val {
  display: block;
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__trust-badge-lbl {
  font-size: .68rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.4;
}
.hero__strip { background: #111; }
.hero__strip-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.hero__strip-link {
  padding: 18px 24px;
  color: rgba(255,255,255,.5);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: color .2s, background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.hero__strip-link:hover { color: #D9A965; background: rgba(217,169,101,.05); }
.hero__strip-tagline {
  flex: 1;
  text-align: right;
  padding: 18px 24px;
  font-family: var(--ff-head);
  font-style: italic;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero__body { grid-template-columns: 1fr !important; }
  .hero__text-col {
    justify-content: flex-start;
    padding: calc(var(--infobar-h) + var(--nav-h) + 48px) 32px 48px !important;
    order: 2;
  }
  .hero__card-col {
    padding: 40px 32px 32px;
    min-height: auto;
    order: 1;
  }
  .hero__text-inner { max-width: 100%; }
  .hero__logo-panel { max-width: 100%; }
  .hero__strip-tagline { display: none; }
}
@media (max-width: 640px) {
  .hero__text-col { padding: calc(var(--infobar-h) + var(--nav-h) + 24px) 20px 40px !important; }
  .hero__card-col { padding: 32px 20px 24px; }
  .hero__logo-hero-img { max-width: 320px; }
  .hero__strip-link { padding: 13px 14px; font-size: .68rem; }
}

/* =========================================================
   WARUM KANZLEI KUNDURU? – Sticky-Left + Dunkle Karten
   ========================================================= */
.why-us { background: var(--gray-light) !important; position: relative; }
.why-us__inner {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}
.why-us__heading {
  position: sticky;
  top: calc(var(--infobar-h) + var(--nav-h) + 32px);
}
.why-us__title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  margin: 16px 0 20px;
}
.why-us__lead {
  font-size: .9rem !important;
  color: var(--text-muted) !important;
  line-height: 1.75 !important;
  max-width: 100% !important;
}
.why-us__cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}
.why-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--navy);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(0,0,0,.07) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
}
.why-card:hover {
  background: #fafafa;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
}
.why-card__icon {
  width: 44px; height: 44px;
  background: rgba(217,169,101,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--ice-dark);
  flex-shrink: 0;
}
.why-card__icon .icon { width: 1.3rem; height: 1.3rem; }
.why-card__title {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.why-card__text {
  font-size: .88rem;
  color: rgba(0,0,0,.6);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.why-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ice-dark);
  border-bottom: 1px solid rgba(217,169,101,.25);
  padding-bottom: 2px;
  transition: gap .2s, border-color .2s;
  width: fit-content;
  margin-top: auto;
}
.why-card__link:hover { gap: 10px; border-color: var(--ice-dark); }
.why-card__link .icon { width: .85rem; height: .85rem; }
@media (max-width: 960px) {
  .why-us__inner { grid-template-columns: 1fr !important; gap: 40px !important; }
  .why-us__heading { position: static; }
}
@media (max-width: 640px) {
  .why-us__cards { grid-template-columns: 1fr !important; }
}

/* =========================================================
   FLIP-LOGO – Warum-wir-Bereich (Papier-Dreh-Animation)
   ========================================================= */
.why-flip-wrap {
  perspective: 1200px;
  perspective-origin: center center;
  margin: 20px 0 28px;
}
.why-flip-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  will-change: transform;
  transform-origin: center center;
  transform-style: preserve-3d;
}

/* =========================================================
   MEINE LEISTUNGEN – Dunkle Avvocato-Karten
   ========================================================= */
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.services__heading {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(217,169,101,.25);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.svc-card:hover {
  background: #faf7f0;
  border-color: rgba(217,169,101,.6);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0,0,0,.1);
}
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.svc-card__arrow {
  width: 28px; height: 28px;
  color: var(--ice-dark);
  opacity: .6;
  transition: transform .25s ease, opacity .25s ease;
  flex-shrink: 0;
}
.svc-card:hover .svc-card__arrow { transform: translate(4px, -4px); opacity: 1; }
.svc-card__num {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(184,137,74,.35);
  line-height: 1;
  letter-spacing: -.03em;
}
.svc-card .icon.svc-card__icon { width: 2rem; height: 2rem; color: var(--ice-dark); margin-bottom: 18px; display: block; }
.svc-card__title {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.svc-card__text {
  font-size: .88rem;
  color: rgba(0,0,0,.55);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 24px;
}
.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ice-dark);
  border-bottom: 1px solid rgba(217,169,101,.4);
  padding-bottom: 2px;
  transition: gap .2s, border-color .2s;
  width: fit-content;
  margin-top: auto;
}
.svc-card__link:hover { gap: 10px; border-color: var(--ice-dark); }
.svc-card__link .icon { width: .85rem; height: .85rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .svc-grid { grid-template-columns: 1fr; } }

/* =========================================================
   VERTRAUEN CTA – Dramatische Mitte
   ========================================================= */
.trust-cta {
  background: #f5ede0;
  padding: 120px 0;
  text-align: center;
}
.trust-cta .container { max-width: 860px; }
.trust-cta__eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ice-dark);
  margin-bottom: 24px;
}
.trust-cta__heading {
  font-family: var(--ff-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 52px;
}
.trust-cta__heading em { font-style: normal; color: var(--ice-dark); }
.btn-lg { padding: 18px 44px !important; font-size: 1.05rem !important; }

/* =========================================================
   ÜBER MICH – Sticky-Left-Layout
   ========================================================= */
.about { background: var(--white) !important; position: relative; }
.about__photo-wrap::before { display: none !important; }
.about__inner {
  display: grid !important;
  grid-template-columns: 260px 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}
.about__sticky {
  position: sticky;
  top: calc(var(--infobar-h) + var(--nav-h) + 32px);
}
.about__name {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 16px 0 8px;
}
.about__role {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about__teaser {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 28px;
}
.about__cta { margin-bottom: 24px; }
.about__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about__photo-wrap { position: relative; }
.about__photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
  position: static !important;
  z-index: auto !important;
}
.about__photo-card {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 22px;
  box-shadow: var(--shadow-md);
}
.about__photo-val {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about__photo-lbl { font-size: .8rem; color: var(--text-muted); margin-top: 3px; }
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about__val-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.about__val-item:hover { border-color: var(--ice); box-shadow: var(--shadow-sm); }
.about__val-icon {
  width: 44px; height: 44px;
  background: var(--ice-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ice-dark);
  flex-shrink: 0;
}
.about__val-icon .icon { width: 1.2rem; height: 1.2rem; }
.about__val-title {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.about__val-text { font-size: .83rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 960px) {
  .about__inner { grid-template-columns: 1fr !important; gap: 48px !important; }
  .about__sticky { position: static; }
  .about__values { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .about__values { grid-template-columns: 1fr; }
  .about__photo { aspect-ratio: 4/3; }
}

/* =========================================================
   BUTTONS – Neue Varianten für dunkle Sektionen
   ========================================================= */
.btn-dark {
  background: var(--ice);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(217,169,101,.35);
}
.btn-dark:hover {
  background: #cfa05a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,169,101,.4);
}
.btn-outline-light {
  background: var(--ice);
  color: var(--white);
  border: 1.5px solid var(--ice);
}
.btn-outline-light:hover {
  background: #cfa05a;
  color: var(--white);
  border-color: #cfa05a;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
:focus-visible {
  outline: 3px solid var(--ice);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
