/* ============================
   Textil Lounge – Landingpage
   Design: elegant, premium, B2B
   Typografie: Cormorant Garamond (Display) + Inter (Body)
   ============================ */

:root {
  /* Farben – inspiriert vom Logo */
  --color-bg: #f5f2ec;          /* warmes Off-White (Logo-Ton) */
  --color-bg-alt: #ebe7df;      /* etwas dunkler */
  --color-ink: #0a0a0a;         /* tiefes Schwarz wie Logo-Hintergrund */
  --color-ink-soft: #2a2a2a;
  --color-ink-mute: #6b6b6b;
  --color-line: #d8d2c7;
  --color-line-dark: #2a2a2a;
  --color-accent: #8b6f47;      /* warmes Gold/Bronze (Stickfaden-Ton) */
  --color-accent-dark: #6b5436;
  --color-accent-light: #b89b6e;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1ebe5d;

  /* Typografie */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 2px;
  --radius-lg: 6px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,0.16);
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.btn-primary {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-accent);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
}
.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-full { width: 100%; }

/* ============================
   Header (dunkel)
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000;
  border-bottom: 1px solid rgba(245, 242, 236, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(245, 242, 236, 0.75);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-light);
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--color-bg); }
.nav-links a:hover::after { width: 100%; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--color-bg);
  padding: 11px 18px;
  border: 1px solid rgba(245, 242, 236, 0.3);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.header-phone:hover {
  background: var(--color-bg);
  color: var(--color-ink);
  border-color: var(--color-bg);
}

/* ============================
   Hero
   ============================ */
.hero {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(139, 111, 71, 0.03) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 28px;
  padding-left: 36px;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.hero h1 {
  font-size: clamp(44px, 5.8vw, 76px);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-ink-soft);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-ink-soft);
}
.hero-trust svg { color: var(--color-accent); flex-shrink: 0; }

.hero-visual {
  position: relative;
  height: 580px;
}
.hero-image-frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame:first-of-type {
  width: 75%;
  height: 75%;
  top: 0;
  right: 0;
  z-index: 1;
}
.hero-image-frame-2 {
  width: 55%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 2;
  border: 8px solid var(--color-bg);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  z-index: 3;
  background: var(--color-bg);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--color-line);
}
.hero-badge-stars {
  display: flex;
  gap: 2px;
  color: var(--color-accent);
}
.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.1;
}
.hero-badge span {
  font-size: 11px;
  color: var(--color-ink-mute);
  letter-spacing: 0.04em;
}

/* ============================
   Trust Bar
   ============================ */
.trustbar {
  padding: 60px 0;
  background: var(--color-ink);
  color: var(--color-bg);
  border-top: 1px solid rgba(245, 242, 236, 0.05);
  border-bottom: 1px solid rgba(245, 242, 236, 0.05);
}
.trustbar-label {
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.5);
  margin: 0 0 40px;
}
.trustbar-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.trust-logo {
  width: 100%;
  max-width: 180px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.25s;
}
.trust-logo:hover {
  opacity: 1;
}
.trust-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ============================
   Sections
   ============================ */
.section { padding: 120px 0; }
.section-leistungen { background: var(--color-bg); }
.section-produkte { background: var(--color-bg-alt); }
.section-ablauf { background: var(--color-bg); }
.section-referenzen { background: var(--color-bg-alt); }
.section-usp { background: var(--color-ink); color: var(--color-bg); }
.section-faq { background: var(--color-bg); }

.section-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.section-tag.light { color: var(--color-accent-light); }
.section-head h2 {
  font-size: clamp(36px, 4.5vw, 56px);
  margin-bottom: 20px;
  font-weight: 400;
}
.section-head p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-ink-soft);
}
.section-usp .section-head p { color: rgba(245, 242, 236, 0.65); }

/* ============================
   Leistungen
   ============================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}
.leistung {
  background: var(--color-bg);
  padding: 44px 36px;
  transition: all 0.3s;
  position: relative;
}
.leistung::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-ink);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.leistung > * { position: relative; z-index: 1; }
.leistung:hover { background: var(--color-ink); color: var(--color-bg); }
.leistung:hover h3 { color: var(--color-bg); }
.leistung:hover p { color: rgba(245, 242, 236, 0.7); }
.leistung:hover .leistung-icon { color: var(--color-accent-light); }

.leistung-icon {
  margin-bottom: 28px;
  color: var(--color-accent);
  transition: color 0.3s;
}
.leistung h3 {
  font-size: 26px;
  margin-bottom: 12px;
  transition: color 0.3s;
  font-weight: 500;
}
.leistung p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.65;
  transition: color 0.3s;
}

/* ============================
   Produkte
   ============================ */
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.produkt {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.produkt:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.produkt-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f0ede7;
}
.produkt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.produkt:hover .produkt-image img {
  transform: scale(1.04);
}
.produkt-text {
  padding: 24px 28px 28px;
}
.produkt-text h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 500;
}
.produkt-text p {
  margin: 0;
  font-size: 14px;
  color: var(--color-ink-mute);
}

