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

:root {
  --blue: #50a0db;
  --blue-dark: #1b5d89;
  --green: #8ce029;
  --green-dark: #5fa010;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text: #111418;
  --text-muted: #4a5568;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 100px 0; }
.bg-light { background: var(--off-white); }

/* EYEBROW */
.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

/* ===== NAV — transparent over hero, white on scroll ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0,0,0,0.08);
}

.nav.scrolled .nav-links a { color: #444; }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--blue-dark); }
.nav.scrolled .nav-cta { border-color: var(--blue-dark); color: var(--blue-dark); }
.nav.scrolled .nav-cta:hover { background: var(--blue-dark); color: white; }
.nav.scrolled .burger span { background: var(--text); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { width: auto; height: 54px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 36px;
  margin-left: auto;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover { color: white; }
.nav-links a.active { color: white; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: var(--blue);
}

.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  padding: 10px 20px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: white; color: var(--blue-dark); border-color: white; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--text);
  padding: 16px 24px;
}
.mobile-menu a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--blue); }
.mobile-cta {
  margin-top: 12px;
  background: var(--blue) !important;
  color: white !important;
  text-align: center;
  border-radius: 2px;
  padding: 14px !important;
  border: none !important;
}
.mobile-menu.open { display: flex; }

/* ===== HERO — fullscreen, photo bg, text left ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(10,20,35,0.78) 0%,
    rgba(10,20,35,0.55) 50%,
    rgba(10,20,35,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: var(--nav-h);
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 720px;
}

.hero-title em {
  font-style: italic;
  color: var(--blue);
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.hero-sub span { color: var(--blue); font-weight: 600; }
.hero-sub span.green { color: var(--green); }

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-hero {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-hero.filled { background: var(--blue); border-color: var(--blue); }
.btn-hero.filled:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.explore-label {
  position: absolute;
  right: 24px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.explore-text {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.explore-arrow {
  font-size: 14px;
  line-height: 1;
  color: rgba(255,255,255,0.45);
  animation: explore-bounce 1.8s ease-in-out infinite;
}
@keyframes explore-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(8px); opacity: 0.9; }
}

/* ===== INTRO BAND ===== */
.intro-band {
  background: var(--blue-dark);
  padding: 0;
}
.intro-band-inner {
  display: flex;
  align-items: stretch;
}
.ib-item {
  flex: 1;
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ib-item:last-child { border-right: none; }
.ib-icon {
  font-size: 22px;
  color: var(--blue);
  flex-shrink: 0;
}
.ib-icon.green { color: var(--green); }
.ib-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}
.ib-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e8edf2;
}

.service-card {
  display: block;
  background: white;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
}

.sc-img-wrap {
  position: absolute;
  inset: 0;
}
.sc-img { transition: transform 0.6s ease; }
.service-card:hover .sc-img { transform: scale(1.06); }

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(10,20,35,0.85) 0%,
    rgba(10,20,35,0.3) 50%,
    rgba(10,20,35,0.05) 100%);
  transition: background 0.3s;
}
.service-card:hover .sc-overlay {
  background: linear-gradient(to top,
    rgba(27,93,137,0.88) 0%,
    rgba(27,93,137,0.4) 55%,
    rgba(10,20,35,0.1) 100%);
}
.service-card:nth-child(3):hover .sc-overlay {
  background: linear-gradient(to top,
    rgba(95,160,16,0.85) 0%,
    rgba(95,160,16,0.35) 55%,
    rgba(10,20,35,0.08) 100%);
}

.sc-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}

.sc-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.sc-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.sc-body p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s, opacity 0.3s;
}
.service-card:hover .sc-body p {
  max-height: 80px;
  opacity: 1;
}

.sc-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.service-card:hover .sc-link { gap: 14px; }
.service-card:nth-child(3) .sc-link { color: var(--green); }

/* ===== WHY US ===== */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-col { position: relative; }
.why-img-frame {
  height: 580px;
  overflow: hidden;
  border-radius: 2px;
}
.why-img { height: 100%; transition: transform 0.6s; }
.why-img-col:hover .why-img { transform: scale(1.03); }

.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--blue-dark);
  color: white;
  padding: 28px 32px;
  text-align: center;
}
.why-badge-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.why-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
}

.why-text-col .eyebrow { display: block; }
.why-text-col h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 20px;
}
.why-lead {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 40px;
  border-left: 3px solid var(--blue);
  padding-left: 20px;
}

