/* HUSS Landingpages — Stylesheet (abgeleitet aus neu/assets/style.css der Hauptseite) */
:root {
  --blue: #20429B;
  --blue-dark: #16306f;
  --navy: #000F36;
  --ink: #27314C;
  --green: #2BBE54;
  --green-dark: #1f9e43;
  --bg: #FAFAFA;
  --line: #E4E7EE;
  --sky: #5294CE;
  --radius: 12px;
  --shadow: 0 2px 12px rgba(0, 15, 54, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); }
h1, h2, h3 { line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 0 0 .75rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 1rem; }
h3 { font-size: 1.15rem; margin: 0 0 .5rem; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* Buttons */
.btn {
  display: inline-block; padding: .7rem 1.4rem; border-radius: 999px;
  background: var(--blue); color: #fff; text-decoration: none; font-weight: 600;
  border: 2px solid var(--blue); transition: background .15s, border-color .15s;
}
.btn:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn--green { background: var(--green); border-color: var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn--ghost { background: transparent; color: var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--white { background: #fff; color: var(--navy); border-color: #fff; }
.btn--white:hover { background: #F2F5FC; border-color: #F2F5FC; }
.btn--ghost-white { background: transparent; color: #fff; border-color: #fff; }
.btn--ghost-white:hover { background: #fff; color: var(--navy); }
.btn--big { padding: .9rem 1.8rem; font-size: 1.15rem; font-weight: 700; }
.btn--small { padding: .45rem 1.1rem; font-size: .95rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem; }
.btn-row--center { justify-content: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.site-header--static { position: static; }
.logo img { width: 89px; height: 65px; object-fit: contain; }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 1.25rem; }
.header-phone { font-weight: 700; color: var(--blue); text-decoration: none; font-size: 1.05rem; }
.header-note { font-size: .9rem; color: #4b5563; }

/* Notfall-Topbar */
.topbar { background: var(--navy); color: #fff; text-align: center; padding: .55rem 1rem; font-size: .95rem; font-weight: 600; }
.topbar a { color: #fff; font-weight: 700; }

/* Hero hell */
.hero { background: linear-gradient(160deg, #F2F5FC 0%, #FAFAFA 70%); border-bottom: 1px solid var(--line); }
.hero .wrap, .hero-dark .wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem;
  align-items: center; padding-top: 3.5rem; padding-bottom: 3.5rem;
}
.hero p.lead { font-size: 1.1rem; max-width: 56ch; }
.hero img, .hero-dark img { border-radius: var(--radius); box-shadow: var(--shadow); max-height: 440px; object-fit: cover; width: 100%; }
.hero .phone-note { margin-top: .75rem; font-size: .95rem; }
.hero .phone-note a { font-weight: 700; text-decoration: none; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: .35rem 1rem;
  box-shadow: var(--shadow); margin-bottom: 1rem; font-size: .85rem; font-weight: 600;
}
.stars { color: #F5A623; letter-spacing: 2px; }

/* Hero dunkel (Notdienst) */
.hero-dark { background: var(--navy); }
.hero-dark h1 { color: #fff; font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.2; }
.hero-dark p.lead { font-size: 1.15rem; max-width: 54ch; color: #cfd6e4; }
.hero-dark img { box-shadow: 0 12px 28px rgba(0,0,0,.35); max-height: 420px; }
.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; font-weight: 700; color: var(--blue); margin: 0 0 .4rem;
}
.kicker--sky { color: var(--sky); }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem; font-size: .95rem; color: #cfd6e4; }
.trust-row span.check { color: var(--green); font-weight: 700; margin-right: .45rem; }

/* Sections */
.section { padding: 3.5rem 0; }
.section--alt { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-intro { max-width: 62ch; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* Karten */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.card img { height: 200px; object-fit: cover; width: 100%; }
.card-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body p { flex: 1; margin: .5rem 0 1rem; }
.card-body .btn { align-self: flex-start; }

/* Werte */
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.value-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); border-top: 3px solid var(--blue);
}
.value-card h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.value-card p { margin: 0; color: #4b5563; font-size: .92rem; }
.icon-capsule {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: #EAF0FB; color: var(--blue); margin-bottom: .75rem;
}
.icon-capsule svg { width: 26px; height: 26px; }
.icon-capsule--wa { background: #E4F8E9; color: var(--green-dark); }

/* Schritte */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--blue);
  color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: .75rem;
}
.step p { margin: 0; color: #4b5563; font-size: .95rem; }

/* Features */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--blue);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.feature p { margin: 0; }

/* Specs */
.spec-row { display: flex; gap: 1rem; margin-top: 1.25rem; }
.spec-card {
  flex: 1; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1rem; box-shadow: var(--shadow); text-align: center;
}
.spec-label { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 700; color: #8a91a3; }
.spec-value { font-size: 1.5rem; font-weight: 800; color: var(--blue); margin-top: .35rem; }

/* Kundenstimmen */
.quotes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2rem; }
.quotes--3 { grid-template-columns: repeat(3, 1fr); }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow); font-size: .95rem; margin: 0;
}
.quote .stars { margin-bottom: .5rem; }
.quote footer { margin-top: .75rem; font-weight: 600; color: var(--navy); }
.quote footer span { display: block; font-weight: 400; font-size: .85rem; color: #6b7280; }

/* FAQ */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: .75rem; box-shadow: var(--shadow);
}
.faq summary {
  cursor: pointer; font-weight: 600; padding: 1rem 1.25rem; color: var(--navy);
  list-style: none; position: relative; padding-right: 3rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--blue);
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 1.25rem 1.25rem; }
.faq .answer p { margin: 0 0 .75rem; }

/* Kontakt-Karten */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); transition: transform .15s, box-shadow .15s;
  display: flex; gap: 1.1rem; align-items: flex-start;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 15, 54, .12); }
.contact-card .icon-capsule { margin-bottom: 0; }
.contact-card h3 { font-size: 1.15rem; margin: 0 0 .35rem; }
.contact-card .big { font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.contact-card span.big { color: var(--navy); }
.contact-card p { margin: .5rem 0 0; color: #4b5563; font-size: .95rem; }

/* CTA-Band */
.cta-band { background: var(--navy); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 60ch; margin: 0 auto 1rem; }
.cta-band a { color: #fff; }
.areas-cta { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-top: 2rem; margin-bottom: 1rem; }

/* Footer */
.footer-bar { background: var(--navy); color: #cfd6e4; border-top: 1px solid rgba(255,255,255,.15); }
.footer-bar .wrap {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; flex-wrap: wrap; font-size: .95rem;
}
.footer-bar a { color: #cfd6e4; text-decoration: none; }
.footer-bar a:hover { color: #fff; }
.footer-note { font-size: .85rem; color: #cfd6e4; margin-top: 1.5rem; }
.footer-note a { color: #cfd6e4; }

/* Sticky Anruf-Leiste */
.sticky-call {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 100;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.15);
}
.sticky-call .wrap {
  padding: .6rem 1.25rem; display: flex; align-items: center;
  justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.sticky-call span { color: #fff; font-weight: 600; font-size: .95rem; }
.has-sticky { padding-bottom: 4.5rem; }

/* Responsive */
@media (max-width: 900px) {
  .hero .wrap, .hero-dark .wrap, .split { grid-template-columns: 1fr; gap: 2rem; }
  .cards, .steps, .quotes, .quotes--3 { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .spec-row { flex-direction: column; }
}
@media (max-width: 600px) {
  .cards, .steps, .quotes, .quotes--3, .value-grid, .contact-cards, .feature-grid { grid-template-columns: 1fr; }
  .header-note, .header-phone { display: none; }
}
