/* ================================================================
   Xtra Hausmeisterservice – Stylesheet
   Google Fonts: Roboto Condensed + Open Sans
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Open+Sans:wght@300;400;600&display=swap');

/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --blue:      #1a4f8a;
  --blue2:     #153f6e;
  --blue-lt:   #e8f0f9;
  --orange:    #e07b1a;
  --orange2:   #c4660e;
  --gray-1:    #f5f6f8;
  --gray-2:    #e8eaed;
  --gray-3:    #b0b8c3;
  --gray-4:    #6b7685;
  --dark:      #1c2430;
  --text:      #2c3340;
  --muted:     #6b7685;
  --white:     #ffffff;
  --nav-h:     70px;
  --t:         0.25s ease;
  --r:         4px;
  --shadow:    0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 18px; }
body  { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-gray { background: var(--gray-1); }
.section-blue { background: var(--blue); color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }

/* ── Typography ──────────────────────────────────────────────── */
h2.sh {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--dark); line-height: 1.15;
}
h2.sh-light { color: var(--white); }
.sh-sub {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 10px;
}
.sh-sub-light { color: #f9c07a; }
.sh-line {
  display: block; width: 44px; height: 3px;
  background: var(--orange); margin: 14px 0 0; border-radius: 2px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 32px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: var(--r); border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  line-height: 1;
}
.btn:hover              { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-blue               { background: var(--blue);   color: var(--white); border-color: var(--blue); }
.btn-blue:hover         { background: var(--blue2);  border-color: var(--blue2); }
.btn-orange             { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover       { background: var(--orange2); border-color: var(--orange2); }
.btn-outline-white      { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--blue); }
.btn-outline-blue       { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover  { background: var(--blue); color: var(--white); }

/* ── Fade-in animations ──────────────────────────────────────── */
.fade   { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-l { opacity: 0; transform: translateX(-24px); transition: opacity .55s ease, transform .55s ease; }
.fade-r { opacity: 0; transform: translateX(24px);  transition: opacity .55s ease, transform .55s ease; }
.fade.up, .fade-l.up, .fade-r.up { opacity: 1; transform: none; }

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar      { background: var(--dark); color: rgba(255,255,255,.65); font-size: .76rem; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar a    { color: rgba(255,255,255,.65); transition: color var(--t); }
.topbar a:hover { color: var(--orange); }

/* ================================================================
   NAVIGATION
   ================================================================ */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  height: var(--nav-h);
  transition: box-shadow var(--t);
}
nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner   { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.nav-logo      { display: flex; align-items: center; gap: 10px; font-family: 'Roboto Condensed', sans-serif; font-size: 1.45rem; font-weight: 700; color: var(--dark); letter-spacing: .02em; text-transform: uppercase; }
.nav-logo-icon { width: 38px; height: 38px; border-radius: var(--r); background: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo span.x { color: var(--orange); }

.nav-links   { display: flex; gap: 4px; align-items: center; }
.nav-links a { font-family: 'Roboto Condensed', sans-serif; font-size: .88rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray-4); padding: 8px 12px; border-radius: var(--r); transition: background var(--t), color var(--t); }
.nav-links a:hover { background: var(--blue-lt); color: var(--blue); }
.nav-links .btn-blue { color: var(--white); margin-left: 8px; }
.nav-links .btn-blue:hover { color: var(--white); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5.5px,5.5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5.5px,-5.5px); }

/* ================================================================
   SLIDESHOW
   ================================================================ */
.slider      { position: relative; overflow: hidden; height: 560px; background: var(--dark); }
.slide       { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 1; }
.slide img   { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.45) saturate(.8); }
.slide-content { position: relative; z-index: 2; padding: 0 0 0 60px; max-width: 680px; }
.slide-tag   { display: inline-block; background: var(--orange); color: var(--white); font-family: 'Roboto Condensed', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--r); margin-bottom: 18px; }
.slide-content h1 { font-family: 'Roboto Condensed', sans-serif; font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.slide-content p  { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 480px; line-height: 1.75; font-weight: 300; }
.slide-btns  { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-prev, .slider-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); color: var(--white); width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: var(--blue); border-color: var(--blue); }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot  { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: background var(--t), transform var(--t); border: none; }
.slider-dot.active { background: var(--orange); transform: scale(1.2); }

/* ================================================================
   USP BAND
   ================================================================ */
.usp-band    { background: var(--blue); padding: 0; }
.usp-grid    { display: grid; grid-template-columns: repeat(4,1fr); }
.usp-item    { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); transition: background var(--t); }
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(255,255,255,.06); }
.usp-ico     { font-size: 1.8rem; margin-bottom: 8px; }
.usp-item strong { display: block; font-family: 'Roboto Condensed',sans-serif; font-size: 1rem; color: var(--white); font-weight: 700; margin-bottom: 3px; }
.usp-item span   { font-size: .78rem; color: rgba(255,255,255,.65); }

/* ================================================================
   INTRO
   ================================================================ */
