﻿/* ==========================================================================
   VOLT-GUARD · STYLES (Light/Premium Theme + Dark Storm Hero)
   ========================================================================== */

@font-face {
  font-family: 'Gyrochrome';
  src: url('../assets/fonts/GyrochromeVF.ttf') format('truetype-variations'),
       url('../assets/fonts/GyrochromeVF.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NeutralSans';
  src: url('../assets/fonts/NeutralSans-Meidum.ttf') format('truetype');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

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

/* ─── Tokens ─── */
:root {
  /* Brand */
  --orange: #ff7e1c;
  --orange-h: #ff9540;
  --orange-d: rgba(255, 126, 28, 0.12);
  --orange-deep: #ff5a00;
  --blue: #1e3a5f;
  --blue-deep: #0f1f3a;

  /* Backwards compatibility aliases */
  --amber: #ff7e1c;
  --amber-h: #ff9540;
  --amber-d: rgba(255, 126, 28, 0.12);

  /* Light theme (body) */
  --bg-light: #e6e9ee;
  --bg-card: #f4f5f7;
  --bg-soft: #dde2eb;
  --text-d: #1a1d2e;
  --text-m: #4a5066;
  --text-l: #757a8c;
  --border: rgba(26, 29, 46, 0.1);
  --border-h: rgba(26, 29, 46, 0.18);

  /* Dark theme (hero) */
  --bg-dark: #0f1f3a;
  --bg-dark-2: #162a4d;
  --text-dark: #eceef8;
  --text-dark-m: #b6bbcf;
  --muted-dark: #6e748f;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Geometry */
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 3px rgba(14, 16, 32, 0.04), 0 8px 24px rgba(14, 16, 32, 0.04);
  --shadow-card-h: 0 4px 8px rgba(14, 16, 32, 0.06), 0 20px 40px rgba(14, 16, 32, 0.08);
}

html { scroll-behavior: smooth; }

/* ============================================================
   DARK MODE OVERRIDES
   ============================================================ */
[data-theme="dark"] {
  --bg-light: #0e1020;
  --bg-card: #161a2e;
  --bg-soft: #1a1f36;
  --text-d: #ecedf3;
  --text-m: #b4b9cd;
  --text-l: #8b91a8;
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(255, 255, 255, 0.16);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-card-h: 0 4px 8px rgba(0, 0, 0, 0.4), 0 20px 40px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] body {
  background: var(--bg-light);
  color: var(--text-d);
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(14, 16, 32, 0.92);
}

[data-theme="dark"] .page-header {
  background: var(--bg-card);
}

[data-theme="dark"] .section--soft { background: var(--bg-light); }
[data-theme="dark"] .section--white { background: var(--bg-soft); }

[data-theme="dark"] .svc,
[data-theme="dark"] .ref,
[data-theme="dark"] .review,
[data-theme="dark"] .partner__card,
[data-theme="dark"] .form,
[data-theme="dark"] .faq__item,
[data-theme="dark"] .reviews__google-badge {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .reviews__google-icon {
  background: var(--bg-soft);
  border-color: var(--border);
}

[data-theme="dark"] .about__badge {
  background: var(--bg-card);
  border-color: var(--border);
}

[data-theme="dark"] .fg input,
[data-theme="dark"] .fg textarea,
[data-theme="dark"] .fg select {
  background: var(--bg-soft);
  color: var(--text-d);
  border-color: var(--border);
}

[data-theme="dark"] .fg select option {
  background: var(--bg-soft);
  color: var(--text-d);
}

[data-theme="dark"] .svc__icon,
[data-theme="dark"] .ci__icon {
  background: rgba(255, 126, 28, 0.15);
  border-color: rgba(255, 126, 28, 0.25);
}

[data-theme="dark"] .nav__logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 240, 180, 0.6)) drop-shadow(0 0 4px rgba(255, 230, 140, 0.5));
}
[data-theme="dark"] .nav.scrolled .nav__logo img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 240, 180, 0.6)) drop-shadow(0 0 4px rgba(255, 230, 140, 0.5));
}

[data-theme="dark"] .legal__inner {
  background: var(--bg-card);
  border-color: var(--border);
}

/* Footer is already dark, keep it but slightly adjust border */
[data-theme="dark"] .footer {
  background: #060815;
}

/* Hero stays dark in both modes — no override needed */

body {
  background: var(--bg-light);
  color: var(--text-d);
  font-family: 'NeutralSans', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  gap: 1rem;
  background: rgba(5, 6, 17, 0.0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
              border-color 0.3s ease, height 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  box-shadow: 0 1px 20px rgba(14, 16, 32, 0.04);
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  height: 40px;
  z-index: 1;
  flex-shrink: 0;
}
.nav__logo img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 240, 180, 0.6)) drop-shadow(0 0 4px rgba(255, 230, 140, 0.5));
  transition: filter 0.3s ease;
}
.nav.scrolled .nav__logo img {
  filter: drop-shadow(0 0 8px rgba(255, 240, 180, 0.6)) drop-shadow(0 0 4px rgba(255, 230, 140, 0.5));
}

