/* =====================================================
   Jung SHK – Gemeinsames Stylesheet
   Hans Jung & Sohn GmbH | jung-shk.de
   Farben aus dem Jung-Logo
   ===================================================== */

/* ---- Local Fonts (@font-face) ---- */
@font-face {
  font-family: 'Amatic SC';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/amatic-sc-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Amatic SC';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/amatic-sc-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabin';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/cabin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Cabin';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/cabin-italic-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/poppins-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('fonts/poppins-800.woff2') format('woff2');
}

/* ---- CSS Custom Properties (Logo-Farben) ---- */
:root {
  --navy:        #0D1D6B;   /* Dunkelblau Logo */
  --blue:        #0077B8;   /* Mittelblau Logo */
  --light-blue:  #5BC8F5;   /* Hellblau Streifen */
  --magenta:     #C9175A;   /* Magenta/Rot Logo */
  --magenta-dark:#A0134A;
  --white:       #FFFFFF;
  --gray-light:  #F4F6FA;
  --gray-mid:    #E2E8F0;
  --gray-text:   #374151;
  --gray-muted:  #6B7280;
  --body-bg:     #FFFFFF;

  --font-display: 'Amatic SC', cursive;
  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Cabin', sans-serif;

  --shadow-sm:  0 2px 8px rgba(13,29,107,0.08);
  --shadow-md:  0 4px 20px rgba(13,29,107,0.12);
  --shadow-lg:  0 8px 40px rgba(13,29,107,0.16);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 200ms ease-out;
  --max-w:      1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--gray-text);
  background: var(--body-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ---- Utility ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--gray { background: var(--gray-light); }
.section--navy { background: var(--navy); color: var(--white); }
.section--blue { background: var(--blue); color: var(--white); }

.text-center { text-align: center; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--blue { background: rgba(0,119,184,0.12); color: var(--blue); }
.badge--magenta { background: rgba(201,23,90,0.12); color: var(--magenta); }
.badge--white { background: rgba(255,255,255,0.2); color: var(--white); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--blue h1,
.section--blue h2 { color: var(--white); }

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.75; color: var(--gray-text); }

.section--navy p,
.section--blue p { color: rgba(255,255,255,0.85); }

.lead { font-size: 1.125rem; line-height: 1.8; }

.section-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-muted); max-width: 600px; }
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-subtitle { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--magenta);
}
.btn--primary:hover {
  background: var(--magenta-dark);
  border-color: var(--magenta-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,23,90,0.35);
}

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

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

.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: #005f94;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,119,184,0.3);
}

.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---- Header / Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--magenta);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.header-logo img { height: 48px; width: auto; }
.header-logo:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }

.header-nav { display: flex; align-items: center; gap: 4px; }

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
  cursor: pointer;
}
.nav-link:hover { background: var(--gray-light); color: var(--blue); }
.nav-link.active { color: var(--magenta); }
.nav-link:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--blue); }
.header-phone svg { color: var(--magenta); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,0.9); transition: color var(--transition); }
.top-bar a:hover { color: var(--light-blue); }
.top-bar-items { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 60%, var(--blue) 100%);
  color: var(--white);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,200,245,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,23,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content { position: relative; z-index: 1; }
.hero-badge { margin-bottom: 20px; }

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.hero h1 span { color: var(--light-blue); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-trust-item { text-align: center; }
.hero-trust-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--light-blue);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: 4px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-title svg { color: var(--light-blue); }

.hero-service-list { display: flex; flex-direction: column; gap: 12px; }

.hero-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  cursor: pointer;
}
.hero-service-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(91,200,245,0.4);
}

.hero-service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(0,119,184,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--light-blue);
}

.hero-service-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--white);
}
.hero-service-text span { font-size: 0.78rem; color: rgba(255,255,255,0.6); }

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm), inset 4px 0 0 transparent;
  border: 1px solid var(--gray-mid);
  transition: all 250ms ease-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: var(--shadow-lg), inset 4px 0 0 var(--magenta);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.service-card h3 { color: var(--navy); margin: 0; }
.service-card p { color: var(--gray-muted); font-size: 0.92rem; margin: 0; flex: 1; }

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--magenta);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ---- Stats / Trust Bar ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-item {
  padding: 40px 32px;
  text-align: center;
  background: var(--navy);
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--light-blue);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); display: block; margin-top: 4px; }

