/* ═══════════════════════════════════════════════════════════════════════════════
   TRUTZEL KFZ – Premium Automotive Design
   Kfz Meisterbetrieb Georg und Alexander Trutzel GbR, Neutraubling
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────────────────────── */
:root {
  --dark:           #0f1923;
  --dark-2:         #1a2b3c;
  --dark-3:         #1e2d3d;
  --accent:         #e8312c;
  --accent-hover:   #c42424;
  --accent-orange:  #ff6b35;
  --surface:        #f0f2f5;
  --surface-2:      #e8eaed;
  --white:          #ffffff;
  --text:           #1a1a2e;
  --text-muted:     #6b7280;
  --text-light:     #9ca3af;
  --border:         #e2e4e9;
  --shadow-sm:      0 1px 4px rgba(0,0,0,.08);
  --shadow:         0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,.15);
  --shadow-accent:  0 6px 24px rgba(232,49,44,.25);
  --radius:         10px;
  --radius-lg:      16px;
  --font-heading:   'Oswald', sans-serif;
  --font-body:      'Inter', sans-serif;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:      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(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ─── Utility ────────────────────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: .75rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,49,44,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.btn-sm {
  padding: .5rem 1.1rem;
  font-size: .85rem;
}

/* ─── Skip Link ──────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  background: var(--accent);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 10000;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 8px;
}
.logo-icon svg { width: 24px; height: 24px; fill: white; }
.logo-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text span {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.main-nav a {
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  background: var(--accent);
  border-radius: 6px;
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.header-phone svg { width: 16px; height: 16px; fill: white; }
.header-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.42) saturate(.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 25, 35, .92) 0%,
    rgba(26, 43, 60, .80) 55%,
    rgba(232, 49, 44, .18) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 1.5rem 5rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,49,44,.2);
  border: 1px solid rgba(232,49,44,.4);
  color: #ff8f8c;
  padding: .4rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-actions .btn {
  padding: .95rem 2rem;
  font-size: 1rem;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: .6rem 1.2rem;
}
.hero-rating .stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: .05em; }
.hero-rating span { color: rgba(255,255,255,.7); font-size: .85rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }
@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .75rem 2rem;
  color: var(--white);
  position: relative;
}
.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,49,44,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.trust-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.trust-item span {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════════════════════════ */
.services {
  padding: 6rem 0;
  background: var(--surface);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-bottom: 3rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid transparent;
  transition: var(--transition);
  color: var(--text);
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--accent);
  box-shadow: 0 10px 36px rgba(232,49,44,.12);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(232,49,44,.1), rgba(255,107,53,.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, rgba(232,49,44,.18), rgba(255,107,53,.15));
}
.service-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent);
  fill: none;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .03em;
  margin-top: auto;
  transition: var(--transition);
}
.service-card:hover .service-link { letter-spacing: .06em; }
.services-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT TEASER
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-teaser {
  padding: 6rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, var(--accent), var(--accent-orange));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .25;
}
.about-img-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-img-wrapper:hover img { transform: scale(1.03); }
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.about-content > p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2.25rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .93rem;
  color: var(--text);
}
.about-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: rgba(232,49,44,.1);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════════════════════ */
.reviews {
  padding: 6rem 0;
  background: var(--dark);
}
.reviews .section-header h2,
.reviews .section-header p { color: var(--white); }
.reviews .section-header p { color: rgba(255,255,255,.55); }
.rating-showcase {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.rating-big {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.rating-info .stars { color: #fbbf24; font-size: 1.5rem; margin-bottom: .25rem; }
.rating-info p { color: rgba(255,255,255,.55); font-size: .82rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(232,49,44,.25);
  transform: translateY(-3px);
}
.review-stars { color: #fbbf24; font-size: 1.05rem; margin-bottom: 1rem; }
.review-card blockquote {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.review-card cite {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
  font-style: normal;
  font-weight: 500;
}
.reviews-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT PREVIEW
   ═══════════════════════════════════════════════════════════════════════════════ */
.contact-preview {
  padding: 6rem 0;
  background: var(--white);
}
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-preview-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--dark);
  margin-bottom: 2rem;
}
.info-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.25rem; }
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-row-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,49,44,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.info-row-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; }
.info-row strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .3rem;
}
.info-row p, .info-row a {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.info-row a:hover { color: var(--accent); }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: .2rem 0; font-size: .93rem; }
.hours-table td:first-child {
  color: var(--text-muted);
  width: 80px;
  font-size: .85rem;
  font-weight: 500;
}
.hours-table td:last-child { color: var(--dark); font-weight: 500; }
.map-container {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface-2);
}
.map-container iframe, .map-container #map-preview {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CONTACT FORM PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */
.contact-form-section {
  padding: 6rem 0;
  background: var(--surface);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}
