/* =========================================================
   RESET (basierend auf Tailwind Preflight + eigene Basis)
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { line-height: 1.5; -webkit-text-size-adjust: 100%; tab-size: 4; font-family: ui-sans-serif, system-ui, sans-serif; }

body { margin: 0; line-height: inherit; }

hr { height: 0; color: inherit; border-top-width: 1px; }

abbr[title] { text-decoration: underline dotted; }

h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }

a { color: inherit; text-decoration: inherit; }

b, strong { font-weight: bolder; }

code, kbd, samp, pre { font-family: ui-monospace, monospace; font-size: 1em; }

small { font-size: 80%; }

sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sub { bottom: -0.25em; }
sup { top: -0.5em; }

table { text-indent: 0; border-color: inherit; border-collapse: collapse; }

button, input, optgroup, select, textarea {
  font-family: inherit; font-feature-settings: inherit; font-variation-settings: inherit;
  font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit;
  margin: 0; padding: 0;
}

button, select { text-transform: none; }

button, [type='button'], [type='reset'], [type='submit'] {
  -webkit-appearance: button; background-color: transparent; background-image: none;
}

:-moz-focusring { outline: auto; }
:-moz-ui-invalid { box-shadow: none; }

progress { vertical-align: baseline; }

::-webkit-inner-spin-button, ::-webkit-outer-spin-button { height: auto; }
[type='search'] { -webkit-appearance: textfield; outline-offset: -2px; }
::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }

summary { display: list-item; }

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre { margin: 0; }

fieldset { margin: 0; padding: 0; }

legend { padding: 0; }

ol, ul, menu { list-style: none; margin: 0; padding: 0; }

textarea { resize: vertical; }

input::placeholder, textarea::placeholder { opacity: 1; color: #9ca3af; }

button, [role='button'] { cursor: pointer; }

:disabled { cursor: default; }

img, svg, video, canvas, audio, iframe, embed, object {
  display: block; vertical-align: middle;
}

img, video { max-width: 100%; height: auto; }

[hidden] { display: none; }

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #152238;
  --gold:        #C9A84C;
  --text:        #1F2430;
  --text-muted:  #5B6373;
  --text-light:  #8B93A3;
  --border:      #D9DDE3;
  --border-navy: #33415E;
  --white:       #FFFFFF;
  --surface:     #F7F8FA;
  --navy-text:   #E6EAF1;
  --navy-muted:  #AEB8CA;
  --navy-item:   #DDE3ED;

  --container-max: 1180px;
  --section-py:    clamp(56px, 8vw, 104px);
  --container-px:  clamp(20px, 5vw, 72px);
}

/* =========================================================
   BASE
   ========================================================= */
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--container-max);
  padding-left: var(--container-px);
  padding-right: var(--container-px);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.border-y-hairline {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* =========================================================
   TYPOGRAPHY ATOMS
   ========================================================= */
.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.gold-bar {
  width: 44px;
  height: 2px;
  background-color: var(--gold);
  margin: 24px 0;
}

.section-h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 48px;
}

.accent-gold { color: var(--gold); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  transition: background-color 0.2s ease;
}

.btn-primary:hover { background-color: var(--navy-dark); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 27px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

/* =========================================================
   STICKY HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-logo {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  flex-shrink: 0;
  margin-right: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.header-nav a:hover { color: var(--navy); }
.header-nav a:hover::after { transform: scaleX(1); }

.btn-header {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13.5px;
  padding: 9px 18px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.btn-header:hover { background-color: var(--navy-dark); }

/* =========================================================
   HERO
   ========================================================= */
.hero { background-color: var(--white); }

.hero-inner { max-width: 900px; }

.hero-headline {
  font-size: clamp(38px, 6.4vw, 72px);
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: 0;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 46ch;
  line-height: 1.55;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   CONTEXT + KOMPETENZSÄULEN
   ========================================================= */
.context { background-color: var(--surface); }

.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.context-left p {
  font-size: clamp(16px, 1.7vw, 18px);
  color: var(--text);
  line-height: 1.65;
}

.context-left p + p { margin-top: 24px; }

.competencies { display: flex; flex-direction: column; }

.comp-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.comp-item:last-child { border-bottom: 1px solid var(--border); }

.comp-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  padding-top: 3px;
}

.comp-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
  display: block;
}

.comp-text {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   FINANZIERUNGSSPEKTRUM (Navy)
   ========================================================= */
.spectrum {
  background-color: var(--navy);
  color: var(--navy-text);
}

.spectrum-header {
  border-bottom: 1px solid var(--border-navy);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.spectrum h2 {
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 36px);
}

.spectrum-lede {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--navy-muted);
  max-width: 66ch;
  line-height: 1.65;
  margin-top: 20px;
}

/* Animierte Balken */
.spectrum-bars {
  display: flex;
  gap: 6px;
  margin: 40px 0;
}

