/* =========================================================
   Rechtsanwaltskanzlei Kunduru – style.css
   Fonts: Playfair Display (headings) + DM Sans (body)
   Colors: #93c5fd (Eisblau) | #1e3a5f (Navy) | #888 (Grau) | #fff
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── Variables ── */
:root {
  --ice:       #93c5fd;
  --ice-light: #dbeafe;
  --ice-dark:  #60a5fa;
  --navy:      #1e3a5f;
  --navy-mid:  #2d5282;
  --gray:      #888888;
  --gray-light:#f4f6f9;
  --gray-mid:  #e2e8f0;
  --white:     #ffffff;
  --text:      #1a2332;
  --text-muted:#6b7a8d;

  --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(30,58,95,.07);
  --shadow-md: 0 8px 32px rgba(30,58,95,.12);
  --shadow-lg: 0 20px 60px rgba(30,58,95,.16);

  --nav-h: 76px;
  --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(--navy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(30,58,95,.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30,58,95,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-ice {
  background: var(--ice);
  color: var(--navy);
}
.btn-ice:hover {
  background: var(--ice-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo img { height: 44px; width: auto; }
.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: var(--gray);
  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; } }

/* 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);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0eeff 40%, #f8f9fb 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(147,197,253,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(147,197,253,.15) 0%, transparent 70%);
  pointer-events: none;
}
.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); }
}
.hero__title {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--ice-dark);
  position: relative;
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  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: var(--text-muted);
  font-weight: 500;
}
.hero__trust-icon {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
}
.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: center;
  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;
}
.hero__step-txt { font-size: .9rem; color: var(--text-muted); }
.hero__step-txt strong { color: var(--text); display: block; font-size: .95rem; }
.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: 768px) {
  .hero { padding-top: calc(var(--nav-h) + 48px); padding-bottom: 60px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

/* =========================================================
   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; }

@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__accent {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  background: var(--ice);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about__card {
  position: absolute;
  bottom: 32px; left: -28px;
  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; }

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

/* =========================================================
   LEISTUNGEN / SERVICES
   ========================================================= */
.services { background: var(--white); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 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: 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(147,197,253,.2); color: var(--ice); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  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(147,197,253,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-card__name { color: var(--white); font-weight: 600; font-size: .92rem; }
.testimonial-card__meta { color: rgba(255,255,255,.5); font-size: .8rem; }

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   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);
}
.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;
}
.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__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(147,197,253,.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: var(--ice); 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(--navy); }
.cookie-btn-accept:hover { background: var(--white); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.25); }
.cookie-btn-decline:hover { border-color: rgba(255,255,255,.5); 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: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer__tagline { font-size: .9rem; line-height: 1.7; color: rgba(255,255,255,.55); }
.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: var(--ice); }
.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,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--ice); }
.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: var(--ice-light);
  padding: 40px 0;
  border-top: 1px solid var(--ice);
  border-bottom: 1px solid var(--ice);
}
.stats-strip__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-item__val {
  font-family: var(--ff-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item__lbl { font-size: .85rem; color: var(--text-muted); margin-top: 4px; }

/* =========================================================
   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;
}
.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: var(--navy); color: var(--white); }
.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; }
}

/* =========================================================
   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; }
}