/* Right-side group: tools + cta + burger */
.nav__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nav__links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}
.nav.scrolled .nav__links a { color: var(--text-m); }
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Active page indicator */
.nav__links a.active {
  color: var(--orange);
}
.nav__links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav.scrolled .nav__links a.active {
  color: var(--orange);
}

.nav__cta {
  font-family: 'Gyrochrome', sans-serif;
  background: var(--amber);
  border: 1px solid var(--amber);
  color: #000;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav__cta:hover {
  background: var(--amber-h);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
  transform: translateY(-1px);
}

/* ============================================================
   NAV TOGGLES (Theme + Language)
   ============================================================ */
.nav__tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav__toggle {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-d);
  transition: all 0.2s ease;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0;
  overflow: hidden;
  flex-shrink: 0;
}
.nav__toggle:hover {
  background: var(--orange-d);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}
.nav__toggle svg {
  width: 16px;
  height: 16px;
}

/* Language toggle button - flag-style */
.nav__toggle--lang {
  overflow: hidden;
  padding: 0;
  background: transparent;
}
.nav__toggle--lang .flag {
  width: 100%;
  height: 100%;
  display: block;
}
.nav__toggle--lang:hover {
  background: transparent;
  border-color: var(--orange);
  transform: translateY(-1px) scale(1.05);
}

/* Flag visibility — show currently OPPOSITE flag (the one user can switch TO) */
.nav__toggle--lang .flag-en { display: block; }
.nav__toggle--lang .flag-de { display: none; }
html[lang="en"] .nav__toggle--lang .flag-en { display: none; }
html[lang="en"] .nav__toggle--lang .flag-de { display: block; }

/* When over dark hero (nav not scrolled): light text */
.nav:not(.scrolled) .nav__toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
}
.nav:not(.scrolled) .nav__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.nav:not(.scrolled) .nav__toggle--lang:hover {
  background: transparent;
}

/* Hide moon when dark mode active, show sun (and vice versa) */
.nav__toggle .icon-sun { display: none; }
.nav__toggle .icon-moon { display: block; }
[data-theme="dark"] .nav__toggle .icon-sun { display: block; }
[data-theme="dark"] .nav__toggle .icon-moon { display: none; }

@media (max-width: 880px) {
  .nav__toggle { width: 32px; height: 32px; }
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: transparent;
  border: none;
}
.nav__burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--text-d); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem 5vw;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(14, 16, 32, 0.08);
    transform: none;
  }
  .nav__links.open a { color: var(--text-m); }
}

/* ============================================================
   HERO — Immersive storm scene (stays dark)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 72px 5vw 0;
  background: #ffffff;
  color: var(--text-d);
}

.hero__city {
  position: absolute;
  bottom: -140px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 5;
  pointer-events: none;
  user-select: none;
}
picture.hero__city,
picture.hero__solar { display: block; }
.hero__city img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 880px) {
  .hero__city {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .hero__city img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero {
    min-height: 88vh;
    padding: 80px 5vw 0;
  }
  /* Beide hero__content auf Mobile gleich (kein margin-Versatz) */
  .hero__content,
  .hero--day .hero__content {
    margin-bottom: 0;
  }
}

/* ============================================================
   GLOBAL MOBILE OVERFLOW PROTECTION
   ============================================================ */
@media (max-width: 880px) {
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  /* Hero: Text nach oben rücken, Buttons nicht mit Scroll-Cue überlappen */
  .hero {
    min-height: 80vh;
    justify-content: flex-start;
    padding-top: 11vh;
  }
  .hero__content {
    margin-bottom: 0;
  }
  /* Scroll-Cue auf Mobile komplett ausblenden (beide Hero-Varianten) */
  .scroll-cue,
  .scroll-cue--day,
  .hero .scroll-cue,
  .hero--day .scroll-cue {
    display: none !important;
  }
  /* Navbar Mobile-Anordnung: Tools links | Logo mittig | Burger rechts */
  .nav {
    padding: 0 4vw;
    gap: 0.5rem;
    display: flex;
    align-items: center;
  }
  /* Logo mittig (absolut, damit es nicht den Flow stört) */
  .nav__logo {
    height: 32px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  /* nav__right über volle Breite: Tools links, Burger rechts */
  .nav__right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    z-index: 2;
  }
  .nav__tools {
    gap: 0.4rem;
  }
  .nav__toggle {
    width: 32px;
    height: 32px;
  }
  /* Burger ganz rechts, über dem Logo */
  .nav__burger {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
  }
  /* Burger-Linien immer schwarz (auch über dunklem Hero) */
  .nav__burger span,
  .nav.scrolled .nav__burger span {
    background: var(--text-d);
  }
}

/* ============================================================
   STORM FLASH — subtle lightning flashes inside the cloud areas
   (positioned to match actual cloud locations in skyline.png)
   ============================================================ */
