/* ============================================
   PUETZ-IT – style.css
   ============================================ */

/* --- 1. FONTS & RESET --- */

/* Lokale Einbindung von Roboto (statisch, kein CDN) */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/roboto-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/roboto-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/roboto-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/roboto-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/roboto-black.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('assets/fonts/roboto-black.woff2') format('woff2');
}

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

/* Accessibility: Skip-to-Content Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--accent);
  color: #1F2329;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: 3px solid #1F2329;
  outline-offset: 2px;
}

/* Global Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

:root {
  --accent: #B6FF2E;
  --accent-hover: #9BE61A;
  --accent-dark: #9BE61A;
  --accent-darker: #88CC16;
  --accent-light: rgba(182, 255, 46, 0.15);
  --bg: #1F2329;
  --bg-white: #2A2E35;
  --text-primary: #F3F4F6;
  --text-secondary: #D1D5DB;
  --text-light: #9CA3AF;
  --border: rgba(255, 255, 255, 0.1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.40);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-pill: 9999px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- 2. NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(31, 35, 41, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: 64px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-text {
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a.nav-cta {
  background: var(--accent);
  color: #1F2329;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(182, 255, 46, 0.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--accent-dark);
  color: #1F2329;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(182, 255, 46, 0.4);
}

/* Nav Actions & Theme Slider */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle-container {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  user-select: none;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.theme-icon-symbol {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), filter var(--transition);
}

.theme-icon-symbol:hover {
  transform: scale(1.15);
}

/* Default / Dark Theme Icon Styles */
.theme-symbol-dark {
  filter: invert(1) drop-shadow(0 0 4px rgba(182, 255, 46, 0.45));
  opacity: 1;
}

.theme-symbol-light {
  filter: invert(1);
  opacity: 0.35;
}

[data-theme="dark"] .theme-symbol-dark {
  filter: invert(1) drop-shadow(0 0 4px rgba(182, 255, 46, 0.45));
  opacity: 1;
}

[data-theme="dark"] .theme-symbol-light {
  filter: invert(1);
  opacity: 0.35;
}

.theme-slider-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  cursor: pointer;
  margin: 0;
}

.theme-slider-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.theme-slider-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  transition: background-color var(--transition), border-color var(--transition);
}

.theme-slider-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background-color var(--transition);
}

.theme-slider-switch input:checked + .theme-slider-track .theme-slider-thumb {
  transform: translateX(18px);
  background: #0F172A;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.35);
}

.theme-slider-switch input:focus-visible + .theme-slider-track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  background: transparent;
  border: none;
}

.nav-hamburger:focus-visible {
  outline: 2px solid var(--accent-dark);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- 3. HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  background: linear-gradient(180deg, #2A2E35 0%, #1F2329 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-darker);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(182, 255, 46, 0.2);
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 20px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .accent {
  color: var(--accent-dark);
  background: linear-gradient(135deg, #B6FF2E, #9BE61A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 50px;
  font-weight: 400;
  line-height: 1.6;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* Hero Weiche */
.hero-weiche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  width: 100%;
  animation: fadeUp 0.7s 0.3s ease both;
}

.weiche-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 24px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

.weiche-card:hover,
.weiche-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.weiche-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 2.8rem;
  line-height: 1;
}

.weiche-icon img,
.weiche-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.weiche-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.weiche-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  flex-grow: 1;
  line-height: 1.55;
}

.weiche-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-top: 4px;
}

/* --- 4. SECTIONS GENERIC --- */
section {
  padding: 100px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: var(--text-primary);
  margin-bottom: 16px;
  max-width: 680px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* --- 5. SERVICE CARDS (GRID) --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  opacity: 0;
  transform: translateY(24px);
  display: flex;
  flex-direction: column;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card.visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(182, 255, 46, 0.03), var(--bg-white));
}

.service-card-icon {
  display: inline-flex;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 16px;
}

.service-card-icon img,
.service-card-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .price-hint {
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-darker);
  background: var(--accent-light);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
  align-self: flex-start;
  border: 1px solid rgba(182, 255, 46, 0.15);
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .price-hint {
  background: var(--accent);
  color: #1F2329;
}

/* --- 6. PRIVATKUNDEN SECTION --- */
#privat {
  background: var(--bg);
}

/* --- 7. FIRMENKUNDEN SECTION --- */
#firmen {
  background: var(--bg-white);
}

