/* ============================================
   SHK-Fachbetrieb – Design System
   ============================================ */

/* --- Lokale Schriftarten (DSGVO-konform, keine Google-Verbindung) --- */
@import url('fonts/fonts.css');

/* --- CSS Custom Properties --- */
:root {
  /* Base Colors */
  --clr-bg-primary: #1a1d23;
  --clr-bg-secondary: #22262e;
  --clr-bg-tertiary: #2a2f38;
  --clr-bg-card: #262a33;
  --clr-bg-card-hover: #2e333d;
  --clr-bg-overlay: rgba(26, 29, 35, 0.92);

  /* Accent Colors */
  --clr-accent: #5b8fb9;
  --clr-accent-light: #7ab0d4;
  --clr-accent-dark: #3d6f94;
  --clr-copper: #c17f59;
  --clr-copper-light: #d4996f;
  --clr-copper-dark: #a06640;

  /* Text Colors */
  --clr-text-primary: #e8eaed;
  --clr-text-secondary: #b0b5be;
  --clr-text-muted: #7a8190;
  --clr-text-accent: var(--clr-accent-light);

  /* Borders & Lines */
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-accent: rgba(91, 143, 185, 0.3);
  --clr-divider: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #1a1d23 0%, #1e2530 50%, #1a1d23 100%);
  --grad-accent: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  --grad-copper: linear-gradient(135deg, var(--clr-copper) 0%, var(--clr-copper-dark) 100%);
  --grad-card: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  --grad-overlay: linear-gradient(180deg, rgba(26, 29, 35, 0.3) 0%, rgba(26, 29, 35, 0.95) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-accent: 0 4px 20px rgba(91, 143, 185, 0.15);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-hero: clamp(2.4rem, 5vw, 4rem);
  --fs-h1: clamp(2rem, 4vw, 3rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.2rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.8rem;
  --lh-heading: 1.2;
  --lh-body: 1.7;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans-fast: 200ms var(--ease-smooth);
  --trans-normal: 350ms var(--ease-smooth);
  --trans-slow: 500ms var(--ease-smooth);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--clr-text-primary);
  background-color: var(--clr-bg-primary);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--clr-text-accent);
  text-decoration: none;
  transition: color var(--trans-fast);
}

a:hover {
  color: var(--clr-copper-light);
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--clr-accent);
  color: var(--clr-bg-primary);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--clr-text-primary);
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

.section-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  color: var(--clr-text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.7;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: all var(--trans-normal);
  background: transparent;
}

.site-header.scrolled {
  background: var(--clr-bg-overlay);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--clr-text-primary);
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 260px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  object-fit: contain;
}

.logo-img--footer {
  height: 64px;
  max-width: 300px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--grad-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--clr-accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--trans-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--trans-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-text-primary);
  transition: all var(--trans-fast);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Phone CTA in header */
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-text-secondary);
  font-size: var(--fs-small);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
}

.header-phone:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text-primary);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--clr-accent);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(91, 143, 185, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, var(--clr-bg-primary) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--space-2xl) 0;
}

.hero-label {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-copper);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--clr-copper);
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.5px;
}

.hero h1 .accent {
  color: var(--clr-accent);
}

.hero-text {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    linear-gradient(90deg, white 1px, transparent 1px),
    linear-gradient(180deg, white 1px, transparent 1px);
  background-size: 80px 80px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--trans-normal);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--grad-accent);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(91, 143, 185, 0.3);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: var(--clr-text-secondary);
  border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text-primary);
  transform: translateY(-2px);
}

.btn-copper {
  background: var(--grad-copper);
  color: white;
}

.btn-copper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(193, 127, 89, 0.3);
  color: white;
}

.btn svg {
  width: 16px;
  height: 16px;
}

/* --- Sections --- */
.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section--dark {
  background: var(--clr-bg-secondary);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-header--center .section-label {
  justify-content: center;
}

/* --- Feature / Trust Cards --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.trust-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--trans-normal);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity var(--trans-normal);
}

.trust-card:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(91, 143, 185, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--clr-accent);
}

.trust-card-icon svg {
  width: 24px;
  height: 24px;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.trust-card p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-lg) var(--space-md);
  transition: all var(--trans-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(91, 143, 185, 0.08);
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  line-height: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(91, 143, 185, 0.08);
  border: 1px solid rgba(91, 143, 185, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--clr-accent);
  transition: all var(--trans-normal);
}

.service-card:hover .service-card-icon {
  background: rgba(91, 143, 185, 0.15);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.service-card p {
  color: var(--clr-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
  flex-grow: 1;
}

.service-card-list {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-divider);
}

.service-card-list li {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clr-accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Stats Bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  margin: var(--space-xl) 0;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--clr-bg-tertiary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-accent);
}

.cta-content h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.cta-content p {
  color: var(--clr-text-secondary);
}

.cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* --- About / Team Section --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-text p {
  color: var(--clr-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: rgba(91, 143, 185, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  transition: all var(--trans-normal);
}

.about-highlight-item:hover {
  border-color: var(--clr-border-accent);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(91, 143, 185, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.about-highlight-icon svg {
  width: 20px;
  height: 20px;
}

.about-highlight-text h4 {
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.about-highlight-text p {
  font-size: var(--fs-xs);
  margin-bottom: 0;
  color: var(--clr-text-muted);
}

/* About image area placeholder */
.about-image-area {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-bg-tertiary);
  border: 1px solid var(--clr-border);
}

.about-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  background: var(--clr-bg-overlay);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.about-image-badge svg {
  width: 20px;
  height: 20px;
  color: var(--clr-copper);
}

.about-image-badge span {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
}