/* ============================
   Ablauf / Steps
   ============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 90px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--color-accent) 0,
    var(--color-accent) 6px,
    transparent 6px,
    transparent 14px
  );
  opacity: 0.5;
}
.step {
  background: var(--color-bg);
  padding: 40px 32px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: 50%;
  color: var(--color-accent);
}
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.step h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}
.step p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================
   Referenzen / Galerie
   ============================ */
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 600px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-large {
  grid-row: span 2;
}

/* ============================
   USP
   ============================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px;
}
.usp {
  padding: 32px 0;
  border-top: 1px solid rgba(245, 242, 236, 0.12);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.usp-icon {
  color: var(--color-accent-light);
  padding-top: 4px;
}
.usp h3 {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--color-bg);
  font-weight: 500;
}
.usp p {
  margin: 0;
  color: rgba(245, 242, 236, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================
   FAQ
   ============================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px solid var(--color-line);
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none' stroke='%238b6f47' stroke-width='1.5'><line x1='1' y1='7' x2='13' y2='7'/><line x1='7' y1='1' x2='7' y2='13'/></svg>");
  transition: transform 0.25s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  margin: 14px 0 0;
  color: var(--color-ink-soft);
  max-width: 720px;
  font-size: 15px;
  line-height: 1.7;
}

/* ============================
   Anfrage
   ============================ */
.section-anfrage {
  background: var(--color-ink);
  color: var(--color-bg);
}
.anfrage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.anfrage-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--color-bg);
  margin-bottom: 24px;
  font-weight: 400;
}
.anfrage-text > p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.7);
  margin-bottom: 40px;
}
.contact-direct {
  padding: 32px;
  border: 1px solid rgba(245, 242, 236, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(245, 242, 236, 0.03);
}
.contact-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: rgba(245, 242, 236, 0.75);
  letter-spacing: 0.02em;
}
.contact-phone-link strong { color: var(--color-bg); margin-left: 4px; }

.anfrage-form {
  background: var(--color-bg);
  color: var(--color-ink);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.anfrage-form h3 {
  font-size: 28px;
  margin-bottom: 28px;
  font-weight: 500;
}
.form-row { margin-bottom: 18px; }
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.form-row-double > div { margin: 0; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-ink);
  letter-spacing: 0.02em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 15px;
  background: var(--color-bg);
  color: var(--color-ink);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.form-row small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-ink-mute);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--color-ink-soft);
  line-height: 1.55;
}
.form-checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-checkbox label { margin: 0; font-weight: 400; font-size: 13px; }
.form-checkbox a { color: var(--color-accent); text-decoration: underline; }
.form-note {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--color-ink-mute);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(245, 242, 236, 0.7);
  padding: 80px 0 0;
  border-top: 1px solid rgba(245, 242, 236, 0.08);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}
.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-bg);
  margin-bottom: 16px;
}
.footer-col p { margin: 0; font-size: 14px; line-height: 1.95; }
.footer-col a:hover { color: var(--color-accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(245, 242, 236, 0.08);
  padding: 24px 0;
  font-size: 13px;
  color: rgba(245, 242, 236, 0.4);
}

/* ============================
   Hamburger Menü (nur Mobile)
   ============================ */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 110;
}
.hamburger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 1.5px;
  background: var(--color-bg);
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.2s, background 0.2s;
}
.hamburger span:nth-child(1) { transform: translate(-50%, calc(-50% - 8px)); }
.hamburger span:nth-child(3) { transform: translate(-50%, calc(-50% + 8px)); }
.hamburger.is-open span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
  padding: 80px 32px 40px;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav.is-open {
  display: flex;
  opacity: 1;
}
.mobile-nav a {
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: rgba(245, 242, 236, 0.9);
  letter-spacing: 0.01em;
  text-align: center;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--color-accent-light); }
.mobile-nav a:last-child {
  margin-top: 24px;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: var(--radius);
}
.mobile-nav a:last-child:hover {
  background: var(--color-accent);
  color: var(--color-bg);
}
body.nav-open { overflow: hidden; }

/* ============================
   WhatsApp Floating
   ============================ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  background: var(--color-whatsapp-dark);
}

/* ============================
   Responsive – Tablet
   ============================ */
