/* =========================================================
   Rohcraft Consulting Ltd. – Stylesheet
   Farbwelt: dunkles Navy / Silber / Stahlblau – kein Gold
   ========================================================= */

/* ---------- Fonts (lokal, DSGVO-konform) ---------- */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/playfair-display-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/playfair-display-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/playfair-display-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-latin-600-normal.woff2') format('woff2'); }

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0f1a;
  --bg-hero:   #0b1322;
  --bg-alt:    #0a1120;
  --bg-deep:   #090e19;
  --panel:     #101a2c;
  --card-top:  rgba(21, 32, 53, .55);
  --card-bot:  rgba(13, 20, 34, .55);
  --line:      rgba(214, 226, 240, .10);
  --line-2:    rgba(214, 226, 240, .22);
  --txt:       #e9eef6;
  --txt-soft:  #c8d4e5;
  --muted:     #9aabc3;
  --dim:       #71849f;
  --steel:     #5c7ca6;
  --steel-2:   #8fa9c9;
  --btn-bg:    #182c49;
  --btn-bg-h:  #1e3657;
  --btn-line:  #3d5c8a;
  --serif:     'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:      'Inter', system-ui, 'Segoe UI', Arial, sans-serif;
  --container: 1160px;
  --header-h:  76px;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: rgba(92, 124, 166, .45); color: #fff; }
:focus-visible { outline: 2px solid var(--steel-2); outline-offset: 3px; border-radius: 3px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.center { text-align: center; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--btn-bg); color: var(--txt); padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-size: 12px; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}
h1, h2 { font-family: var(--serif); color: #eef2f9; font-weight: 600; }
h2 { font-size: clamp(2rem, 3.6vw, 2.75rem); line-height: 1.15; letter-spacing: .01em; }

.rule {
  width: 64px; height: 1px; margin: 18px 0;
  background: linear-gradient(90deg, var(--steel-2), transparent);
}
.rule.center { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--steel-2), transparent); }