/* ---- USP Features ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.feature-body h4 { color: var(--navy); margin-bottom: 6px; }
.feature-body p { font-size: 0.9rem; color: var(--gray-muted); }

/* ---- Process Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.step-item {
  text-align: center;
  padding: 32px 20px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--magenta);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 20px;
}

.step-item h4 { color: var(--navy); margin-bottom: 8px; }
.step-item p { font-size: 0.9rem; color: var(--gray-muted); }

/* ---- Service Area ---- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.area-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-light);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--gray-mid);
  transition: all var(--transition);
  cursor: pointer;
}
.area-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.area-tag svg { color: var(--magenta); flex-shrink: 0; }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--magenta) 0%, #8B1040 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.85); margin-bottom: 36px; font-size: 1.05rem; }

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--white {
  background: var(--white);
  color: var(--magenta);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-info-body strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-info-body a { color: var(--gray-text); transition: color var(--transition); }
.contact-info-body a:hover { color: var(--blue); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-mid);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,119,184,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.site-footer p {
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand { max-width: 300px; }
.footer-logo { height: 48px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-top: 8px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--light-blue); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer-contact-item svg { color: var(--light-blue); flex-shrink: 0; }
.footer-contact-item a { color: inherit; transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-muted);
}
.breadcrumb-item a { color: var(--blue); transition: color var(--transition); }
.breadcrumb-item a:hover { color: var(--navy); }
.breadcrumb-item.active { color: var(--gray-text); font-weight: 600; }
.breadcrumb-sep { color: var(--gray-muted); }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-mid);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F59E0B;
}
.testimonial-text { font-size: 0.95rem; color: var(--gray-text); margin-bottom: 20px; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-location { font-size: 0.78rem; color: var(--gray-muted); }

/* ---- FAQ (Landingpages) ---- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-mid);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { color: var(--blue); }
.faq-question:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--gray-muted);
  line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ---- Checklist ---- */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- Two-Column Split ---- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8f 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}
.highlight-box h3 { color: var(--white); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.8); }

/* ---- Entrance Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.services-grid .service-card {
  animation: fadeInUp 0.45s ease-out both;
}
.services-grid .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.25s; }

.features-grid .feature-item {
  animation: fadeInUp 0.45s ease-out both;
}
.features-grid .feature-item:nth-child(1) { animation-delay: 0.05s; }
.features-grid .feature-item:nth-child(2) { animation-delay: 0.15s; }
.features-grid .feature-item:nth-child(3) { animation-delay: 0.25s; }
.features-grid .feature-item:nth-child(4) { animation-delay: 0.35s; }

.steps-grid .step-item {
  animation: fadeInUp 0.45s ease-out both;
}
.steps-grid .step-item:nth-child(1) { animation-delay: 0.05s; }
.steps-grid .step-item:nth-child(2) { animation-delay: 0.15s; }
.steps-grid .step-item:nth-child(3) { animation-delay: 0.25s; }
.steps-grid .step-item:nth-child(4) { animation-delay: 0.35s; }

/* ---- Hero H1 accent underline ---- */
.hero h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--magenta);
  margin-top: 14px;
  border-radius: 2px;
}

/* ---- Legal Pages (Impressum / Datenschutz) ---- */
.legal-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gray-mid);
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-top: 20px;
  margin-bottom: 8px;
}
.legal-content p {
  margin-bottom: 16px;
  color: var(--gray-text);
  line-height: 1.8;
}
.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--navy); }
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.75;
  color: var(--gray-text);
}
.legal-content strong { font-weight: 600; color: var(--navy); }

/* ---- Footer RHXT Credit ---- */
.footer-rhxt {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-rhxt:hover { color: rgba(255,255,255,0.65); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }

  /* Header */
  .site-header { position: relative; }
  .header-inner { height: 62px; gap: 12px; }
  .header-logo img { height: 40px; }
  .header-cta { gap: 10px; }

  /* Mobile Nav */
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 16px 20px;
    border-bottom: 3px solid var(--magenta);
    box-shadow: var(--shadow-md);
    z-index: 99;
    gap: 4px;
  }
  .header-nav.open .nav-link {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--gray-mid);
  }
  .header-nav.open .nav-link:last-child { border-bottom: none; }

  /* Top Bar */
  .top-bar-items { gap: 10px; flex-wrap: wrap; }
  .top-bar-inner { flex-direction: column; gap: 4px; align-items: flex-start; padding: 4px 0; }
  .header-phone span { display: none; }

  /* Hero */
  .hero { padding: 52px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-trust { gap: 12px; justify-content: flex-start; flex-wrap: wrap; }
  .hero-trust-item { min-width: 80px; }
  .hero-card { padding: 24px 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  /* Grids */
  .contact-grid { grid-template-columns: 1fr; }
  .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .split-grid.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { max-width: 100%; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { justify-content: center; }

  /* Footer bottom */
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
  .footer-rhxt { width: 100%; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Area */
  .area-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
}

@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .section-header { margin-bottom: 32px; }
  .container { padding: 0 14px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .btn--lg { padding: 14px 24px; font-size: 0.95rem; }
  .contact-form { padding: 24px 18px; }

  /* Top bar ausblenden bei sehr kleinen Screens */
  .top-bar { display: none; }

  /* Header kompakter */
  .header-inner { height: 58px; }
  .header-logo img { height: 36px; }

  /* Hero */
  .hero { padding: 40px 0; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .hero-trust-item {
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 12px 10px;
    text-align: center;
  }
  .hero-trust-num { font-size: 1.9rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 24px 16px; }
  .stat-num { font-size: 2rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-item { padding: 24px 12px; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 10px; }
  .footer-bottom-links { gap: 12px; flex-wrap: wrap; }
  .footer-rhxt { width: auto; }

  /* Area */
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Print ---- */
@media print {
  .site-header, .cta-section, .site-footer { display: none; }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
