/* =========================================================
   A.S.D. Dienstleistungen – style.css
   Finale saubere Version
   Struktur: Start → Leistungen → Warum → Einsatzgebiet → Über → Kontakt
   ========================================================= */

:root {
  --gold: #d99a13;
  --gold-dark: #b87a00;
  --gold-light: #f4bd3f;

  --black: #111214;
  --dark: #17191c;
  --text: #111318;
  --muted: #596170;

  --page-bg: #f6f2eb;
  --white: #ffffff;
  --line: #e4dac8;

  --shadow-soft: 0 18px 50px rgba(17, 18, 20, 0.08);
  --shadow-card: 0 10px 28px rgba(17, 18, 20, 0.06);

  --container: 1440px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 68px 0;
}

/* =========================================================
   ANKER / SCROLL-POSITIONEN
   ========================================================= */

#start {
  scroll-margin-top: 0;
}

#leistungen {
  scroll-margin-top: -10px;
}

#warum-asd,
#einsatzgebiet,
#about,
#kontakt {
  scroll-margin-top: 0;
}

/* =========================================================
   TYPO / SECTION HEADINGS
   ========================================================= */

.eyebrow {
  color: var(--gold) !important;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

/* Warum A.S.D. – Textabstand schöner */
.why-us .section-heading h2 {
  margin-bottom: 18px;
}

.why-us .section-heading p:not(.eyebrow) {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.65;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  box-shadow: 0 12px 28px rgba(217, 154, 19, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(217, 154, 19, 0.3);
}

.btn-secondary {
  background: #111214;
  color: #fff;
  border-color: rgba(217, 154, 19, 0.35);
}

.btn-secondary:hover {
  background: #000;
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.985);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 285px;
  max-height: 78px;
  object-fit: contain;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

.main-nav a {
  position: relative;
  font-size: 0.98rem;
  font-weight: 900;
  color: #151515;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-dark);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-call {
  margin-left: 34px;
  min-width: 222px;
  min-height: 58px;
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 26px rgba(217, 154, 19, 0.26);
  border: 1px solid rgba(184, 122, 0, 0.22);
  white-space: nowrap;
  transition: 0.25s ease;
}

.header-call:hover {
  transform: translateY(-2px);
}

.header-call-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.header-call-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.05;
}

.header-call-text span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.header-call-text strong {
  color: #111;
  font-size: 1rem;
  font-weight: 950;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #111;
  border-radius: 999px;
}

/* =========================================================
   1. HERO / START
   ========================================================= */

.hero {
  padding: 0;
  background: var(--page-bg);
  overflow: hidden;
  position: relative;
}

.hero-shell {
  position: relative;
  min-height: clamp(650px, calc(100vh - 86px), 750px);
  display: flex;
  align-items: center;
  padding: 62px 0 76px;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 49%;
  max-width: 680px;
}

.hero-content h1 {
  font-size: clamp(2.7rem, 4vw, 4.45rem);
  line-height: 1.03;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

.hero-line {
  display: block;
}

.hero-line-dark {
  color: var(--text);
}

.hero-line-gold {
  color: var(--gold);
}

.hero-nowrap {
  white-space: nowrap;
}

.hero-text {
  color: #333b45;
  font-size: 1.05rem;
  line-height: 1.72;
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-row div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-size: 0.92rem;
  font-weight: 900;
}

.trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(217, 154, 19, 0.14);
  color: var(--gold-dark);
  font-weight: 950;
}

.hero-visual {
  position: absolute;
  top: 0;
  right: calc((100vw - min(calc(100vw - 48px), var(--container))) / -2);
  bottom: 0;
  width: 70%;
  overflow: hidden;
  z-index: 1;
  border-bottom-left-radius: 44px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      var(--page-bg) 0%,
      rgba(246, 242, 235, 0.98) 12%,
      rgba(246, 242, 235, 0.76) 26%,
      rgba(246, 242, 235, 0.34) 42%,
      rgba(246, 242, 235, 0.06) 66%,
      rgba(246, 242, 235, 0) 100%
    );
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(246, 242, 235, 0) 0%,
      rgba(246, 242, 235, 0.55) 58%,
      var(--page-bg) 100%
    );
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.98) contrast(1.02);
}

/* =========================================================
   2. LEISTUNGEN
   ========================================================= */

.service-intro {
  background: var(--page-bg);
  padding: 50px 0 42px;
}

.service-intro .section-heading p:not(.eyebrow) {
  display: none;
}

.service-intro .section-heading {
  margin-bottom: 34px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 28px 30px;
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 154, 19, 0.4);
  box-shadow: 0 20px 50px rgba(17, 18, 20, 0.1);
}