.storm-flash {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 55%;
  /* Many small, precise gradients positioned on the actual clouds */
  background:
    /* upper-left cloud cluster */
    radial-gradient(ellipse 50px 22px at 15.9% 18.8%, rgba(225, 235, 255, 0.4), transparent 80%),
    radial-gradient(ellipse 50px 22px at 6.2% 53.9%, rgba(225, 235, 255, 0.4), transparent 80%),
    radial-gradient(ellipse 50px 22px at 27.9% 47.6%, rgba(225, 235, 255, 0.4), transparent 80%),
    radial-gradient(ellipse 50px 22px at 32.0% 66.7%, rgba(225, 235, 255, 0.4), transparent 80%),
    /* clouds left of the moon */
    radial-gradient(ellipse 50px 22px at 67.8% 22.6%, rgba(225, 235, 255, 0.4), transparent 80%),
    /* clouds under the moon */
    radial-gradient(ellipse 50px 22px at 94.9% 57.2%, rgba(225, 235, 255, 0.4), transparent 80%),
    radial-gradient(ellipse 50px 22px at 93.0% 33.6%, rgba(225, 235, 255, 0.4), transparent 80%),
    radial-gradient(ellipse 50px 22px at 83.8% 41.8%, rgba(225, 235, 255, 0.4), transparent 80%);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
  mix-blend-mode: screen;
  filter: blur(5px);
}
.storm-flash.flash {
  animation: storm-flash-anim 1.2s ease-out;
}
@keyframes storm-flash-anim {
  0%   { opacity: 0; }
  10%  { opacity: 0.7; }
  22%  { opacity: 0.1; }
  35%  { opacity: 0.5; }
  55%  { opacity: 0; }
  70%  { opacity: 0.25; }
  85%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 880px;
  padding: 0 1rem;
  margin-bottom: -4vh;
}

/* Leistungen (day) hero — keeps its own height */
.hero--day .hero__content {
  margin-bottom: 10vh;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd700;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 0.42rem 1.05rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.8s 0.3s ease forwards;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.75rem;
  opacity: 0;
  color: #ffffff;
  animation: fade-up 0.9s 0.5s ease forwards;
  text-shadow: 0 4px 30px rgba(15, 20, 40, 0.6), 0 2px 10px rgba(15, 20, 40, 0.4);
}
.hero__title .accent { color: var(--orange); display: block; text-shadow: 0 4px 30px rgba(15, 20, 40, 0.6), 0 0 30px rgba(255, 126, 28, 0.35); }

.hero__desc {
  font-size: 1.05rem;
  color: rgba(240, 245, 255, 0.92);
  max-width: 540px;
  margin: 0 auto 2.6rem;
  line-height: 1.8;
  opacity: 0;
  animation: fade-up 0.9s 0.7s ease forwards;
  text-shadow: 0 2px 12px rgba(15, 20, 40, 0.4);
}

.hero__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.9s ease forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}

.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-up 1s 1.5s ease forwards;
}
.scroll-cue__text {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.scroll-cue__line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: cue-pulse 2.2s ease-in-out infinite;
}
@keyframes cue-pulse {
  0%, 100% { opacity: 0.8; transform: scaleY(1); }
  50%      { opacity: 0.25; transform: scaleY(0.55); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: 'Gyrochrome', sans-serif;
  padding: 0.85rem 2.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--fill {
  background: var(--amber);
  color: #000;
  box-shadow: 0 4px 24px rgba(245, 166, 35, 0.3);
}
.btn--fill:hover {
  background: var(--amber-h);
  box-shadow: 0 6px 36px rgba(245, 166, 35, 0.5);
  transform: translateY(-1px);
}
.btn--line {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-dark);
}
.btn--line:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
}
.btn--dark {
  background: var(--text-d);
  color: #fff;
}
.btn--dark:hover { background: #1a1d35; transform: translateY(-1px); }

/* ============================================================
   SECTIONS (light)
   ============================================================ */
section.section {
  padding: 7rem 5vw;
  position: relative;
}
section.section--soft { background: var(--bg-soft); }
section.section--white { background: var(--bg-card); }

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

.eyebrow {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: block;
}

.title {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.005em;
  margin-bottom: 1.5rem;
  color: var(--text-d);
}

.subtitle {
  color: var(--text-m);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
}

/* ============================================================
   TRUST BAR (under hero)
   ============================================================ */
.trust {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem 5vw;
}
.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust__items {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-m);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.trust__item svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}
.trust__phone {
  font-family: 'Gyrochrome', sans-serif;
  color: var(--text-d);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: color 0.2s;
}
.trust__phone:hover { color: var(--amber); }
.trust__phone svg { color: var(--amber); }