.spectrum-bar {
  height: 3px;
  flex: 1;
  background-color: var(--gold);
  opacity: var(--bar-opacity, 1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.spectrum-bar.is-visible { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .spectrum-bar { transform: scaleX(1); }
}

/* Drei Spalten */
.spectrum-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
}

.spectrum-col { padding-right: 40px; }

.spectrum-col + .spectrum-col {
  padding-left: 40px;
  padding-right: 40px;
  border-left: 1px solid var(--border-navy);
}

.spectrum-col:last-child { padding-right: 0; }

.spectrum-col h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 10px;
}

.spectrum-col-desc {
  font-size: 12.5px;
  color: #8E9AB3;
  line-height: 1.6;
  margin-bottom: 20px;
}

.spectrum-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spectrum-list li {
  font-size: 14.5px;
  color: var(--navy-item);
  padding: 10px 0;
  border-top: 1px solid var(--border-navy);
  line-height: 1.4;
}

.spectrum-list li:last-child { border-bottom: 1px solid var(--border-navy); }

/* Footer-Zeile */
.spectrum-footer {
  border-top: 1px solid var(--border-navy);
  padding-top: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.spectrum-footer-bar {
  width: 44px;
  height: 2px;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 10px;
}

.spectrum-footer p {
  font-size: 15px;
  color: var(--navy-muted);
  line-height: 1.65;
}

.spectrum-footer strong { color: var(--white); }

/* =========================================================
   ABLAUF
   ========================================================= */
.process { background-color: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  padding: 28px 32px 28px 0;
  border-top: 1px solid var(--border);
}

.process-step--accent {
  border-top-color: var(--navy);
  border-top-width: 2px;
  margin-top: -1px;
}

.step-label {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 17px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =========================================================
   LEISTUNGEN & HONORARE
   ========================================================= */
.services { background-color: var(--surface); }

.packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.package {
  border-top: 2px solid var(--navy);
  padding-top: 32px;
}

.package .eyebrow { margin-bottom: 12px; }

.package h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 24px;
}

.package p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.package p + p { margin-top: 16px; }

.honorar-table {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.honorar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 16px 0 12px;
  display: block;
}

.honorar-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  gap: 16px;
}

.honorar-row span {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}

.honorar-row strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.honorar-sub {
  font-size: 12.5px;
  color: var(--text-light);
  padding-bottom: 4px;
  display: block;
}

.package-footnote {
  font-style: italic;
  font-size: 13.5px;
  color: var(--text-light) !important;
  margin-top: 20px !important;
}

.packages-note {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.packages-note p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.note-bold {
  color: var(--navy);
  font-weight: 500;
}

/* =========================================================
   QUALIFIKATION & NETZWERK
   ========================================================= */
.team { background-color: var(--surface); }

.profiles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 72px;
}

.profile {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.profile-portrait { flex-shrink: 0; width: 132px; }

.profile-portrait img {
  width: 132px;
  height: 165px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--border);
  filter: saturate(0.92);
  display: block;
}

.profile-text { flex: 1; }

.profile-text h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.profile-role {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.profile-text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.network-headline {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 20px;
}

.network-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 80ch;
  margin-bottom: 36px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.network-item {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 20px 14px 0;
  border-top: 1px solid var(--border);
  line-height: 1.4;
}

/* =========================================================
   FORMULAR (Navy)
   ========================================================= */
.anfrage {
  background-color: var(--navy);
  color: var(--navy-text);
}

.anfrage-inner { max-width: 800px; }

.anfrage h2 {
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 20px;
}

.anfrage-intro {
  font-size: 15px;
  color: var(--navy-muted);
  max-width: 64ch;
  line-height: 1.65;
  margin-bottom: 48px;
}

.form-error {
  background-color: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--gold);
  color: #F3E3B8;
  font-size: 14.5px;
  padding: 14px 20px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Fieldset */
.form-fieldset { margin-bottom: 40px; padding-left: 20px; padding-right: 20px; }

.form-fieldset legend {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 12px;
  margin-bottom: 28px;
  width: 100%;
  border-bottom: 1px solid var(--border-navy);
  display: block;
}

/* Formularfelder */
.form-field {
  margin-bottom: 28px;
  position: relative;
}

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8E9AB3;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #46587A;
  color: var(--white);
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  padding: 8px 0 10px;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  display: block;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: #3D5070; }

.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--gold); }

.form-field input:-webkit-autofill {
  -webkit-text-fill-color: var(--white);
  -webkit-box-shadow: 0 0 0 1000px var(--navy) inset;
}

.form-field textarea { min-height: 100px; }

.req { color: var(--gold); }

.form-row-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.form-row-3 {
  display: grid;
  grid-template-columns: 100px 1fr 140px;
  gap: 24px;
}

/* Paket-Checkboxen */
.paket-option {
  border-top: 1px solid var(--border-navy);
  padding: 16px 0;
}