.intro-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-img   { position: relative; }
.intro-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r); }
.intro-badge { position: absolute; bottom: -18px; right: -18px; background: var(--blue); color: var(--white); padding: 18px 22px; border-radius: var(--r); text-align: center; box-shadow: var(--shadow-lg); }
.intro-badge .num { font-family: 'Roboto Condensed',sans-serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.intro-badge .lbl { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; }
.intro-text h2 { margin-bottom: 18px; }
.intro-text p  { color: var(--muted); margin-bottom: 16px; }
.intro-checks  { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.chk       { display: flex; align-items: flex-start; gap: 10px; }
.chk-icon  { width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 700; margin-top: 2px; }
.chk span  { font-size: 1rem; color: var(--text); }

/* ================================================================
   ÜBER UNS
   ================================================================ */
.about-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-imgs  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-imgs img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--r); }
.about-imgs img:first-child { height: 420px; grid-column: span 2; }
.about-text h2 { margin-bottom: 18px; }
.about-text p  { color: var(--muted); margin-bottom: 16px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin: 28px 0; }
.stat-box    { background: var(--white); border: 1px solid var(--gray-2); border-top: 3px solid var(--blue); padding: 18px 14px; text-align: center; border-radius: var(--r); }
.stat-box .num { font-family: 'Roboto Condensed',sans-serif; font-size: 2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-box .lbl { font-size: .72rem; color: var(--muted); margin-top: 4px; }

/* ================================================================
   TEAM
   ================================================================ */
.team-head   { text-align: center; margin-bottom: 52px; }
.team-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card   { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--gray-2); box-shadow: var(--shadow); transition: box-shadow var(--t), transform var(--t); text-align: center; }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.team-card img { width: 100%; height: 280px; object-fit: cover; filter: saturate(.85); }
.team-card-body { padding: 22px 18px 24px; }
.team-card h3 { font-family: 'Roboto Condensed',sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role   { font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: block; }
.team-card p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   LEISTUNGEN
   ================================================================ */
.leist-head  { text-align: center; margin-bottom: 52px; }
.leist-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.leist-card  { background: var(--white); border-radius: var(--r); border: 1px solid var(--gray-2); border-top: 3px solid var(--blue); padding: 30px 24px; transition: box-shadow var(--t), transform var(--t); }
.leist-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.leist-icon  { width: 52px; height: 52px; border-radius: var(--r); background: var(--blue-lt); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; }
.leist-card h3 { font-family: 'Roboto Condensed',sans-serif; font-size: 1.12rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.leist-card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }
.leist-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 5px; }
.leist-card ul li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.leist-card ul li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ================================================================
   GALERIE
   ================================================================ */
.gallery-head { text-align: center; margin-bottom: 48px; }
.gallery-head h2 { margin-bottom: 10px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gal-item    { position: relative; overflow: hidden; border-radius: var(--r); cursor: zoom-in; aspect-ratio: 1 / 1; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; display: block; }
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay { position: absolute; inset: 0; background: rgba(26,79,138,0); display: flex; align-items: center; justify-content: center; transition: background .3s; }
.gal-item:hover .gal-overlay { background: rgba(26,79,138,.45); }
.gal-label   { position: absolute; bottom: 10px; left: 10px; background: rgba(26,79,138,.85); color: var(--white); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r); }
.gal-zoom    { color: var(--white); font-size: 1.6rem; opacity: 0; transform: scale(.6); transition: opacity .3s, transform .3s; }
.gal-item:hover .gal-zoom { opacity: 1; transform: scale(1); }

/* ================================================================
   LIGHTBOX
   ================================================================ */