.why-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.wl-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: flex-start;
}
.wl-item:first-child { border-top: 1px solid rgba(0,0,0,0.06); }
.wl-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.35;
  min-width: 32px;
  line-height: 1;
  margin-top: 2px;
}
.wl-num.green-num { color: var(--green-dark); }
.wl-item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.wl-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-dark);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--blue); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 2px;
  border: 1.5px solid rgba(0,0,0,0.2);
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-dark:hover { border-color: var(--blue-dark); background: var(--off-white); }

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
}
.cta-band-img { object-fit: cover; }
.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,35,0.75);
}
.cta-band-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: white;
  margin-bottom: 10px;
}
.cta-inner p { color: rgba(255,255,255,0.65); font-size: 15px; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--blue-dark);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-white:hover { background: var(--off-white); }

/* ===== FOOTER ===== */
.footer { background: #0d151f; padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { width: auto; height: 40px; object-fit: contain; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-motto {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.footer-logo-col p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-col a, .footer-col p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  padding: 20px 48px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 160px 0 90px;
  margin-top: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, #0d2d45 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(80,160,219,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
}
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.8;
}

/* ===== LEISTUNGEN PAGE ===== */
.leistung-section { padding: 80px 0; }

.leistung-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.leistung-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
}
.leistung-header h2 { font-size: 2.2rem; font-weight: 700; }
.green-header .leistung-num { color: var(--green-dark); }

.leistung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  background: #e8edf2;
}

.leistung-card {
  background: white;
  position: relative;
  overflow: hidden;
}
.leistung-card:hover { z-index: 1; }
.lc-img-wrap { height: 220px; overflow: hidden; }
.lc-img { transition: transform 0.5s; }
.leistung-card:hover .lc-img { transform: scale(1.05); }
.lc-body { padding: 28px; }
.lc-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.lc-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}
.lc-accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--blue);
  margin-bottom: 16px;
}
.green-card .lc-accent { background: var(--green-dark); }

.hauswartung-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hw-img-frame { height: 460px; overflow: hidden; border-radius: 2px; }
.hw-main-img { height: 100%; }
.hw-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}
.hw-list { margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
.hw-group { margin-bottom: 28px; }
.hw-group-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.hw-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.hw-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
}

/* ===== ÜBER UNS ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-text h2 { font-size: 2.2rem; margin-bottom: 24px; }
.ai-text p { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 18px; }

.ai-img-frame { height: 520px; overflow: hidden; border-radius: 2px; }
.about-img { height: 100%; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #e8edf2;
}
.value-card {
  background: white;
  padding: 40px;
  transition: background 0.2s;
}
.value-card:hover { background: var(--off-white); }
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.2;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.green-value .value-num { color: var(--green-dark); }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

.vision-section {
  background: var(--text);
  padding: 100px 0;
  text-align: center;
}
.vision-section .eyebrow { color: rgba(255,255,255,0.4); }
.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== KONTAKT ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-size: 2rem; margin-bottom: 36px; }
.ci-item { margin-bottom: 28px; }
.ci-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 6px;
}
.ci-val { font-size: 16px; font-weight: 500; color: var(--blue-dark); }

.contact-services { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.cs-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1.5px solid rgba(80,160,219,0.3);
  color: var(--blue-dark);
  border-radius: 2px;
}
.green-tag { border-color: rgba(95,160,16,0.35); color: var(--green-dark); }

.contact-form-wrap {
  background: var(--off-white);
  padding: 48px;
  border-radius: 2px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: rgba(0,0,0,0.35); text-align: center; margin-top: -8px; }
.btn-full { width: 100%; justify-content: center; font-size: 12px; padding: 18px; }

/* ===== LEGAL PAGES (Impressum / Datenschutz) ===== */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 1.5rem;
  margin: 44px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  margin: 28px 0 10px;
}
.legal-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 14px;
  padding-left: 0;
}
.legal-content ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.legal-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 12px;
}
.legal-content a { color: var(--blue-dark); text-decoration: underline; }
.legal-content strong { color: var(--text); }
.legal-updated {
  font-size: 12px;
  color: rgba(0,0,0,0.35);
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-badge { right: 16px; bottom: 16px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logo-col { grid-column: 1/-1; }
  .hauswartung-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .intro-band-inner { flex-direction: column; }
  .ib-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .why-img-frame { height: 340px; }
  .leistung-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding: 20px; }
}