.paket-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.paket-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.paket-text span:first-child {
  font-size: 15px;
  color: var(--navy-item);
  line-height: 1.4;
}

.paket-sub {
  font-size: 12.5px;
  color: #8E9AB3;
  display: block;
}

/* Custom Checkbox */
.custom-check {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border: 1px solid #7C8CA8;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: background-color 0.15s ease, border-color 0.15s ease;
  border-radius: 0;
  display: block;
}

.custom-check input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 9'%3E%3Cpath d='M1 4.5l3 3 7-7' stroke='%231B2A4A' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 8px;
}

/* Modell-Radios */
.modell-section {
  padding-left: 33px;
  margin: 0 0 28px;
}

.modell-option {
  border-top: 1px solid var(--border-navy);
  padding: 12px 0;
  transition: opacity 0.2s ease;
}

.modell-option.modell-disabled {
  opacity: 0.42;
  pointer-events: none;
}

.modell-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.modell-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14.5px;
  color: var(--navy-item);
  line-height: 1.4;
}

.custom-radio {
  display: inline-flex;
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border: 1px solid #7C8CA8;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  transition: border-color 0.15s ease;
  display: block;
}

.custom-radio input[type="radio"]:checked {
  border-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 19 19'%3E%3Ccircle cx='9.5' cy='9.5' r='4.5' fill='%23C9A84C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Dynamischer Hinweistext */
.modell-hint {
  margin-top: 8px;
  padding: 10px 0 10px 14px;
  border-left: 2px solid #46587A;
  transition: border-color 0.2s ease;
}

.modell-hint.hint-active { border-left-color: var(--gold); }
.modell-hint.hint-error  { border-left-color: #E05252; }

.modell-hint p {
  font-size: 13.5px;
  color: #8E9AB3;
  line-height: 1.55;
}

/* DSGVO */
.dsgvo-wrap { margin-bottom: 36px; }

.dsgvo-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}

.dsgvo-text {
  font-size: 14px;
  color: var(--navy-muted);
  line-height: 1.6;
}

.dsgvo-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Absenden */
.form-submit {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-submit {
  background-color: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
  display: inline-block;
}

.btn-submit:hover { filter: brightness(1.08); }

.submit-hint {
  font-size: 13.5px;
  color: #8E9AB3;
}

/* Kleingedrucktes */
.form-legal {
  border-top: 1px solid var(--border-navy);
  padding-top: 24px;
}

.form-legal p {
  font-size: 12.5px;
  color: #7D8AA3;
  line-height: 1.7;
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
  tab-size: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 48px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.footer-names {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--navy);
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact a {
  font-size: 13.5px;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-contact a:hover { color: var(--navy); }

.footer-meta {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-meta a {
  color: var(--text-light);
  transition: color 0.2s ease;
}

.footer-meta a:hover { color: var(--navy); }

.footer-disclaimer {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 90ch;
}

/* =========================================================
   SCROLL-ANIMATION
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* ≤ 980px: Profile untereinander */
@media (max-width: 980px) {
  .profiles-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ≤ 900px: Ablauf 2-spaltig, Kontext untereinander */
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .process-step:nth-child(1),
  .process-step:nth-child(2) { padding-bottom: 32px; }

  .process-step:nth-child(3),
  .process-step:nth-child(4) { padding-top: 32px; }

  .context-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ≤ 860px: Pakete untereinander */
@media (max-width: 860px) {
  .packages-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ≤ 768px: Spectrum, Netzwerk, Adresszeilen */
@media (max-width: 768px) {
  .spectrum-cols { grid-template-columns: 1fr; }

  .spectrum-col { padding-right: 0; padding-bottom: 32px; }

  .spectrum-col + .spectrum-col {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-navy);
    padding-top: 32px;
  }

  .spectrum-col:last-child { padding-right: 0; }

  .network-grid { grid-template-columns: repeat(2, 1fr); }

  .form-row-2 { grid-template-columns: 1fr; }

  .form-row-3 { grid-template-columns: 80px 1fr; }

  .form-row-3 .form-field:last-child { grid-column: 1 / -1; }
}

/* ≤ 640px: Header-Nav ausblenden */
@media (max-width: 640px) {
  .header-nav { display: none; }
  .header-inner { gap: 0; }
}

/* ≤ 560px: Ablauf 1-spaltig */
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding-right: 0; }
}

/* ≤ 480px: Profile Portrait, Hero-Buttons */
@media (max-width: 480px) {
  .profile { flex-direction: column; }
  .profile-portrait { width: 100%; }
  .profile-portrait img { width: 100%; height: auto; max-height: 220px; }
  .network-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions a { width: 100%; text-align: center; display: block; }
  .footer-top { flex-direction: column; }
  .form-submit { flex-direction: column; align-items: flex-start; }
}

/* ≤ 360px */
@media (max-width: 360px) {
  :root { --container-px: 16px; }
}