.form-group label .req { color: var(--accent); margin-left: .2rem; }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,49,44,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-dsgvo {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.form-dsgvo a { color: var(--accent); text-decoration: underline; }
.form-hp { display: none !important; }
.form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.form-submit:disabled { opacity: .65; cursor: not-allowed; transform: none !important; }
.form-message {
  display: none;
  padding: .9rem 1.25rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 1rem;
  animation: slideIn .35s ease;
}
.form-message.success {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}
.form-message.error {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PAGE HERO (Unterseiten)
   ═══════════════════════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--dark);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,49,44,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */
.services-page { padding: 5rem 0; }
.services-category { margin-bottom: 4.5rem; }
.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--surface-2);
}
.category-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-orange));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg { width: 26px; height: 26px; stroke: white; fill: none; }
.category-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.service-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.service-detail-item:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 14px rgba(232,49,44,.10);
  transform: translateY(-2px);
}
.service-detail-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  flex-shrink: 0;
  margin-top: .1rem;
}
.service-detail-item span { font-size: .9rem; color: var(--text); line-height: 1.4; }
.services-cta-banner {
  background: linear-gradient(135deg, var(--dark), var(--dark-3));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
}
.services-cta-banner h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.services-cta-banner p {
  color: rgba(255,255,255,.6);
  margin-bottom: 1.75rem;
}
.services-cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════════════════ */
.about-page { padding: 5rem 0; }
.about-story { max-width: 760px; margin: 0 auto; text-align: center; margin-bottom: 5rem; }
.about-story p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.generation-timeline { margin-bottom: 5rem; }
.generation-timeline h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(232,49,44,.1));
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}
.timeline-content p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .75rem;
  box-shadow: 0 0 0 6px rgba(232,49,44,.15);
  position: relative;
  z-index: 1;
}
.timeline-dot span {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: .85rem;
}
.certifications { text-align: center; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cert-card svg {
  width: 42px;
  height: 42px;
  stroke: var(--accent);
  fill: none;
  margin: 0 auto 1rem;
}
.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .5rem;
}
.cert-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  line-height: 1.65;
  margin-top: 1.25rem;
  margin-bottom: .5rem;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 1rem;
  transition: var(--transition);
}
.footer-phone:hover { color: #ff8f8c; }
.footer-nav h4, .footer-hours h4 {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-hours-table { border-collapse: collapse; margin-bottom: 1.25rem; }
.footer-hours-table td {
  padding: .2rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}
.footer-hours-table td:first-child { width: 75px; color: rgba(255,255,255,.4); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════════════════════════
   IMPRESSUM / DATENSCHUTZ
   ═══════════════════════════════════════════════════════════════════════════════ */
.legal-page { padding: 5rem 0; }
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--surface-2);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-content p, .legal-content li {
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.legal-content ul { list-style: disc; padding-left: 1.5rem; }
.legal-content a { color: var(--accent); text-decoration: underline; }
.legal-content strong { color: var(--text); }
.legal-content address { font-style: normal; }

/* ═══════════════════════════════════════════════════════════════════════════════
   MOBILE CTA BUTTON
   ═══════════════════════════════════════════════════════════════════════════════ */
.mobile-cta-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--accent);
  color: var(--white);
  border-radius: 50px;
  padding: .85rem 1.5rem;
  font-weight: 700;
  font-size: .9rem;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 6px 24px rgba(232,49,44,.45);
  transition: var(--transition);
}
.mobile-cta-btn svg { width: 18px; height: 18px; fill: white; }
.mobile-cta-btn:hover { background: var(--accent-hover); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.animate-on-scroll.delay-1 { transition-delay: .1s; }
.animate-on-scroll.delay-2 { transition-delay: .2s; }
.animate-on-scroll.delay-3 { transition-delay: .3s; }
.animate-on-scroll.delay-4 { transition-delay: .4s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* Hero-specific fade animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation-fill-mode: forwards;
  animation-duration: .7s;
  animation-timing-function: cubic-bezier(.4,0,.2,1);
  animation-name: fadeUp;
}
.animate-fade-up.delay-1 { animation-delay: .15s; }
.animate-fade-up.delay-2 { animation-delay: .3s; }
.animate-fade-up.delay-3 { animation-delay: .45s; }
.animate-fade-up.delay-4 { animation-delay: .6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrapper img { height: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-preview-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 24px; }
  .timeline-item { flex-direction: row !important; text-align: left !important; gap: 1.5rem; }
  .timeline-dot { margin-top: .5rem; }
}

@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-btn { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1rem;
    gap: .25rem;
    z-index: 999;
    animation: slideDown .25s ease;
  }
  .main-nav.open a {
    padding: .75rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
  }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content { padding: 8rem 1.5rem 4rem; }
  .trust-grid { flex-direction: column; align-items: center; }
  .trust-item + .trust-item::before { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .services-cta { flex-direction: column; align-items: center; }
  .container { padding: 0 1rem; }
}