#lightbox          { display: none; position: fixed; inset: 0; z-index: 9999; align-items: center; justify-content: center; }
#lightbox.open     { display: flex; }
#lb-bg             { position: absolute; inset: 0; background: rgba(5,10,20,.95); cursor: zoom-out; animation: lbin .2s; }
@keyframes lbin    { from{opacity:0} to{opacity:1} }
#lb-box            { position: relative; z-index: 1; max-width: 90vw; animation: lbpop .22s; }
@keyframes lbpop   { from{opacity:0;transform:scale(.93)} to{opacity:1;transform:scale(1)} }
#lb-box img        { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--r); display: block; box-shadow: 0 24px 64px rgba(0,0,0,.6); }
#lb-cap            { text-align: center; color: rgba(255,255,255,.5); font-size: .8rem; margin-top: 12px; }
#lb-cnt            { text-align: center; color: rgba(255,255,255,.3); font-size: .72rem; margin-top: 4px; letter-spacing: .12em; }
#lb-close          { position: fixed; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t); }
#lb-close:hover    { background: var(--blue); border-color: var(--blue); }
#lb-prev, #lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); color: var(--white); width: 52px; height: 52px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--t), transform var(--t); }
#lb-prev           { left: 18px; }
#lb-next           { right: 18px; }
#lb-prev:hover, #lb-next:hover { background: var(--blue); border-color: var(--blue); }
#lb-prev:hover     { transform: translateY(-50%) scale(1.06); }
#lb-next:hover     { transform: translateY(-50%) scale(1.06); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testi-head  { text-align: center; margin-bottom: 48px; }
.testi-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card  { background: var(--white); border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--gray-2); box-shadow: var(--shadow); transition: box-shadow var(--t), transform var(--t); position: relative; }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testi-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; line-height: 1; color: var(--blue); opacity: .12; position: absolute; top: 10px; left: 18px; }
.testi-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 12px; }
.testi-text  { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; filter: saturate(.75); border: 2px solid var(--gray-2); }
.testi-name  { font-weight: 600; font-size: .9rem; color: var(--dark); }
.testi-where { font-size: .74rem; color: var(--muted); margin-top: 1px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq-layout  { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p  { color: var(--muted); margin-bottom: 24px; }
.faq-list    { display: flex; flex-direction: column; }
.faq-item    { border-bottom: 1px solid var(--gray-2); }
.faq-item:first-child { border-top: 1px solid var(--gray-2); }
.faq-q       { width: 100%; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 17px 0; font-family: 'Open Sans',sans-serif; font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left; transition: color var(--t); }
.faq-q:hover { color: var(--blue); }
.faq-arrow   { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--gray-2); flex-shrink: 0; margin-left: 14px; display: flex; align-items: center; justify-content: center; font-size: .8rem; color: var(--blue); transition: transform var(--t), background var(--t), border-color var(--t); }
.faq-item.open .faq-arrow { transform: rotate(45deg); background: var(--blue-lt); border-color: var(--blue); }
.faq-a       { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 16px; font-size: .93rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band    { background: url('../images/intro/cta-bg.jpg') center/cover no-repeat; padding: 72px 0; text-align: center; color: var(--white); position: relative; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: rgba(26,79,138,.88); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { font-family: 'Roboto Condensed',sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; margin-bottom: 14px; }
.cta-band p  { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 32px; font-size: 1rem; }
.cta-btns    { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   KONTAKT
   ================================================================ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.kontakt-info h2 { margin-bottom: 16px; }
.kontakt-info p  { color: var(--muted); margin-bottom: 28px; }
.kblock      { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-2); }
.kblock:last-of-type { border-bottom: none; }
.kblock strong { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 5px; }
.kblock span, .kblock a { font-size: 1rem; color: var(--text); }
.kblock a:hover { color: var(--blue); }
.hours-table { width: 100%; font-size: .9rem; }
.hours-table td { padding: 4px 0; color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-weight: 600; }
.form-card   { background: var(--white); border-radius: var(--r); padding: 36px 32px; border: 1px solid var(--gray-2); box-shadow: var(--shadow); }
.form-card h3 { font-family: 'Roboto Condensed',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.fg          { margin-bottom: 14px; }
.fg label    { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg textarea, .fg select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-2); background: var(--gray-1); font-family: 'Open Sans',sans-serif; font-size: .95rem; color: var(--text); border-radius: var(--r); outline: none; transition: border-color var(--t), background var(--t); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blue); background: var(--white); }
.fg textarea { resize: vertical; min-height: 110px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note   { font-size: .74rem; color: var(--muted); margin-top: 8px; }
.form-success { display: none; padding: 12px 16px; background: #e8f5e9; border-left: 3px solid #4caf50; color: #2e7d32; font-size: .9rem; border-radius: var(--r); margin-top: 12px; }

/* ================================================================
   FOOTER
   ================================================================ */
footer       { background: var(--dark); color: rgba(255,255,255,.55); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-wrap .nav-logo-icon { background: var(--blue); }
.footer-logo-text { font-family: 'Roboto Condensed',sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--white); text-transform: uppercase; }
.footer-logo-text span { color: var(--orange); }
.footer-brand p { font-size: .95rem; line-height: 1.75; }
footer h5    { font-family: 'Roboto Condensed',sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a  { font-size: .95rem; transition: color var(--t); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: .76rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,.35); margin-left: 16px; }
.footer-bottom a:hover { color: var(--orange); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .intro-grid, .about-grid, .faq-layout, .kontakt-grid { grid-template-columns: 1fr; }
  .intro-img img   { height: 300px; }
  .intro-badge     { right: 12px; bottom: -14px; }
  .about-imgs img:first-child { height: 280px; }
  .team-grid, .leist-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid      { grid-template-columns: 1fr 1fr; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; }
  .usp-grid        { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(2) { border-right: none; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .slide-content   { padding-left: 28px; }
  .slider          { height: 440px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--blue); padding: 18px 24px 24px; gap: 4px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger       { display: flex; }
  .slider          { height: 380px; }
  .slide-content h1 { font-size: 2rem; }
  .team-grid, .leist-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; }
  .usp-grid        { grid-template-columns: 1fr 1fr; }
  .about-stats     { grid-template-columns: 1fr 1fr; }
  .footer-grid     { grid-template-columns: 1fr; }
  .form-row        { grid-template-columns: 1fr; }
  .slide-btns      { flex-direction: column; }
  .section         { padding: 60px 0; }
  .form-card       { padding: 24px 18px; }
  #lb-prev         { left: 8px; }
  #lb-next         { right: 8px; }
}