@media (max-width: 768px) {
  .trust__items { gap: 1.25rem; }
  .trust__item { font-size: 0.8rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 1.5rem;
}

.svc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.85rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
  box-shadow: var(--shadow-card);
}
/* Once revealed, override the slow 0.8s reveal-transition so hover is snappy */
.svc.reveal.is-visible {
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s ease-out;
  transition-delay: 0s;
}
.svc:hover,
.svc.reveal.is-visible:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
  border-color: var(--border-h);
}
.svc__icon {
  width: 52px;
  height: 52px;
  background: var(--amber-d);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.svc__icon svg {
  width: 22px;
  height: 22px;
  color: var(--amber);
}
/* When icon contains a PNG image (original assets) */
.svc__icon--img {
  background: transparent;
  border: none;
  width: 72px;
  height: 72px;
}
.svc__icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
[data-theme="dark"] .svc__icon--img img {
  filter: invert(1) brightness(1.6);
}

/* Advantages CTA buttons */
.advantages__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.btn--dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--text-d);
  color: #fff;
  border: 1px solid var(--text-d);
  border-radius: 10px;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--dark:hover {
  background: transparent;
  color: var(--text-d);
  transform: translateY(-2px);
}
[data-theme="dark"] .btn--dark {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
[data-theme="dark"] .btn--dark:hover {
  background: transparent;
  color: var(--orange);
}

.svc h3 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.65rem;
  line-height: 1.25;
  color: var(--text-d);
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
.svc p {
  color: var(--text-m);
  font-size: 0.93rem;
  line-height: 1.75;
}
.svc__tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-d);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.about__intro .eyebrow,
.about__intro .title { text-align: center; }
.about__intro .title { margin-left: auto; margin-right: auto; }

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about__visual { position: relative; display: flex; }
.about__img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-h);
}
.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  min-width: 190px;
  box-shadow: var(--shadow-card);
}
.about__badge strong {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--amber);
  display: block;
  letter-spacing: 0.02em;
}
.about__badge span {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-l);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.about__text p {
  color: var(--text-m);
  margin-bottom: 1.2rem;
  line-height: 1.85;
  font-size: 1rem;
}

.about__lead {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 600;
  color: var(--text-d) !important;
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
  letter-spacing: 0.01em;
  padding-left: 1.2rem;
  border-left: 3px solid var(--amber);
  margin: 1.5rem 0 !important;
}