.service-card::before {
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(217, 154, 19, 0.2);
  font-size: 2.35rem;
  font-weight: 950;
  line-height: 1;
}

.service-card:nth-child(1)::before {
  content: "01";
}

.service-card:nth-child(2)::before {
  content: "02";
}

.service-card:nth-child(3)::before {
  content: "03";
}

.service-card:nth-child(4)::before {
  content: "04";
}

.service-icon-image {
  width: 104px;
  height: 104px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.service-icon-image img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.service-title-centered {
  text-align: center;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.service-card p {
  color: #505866;
  font-size: 0.98rem;
  line-height: 1.62;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
}

.service-card li {
  position: relative;
  padding-left: 26px;
  color: #20242b;
  font-size: 0.96rem;
  line-height: 1.45;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-dark);
  font-weight: 950;
}

/* Dezenter Hinweis nach den Leistungskarten */
.services-note {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
}

.services-note p {
  color: #424a56;
  font-size: 1rem;
  line-height: 1.6;
}

.services-note a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.services-note a:hover {
  color: var(--gold);
}

/* =========================================================
   3. WARUM A.S.D.
   ========================================================= */

.why-us {
  background: var(--page-bg);
  padding: 42px 0 68px;
}

.why-us .section-heading {
  margin-bottom: 34px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.benefit-item {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 20px 24px;
  box-shadow: var(--shadow-card);
  transition: 0.25s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 154, 19, 0.34);
  box-shadow: 0 16px 34px rgba(17, 18, 20, 0.08);
}

.benefit-icon-image {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 154, 19, 0.42);
  background: linear-gradient(180deg, #fffdfa 0%, #fff8eb 100%);
  overflow: hidden;
}

.benefit-icon-image::before,
.benefit-icon-image::after {
  display: none;
  content: none;
}

.benefit-icon-image img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.benefit-item h3 {
  font-size: 1rem;
  line-height: 1.28;
  margin-bottom: 8px;
}

.benefit-item p {
  color: #596170;
  font-size: 0.92rem;
  line-height: 1.52;
  max-width: 230px;
  margin-inline: auto;
}

/* =========================================================
   4. EINSATZGEBIET / MAP
   ========================================================= */

.area-section {
  background: var(--page-bg);
  padding: 68px 0;
}

.area-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 32px;
  align-items: stretch;
}

.area-content {
  position: relative;
  overflow: hidden;
  height: 445px;
  min-height: 445px;
  padding: 42px 46px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 100%, rgba(217, 154, 19, 0.16) 0%, rgba(217, 154, 19, 0.08) 18%, transparent 38%),
    linear-gradient(145deg, #17191c 0%, #111214 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.area-content::before {
  content: "";
  position: absolute;
  right: -85px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(217, 154, 19, 0.1);
  pointer-events: none;
}

.area-content .eyebrow {
  color: var(--gold-light) !important;
  margin-bottom: 14px;
  font-size: 0.74rem;
}

.area-content h2 {
  color: #fff;
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.area-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.62;
  margin-bottom: 26px;
  max-width: 520px;
}

.check-list {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--gold-light);
  font-size: 1.12rem;
  font-weight: 950;
}

.map-image-card {
  height: 445px;
  min-height: 445px;
  padding: 0;
  background: none;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(217, 154, 19, 0.22);
  box-shadow: var(--shadow-soft);
}

.map-image-card::before,
.map-image-card::after {
  display: none;
  content: none;
}

.map-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.map-card,
.area-content {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-card:hover,
.area-content:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(17, 18, 20, 0.12);
}

/* =========================================================
   5. ÜBER A.S.D.
   ========================================================= */

.about-section {
  background: var(--page-bg);
  padding: 72px 0 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 34px;
  align-items: stretch;
}

.about-media {
  height: auto !important;
  min-height: 640px !important;
  border-radius: 32px;
  overflow: hidden;
  background: #ebe6dd;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: center;
}

.about-content {
  height: auto !important;
  min-height: 640px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 58px 64px 60px;
  box-shadow: var(--shadow-card);
  overflow: visible;
}

.about-content .eyebrow {
  color: var(--gold) !important;
  margin-bottom: 18px;
}

.about-title {
  font-size: clamp(2rem, 2.55vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin-bottom: 26px;
  max-width: 720px;
}

.about-title span {
  display: block;
}

.about-title span:nth-child(1) {
  color: #111318;
}

.about-title span:nth-child(2) {
  color: #25282d;
}

.about-title span:nth-child(3) {
  color: var(--gold-dark);
}

.about-content p {
  color: #596170;
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 760px;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 20px 0 32px;
  padding: 0;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  color: #151922;
  font-size: 0.98rem;
  line-height: 1.4;
  font-weight: 800;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-dark);
  font-weight: 950;
}

