/* ============================================================
   EA WEBSITE — MAIN STYLESHEET
   Accent: Blue #1a8fff
   Fonts: Montserrat (headings/labels) + Raleway (body)
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #222222;
  --blue: #1a8fff;
  --blue-dark: #1070cc;
  --text: #ffffff;
  --text-muted: #888888;
  --text-light: #aaaaaa;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-dark);
}

/* Text selection */
::selection {
  background-color: var(--blue);
  color: #ffffff;
}

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

a {
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Touch: kein blaues Flash auf iOS/Android bei Tippen */
a, button, [onclick], .service-card, .nav-link, .btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Touch-Feedback für Service-Cards */
.service-card:active {
  transform: translateY(-4px);
  border-color: var(--blue);
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.blue {
  color: var(--blue);
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1.15;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  line-height: 1;
}

.btn-primary {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 143, 255, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ============================================================
   4. PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #000;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
  will-change: opacity;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: preloaderFadeIn 0.6s ease-out forwards;
}

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

#preloader-skip {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  cursor: pointer;
  opacity: 0;
  animation: preloaderFadeIn 0.5s ease-out 2s forwards;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10000;
}
#preloader-skip:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── Preloader Logo + Ladebalken ── */
.preloader-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.preloader-logo {
  width: 340px;
  max-width: 68vw;
  animation: logoIntro 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(0 0 60px rgba(26, 143, 255, 0.55));
}
.preloader-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0;
  animation: splashFadeUp 0.6s ease-out 0.55s forwards;
}
.preloader-bar-wrap {
  width: 220px;
  max-width: 55vw;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: splashFadeUp 0.4s ease-out 0.75s forwards;
}
.preloader-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #1a8fff, #60c0ff);
  border-radius: 2px;
  animation: loadBar 2.3s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}
@keyframes logoIntro {
  0%   { opacity: 0; transform: scale(0.7) translateY(22px); }
  100% { opacity: 1; transform: scale(1)   translateY(0); }
}
@keyframes splashFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loadBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* Lazy-load placeholder für Portfolio */
.portfolio-img-wrap[data-bg] {
  background-color: #111;
}

/* ============================================================
   5. COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background-color: #111111;
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

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

.cookie-text {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.cookie-link {
  color: var(--blue);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-accept {
  background-color: var(--blue);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease;
}
.cookie-accept:hover {
  background-color: var(--blue-dark);
}

.cookie-decline {
  background-color: transparent;
  color: #666666;
  border: 1px solid #333333;
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.cookie-decline:hover {
  color: var(--text-light);
  border-color: #555555;
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.navbar-scrolled {
  background-color: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-bottom: 1px solid #1a1a1a;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-ea {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--blue);
  letter-spacing: 2px;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: #666666;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--blue);
}

.btn-nav {
  color: var(--blue);
  border: 1px solid rgba(26, 143, 255, 0.4);
  padding: 0.5rem 1.2rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.btn-nav:hover {
  background-color: var(--blue);
  color: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 10;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   7. HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 2rem;
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, var(--blue), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.4; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   8. COUNTER
   ============================================================ */
#counter {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.counter-item {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
.counter-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background-color: #1e1e1e;
}

.counter-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--blue);
  line-height: 1;
  display: inline-block;
}

.counter-suffix {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--blue);
  vertical-align: top;
  margin-top: 0.5rem;
  display: inline-block;
}

.counter-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 0.8rem;
  display: block;
}

/* ============================================================
   9. LEISTUNGEN
   ============================================================ */
#leistungen {
  padding: 7rem 0;
  background-color: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #1e1e1e;
  background-color: var(--surface);
  transition: all 0.4s ease;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.service-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img {
  transform: scale(1.06);
}

.service-info {
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--surface);
}

.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.service-arrow {
  color: var(--blue);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.service-card:hover .service-arrow {
  transform: translateX(6px);
}

/* ============================================================
   10. WIE WIR ARBEITEN
   ============================================================ */
#wie-wir {
  padding: 7rem 0;
  background-color: #0d0d0d;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 0;
  margin-top: 1rem;
}

.process-step {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--surface);
  border-radius: 6px;
  border: 1px solid #1e1e1e;
  transition: all 0.3s ease;
}
.process-step:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
}