/* --- 8. FERNWARTUNG CARD --- */
.fernwartung-card {
  text-align: center;
  margin-top: 2rem;
  background: var(--bg-white);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  width: 100%;
}

.fernwartung-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 3.2rem;
  margin-bottom: 1.2rem;
}

.fernwartung-icon img,
.fernwartung-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.fernwartung-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.fernwartung-desc {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.6;
}

.fernwartung-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 2.5rem;
}

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


.fernwartung-config-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.fernwartung-config-hint a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
}

.fernwartung-config-hint .copy-btn {
  background: var(--bg-white);
  color: var(--text-primary);
  border: 1px solid var(--border);
  padding: 4px 10px;
}

.fernwartung-config-hint .copy-btn:hover {
  background: var(--accent);
  color: #1F2329;
}

.fernwartung-disclaimer {
  text-align: left;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.fernwartung-disclaimer-title {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
}

.fernwartung-disclaimer ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.fernwartung-disclaimer li {
  margin-bottom: 0.4rem;
}

.fernwartung-agb-link {
  font-size: 0.88rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.fernwartung-agb-link a {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

/* --- 9. ANFAHRT & PREISTRANSPARENZ --- */
#anfahrt {
  padding-top: 20px;
  padding-bottom: 80px;
}

.anfahrt-info {
  margin-top: 0;
  padding: 36px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.anfahrt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.anfahrt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
}

.anfahrt-icon img,
.anfahrt-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.anfahrt-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.anfahrt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.anfahrt-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  text-align: center;
}

.anfahrt-zone {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.anfahrt-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.anfahrt-item-full {
  grid-column: 1 / -1;
  background: var(--bg);
  padding: 24px 20px;
}

.anfahrt-detail {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 6px;
}

/* --- 10. ÜBER MICH (USP) --- */
#ueber {
  background: var(--bg);
}

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

.ueber-image-wrapper {
  position: relative;
}

.ueber-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

.ueber-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ueber-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.usp-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.usp-icon-wrap img,
.usp-icon-wrap svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.usp-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.usp-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* --- 11. FAQ SECTION --- */
.faq-section {
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.faq-item[open] {
  background: var(--bg-white);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--accent-dark);
  transition: transform var(--transition);
  margin-left: 16px;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- 12. KONTAKT --- */
#kontakt {
  background: var(--bg-white);
  color: var(--text-primary);
  text-align: center;
}

#kontakt .section-label {
  color: var(--accent);
}

#kontakt .section-headline {
  color: var(--text-primary);
  max-width: 100%;
}

#kontakt .section-sub {
  color: var(--text-secondary);
  margin: 0 auto 50px;
}

.kontakt-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #1F2329;
  box-shadow: 0 4px 16px rgba(182, 255, 46, 0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: #1F2329;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(182, 255, 46, 0.45);
}

.btn-primary .btn-icon,
.btn-primary img {
  filter: brightness(0);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

/* Copy-to-Clipboard & Info */
.kontakt-info {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.kontakt-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  background: var(--bg);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}

.kontakt-item > img,
.kontakt-item > svg {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

.copy-btn {
  background: var(--bg);
  color: var(--text-primary);
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.copy-btn img,
.copy-btn svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  transition: filter var(--transition);
}

.copy-btn:hover {
  background: var(--accent);
  color: #1F2329;
}

.copy-btn:hover img,
.copy-btn:hover svg {
  filter: brightness(0);
}

.copy-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-white);
  color: var(--accent);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Service Times Badge */
.service-times {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(182, 255, 46, 0.1);
  border: 1px solid rgba(182, 255, 46, 0.25);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
}

.service-times img,
.service-times svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
  display: inline-block;
  flex-shrink: 0;
}

/* --- 13. PROCESS SECTION (SO GEHT'S) --- */
.process-section {
  padding: 80px 24px;
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 40px auto 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #1F2329;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(182, 255, 46, 0.3);
}

.process-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 260px;
  line-height: 1.55;
}