/* Long slogan as a closing line under the about grid */
.about__slogan {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  text-align: center;
  color: var(--text-d);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.35;
  letter-spacing: 0.005em;
  max-width: 900px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

/* ============================================================
   PARTNER
   ============================================================ */
.partner__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .partner__card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
}
.partner__logo {
  width: 160px;
  height: auto;
}
.partner__desc {
  color: var(--text-m);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.partner__desc strong { color: var(--text-d); }
.partner__links { display: flex; flex-direction: column; gap: 0.3rem; }
.partner__links a {
  color: var(--amber);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.partner__links a:hover { opacity: 0.75; }
.partner__links span { color: var(--text-l); font-size: 0.88rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item:hover { border-color: var(--border-h); }
.faq__item[open] {
  border-color: rgba(245, 166, 35, 0.35);
  box-shadow: var(--shadow-card);
}

.faq__q {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: var(--text-d);
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__item[open] .faq__q { color: var(--amber); }
.faq__q::after {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__item[open] .faq__q::after { transform: rotate(180deg); }
.faq__a {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-m);
  font-size: 0.94rem;
  line-height: 1.8;
}
.faq__a p { margin-bottom: 0.6rem; }
.faq__a p:last-child { margin-bottom: 0; }

/* FAQ table (used for inspection intervals etc.) */
.faq__table-wrap {
  overflow-x: auto;
  margin: 1rem 0 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 58, 95, 0.15);
}
.faq__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
}
.faq__table thead {
  background: var(--blue);
  color: #fff;
}
.faq__table th {
  padding: 0.85rem 0.9rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.35;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.faq__table th:last-child { border-right: none; }
.faq__table th small {
  display: block;
  font-weight: 400;
  font-size: 0.85em;
  opacity: 0.85;
  margin-top: 2px;
}
.faq__table th sup {
  font-weight: 400;
  font-size: 0.7em;
  margin-left: 2px;
  letter-spacing: 1px;
}
.faq__table td {
  padding: 0.7rem 0.9rem;
  text-align: center;
  border-top: 1px solid rgba(30, 58, 95, 0.08);
  border-right: 1px solid rgba(30, 58, 95, 0.08);
  color: var(--text-d);
}
.faq__table td:last-child { border-right: none; }
.faq__table td:first-child { font-weight: 600; }
.faq__table tbody tr:hover { background: rgba(30, 58, 95, 0.03); }

.faq__footnote {
  font-size: 0.82rem;
  color: var(--text-l);
  line-height: 1.55;
  margin: 0.4rem 0;
  padding-left: 1.4rem;
  position: relative;
}
.faq__footnote sup {
  position: absolute;
  left: 0.4rem;
  top: 0.1rem;
  font-weight: 700;
  color: var(--blue);
}

/* Dark mode adjustments */
[data-theme="dark"] .faq__table { background: var(--bg-card); }
[data-theme="dark"] .faq__table td { color: var(--text-d); border-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .faq__table-wrap { border-color: rgba(255, 255, 255, 0.12); }

/* ============================================================
   GOOGLE REVIEWS
   ============================================================ */
.reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}
.reviews__head .title { text-align: center; }
.reviews__head .subtitle { text-align: center; margin: 0 auto; }

.reviews__google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.55rem 1.25rem 0.55rem 0.55rem;
  margin-top: 1.5rem;
  box-shadow: var(--shadow-card);
}
.reviews__google-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.reviews__google-icon svg { width: 22px; height: 22px; }
.reviews__google-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.reviews__google-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Gyrochrome', sans-serif;
}
.reviews__google-stars strong {
  color: var(--text-d);
  font-size: 1rem;
  font-weight: 700;
}
.reviews__stars-row { display: flex; gap: 1px; }
.reviews__stars-row svg { width: 14px; height: 14px; color: #fbbc04; fill: #fbbc04; }
.reviews__stars-row--empty svg { color: #c9ccd4; fill: #c9ccd4; }
[data-theme="dark"] .reviews__stars-row--empty svg { color: #3a3f52; fill: #3a3f52; }

/* Empty reviews placeholder */
.reviews__empty {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.reviews__empty p {
  color: var(--text-m);
  font-size: 1.05rem;
  line-height: 1.7;
}
.reviews__google-rating small {
  font-size: 0.72rem;
  color: var(--text-l);
  font-family: 'NeutralSans', sans-serif;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.review__top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.review__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.review__meta { flex: 1; min-width: 0; }
.review__name {
  font-weight: 600;
  color: var(--text-d);
  font-size: 0.94rem;
  display: block;
}
.review__when {
  font-size: 0.78rem;
  color: var(--text-l);
  display: block;
}
.review__stars { display: flex; gap: 1px; margin-bottom: 0.75rem; }
.review__stars svg { width: 16px; height: 16px; color: #fbbc04; fill: #fbbc04; }
.review__text {
  color: var(--text-m);
  font-size: 0.92rem;
  line-height: 1.75;
  flex: 1;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 2rem;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci__icon {
  width: 42px;
  height: 42px;
  background: var(--amber-d);
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci__icon svg { width: 18px; height: 18px; color: var(--amber); }

.ci__body strong {
  display: block;
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-d);
  margin-bottom: 0.35rem;
}
.ci__body a,
.ci__body span {
  color: var(--text-m);
  font-size: 0.94rem;
  text-decoration: none;
  display: block;
  line-height: 1.65;
}
.ci__body a:hover { color: var(--amber); }

/* Form */
.form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}
.fg { margin-bottom: 1.1rem; }
.fg label {
  display: block;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: 0.5rem;
}
.fg input,
.fg textarea,
.fg select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.78rem 0.95rem;
  color: var(--text-d);
  font-family: 'NeutralSans', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: all 0.2s;
}
.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--amber);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}
.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-l);
  opacity: 0.7;
}
.fg textarea { resize: vertical; min-height: 110px; }

/* Honeypot — completely hidden from users and screen readers using position trick (some bots check display:none and skip) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Math captcha styling */
.fg--captcha label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.fg--captcha #captcha-question {
  display: inline-block;
  background: var(--bg-soft);
  padding: 0.25rem 0.7rem;
  border-radius: 6px;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 1rem;
  color: var(--text-d);
  letter-spacing: 0.05em;
}
[data-theme="dark"] .fg--captcha #captcha-question {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Form error message */
.form__error {
  color: #e63946;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: 0.5rem 0;
}
.form__success {
  color: #2a9d3f;
  background: rgba(42, 157, 63, 0.08);
  border: 1px solid rgba(42, 157, 63, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin: 0.5rem 0;
}

.form__submit {
  width: 100%;
  background: var(--amber);
  border: none;
  color: #000;
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.2);
}
.form__submit:hover {
  background: var(--amber-h);
  box-shadow: 0 6px 28px rgba(245, 166, 35, 0.4);
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-d);
  color: var(--text-dark);
  padding: 3.5rem 5vw 1.75rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}
.footer__brand .footer__slogan {
  color: var(--orange);
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.4;
  max-width: none;
  margin-bottom: 1rem;
}
.footer__partner-tag {
  display: block;
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s, transform 0.2s;
}
.footer__brand img:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}
.footer__address {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.footer__address a, .footer__address span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__address a:hover { color: var(--orange); }

.footer__col h4 {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a, .footer__col span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--orange); }

/* Partner: just a clickable logo */
.footer__col--partner {
  justify-self: start;
  text-align: left;
}
.footer__col--partner h4 {
  text-align: left;
}
.footer__col--partner .footer__partner-link {
  display: inline-block;
  margin-top: 0.5rem;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__col--partner .footer__partner-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer__col--partner .footer__partner-link img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__bottom ul {
  display: flex; gap: 1.5rem; list-style: none;
}
.footer__bottom a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--amber); }