.about-content .btn {
  width: fit-content;
  min-width: 270px;
  min-height: 52px;
  padding-inline: 34px;
}

/* =========================================================
   6. KONTAKT
   ========================================================= */

.contact-section {
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 72px 0;
  background: var(--page-bg);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: center;
  background: #111416;
  border-radius: 28px;
  padding: 28px 34px;
  border: 1px solid rgba(217, 154, 19, 0.18);
  box-shadow: 0 24px 70px rgba(17, 18, 20, 0.18);
  overflow: hidden;
}

.contact-info {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  color: #fff;
}

.contact-info .eyebrow {
  color: var(--gold-light) !important;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  margin-bottom: 12px;
}

.contact-info h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 16px;
  max-width: 500px;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  max-width: 510px;
  margin-bottom: 22px;
}

.contact-list {
  display: none;
}

.contact-quick-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}

.contact-quick-list a,
.contact-quick-list div {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
}

.contact-quick-list span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  flex: 0 0 23px;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 900;
}

.contact-quick-list strong {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.3;
  font-weight: 750;
}

.contact-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-form .form-row:nth-of-type(1) {
  grid-template-columns: 0.58fr 1.42fr;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: #24282c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 4px;
  box-shadow: none;
  outline: none;
  transition: 0.2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 44px;
  height: 44px;
  padding: 10px 14px;
  font-size: 0.92rem;
}

.contact-form textarea {
  min-height: 104px;
  height: 104px;
  padding: 12px 14px;
  font-size: 0.92rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
}

.contact-form select {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 189, 63, 0.8);
  box-shadow: 0 0 0 3px rgba(217, 154, 19, 0.16);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.42;
  margin: 0 0 14px;
}

.privacy-check input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
  flex: 0 0 16px;
}