/* --- 14. FOOTER --- */
footer {
  background: var(--bg-white);
  padding: 32px 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

/* --- 15. LEGAL PAGES (UNIFIED STYLES) --- */
.legal-page {
  padding: 120px 24px 80px;
  min-height: 100vh;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 32px;
  transition: gap var(--transition);
}

.legal-back:hover {
  gap: 10px;
}

.legal-inner h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.legal-date {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.legal-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.legal-block h2 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.legal-block h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.legal-block p,
.legal-block address {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: normal;
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  margin: 8px 0 14px 24px;
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-block li {
  margin-bottom: 6px;
}

.legal-block a {
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
}

.legal-block a:hover {
  text-decoration: underline;
}


.dsgvo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-darker);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* --- 16. ANIMATIONS & UTILS --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 1200px;
  margin: 0 auto;
}

/* --- 17. HAMBURGER ANIMATION --- */
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(31, 35, 41, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 24px;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

/* --- 18. RESPONSIVE --- */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .anfahrt-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-weiche {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .anfahrt-grid {
    grid-template-columns: 1fr;
  }

  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ueber-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .ueber-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
  }

  .fernwartung-card {
    padding: 2.2rem 1.5rem;
  }

  section {
    padding: 70px 20px;
  }

  .process-section {
    padding: 60px 20px;
  }
}

/* ============================================
   --- 19. LIGHT THEME (WISE-INSPIRED) ---
   ============================================ */

[data-theme="light"] {
  --accent: #B6FF2E;
  --accent-hover: #9BE61A;
  --accent-dark: #3F7A00;
  --accent-darker: #2D5800;
  --accent-light: rgba(182, 255, 46, 0.25);
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #334155;
  --text-light: #64748B;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.10);
}

[data-theme="light"] body {
  background-color: #F8FAFC;
  color: var(--text-primary);
}

/* Navigation in Light Mode */
[data-theme="light"] .nav {
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

[data-theme="light"] .nav-logo-text {
  color: #0F172A;
}

[data-theme="light"] .nav-links a {
  color: var(--text-secondary);
}

[data-theme="light"] .nav-links a:not(.nav-cta) {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

[data-theme="light"] .nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: #B6FF2E;
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] .nav-links a:not(.nav-cta):hover,
[data-theme="light"] .nav-links a:not(.nav-cta):focus-visible {
  color: var(--text-secondary) !important;
}

[data-theme="light"] .nav-links a:not(.nav-cta):hover::after,
[data-theme="light"] .nav-links a:not(.nav-cta):focus-visible::after {
  width: 100%;
}

[data-theme="light"] .nav-links.open a:not(.nav-cta) {
  display: inline-block;
  width: fit-content;
}

[data-theme="light"] .nav-links a.nav-cta {
  background: #B6FF2E;
  color: #0F172A;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(182, 255, 46, 0.4);
}

[data-theme="light"] .nav-links a.nav-cta:hover {
  background: #A3E61A;
  color: #0F172A;
  transform: translateY(-1px);
}

[data-theme="light"] .nav-hamburger span {
  background: #0F172A;
}

[data-theme="light"] .nav-links.open {
  background: rgba(248, 250, 252, 0.98);
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .theme-toggle-container {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .theme-symbol-dark {
  filter: none;
  opacity: 0.35;
}

[data-theme="light"] .theme-symbol-light {
  filter: none;
  opacity: 1;
}

[data-theme="light"] .theme-slider-track {
  background-color: #E2E8F0;
  border-color: rgba(15, 23, 42, 0.15);
}

/* Hero Section */
[data-theme="light"] .hero {
  background: linear-gradient(180deg, #F1F5F9 0%, #F8FAFC 100%);
}

[data-theme="light"] .hero-badge {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .hero-badge::before {
  background: #84CC16;
  box-shadow: 0 0 8px rgba(132, 204, 22, 0.6);
}

[data-theme="light"] .hero h1 {
  color: #0F172A;
}

/* Cyber-Lime highlight on "funktioniert." */
[data-theme="light"] .hero h1 .accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #0F172A;
  color: #0F172A;
  position: relative;
  display: inline-block;
  padding: 0 4px;
  border-radius: 0;
  box-shadow: none;
  z-index: 1;
}

[data-theme="light"] .hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 12px;
  background: #B6FF2E;
  border-radius: 4px;
  z-index: -1;
  opacity: 0.85;
  transform: rotate(-0.5deg);
}

[data-theme="light"] .hero h1 .accent:hover {
  transform: none;
  box-shadow: none;
}

[data-theme="light"] .hero-sub {
  color: var(--text-secondary);
}

/* Weiche Category Cards */
[data-theme="light"] .weiche-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .weiche-card:hover,
[data-theme="light"] .weiche-card:focus-visible {
  border-color: #0F172A;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px #0F172A;
  transform: translateY(-3px);
}

[data-theme="light"] .weiche-icon {
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  width: 60px;
  height: 60px;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .weiche-icon img {
  filter: brightness(0);
}

[data-theme="light"] .weiche-card-title {
  color: #0F172A;
}

[data-theme="light"] .weiche-card p {
  color: var(--text-secondary);
}

[data-theme="light"] .weiche-arrow {
  color: #0F172A;
  font-weight: 700;
}

[data-theme="light"] .weiche-card:hover .weiche-arrow {
  color: #0F172A;
}

/* Section Labels & Headings */
[data-theme="light"] .section-label {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

[data-theme="light"] .section-headline {
  color: #0F172A;
}

[data-theme="light"] .section-sub {
  color: var(--text-secondary);
}

/* Service Cards */
[data-theme="light"] .service-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .service-card.visible:hover {
  border-color: #0F172A;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px #0F172A;
  background: #FFFFFF;
  transform: translateY(-2px);
}

[data-theme="light"] .service-card-icon {
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .service-card-icon img {
  filter: brightness(0);
}

[data-theme="light"] .service-card h3 {
  color: #0F172A;
}

[data-theme="light"] .service-card p {
  color: var(--text-secondary);
}

[data-theme="light"] .price-hint {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 700;
  border-radius: var(--radius-pill);
}

/* Process Section */
[data-theme="light"] .process-section {
  background: #F1F5F9;
}

[data-theme="light"] .process-step .process-number {
  background: #B6FF2E;
  color: #0F172A;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(182, 255, 46, 0.45);
}

[data-theme="light"] .process-step h3 {
  color: #0F172A;
}

[data-theme="light"] .process-step p {
  color: var(--text-secondary);
}

/* Fernwartung Card */
[data-theme="light"] .fernwartung-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .fernwartung-icon {
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  width: 70px;
  height: 70px;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .fernwartung-icon img {
  filter: brightness(0);
}

[data-theme="light"] .fernwartung-card h3 {
  color: #0F172A;
}

[data-theme="light"] .fernwartung-desc {
  color: var(--text-secondary);
}

[data-theme="light"] .fernwartung-config-hint {
  background: #F1F5F9;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0F172A;
}

[data-theme="light"] .fernwartung-disclaimer {
  background: #F8FAFC;
  border-color: rgba(15, 23, 42, 0.08);
  color: var(--text-secondary);
}

[data-theme="light"] .fernwartung-disclaimer-title {
  color: #0F172A;
}

[data-theme="light"] .fernwartung-agb-link {
  border-top-color: rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .fernwartung-agb-link a {
  color: #0F172A;
  text-decoration: underline;
  text-decoration-color: #B6FF2E;
  text-underline-offset: 3px;
}

[data-theme="light"] .fernwartung-agb-link a:hover {
  color: #0F172A;
  opacity: 0.8;
}

/* Anfahrt Section */
[data-theme="light"] .anfahrt-info {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .anfahrt-icon {
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  padding: 7px;
}

[data-theme="light"] .anfahrt-icon img {
  filter: brightness(0);
}

[data-theme="light"] .anfahrt-header h3 {
  color: #0F172A;
}

[data-theme="light"] .anfahrt-item {
  background: #F8FAFC;
  border-color: rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .anfahrt-zone {
  color: #0F172A;
}

[data-theme="light"] .anfahrt-price {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* Über mich */
[data-theme="light"] #ueber {
  background: #F8FAFC;
}

[data-theme="light"] .ueber-content h2 {
  color: #0F172A;
}

[data-theme="light"] .ueber-text p {
  color: var(--text-secondary);
}

[data-theme="light"] .usp-icon-wrap {
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

[data-theme="light"] .usp-icon-wrap img {
  filter: brightness(0);
}

[data-theme="light"] .usp-item h3 {
  color: #0F172A;
}

[data-theme="light"] .usp-item p {
  color: var(--text-secondary);
}

/* FAQ */
[data-theme="light"] .faq-section {
  background: transparent;
}

[data-theme="light"] .faq-item {
  background: #FFFFFF;
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.03);
  transition: all var(--transition);
}

[data-theme="light"] .faq-item:hover {
  border-color: #0F172A;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .faq-item[open] {
  background: #FFFFFF;
  border-color: #0F172A;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 0 0 1px #0F172A;
}

[data-theme="light"] .faq-question {
  color: #0F172A;
  font-weight: 600;
}

[data-theme="light"] .faq-question:hover {
  color: #0F172A;
}

[data-theme="light"] .faq-chevron {
  color: #0F172A;
  font-weight: 700;
}

[data-theme="light"] .faq-answer {
  color: var(--text-secondary);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 18px;
  margin-top: -2px;
}

[data-theme="light"] .faq-answer p {
  color: var(--text-secondary);
}

[data-theme="light"] .faq-answer strong {
  color: #0F172A;
}

[data-theme="light"] .faq-answer a {
  color: #0F172A;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #B6FF2E;
  text-underline-offset: 3px;
}

/* Kontakt */
[data-theme="light"] #kontakt {
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

[data-theme="light"] #kontakt .section-label {
  color: #0F172A;
  background: #F1F5F9;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .kontakt-item {
  background: #FFFFFF;
  border-color: rgba(15, 23, 42, 0.08);
  color: #0F172A;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .kontakt-item:hover {
  border-color: #0F172A;
}

[data-theme="light"] .kontakt-item > img {
  width: 18px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  filter: brightness(0);
}

[data-theme="light"] .copy-btn {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .copy-btn img {
  filter: brightness(0);
}

[data-theme="light"] .copy-btn:hover {
  background: #B6FF2E;
  color: #0F172A;
  border-color: #0F172A;
}

[data-theme="light"] .copy-btn:hover img {
  filter: brightness(0);
}

[data-theme="light"] .service-times {
  background: #F1F5F9;
  color: #0F172A;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .service-times img {
  filter: brightness(0);
}

/* Primary Button in Light Mode: The Signature Cyber Lime CTA */
[data-theme="light"] .btn-primary {
  background: #B6FF2E;
  color: #0F172A;
  box-shadow: 0 4px 18px rgba(182, 255, 46, 0.45);
  font-weight: 700;
}

[data-theme="light"] .btn-primary:hover {
  background: #A3E61A;
  color: #0F172A;
  box-shadow: 0 8px 26px rgba(182, 255, 46, 0.55);
  transform: translateY(-2px);
}

[data-theme="light"] .btn-primary .btn-icon,
[data-theme="light"] .btn-primary img {
  filter: brightness(0);
}

/* Secondary Button: Clean Slate Outline */
[data-theme="light"] .btn-outline {
  background: #FFFFFF;
  color: #0F172A;
  border: 1.5px solid rgba(15, 23, 42, 0.25);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

[data-theme="light"] .btn-outline:hover {
  background: #F1F5F9;
  border-color: #0F172A;
  color: #0F172A;
}

[data-theme="light"] .btn-outline .btn-icon,
[data-theme="light"] .btn-outline img {
  filter: brightness(0);
}

/* Toast */
[data-theme="light"] .copy-toast {
  background: #0F172A;
  color: #B6FF2E;
  border-color: #0F172A;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

/* Footer in Light Mode */
[data-theme="light"] footer {
  background: #F1F5F9;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .footer-copy {
  color: var(--text-light);
}

[data-theme="light"] .footer a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

[data-theme="light"] .footer-links a {
  color: var(--text-secondary);
  position: relative;
  padding: 2px 0;
  display: inline-block;
  text-decoration: none;
}

[data-theme="light"] .footer-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: #B6FF2E;
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] .footer-links a:hover,
[data-theme="light"] .footer-links a:focus-visible {
  color: var(--text-secondary) !important;
}

[data-theme="light"] .footer-links a:hover::after,
[data-theme="light"] .footer-links a:focus-visible::after {
  width: 100%;
}


[data-theme="light"] .divider {
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

/* Legal Pages in Light Mode */
[data-theme="light"] .legal-page {
  background: #F8FAFC;
}


[data-theme="light"] .legal-inner h1,
[data-theme="light"] .legal-block h2,
[data-theme="light"] .legal-block h3 {
  color: #0F172A;
}

[data-theme="light"] .legal-block p,
[data-theme="light"] .legal-block li {
  color: var(--text-secondary);
}

[data-theme="light"] .legal-back {
  color: #0F172A;
  font-weight: 600;
}

[data-theme="light"] .legal-back:hover {
  color: #0F172A;
}

[data-theme="light"] .legal-block a {
  color: #0F172A;
  text-decoration: underline;
  text-decoration-color: #B6FF2E;
  text-underline-offset: 3px;
}

[data-theme="light"] .dsgvo-badge {
  background: #F1F5F9;
  color: #0F172A;
  border: 1px solid rgba(15, 23, 42, 0.12);
}