/* ============================================================
   REFERENZEN (Project category cards)
   ============================================================ */
.refs__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.refs__head .title { text-align: center; }
.refs__head .subtitle { margin: 0 auto; text-align: center; }

/* Dünne graue Trennlinie über dem Sektion-Header (wie beim Slogan) */
.section-top-divider {
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}

/* ============================================================
   GALLERY — auto-scrolling image strip (art gallery style)
   ============================================================ */
.gallery {
  width: 100%;
  overflow: hidden;
  margin-top: 1rem;
  position: relative;
  /* mask out the edges for a soft fade */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.gallery__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: gallery-scroll 40s linear infinite;
}
.gallery:hover .gallery__track {
  animation-play-state: paused;
}
.gallery__item {
  flex-shrink: 0;
  width: 420px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 0.75rem)); }
}
@media (max-width: 720px) {
  .gallery__item {
    width: 280px;
    height: 200px;
  }
}

.refs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ref {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
}
.ref:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
  border-color: var(--border-h);
}
.ref:hover .ref__img { transform: scale(1.04); }
.ref:hover .ref__cat { color: var(--amber); }

.ref__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #3a4663 0%, #1d2236 100%);
}
.ref__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.85) saturate(0.95);
}
.ref__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 20, 40, 0.85) 100%);
}
.ref__count {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-d);
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}
.ref__icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  background: var(--amber);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ref__icon svg { width: 18px; height: 18px; color: #000; }

.ref__body {
  padding: 1.5rem 1.5rem 1.65rem;
}
.ref__cat {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.2s;
}
.ref h3 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: var(--text-d);
}
.ref p {
  color: var(--text-m);
  font-size: 0.88rem;
  line-height: 1.7;
}

.refs__cta {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.refs__cta p {
  color: var(--text-m);
  font-size: 1rem;
  max-width: 520px;
}

/* ============================================================
   SOCIAL ICONS (footer)
   ============================================================ */
.footer__socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.footer__social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.25s ease;
  text-decoration: none;
}
.footer__social:hover {
  background: var(--amber);
  border-color: var(--amber);
  color: #000;
  transform: translateY(-2px);
}
.footer__social svg { width: 18px; height: 18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.6s; }

/* ============================================================
   PAGE HEADER (compact, used on Kontakt page)
   ============================================================ */
.page-header {
  padding: 9rem 5vw 4rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .container {
  max-width: 760px;
}
.page-header__title {
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  margin-bottom: 1.25rem !important;
}
.page-header__sub {
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-m);
}

/* ============================================================
   HERO – DAY VARIANT (Leistungen page)
   ============================================================ */
.hero--day {
  background: #c8e0f5;
  color: var(--text-d);
}

.hero__sky--day {
  position: absolute; inset: 0;
  background: #ffffff;
}

.hero__sun {
  position: absolute;
  top: -100px;
  right: -120px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 6;
  animation: sun-pulse 8s ease-in-out infinite;
}
@keyframes sun-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.92; }
}

@media (max-width: 880px) {
  .hero__sun {
    top: -150px;
    right: -200px;
    width: 450px;
    height: 450px;
  }
  /* Solarpark-Bild füllt auf Mobile den ganzen Hero (cover) */
  .hero__solar {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    filter: none;
  }
  .hero__solar img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }
  /* Beide Heroes auf Mobile gleich hoch + content-Abstand zurücksetzen */
  .hero--day {
    min-height: 80vh;
  }
  .hero--day .hero__content {
    margin-bottom: 0;
  }
}

.hero__solar {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 -2px 25px rgba(20, 25, 45, 0.3));
  pointer-events: none;
  user-select: none;
}
.hero__solar img {
  width: 100%;
  height: auto;
  display: block;
}

.energy-line {
  animation: energy-flow 1.2s linear infinite;
}
@keyframes energy-flow {
  to { stroke-dashoffset: -28; }
}

@keyframes turbine-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__tag--day {
  background: rgba(255, 126, 28, 0.18);
  border-color: rgba(255, 126, 28, 0.4);
  color: var(--text-d);
  backdrop-filter: blur(4px);
}

.hero__title--day {
  color: var(--text-d);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), 0 2px 12px rgba(0, 0, 0, 0.15);
}
.hero__title--day .accent {
  color: var(--orange);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25),
               0 0 30px rgba(255, 126, 28, 0.4);
}