.process-connector {
  height: 1px;
  background: linear-gradient(to right, var(--blue), #0a4a88);
  margin: 0 -0.5rem;
  display: block;
}

.process-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: rgba(26, 143, 255, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.process-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.process-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   11. PORTFOLIO
   ============================================================ */
#portfolio {
  padding: 7rem 0;
  background-color: var(--bg);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.portfolio-img-wrap {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img-wrap {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
  opacity: 1;
}

.portfolio-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.portfolio-name {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* ============================================================
   12. ÜBER UNS
   ============================================================ */
#ueber-uns {
  padding: 7rem 0;
  background-color: #0d0d0d;
}

.ueber-content {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.ueber-text {
  flex: 1;
}

.ueber-p {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1rem;
  margin-top: 1.2rem;
}

.ueber-standorte {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.standort-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.standort-icon {
  color: var(--blue);
}

.ueber-image {
  flex: 1;
  position: relative;
}
.ueber-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  display: block;
}
.ueber-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(26, 143, 255, 0.3);
  border-radius: 8px;
  z-index: -1;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 7rem 0;
  background-color: var(--bg);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-light);
}

.google-stars {
  color: #fbbc05;
  font-size: 0.9rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  border-color: rgba(26, 143, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #fbbc05;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #0a4a88);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #ffffff;
}

.testimonial-author-role {
  color: #666666;
  font-size: 0.8rem;
  margin-top: 0.15rem;
}

/* ── CAROUSEL TESTIMONIALS ── */
.testimonials-carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.testimonials-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.testimonials-carousel::-webkit-scrollbar {
  height: 4px;
}
.testimonials-carousel::-webkit-scrollbar-track {
  background: var(--surface);
}
.testimonials-carousel::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 2px;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  scroll-snap-align: start;
  border-radius: 8px;
  animation: carouselFadeIn 0.6s ease-out;
}

@keyframes carouselFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.carousel-btn:hover {
  background-color: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}
.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active {
  background-color: var(--blue);
  width: 24px;
  border-radius: 4px;
}
.dot:hover {
  background-color: var(--blue);
}

/* ============================================================
   14. KONTAKT
   ============================================================ */
#kontakt {
  padding: 7rem 0;
  background-color: #0d0d0d;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  position: relative;
}

.form-input,
.form-textarea {
  width: 100%;
  background-color: var(--surface);
  border: 1px solid var(--border);
  color: #ffffff;
  padding: 1rem 1.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--blue);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #444444;
}
.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  align-self: flex-start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.kontakt-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.kontakt-item strong {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.3rem;
}
.kontakt-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.kontakt-icon {
  font-size: 1.4rem;
  min-width: 28px;
  margin-top: 0.1rem;
}

.kontakt-link {
  color: var(--blue);
  text-decoration: none;
}
.kontakt-link:hover {
  text-decoration: underline;
}

.kontakt-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: var(--text-muted);
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-link:hover {
  background-color: var(--blue);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Maps */
.maps-section {
  margin-top: 5rem;
}

.maps-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.map-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 1px;
}

.map-wrapper iframe {
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  filter: brightness(0.9) contrast(1.05);
  display: block;
  width: 100%;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
#footer {
  padding: 2.5rem 0;
  background-color: #080808;
  border-top: 1px solid #161616;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-copy {
  color: #444444;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  color: #555555;
  text-decoration: none;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--blue);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

/* ============================================================
   16. FLOATING SOCIAL BUTTONS
   ============================================================ */

/* Shared base */
#whatsapp-btn,
#instagram-btn,
#tiktok-btn {
  position: fixed;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* WhatsApp */
#whatsapp-btn {
  bottom: 5.5rem;
  background-color: #25D366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: whatsappPulse 2.5s infinite;
}
#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
  0%   { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%  { box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* Instagram */
#instagram-btn {
  bottom: 9.5rem;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
  animation: instaPulse 2.5s infinite 0.8s;
}
#instagram-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(214, 36, 159, 0.6);
}

@keyframes instaPulse {
  0%   { box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4); }
  50%  { box-shadow: 0 4px 35px rgba(214, 36, 159, 0.7); }
  100% { box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4); }
}

/* TikTok */
#tiktok-btn {
  bottom: 13.5rem;
  background-color: #010101;
  box-shadow: 0 4px 20px rgba(0, 242, 234, 0.3);
  border: 1px solid #222;
  animation: tiktokPulse 2.5s infinite 1.6s;
}
#tiktok-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 0, 80, 0.5);
}

@keyframes tiktokPulse {
  0%   { box-shadow: 0 4px 20px rgba(0, 242, 234, 0.3); }
  50%  { box-shadow: 0 4px 35px rgba(255, 0, 80, 0.5); }
  100% { box-shadow: 0 4px 20px rgba(0, 242, 234, 0.3); }
}