.privacy-check a {
  color: var(--gold-light);
  font-weight: 900;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-size: 0.9rem;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(217, 154, 19, 0.22);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(217, 154, 19, 0.32);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #111214;
  color: #fff;
  padding: 62px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.9fr 1.05fr 1.25fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-brand img {
  width: 285px;
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 24px;
}

.footer-brand p {
  color: #e4e4e4;
  max-width: 470px;
  font-size: 1.02rem;
  line-height: 1.65;
}

.footer-column h3 {
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: #e2e2e2;
  margin-bottom: 13px;
  font-size: 0.98rem;
  line-height: 1.52;
}

.footer-column a {
  width: fit-content;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: var(--gold-light);
  transform: translateX(2px);
}

.footer-hours {
  margin-top: 20px !important;
  color: #f0f0f0 !important;
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: #cfcfcf;
  font-size: 0.92rem;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  color: #d8d8d8;
  transition: 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =========================================================
   MOBILE ACTION BAR
   ========================================================= */

.mobile-action-bar {
  display: none;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1280px) {
  .brand-logo {
    width: 255px;
  }

  .main-nav {
    gap: 34px;
  }

  .header-call {
    margin-left: 18px;
  }

  .services-grid {
    gap: 20px;
  }

  .about-media,
  .about-content {
    height: auto !important;
    min-height: 620px !important;
  }

  .about-media img {
    min-height: 620px;
  }

  .about-content {
    padding: 48px 48px;
  }

  .about-title {
    font-size: clamp(2rem, 2.65vw, 2.75rem);
  }

  .footer-grid {
    grid-template-columns: 1.45fr 0.9fr 1fr 1.15fr;
    gap: 44px;
  }

  .footer-brand img {
    width: 260px;
  }
}

@media (max-width: 1120px) {
  html {
    scroll-padding-top: 82px;
  }

  #leistungen {
    scroll-margin-top: -10px;
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    width: 220px;
  }

  .main-nav {
    gap: 24px;
  }

  .main-nav a {
    font-size: 0.92rem;
  }

  .header-call {
    min-width: 195px;
    padding: 9px 16px;
  }

  .header-call-text strong {
    font-size: 0.92rem;
  }

  .hero-shell {
    min-height: 640px;
  }

  .hero-content {
    width: 58%;
  }

  .hero-visual {
    width: 63%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .area-grid,
  .about-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .area-content,
  .map-image-card {
    height: auto;
    min-height: 390px;
  }

  .about-media,
  .about-content {
    height: auto !important;
    min-height: 420px !important;
  }

  .about-media img {
    min-height: 420px;
  }

  .about-content {
    justify-content: flex-start;
  }

  .about-title span {
    display: inline;
  }

  .about-title span::after {
    content: " ";
  }

  .contact-panel {
    padding: 30px;
    align-items: stretch;
  }

  .contact-info h2 {
    max-width: 650px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 60px;
  }

  .footer-brand img {
    width: 265px;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 76px;
  }

  #leistungen {
    scroll-margin-top: -10px;
  }

  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-logo {
    width: 180px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover {
    background: var(--page-bg);
  }

  .header-call {
    display: none;
  }

  .hero-shell {
    display: block;
    min-height: auto;
    padding: 48px 0 56px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  .hero-nowrap {
    white-space: normal;
  }

  .hero-visual {
    position: relative;
    width: 100%;
    height: 310px;
    right: auto;
    margin-top: 34px;
    border-radius: 24px;
  }

  .hero-visual::before {
    background:
      linear-gradient(
        180deg,
        rgba(246, 242, 235, 0.02) 0%,
        rgba(246, 242, 235, 0.08) 100%
      );
  }

  .hero-visual::after {
    height: 28%;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-intro {
    padding: 56px 0 38px;
  }

  .services-note {
    margin-top: 24px;
    padding: 0 10px;
  }

  .why-us {
    padding: 38px 0 56px;
  }

  .area-section {
    padding: 56px 0;
  }

  .area-content {
    height: auto;
    min-height: auto;
    padding: 30px 26px;
    border-radius: 24px;
  }

  .area-content h2 {
    font-size: 2.35rem;
  }

  .map-image-card {
    height: 320px;
    min-height: 320px;
    border-radius: 24px;
  }

  .about-section {
    padding: 56px 0;
  }

  .about-media {
    height: 340px !important;
    min-height: 340px !important;
    border-radius: 24px;
  }

  .about-media img {
    min-height: 340px;
  }

  .about-content {
    height: auto !important;
    min-height: auto !important;
    padding: 32px 26px;
    border-radius: 24px;
  }

  .about-title {
    font-size: 2.08rem;
    line-height: 1.12;
  }

  .about-title span {
    display: block;
  }

  .about-title span::after {
    content: "";
  }

  .contact-section {
    min-height: auto;
    padding: 56px 0;
  }

  .contact-panel {
    padding: 24px 20px;
    gap: 24px;
    border-radius: 24px;
  }

  .contact-info h2 {
    font-size: 2.15rem;
  }

  .contact-form .form-row,
  .contact-form .form-row:nth-of-type(1) {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form textarea {
    min-height: 110px;
    height: 110px;
  }

  .site-footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 34px;
  }

  .footer-brand img {
    width: 260px;
    margin-bottom: 20px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 1rem;
  }

  .footer-column h3 {
    margin-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom div {
    gap: 20px;
  }

  .mobile-action-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: rgba(17, 18, 20, 0.94);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(217, 154, 19, 0.28);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
  }

  .mobile-action-bar a {
    min-height: 64px;
    display: grid;
    place-items: center;
    gap: 2px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 850;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-action-bar a:last-child {
    border-right: 0;
  }

  .mobile-action-bar span {
    color: var(--gold-light);
    font-size: 1.2rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card {
    padding: 24px;
  }

  .service-icon-image {
    width: 88px;
    height: 88px;
  }

  .service-icon-image img {
    width: 82px;
    height: 82px;
  }

  .about-title,
  .area-content h2,
  .contact-info h2 {
    font-size: 2rem;
  }

  .map-image-card {
    height: 280px;
    min-height: 280px;
  }

  .about-media {
    height: 290px !important;
    min-height: 290px !important;
  }

  .about-media img {
    min-height: 290px;
  }

  .footer-brand img {
    width: 235px;
  }

  .footer-column a,
  .footer-column p {
    font-size: 0.96rem;
  }
}
/* =========================================================
   Leistungen leicht kompakter
   ========================================================= */

#leistungen {
  scroll-margin-top: -18px;
}

.service-intro {
  padding-top: 42px !important;
}

.service-intro .section-heading {
  margin-bottom: 28px !important;
}

.service-card {
  padding: 25px 26px 28px !important;
}

.service-icon-image {
  width: 94px !important;
  height: 94px !important;
  margin-bottom: 16px !important;
}

.service-icon-image img {
  width: 86px !important;
  height: 86px !important;
}

.service-card p {
  font-size: 0.96rem !important;
  line-height: 1.55 !important;
  margin-bottom: 15px !important;
}

.service-card ul {
  gap: 8px !important;
}
/* =========================================================
   Über A.S.D. kompakter
   ========================================================= */

.about-section {
  padding: 56px 0 64px !important;
}

.about-grid {
  gap: 28px !important;
}

.about-media,
.about-content {
  min-height: 585px !important;
  height: 585px !important;
}

.about-media img {
  min-height: 585px !important;
}

.about-content {
  padding: 46px 56px !important;
}

.about-content .eyebrow {
  margin-bottom: 14px !important;
}

.about-title {
  font-size: clamp(1.9rem, 2.35vw, 2.65rem) !important;
  line-height: 1.08 !important;
  margin-bottom: 22px !important;
}

.about-content p {
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
  margin-bottom: 14px !important;
}

.about-points {
  margin: 16px 0 26px !important;
  gap: 8px !important;
}

.about-points li {
  font-size: 0.95rem !important;
}

.about-content .btn {
  min-height: 48px !important;
}
/* Einsatzgebiet beim Klick etwas höher positionieren */
#einsatzgebiet {
  scroll-margin-top: 15px !important;
}
/* =========================================================
   Mobile Fix: Über A.S.D. kompakter und sauberer
   ========================================================= */

@media (max-width: 768px) {
  .about-section {
    padding: 42px 0 54px !important;
  }

  .about-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .about-content {
    order: 1 !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 30px 22px 28px !important;
    border-radius: 24px !important;
  }

  .about-media {
    order: 2 !important;
    height: 260px !important;
    min-height: 260px !important;
    border-radius: 24px !important;
  }

  .about-media img {
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .about-content .eyebrow {
    margin-bottom: 12px !important;
    font-size: 0.68rem !important;
  }

  .about-title {
    font-size: clamp(1.85rem, 8vw, 2.25rem) !important;
    line-height: 1.06 !important;
    margin-bottom: 18px !important;
  }

  .about-title span {
    display: block !important;
  }

  .about-content p {
    font-size: 0.95rem !important;
    line-height: 1.62 !important;
    margin-bottom: 13px !important;
  }

  .about-points {
    margin: 16px 0 22px !important;
    gap: 7px !important;
  }

  .about-points li {
    font-size: 0.93rem !important;
    line-height: 1.4 !important;
  }

  .about-content .btn {
    width: 100% !important;
    justify-content: center !important;
    min-height: 50px !important;
  }
}
/* =========================================================
   Hero-Verlauf Desktop – nicht für Mobile
   ========================================================= */

@media (min-width: 861px) {
  .hero-visual::before {
    background:
      linear-gradient(
        90deg,
        var(--page-bg) 0%,
        rgba(246, 242, 235, 0.92) 12%,
        rgba(246, 242, 235, 0.62) 28%,
        rgba(246, 242, 235, 0.24) 43%,
        rgba(246, 242, 235, 0.04) 66%,
        rgba(246, 242, 235, 0) 100%
      ) !important;
  }
}
/* =========================================================
   Mobile Action Bar – SVG Icons sauber darstellen
   ========================================================= */

@media (max-width: 860px) {
  .mobile-action-bar a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    font-size: 0.82rem !important;
    font-weight: 850 !important;
  }

  .mobile-action-bar a strong {
    display: block;
    font-size: inherit;
    font-weight: 850;
    line-height: 1;
  }

  .mobile-action-icon {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--gold-light) !important;
    line-height: 1 !important;
  }

  .mobile-action-icon svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 2.25 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }
}
/* =========================================================
   Navigation Active Fix
   ========================================================= */

.main-nav a.is-active {
  color: var(--gold-dark) !important;
}

@media (min-width: 861px) {
  .main-nav a.is-active::after {
    display: block !important;
    width: 100% !important;
  }
}

@media (max-width: 860px) {
  .main-nav a.is-active {
    background: var(--page-bg) !important;
    color: var(--gold-dark) !important;
  }
}
/* =========================================================
   Mobile Fix: Lücke nach Hero verkleinern
   ========================================================= */

@media (max-width: 860px) {
  .hero-shell {
    padding: 38px 0 20px !important;
  }

  .hero-visual {
    margin-top: 26px !important;
    height: 300px !important;
  }

  .service-intro {
    padding-top: 10px !important;
  }

  .service-intro .section-heading {
    margin-bottom: 24px !important;
  }
}
/* =========================================================
   Mobile Fix: Leerraum über Hero entfernen
   ========================================================= */

@media (max-width: 860px) {
  .hero-shell {
    padding-top: 3px !important;
  }

  .hero-content .eyebrow {
    margin-top: 0 !important;
  }
}