/* Dark mode: keep title dark because the solar park sky is bright */
[data-theme="dark"] .hero__title--day {
  color: #1a1d2e;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3), 0 2px 12px rgba(0, 0, 0, 0.2);
}
[data-theme="dark"] .hero__desc--day {
  color: #2a2f42;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__desc--day {
  color: var(--text-m);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.btn--line-dark {
  border-color: rgba(26, 29, 46, 0.25);
  color: var(--text-d);
  background: rgba(255, 255, 255, 0.4);
}
.btn--line-dark:hover {
  border-color: var(--text-d);
  background: rgba(255, 255, 255, 0.6);
}

.scroll-cue--day .scroll-cue__text { color: var(--text-m); }
.scroll-cue--day .scroll-cue__line {
  background: linear-gradient(to bottom, var(--orange), transparent);
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-hero {
  padding: 9rem 5vw 4rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.legal-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.legal {
  padding: 4rem 5vw 7rem;
  background: var(--bg-light);
}
.legal__inner {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 3rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
@media (max-width: 640px) { .legal__inner { padding: 2rem 1.5rem; } }
.legal h2 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-d);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-d);
  margin: 1.75rem 0 0.6rem;
}
.legal p, .legal address {
  color: var(--text-m);
  font-size: 0.96rem;
  line-height: 1.85;
  margin-bottom: 1rem;
  font-style: normal;
}
.legal strong { color: var(--text-d); }
.legal a { color: var(--amber); text-decoration: none; transition: opacity 0.2s; }
.legal a:hover { opacity: 0.75; text-decoration: underline; }
.legal ul {
  list-style: none; margin: 1rem 0; padding-left: 0;
}
.legal ul li {
  position: relative; padding-left: 1.25rem;
  color: var(--text-m); font-size: 0.94rem;
  line-height: 1.85; margin-bottom: 0.4rem;
}
.legal ul li::before {
  content: ''; position: absolute;
  left: 0; top: 0.7rem;
  width: 5px; height: 5px;
  background: var(--amber); border-radius: 50%;
}

/* ============================================================
   ABOUT — extended sections (detail + topics)
   ============================================================ */
.about__detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 3rem;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .about__detail { padding: 2rem 1.5rem; }
}
.about__detail-head {
  margin-bottom: 2.5rem;
}
.about__detail-head .eyebrow { margin-bottom: 0.75rem; }
.about__detail-head .title {
  margin-bottom: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.about__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .about__detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
.challenge__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-h);
  display: block;
}
.about__detail p {
  color: var(--text-m);
  font-size: 1rem;
  line-height: 1.85;
  margin: 0;
}

.about__topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) {
  .about__topics { grid-template-columns: 1fr; gap: 1.25rem; }
}
.topic {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.topic:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
  border-color: var(--border-h);
}
.topic__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-d);
  border: 1px solid rgba(255, 126, 28, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.topic__icon svg { width: 20px; height: 20px; color: var(--orange); }
.topic h4 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--text-d);
}
.topic p {
  color: var(--text-m);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================================
   SERVICE: "Mehr lesen" expandable details
   ============================================================ */
.svc__more {
  margin-top: 0.75rem;
}
.svc__more summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  transition: color 0.2s;
}
.svc__more summary::-webkit-details-marker { display: none; }
.svc__more summary::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7e1c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.svc__more[open] summary::after { transform: rotate(180deg); }
.svc__more summary:hover { color: var(--orange-h); }
.svc__more-content {
  padding-top: 0.85rem;
  color: var(--text-m);
  font-size: 0.9rem;
  line-height: 1.75;
}
.svc__more-content p { margin-bottom: 0.6rem; }
.svc__more-content p:last-child { margin-bottom: 0; }

/* ============================================================
   ADVANTAGES BLOCK (Leistungen: "Ihre Vorteile mit Volt-Guard")
   ============================================================ */
.advantages {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 4rem;
  align-items: start;
  margin-top: 5rem;
}
@media (max-width: 900px) {
  .advantages { grid-template-columns: 1fr; gap: 2.5rem; }
}
.advantages__visual img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-h);
}
/* Expertise block — full width below the advantages grid */
.expertise {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.expertise h3 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-d);
  margin-bottom: 1rem;
}
.expertise p {
  color: var(--text-m);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 900px;
}
.advantages h3 {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-d);
  margin-bottom: 1rem;
  margin-top: 1.75rem;
}
.advantages h3:first-of-type { margin-top: 0; }
.advantages ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding-left: 0;
  margin-bottom: 1.5rem;
}
.advantages ul li {
  position: relative;
  padding-left: 1.95rem;
  color: var(--text-m);
  font-size: 1.05rem;
  line-height: 1.65;
}
.advantages ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7e1c' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.advantages p {
  color: var(--text-m);
  font-size: 0.96rem;
  line-height: 1.85;
}

/* ============================================================
   BIRDS animation (Leistungen sky) — animated GIF based
   ============================================================ */
.hero__birds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  pointer-events: none;
  z-index: 7;
  overflow: hidden;
}

.bird {
  position: absolute;
  height: auto;
  user-select: none;
  pointer-events: none;
  /* Default — overridden per bird below */
  animation: bird-fly 30s linear infinite;
}

/* Fly from right to left with a gentle up-and-down drift.
   Horizontal distance is spread EVENLY across the keyframes (equal px per
   equal time) so the bird keeps a constant speed and does not accelerate
   toward the end. Fixed px (not vw) → identical speed on every screen size. */