/* --- Contact Section --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--trans-normal);
}

.contact-info-item:hover {
  border-color: var(--clr-border-accent);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(91, 143, 185, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text h4 {
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.contact-info-text p,
.contact-info-text a {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.contact-form-wrapper h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text-secondary);
  margin-bottom: 0.4rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--clr-bg-primary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  transition: all var(--trans-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(91, 143, 185, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--clr-text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a8190' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-hint {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-top: var(--space-sm);
}

/* --- Reviews / Testimonials --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--trans-normal);
}

.review-card:hover {
  border-color: var(--clr-border-accent);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--clr-copper);
  color: var(--clr-copper);
}

.review-text {
  color: var(--clr-text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--clr-accent);
  border: 1px solid var(--clr-border);
}

.review-author-info h4 {
  font-size: var(--fs-small);
  font-weight: 600;
}

.review-author-info p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

/* --- Footer --- */
.site-footer {
  background: var(--clr-bg-secondary);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  margin-top: var(--space-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--clr-text-primary);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: var(--clr-text-primary);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 0.6rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer-bottom a {
  color: var(--clr-text-muted);
}

.footer-bottom a:hover {
  color: var(--clr-text-primary);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* --- Page Header (for subpages) --- */
.page-header {
  padding-top: 140px;
  padding-bottom: var(--space-xl);
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(90deg, white 1px, transparent 1px),
    linear-gradient(180deg, white 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--clr-bg-primary) 100%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-sm);
}

.page-header .breadcrumb a {
  color: var(--clr-text-muted);
}

.page-header .breadcrumb a:hover {
  color: var(--clr-text-primary);
}

.page-header .breadcrumb svg {
  width: 14px;
  height: 14px;
}

.page-header h1 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-xs);
}

.page-header p {
  color: var(--clr-text-secondary);
  font-size: 1.05rem;
  max-width: 550px;
}

/* --- Service Detail Sections --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--clr-divider);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse>* {
  direction: ltr;
}

.service-detail-visual {
  aspect-ratio: 16/10;
  background: var(--clr-bg-tertiary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-visual-icon {
  color: rgba(91, 143, 185, 0.15);
}

.service-detail-visual-icon svg {
  width: 80px;
  height: 80px;
}

.service-detail-content h3 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-sm);
}

.service-detail-content p {
  color: var(--clr-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
}

.service-detail-list li svg {
  width: 18px;
  height: 18px;
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Einsatzgebiet / Service Area --- */
.service-area {
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.service-area h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.service-area p {
  color: var(--clr-text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.area-rings {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto var(--space-md);
}

.area-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.area-ring--inner {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(91, 143, 185, 0.1);
  border-color: var(--clr-accent);
}

.area-ring--mid {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-style: dashed;
  border-color: rgba(91, 143, 185, 0.3);
}

.area-ring--outer {
  width: 280px;
  height: 280px;
  top: 0;
  left: 0;
  border-style: dashed;
  border-color: rgba(91, 143, 185, 0.15);
}

.area-ring-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  position: absolute;
}

.area-ring--inner .area-ring-label {
  color: var(--clr-accent);
  font-weight: 600;
}

.area-center-dot {
  width: 12px;
  height: 12px;
  background: var(--clr-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(91, 143, 185, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.area-note {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  font-style: italic;
}

/* --- Timeline / Process --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  position: relative;
  padding-left: 40px;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--clr-border);
}

.process-step {
  position: relative;
  padding: var(--space-md);
  background: var(--grad-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: all var(--trans-normal);
}

.process-step:hover {
  border-color: var(--clr-border-accent);
}

.process-step::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--clr-bg-primary);
  border: 2px solid var(--clr-accent);
  border-radius: 50%;
  z-index: 1;
}

.process-step h4 {
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: var(--fs-small);
  color: var(--clr-text-secondary);
}

/* --- Success Message --- */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 56px;
  height: 56px;
  color: var(--clr-accent);
  margin-bottom: var(--space-md);
}

.form-success h3 {
  margin-bottom: var(--space-xs);
}

.form-success p {
  color: var(--clr-text-secondary);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .about-content,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse {
    direction: ltr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--clr-bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .area-rings {
    width: 220px;
    height: 220px;
  }

  .area-ring--inner {
    width: 90px;
    height: 90px;
  }

  .area-ring--mid {
    width: 155px;
    height: 155px;
  }

  .area-ring--outer {
    width: 220px;
    height: 220px;
  }
}

/* ── FAQS (Einfache Liste in index.php) ────────────────────────────────────────────────── */
.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 2rem;
}

.faq-item h4 {
  font-size: 1.25rem;
  color: var(--clr-text-primary);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.faq-text {
  color: var(--clr-text-secondary);
  line-height: 1.7;
}

.faq-text p, .faq-text ul, .faq-text ol {
  margin-bottom: 1rem;
}

.faq-text p:last-child, .faq-text ul:last-child {
  margin-bottom: 0;
}

.faq-text ul {
  padding-left: 1.5rem;
}

/* ── FAQS (Akkordeon) ────────────────────────────────────────────────── */
.faq-accordion {
  background: var(--clr-bg-secondary);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--trans);
}

.faq-accordion:hover,
.faq-accordion[open] {
  border-color: rgba(91, 143, 185, 0.4);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
  /* Hide default arrow */
}

.faq-question::-webkit-details-marker {
  display: none;
  /* Hide default arrow in WebKit */
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--clr-text);
  transition: color var(--trans);
}

.faq-accordion[open] .faq-question h4 {
  color: var(--clr-accent);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--clr-text-secondary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--clr-accent);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  animation: accordionFadeIn 0.3s ease-out;
}

@keyframes accordionFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}