/* ============================================================
   17. BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #1a1a1a;
  color: var(--blue);
  border: 1px solid #333333;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.35s ease;
  pointer-events: none;
  font-family: 'Montserrat', sans-serif;
}
#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#back-to-top:hover {
  background-color: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}

/* ============================================================
   18. MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
}

.modal-overlay.modal-active {
  opacity: 1;
  pointer-events: all;
}

body.modal-open {
  overflow: hidden;
}

.modal-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  position: relative;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}

.modal-overlay.modal-active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #1a1a1a;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background-color: var(--blue);
  color: #ffffff;
}

.modal-inner {
  display: flex;
}

.modal-image-wrap {
  width: 45%;
  flex-shrink: 0;
}
.modal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 500px;
  border-radius: 8px 0 0 8px;
}

.modal-text {
  padding: 2.5rem;
  flex: 1;
  overflow-y: auto;
}

.modal-tag {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #cccccc;
  font-size: 0.9rem;
  line-height: 1.4;
}
.modal-list li::before {
  content: "\2713";
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   19. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease forwards;
}

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

/* ============================================================
   20. RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .process-connector {
    display: none;
  }

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

/* ============================================================
   21. RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Sections */
  #leistungen, #wie-wir, #portfolio,
  #ueber-uns, #testimonials, #kontakt {
    padding: 4rem 0;
  }
  #counter {
    padding: 3rem 0;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }

  /* Hero */
  #hero {
    min-height: 580px;
  }
  .hero-title {
    font-size: 2.8rem;
    line-height: 1.1;
  }
  .hero-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }

  /* Section titles */
  .section-title {
    font-size: 1.9rem;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item:not(:last-child)::after {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* Testimonials Carousel */
  .carousel-card {
    flex: 0 0 calc(100vw - 2rem) !important;
    min-width: unset;
  }

  /* Über uns */
  .ueber-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .ueber-image img {
    width: 100%;
    border-radius: 8px;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }
  .process-connector {
    display: none;
  }
  .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.2rem;
  }
  .process-num {
    flex-shrink: 0;
    font-size: 2rem;
  }
  .process-icon {
    display: none;
  }

  /* Kontakt & Maps */
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .maps-grid {
    grid-template-columns: 1fr;
  }
  .maps-section {
    margin-top: 3rem;
  }
  .form-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-center {
    order: -1;
  }

  /* Floating buttons — safe area für mobile Browser-Leiste */
  #whatsapp-btn {
    bottom: 5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  #instagram-btn {
    bottom: 9rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  #tiktok-btn {
    bottom: 13rem;
    right: 1rem;
    width: 50px;
    height: 50px;
  }
  #back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }

  /* Navigation */
  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100dvh;
    background-color: #0d0d0d;
    border-left: 1px solid #1a1a1a;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 999;
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links li {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid #1a1a1a;
  }
  .nav-link,
  .btn-nav {
    font-size: 1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .btn-nav {
    border: none;
    padding: 0;
  }

  /* Modal */
  .modal-inner {
    flex-direction: column;
  }
  .modal-image-wrap {
    width: 100%;
  }
  .modal-image-wrap img {
    max-height: 200px;
    border-radius: 8px 8px 0 0;
  }
  .modal-box {
    max-height: 90dvh;
  }

  /* Preloader skip */
  #preloader-skip {
    bottom: 1.2rem;
    right: 1.2rem;
  }
}

/* ============================================================
   22. RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  #leistungen, #wie-wir, #portfolio,
  #ueber-uns, #testimonials, #kontakt {
    padding: 3rem 0;
  }

  /* Hero */
  #hero {
    min-height: 500px;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }
  .hero-label {
    letter-spacing: 3px;
    font-size: 0.65rem;
  }
  .hero-scroll-indicator {
    display: none;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-number {
    font-size: 2.6rem;
  }
  .counter-item {
    padding: 1.2rem 0.5rem;
  }

  /* Section titles */
  .section-title {
    font-size: 1.6rem;
  }

  /* Service cards */
  .service-img {
    height: 180px;
  }

  /* Process — revert to centered card layout */
  .process-grid {
    max-width: 100%;
  }
  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .process-icon {
    display: block;
  }

  /* Modal */
  .modal-image-wrap {
    display: none;
  }

  /* Cookie */
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

/* ============================================================
   SERVICE SUBPAGES
   ============================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }
.breadcrumb-current { color: rgba(255,255,255,0.9); }

/* Hero */
.service-hero {
  position: relative;
  height: 62vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.service-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.2) 100%);
}
.service-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 3.5rem;
}
.service-hero-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}
.service-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 0.8rem;
}
.service-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  line-height: 1.6;
}

/* Content section */
.service-content {
  padding: 4rem 0 2rem;
}
.service-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: opacity 0.2s;
}
.service-back:hover { opacity: 0.75; }

/* Two-column layout */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.service-description h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.service-description p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.75;
}

/* CTA box */
.service-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  margin-top: 2.5rem;
}
.service-cta-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-cta-box p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.service-price-hint {
  display: inline-block;
  background: rgba(26,143,255,0.1);
  border: 1px solid rgba(26,143,255,0.25);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}

/* Read-more toggle */
.description-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.description-extra.open {
  max-height: 800px;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.25rem 0 1.5rem;
  background: none;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.02em;
}
.read-more-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Benefits sidebar */
.service-benefits {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  position: sticky;
  top: 6rem;
}
.service-benefits h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--blue);
}
.service-benefits ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}
.service-benefits li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Related section */
.service-related {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.service-related h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.related-card {
  display: block;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}
.related-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.related-card-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
}
.related-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  background: var(--surface);
}
.related-card-info span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.related-card-info small {
  color: var(--blue);
  font-size: 1rem;
}

/* Responsive — tablets */
@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
  .service-benefits {
    position: static;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive — mobile */
@media (max-width: 600px) {
  .service-hero {
    height: 70vh;
    min-height: 360px;
  }
  .service-hero-content {
    padding-bottom: 2rem;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
}