@media (max-width: 1080px) {
  .leistungen-grid,
  .produkte-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trustbar-logos { gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .header-phone { display: none; }
  .hamburger { display: block; }

  .hero-inner,
  .anfrage-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero { padding: 50px 0 60px; }
  .hero-visual { height: 400px; max-width: 480px; margin: 0 auto; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .usp-grid { grid-template-columns: 1fr; gap: 0; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    height: auto;
    grid-template-rows: auto;
  }
  .gallery-item { aspect-ratio: 1/1; height: auto; }
  .gallery-item-large {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }
}

/* ============================
   Responsive – Mobile (≤600px)
   Kompakter, dichter, 2-spaltige Bilder
   ============================ */
@media (max-width: 600px) {
  .header-inner { padding: 12px 18px; gap: 12px; }
  .logo img { height: 52px; }

  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: 30px; }
  .section-head p { font-size: 15px; }
  .section-tag { font-size: 10px; margin-bottom: 14px; }

  /* Hero: kompakter, kein riesiges Bild-Stack */
  .hero { padding: 32px 0 48px; }
  .hero-inner { gap: 36px; }
  .eyebrow { font-size: 10px; margin-bottom: 18px; padding-left: 28px; }
  .eyebrow::before { width: 18px; }
  .hero h1 { font-size: 36px; line-height: 1.1; margin-bottom: 18px; }
  .hero-sub { font-size: 16px; margin-bottom: 28px; }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn { width: 100%; padding: 14px 20px; font-size: 13px; }
  .hero-trust {
    gap: 14px 20px;
    justify-content: flex-start;
  }
  .hero-trust li { font-size: 13px; }
  .hero-visual { height: 320px; max-width: 100%; }
  .hero-image-frame:first-of-type { width: 78%; height: 78%; }
  .hero-image-frame-2 { width: 52%; height: 56%; border-width: 5px; }
  .hero-badge {
    left: -6px;
    top: 14px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: var(--radius);
  }
  .hero-badge strong { font-size: 14px; }
  .hero-badge span { font-size: 10px; }
  .hero-badge-stars svg { width: 11px; height: 11px; }

  /* Trustbar */
  .trustbar { padding: 36px 0; }
  .trustbar-label { font-size: 10px; margin-bottom: 24px; }
  .trustbar-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }
  .trust-logo { height: 48px; max-width: 140px; }

  /* Leistungen: 2-spaltig, kompakter */
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .leistung { padding: 24px 18px; }
  .leistung-icon { margin-bottom: 14px; }
  .leistung-icon svg { width: 28px; height: 28px; }
  .leistung h3 { font-size: 18px; margin-bottom: 6px; line-height: 1.2; }
  .leistung p { font-size: 13px; line-height: 1.5; }

  /* Produkte: 2-spaltig mit kompakten Karten */
  .produkte-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .produkt { border-radius: var(--radius-lg); }
  .produkt-image { aspect-ratio: 3/4; }
  .produkt-text { padding: 14px 14px 18px; }
  .produkt-text h3 { font-size: 15px; line-height: 1.25; margin-bottom: 4px; }
  .produkt-text p { font-size: 12px; line-height: 1.4; }

  /* Ablauf: kompakte Steps */
  .step { padding: 28px 22px; }
  .step-icon { width: 56px; height: 56px; margin-bottom: 14px; }
  .step-icon svg { width: 24px; height: 24px; }
  .step h3 { font-size: 19px; }
  .step p { font-size: 14px; }

  /* Galerie: 2-spaltig kompakt */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-item { aspect-ratio: 1/1; border-radius: 4px; }
  .gallery-item-large {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }

  /* USP */
  .usp { gap: 16px; padding: 24px 0; }
  .usp-icon svg { width: 22px; height: 22px; }
  .usp h3 { font-size: 19px; margin-bottom: 6px; }
  .usp p { font-size: 14px; }

  /* FAQ */
  .faq-list summary { font-size: 17px; line-height: 1.3; }
  .faq-list details { padding: 18px 0; }
  .faq-list details p { font-size: 14px; margin-top: 10px; }

  /* Anfrage / Formular */
  .anfrage-text h2 { font-size: 26px; }
  .anfrage-text > p { font-size: 15px; margin-bottom: 24px; }
  .contact-direct { padding: 22px; }
  .contact-direct .btn { font-size: 13px; padding: 14px 18px; }
  .anfrage-form { padding: 24px 18px; }
  .anfrage-form h3 { font-size: 22px; margin-bottom: 20px; }
  .form-row { margin-bottom: 14px; }
  .form-row-double { grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
  .form-row input,
  .form-row select,
  .form-row textarea { padding: 12px 14px; font-size: 14px; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .site-footer { padding: 56px 0 0; }
  .footer-logo { height: 44px; }
  .footer-col p { font-size: 13px; }

  /* WhatsApp Float etwas kleiner */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* Sehr schmale Geräte (<360px) – Hero-Ein-Spalter */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .leistungen-grid,
  .produkte-grid {
    grid-template-columns: 1fr;
  }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
}