@keyframes bird-fly {
  0%   { transform: translateX(2200px)  scaleX(-1) translateY(0); }
  12%  { transform: translateX(1610px)  scaleX(-1) translateY(-18px); }
  25%  { transform: translateX(1000px)  scaleX(-1) translateY(12px); }
  38%  { transform: translateX(390px)   scaleX(-1) translateY(-14px); }
  50%  { transform: translateX(-250px)  scaleX(-1) translateY(6px); }
  /* 50% – 100%: offscreen on the left → pause before next flight */
  100% { transform: translateX(-250px)  scaleX(-1) translateY(6px); }
}

/* === Individual birds — different sizes, speeds and timing === */
.bird--1 {
  top: 18%;
  width: 43px;
  animation-duration: 45s;
  animation-delay: -2s;
}
.bird--2 {
  top: 10%;
  width: 31px;
  animation-duration: 45s;
  animation-delay: -25s;
}

/* Override: Service icon image — no orange background */
.svc__icon--img {
  background: transparent !important;
  border: none !important;
  width: 72px;
  height: 72px;
  padding: 0;
}
.svc:hover .svc__icon--img {
  background: transparent !important;
  border: none !important;
}

/* ============================================================
   PAGE HEADER (Kontakt) — soft grey in light, dark in dark mode
   ============================================================ */
.page-header {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  color: var(--text-d);
}
.page-header .eyebrow {
  color: var(--orange);
}
.page-header__title {
  color: var(--text-d) !important;
}
.page-header__sub {
  color: var(--text-m);
}
[data-theme="dark"] .page-header {
  background: linear-gradient(180deg, #1d2236 0%, #0e1020 100%);
  color: #fff;
}
[data-theme="dark"] .page-header__title {
  color: #fff !important;
}
[data-theme="dark"] .page-header__sub {
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   LEGAL-HERO — same blue-grey treatment as page-header
   ============================================================ */
.legal-hero {
  background: linear-gradient(180deg, #3a4663 0%, #2a3148 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  text-align: center;
}
.legal-hero .eyebrow { display: none; }
.legal-hero .title { color: #fff; }
.legal-hero .subtitle { color: rgba(255, 255, 255, 0.85); margin: 0 auto; text-align: center; }
[data-theme="dark"] .legal-hero {
  background: linear-gradient(180deg, #1d2236 0%, #0e1020 100%);
}

/* ============================================================
   CONTACT PERSON CARD (Kontaktseite mit Foto)
   ============================================================ */
.person {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 3.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.person:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
  border-color: var(--border-h);
}
@media (max-width: 700px) {
  .person {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
}
.person__photo {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  box-shadow: var(--shadow-card-h);
  flex-shrink: 0;
}
.person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.12);
}
@media (max-width: 700px) {
  .person__photo { width: 180px; height: 180px; }
}
.person__role {
  font-family: 'Gyrochrome', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
  display: block;
}
.person__name {
  font-family: 'Gyrochrome', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--text-d);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}
.person__bio {
  color: var(--text-m);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* Vereinter Kontakt-Header (in der Sektion, über der Person-Card) */
.contact__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  padding-top: 2rem;
}
.contact__header .eyebrow { color: var(--orange); }
.contact__header .page-header__title {
  font-size: clamp(2.4rem, 6vw, 4rem) !important;
  margin-bottom: 1.25rem !important;
  color: var(--text-d) !important;
}
.contact__header .page-header__sub {
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--text-m);
}

/* ============================================================
   DARK BLUE-GREY SECTIONS (FAQ, Referenzen, Reviews)
   ============================================================ */

/* ============================================================
   FOOTER COLUMNS VARIANT (only on index) — 3 columns, no dividers
   ============================================================ */
.footer--cols .footer__top {
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.footer--cols .footer__col--address h4 {
  text-align: left;
}
.footer--cols .footer__col--partner {
  justify-self: start;
  text-align: left;
}
.footer--cols .footer__col--partner h4 {
  text-align: left;
}
@media (max-width: 768px) {
  .footer--cols .footer__top {
    grid-template-columns: 1fr;
  }
}
/* Socials in der Copyright-Zeile, ausgerichtet unter der Adresse-Spalte */
.footer--cols .footer__bottom {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.footer--cols .footer__bottom p { justify-self: start; grid-column: 1; }
.footer--cols .footer__socials--bottom {
  margin-top: 0;
  grid-column: 2;
  justify-self: start;
}
.footer--cols .footer__bottom ul {
  grid-column: 3;
  justify-self: end;
}
@media (max-width: 768px) {
  .footer--cols .footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1rem;
    text-align: center;
  }
  .footer--cols .footer__bottom p,
  .footer--cols .footer__socials--bottom,
  .footer--cols .footer__bottom ul {
    grid-column: 1;
    justify-self: center;
  }
}