.section { padding: 68px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 38px; }
.section-head .rule { margin-top: 18px; margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  border-radius: 6px; border: 1px solid transparent;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-solid { background: var(--btn-bg); border-color: var(--btn-line); color: #e9eef7; }
.btn-solid:hover { background: var(--btn-bg-h); border-color: #547ab0; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(6, 12, 24, .5); }
.btn-ghost { border-color: rgba(233, 238, 246, .3); color: var(--txt); }
.btn-ghost:hover { border-color: rgba(233, 238, 246, .55); background: rgba(255, 255, 255, .04); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(8, 13, 23, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; color: var(--txt); }
.brand-mark { width: 40px; height: 40px; color: #cdd8e8; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 17px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.brand-sub  { font-size: 8.5px; font-weight: 500; letter-spacing: .42em; text-transform: uppercase; color: var(--dim); }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list > li > a,
.nav-list > li > button {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); padding: 8px 0; position: relative;
  transition: color .25s;
}
.nav-list > li > a:hover,
.nav-list > li > button:hover { color: var(--txt); }
.nav-list > li > a.active { color: var(--txt); }
.nav-list > li > a.active::after {
  content: ''; position: absolute; left: 0; right: 12px; bottom: 2px; height: 1px;
  background: var(--steel-2);
}
.has-sub { position: relative; }
.has-sub > button svg { width: 12px; height: 12px; transition: transform .25s; }
.has-sub.open > button svg { transform: rotate(180deg); }
.sub {
  position: absolute; top: calc(100% + 10px); left: -18px; min-width: 260px;
  background: rgba(12, 19, 33, .97);
  border: 1px solid var(--line-2); border-radius: 10px;
  padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: 0 24px 50px rgba(3, 6, 12, .6);
}
.has-sub:hover .sub, .has-sub.open .sub, .has-sub:focus-within .sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub a {
  display: block; padding: 11px 14px; border-radius: 7px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  transition: background .2s, color .2s;
}
.sub a:hover { background: rgba(92, 124, 166, .14); color: var(--txt); }
.nav-cta { padding: 11px 18px; font-size: 10.5px; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; }
.burger span { width: 22px; height: 1.6px; background: var(--txt); transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 44px) 0 60px;
  background:
    radial-gradient(900px 500px at 78% 18%, rgba(96, 136, 196, .16), transparent 65%),
    radial-gradient(700px 460px at 12% 92%, rgba(60, 92, 140, .10), transparent 60%),
    linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px; }
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(3rem, 6.6vw, 5.25rem);
  font-weight: 700; line-height: 1.02; letter-spacing: .035em;
  text-transform: uppercase;
}
.h1-sub {
  display: block; margin-top: 10px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 400; letter-spacing: .02em; text-transform: none;
  color: var(--txt-soft);
}
.hero .lead { color: var(--muted); max-width: 44ch; font-size: 16.5px; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 26px; }

.hero-globe { position: relative; aspect-ratio: 1 / 1; width: min(560px, 100%); justify-self: end; margin-right: -6%; }
.hero-globe::before {
  content: ''; position: absolute; inset: -12%;
  background: radial-gradient(circle at 50% 48%, rgba(110, 150, 210, .14), transparent 62%);
  pointer-events: none;
}
.hero-globe canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---------- Leistungen ---------- */
.services { background: var(--bg-alt); border-top: 1px solid var(--line); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}
.card {
  background: linear-gradient(180deg, var(--card-top), var(--card-bot));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 18px 20px;
  text-align: center;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(160, 190, 230, .38);
  box-shadow: 0 22px 46px rgba(3, 7, 14, .5);
}
.card-icon { width: 40px; height: 40px; margin: 0 auto 14px; color: #bdcfe7; }
.card-icon svg { width: 100%; height: 100%; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.card h3, .benefit h3 {
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  line-height: 1.65; color: #dde6f2;
  margin-bottom: 8px;
}
.card p { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ---------- Über uns ---------- */
.about { background: var(--bg-deep); border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: center; }
.about-copy p:not(.eyebrow) { color: var(--muted); font-weight: 300; font-size: 15.5px; margin-bottom: 20px; max-width: 52ch; }
.about-copy .btn { margin-top: 16px; }

.office {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 14px;
  min-height: 400px;
  background:
    linear-gradient(125deg, #1b2740 0%, #111b2e 42%, #0b1322 78%);
  display: grid; place-items: center;
}
.office-light {
  position: absolute; top: 0; right: 6%; width: 58%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(210, 228, 250, .55), rgba(210, 228, 250, .15));
  box-shadow: 0 0 34px 10px rgba(160, 195, 240, .18);
}
.office-sign {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: #d4dded;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .45));
}
.office-mark { width: 118px; height: 118px; margin-bottom: 16px; }
.office-name { font-size: 19px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; }
.office-sub  { font-size: 9.5px; font-weight: 500; letter-spacing: .46em; text-transform: uppercase; color: var(--dim); }
.office-glass {
  position: absolute; top: 0; bottom: 0; right: 0; width: 26%;
  background:
    repeating-linear-gradient(90deg, rgba(190, 212, 240, .07) 0 1px, transparent 1px 52px),
    linear-gradient(90deg, transparent, rgba(150, 180, 220, .06));
  border-left: 1px solid rgba(190, 212, 240, .10);
}
.office-floor {
  position: absolute; left: 0; right: 0; bottom: 0; height: 24%;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 13, .8));
}

/* ---------- Warum Rohcraft ---------- */
.why { background: var(--bg-hero); border-top: 1px solid var(--line); }
.benefits {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 32px 28px;
}
.benefit { width: 190px; text-align: center; }
.icon-circle {
  width: 76px; height: 76px; margin: 0 auto 14px;
  border: 1px solid rgba(180, 205, 235, .24); border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(120, 155, 205, .16), rgba(10, 16, 28, 0) 70%);
  display: grid; place-items: center;
  transition: border-color .35s, transform .35s;
}
.benefit:hover .icon-circle { border-color: rgba(180, 205, 235, .5); transform: translateY(-3px); }
.icon-circle svg { width: 30px; height: 30px; color: #bdcfe7; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }
.benefit p { font-size: 13.5px; font-weight: 300; line-height: 1.8; color: var(--muted); }

/* ---------- Kontakt & Standorte ---------- */
.contact { background: var(--bg-alt); border-top: 1px solid var(--line); }
.contact-methods {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 48px;
  margin-bottom: 36px;
}
.contact-methods a {
  display: inline-flex; align-items: center; gap: 11px;
  color: var(--txt-soft); font-size: 15px; font-weight: 400;
  transition: color .25s;
}
.contact-methods a:hover { color: #fff; }
.contact-methods svg { width: 19px; height: 19px; color: var(--steel-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.locations { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.loc {
  background: linear-gradient(180deg, var(--card-top), var(--card-bot));
  border: 1px solid var(--line); border-radius: 12px;
  padding: 28px 24px;
  transition: border-color .35s, transform .35s;
}
.loc:hover { border-color: rgba(160, 190, 230, .38); transform: translateY(-3px); }
.loc h3 {
  font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: #dde6f2; margin-bottom: 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.loc h3 span { font-size: 9.5px; font-weight: 500; letter-spacing: .22em; color: var(--dim); }
.loc address { font-size: 13.5px; font-weight: 300; line-height: 1.85; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); border-top: 1px solid var(--line); padding-top: 54px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.15fr 1.35fr; gap: 44px; }
.foot-brand > p { margin: 22px 0 26px; font-size: 13.5px; font-weight: 300; color: var(--muted); max-width: 30ch; }
.foot-brand .brand-mark { width: 36px; height: 36px; }
.foot-brand .brand-name { font-size: 15px; }
.foot-brand .brand-sub { font-size: 8px; }

.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center; color: var(--muted);
  transition: color .25s, border-color .25s, transform .25s;
}
.socials a:hover { color: var(--txt); border-color: rgba(180, 205, 235, .5); transform: translateY(-2px); }
.socials svg { width: 15px; height: 15px; }

.foot-col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 22px;
}
.foot-col ul { display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a { font-size: 13.5px; font-weight: 300; color: var(--muted); transition: color .25s; }
.foot-col ul a:hover { color: var(--txt); }

.foot-contact p { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 18px; font-size: 13.5px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.foot-contact svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--steel-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.foot-contact a:hover { color: var(--txt); }

.foot-bottom {
  margin-top: 44px; padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 12.5px; color: var(--dim);
}
.legal-links { display: flex; gap: 22px; }
.legal-links a { transition: color .25s; }
.legal-links a:hover { color: var(--txt); }

/* ---------- Unterseiten (Impressum / Datenschutz) ---------- */
.page { padding: calc(var(--header-h) + 44px) 0 76px; min-height: 70vh; }
.narrow { max-width: 780px; }
.page h1 { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 600; margin-bottom: 8px; }
.page h2 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; margin: 42px 0 12px; color: #dde6f2; }
.page p, .page li { color: var(--muted); font-weight: 300; font-size: 15px; margin-bottom: 14px; }
.page ul { list-style: disc; padding-left: 22px; }
.page ul li { margin-bottom: 8px; }
.page a { color: var(--steel-2); }
.page a:hover { color: #fff; }
.page .rule { margin: 22px 0 36px; }
.notice {
  border: 1px solid rgba(160, 190, 230, .3); border-radius: 10px;
  background: rgba(92, 124, 166, .1);
  padding: 16px 20px; margin: 26px 0 6px;
  font-size: 13.5px; color: var(--txt-soft);
}

/* ---------- Reveal-Animation ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.cards .reveal:nth-child(2) { transition-delay: .07s; }
.cards .reveal:nth-child(3) { transition-delay: .14s; }
.cards .reveal:nth-child(4) { transition-delay: .21s; }
.cards .reveal:nth-child(5) { transition-delay: .28s; }
.benefits .reveal:nth-child(2) { transition-delay: .07s; }
.benefits .reveal:nth-child(3) { transition-delay: .14s; }
.benefits .reveal:nth-child(4) { transition-delay: .21s; }
.benefits .reveal:nth-child(5) { transition-delay: .28s; }
.locations .reveal:nth-child(2) { transition-delay: .07s; }
.locations .reveal:nth-child(3) { transition-delay: .14s; }
.locations .reveal:nth-child(4) { transition-delay: .21s; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .nav-list { gap: 22px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .locations { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .burger { display: flex; }
  .nav-panel {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(8, 13, 23, .98);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 28px;
    display: none;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav-panel.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-list > li > a, .nav-list > li > button { width: 100%; padding: 13px 4px; justify-content: space-between; display: flex; }
  .nav-list > li > a.active::after { display: none; }
  .sub {
    position: static; min-width: 0; opacity: 1; visibility: hidden; transform: none;
    display: none; border: 0; box-shadow: none; background: transparent; padding: 0 0 6px 14px;
  }
  .has-sub.open .sub { display: block; visibility: visible; }
  .has-sub:hover .sub:not(.force) { }
  .nav-cta-item { margin-top: 14px; }
  .nav-cta { width: 100%; }

  .hero { padding-bottom: 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-globe { justify-self: center; margin-right: 0; width: min(520px, 92%); }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .office { min-height: 400px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 640px) {
  .section { padding: 54px 0; }
  .cards { grid-template-columns: 1fr; }
  .locations { grid-template-columns: 1fr; }
  .contact-methods { flex-direction: column; align-items: center; gap: 18px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .benefit { width: 100%; max-width: 260px; }
}

/* ---------- Reduzierte Bewegung ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Leistungs-Karten (klickbar, kompakt) ---------- */
a.card { display: block; }
.card h3 { font-size: 11.5px; letter-spacing: .1em; }
.card p { font-size: 12.5px; line-height: 1.65; }
.card-more {
  display: inline-block; margin-top: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--steel-2); transition: color .25s;
}
.card:hover .card-more { color: #fff; }
.cards-label {
  grid-column: 1 / -1;
  font-size: 10px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--dim);
  margin: 16px 2px 0;
}
.cards-label:first-child { margin-top: 0; }

/* ---------- Mega-Dropdown „Leistungen" ---------- */
.sub .sub-group h5 {
  font-size: 9.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); margin: 8px 12px 4px;
}
.sub .sub-all {
  display: block; margin-top: 6px; padding: 10px 12px 4px;
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--steel-2);
}
.sub .sub-all:hover { color: #fff; }
@media (min-width: 961px) {
  .sub.mega {
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 6px;
    min-width: 560px; left: auto; right: -140px;
  }
  .sub.mega .sub-all { grid-column: 1 / -1; }
  .sub.mega a { font-size: 11px; padding: 8px 12px; }
}

/* ---------- Leistungs-Unterseiten ---------- */
.svc-intro { font-size: 16px; max-width: 62ch; }
.svc-list {
  list-style: none; padding: 0; margin: 6px 0 10px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px;
}
.svc-list li { position: relative; padding-left: 26px; margin: 0; font-size: 14.5px; color: var(--txt-soft); }
.svc-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--steel-2); }
.cta-box {
  margin-top: 46px; padding: 26px 28px;
  border: 1px solid var(--line-2); border-radius: 12px;
  background: linear-gradient(180deg, var(--card-top), var(--card-bot));
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.cta-box h3 { font-size: 16px; font-weight: 600; color: var(--txt); margin-bottom: 4px; }
.cta-box p { margin: 0; font-size: 13.5px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.related { margin-top: 40px; }
.related h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); margin-bottom: 16px;
}
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  border: 1px solid var(--line-2); border-radius: 999px;
  padding: 9px 18px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  transition: color .25s, border-color .25s;
}
.related-links a:hover { color: var(--txt); border-color: rgba(180, 205, 235, .5); }
.svc-groups h2 { margin-top: 46px; }
.svc-groups h2:first-of-type { margin-top: 26px; }
@media (max-width: 640px) {
  .svc-list { grid-template-columns: 1fr; }
  .sub .sub-group h5 { margin-left: 4px; }
}
