/* ============================================================
   INTERBRIDGE PARTNERS – pages.css
   Ergänzung zu style.css (wird NACH style.css geladen).
   style.css bleibt unverändert – hier stehen nur neue
   Komponenten für die Unterseiten sowie kleine Overrides.
   Farben & Schriften kommen aus style.css (:root).
   ============================================================ */

/* ---- Navigation: früher auf Burger umschalten,
        weil das Menü jetzt 7 Punkte hat ---- */
@media (max-width: 1279px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Sprachumschalter bleibt in der Kopfzeile sichtbar – im Burger-Menü
     versteckt findet ihn niemand. */
  .nav-lang {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 16px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }
  .nav-lang a { padding: 8px 6px; }
  .nav-lang a.active { border-bottom: 1.5px solid var(--gold); }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 78px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 40px;
    border-bottom: 1px solid rgba(184,149,42,0.15);
    box-shadow: 0 12px 30px rgba(26,39,68,0.08);
    gap: 20px;
    align-items: flex-start;
  }
  .nav-links.open .nav-lang-mobile { display: flex; }
}

.nav-links { gap: 26px; }
.nav-links a { font-size: 10.5px; letter-spacing: 0.11em; white-space: nowrap; }
.nav-links li { white-space: nowrap; }
.nav-logo img { height: 58px; }

/* Sprachumschalter im mobilen Menü */
.nav-lang-mobile {
  display: none;
  gap: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(184,149,42,0.15);
  width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.nav-lang-mobile a { color: var(--navy); padding: 3px 4px; }
.nav-lang-mobile a.active { color: var(--gold); }
.nav-lang-mobile span { color: rgba(26,39,68,0.3); }

/* ============================================================
   PAGE HERO (Unterseiten)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 168px 0 96px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(184,149,42,0.07)' stroke-width='1'%3E%3Ccircle cx='300' cy='300' r='100'/%3E%3Ccircle cx='300' cy='300' r='200'/%3E%3Ccircle cx='300' cy='300' r='300'/%3E%3C/g%3E%3C/svg%3E") no-repeat right -80px center;
  background-size: 620px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .section-label { color: var(--gold); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.14;
  color: var(--white);
  max-width: 860px;
}

.page-hero h1 .gold { color: var(--gold); font-style: italic; }

.page-hero .page-lead {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin-top: 26px;
}

.page-hero .gold-line { background: var(--gold); }

/* Buttons auf dunklem Grund */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: all 0.3s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(26,39,68,0.25);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 30px;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

/* ============================================================
   GENERISCHE SECTIONS
   ============================================================ */
.section        { padding: 96px 0; background: var(--white); }
.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); }
.section--tight { padding: 64px 0; }

.section--navy .section-title,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy p  { color: rgba(255,255,255,0.66); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}

.body-text {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 720px;
}

.body-text + .body-text { margin-top: 18px; }

.measure { max-width: 760px; }

/* Zwei Spalten Text */
.split {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.split--even { grid-template-columns: 1fr 1fr; gap: 64px; }

/* ============================================================
   LEISTUNGS-LISTEN
   ============================================================ */
.svc-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(184,149,42,0.14);
  margin-top: 48px;
}

.svc-group {
  background: var(--white);
  padding: 42px 38px;
}

.section--cream .svc-group { background: var(--white); }

.svc-group .num {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.tick-list { list-style: none; margin-top: 8px; }

.tick-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 10px;
}

.tick-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--gold);
}

.section--navy .tick-list li { color: rgba(255,255,255,0.66); }

/* ============================================================
   ZIELGRUPPEN / KARTEN
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(184,149,42,0.14);
  margin-top: 44px;
}

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

.card {
  background: var(--white);
  padding: 40px 34px;
  transition: background 0.3s;
}

.card:hover { background: var(--cream); }

.card .card-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.card .card-kicker {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 10px;
}

.card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

.card .btn-link { margin-top: 20px; }

/* Dunkle Variante */
.section--navy .card-grid { background: rgba(255,255,255,0.06); }
.section--navy .card { background: transparent; border: 1px solid rgba(184,149,42,0.12); }
.section--navy .card:hover { background: rgba(184,149,42,0.06); }
.section--navy .card .card-title { color: var(--white); }
.section--navy .card p { color: rgba(255,255,255,0.62); }

/* ============================================================
   PROZESS / ABLAUF
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  margin-top: 48px;
}

.step { position: relative; padding-top: 26px; border-top: 1px solid rgba(184,149,42,0.3); }

.step .step-num {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.step h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

.section--navy .step { border-top-color: rgba(184,149,42,0.35); }
.section--navy .step h4 { color: var(--white); }
.section--navy .step p { color: rgba(255,255,255,0.62); }

/* ============================================================
   HINWEIS- / DISCLAIMER-BOX
   ============================================================ */
.notice {
  border-left: 2px solid var(--gold);
  background: var(--cream);
  padding: 28px 32px;
  margin-top: 44px;
  max-width: 860px;
}

.section--cream .notice { background: var(--white); }

.notice .notice-title {
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
}

.notice p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.85;
}

.notice p + p { margin-top: 10px; }

.section--navy .notice {
  background: rgba(255,255,255,0.04);
  border-left-color: var(--gold);
}
.section--navy .notice .notice-title { color: var(--white); }
.section--navy .notice p { color: rgba(255,255,255,0.62); }

/* ============================================================
   CTA-BAND
   ============================================================ */
.cta-band {
  background: var(--navy);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 34px;
}

.cta-band .btn-row { justify-content: center; margin-top: 0; }

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 72px;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(26,39,68,0.18);
  padding: 13px 14px;
  transition: border-color 0.2s;
  width: 100%;
}

.field textarea { min-height: 150px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  grid-column: 1 / -1;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.form-consent input { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; }

.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 20px;
}

.form-status {
  padding: 16px 20px;
  border-left: 2px solid var(--gold);
  background: var(--cream);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.form-status--error { border-left-color: #a33; }

.contact-aside {
  background: var(--navy);
  padding: 44px 38px;
}

.contact-aside h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-aside p,
.contact-aside li {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.66);
  line-height: 1.85;
}

.contact-aside a { color: var(--gold); }
.contact-aside .gold-line { margin: 26px 0; background: rgba(184,149,42,0.5); }

.contact-aside .tick-list li { color: rgba(255,255,255,0.66); }

/* ============================================================
   RECHTSTEXTE (Impressum / Datenschutz)
   ============================================================ */
.legal { padding: 150px 0 96px; background: var(--white); }

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

.legal-body { max-width: 780px; margin-top: 36px; }

.legal-body h2 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 40px 0 14px;
}

.legal-body h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal-body p,
.legal-body li {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
}

.legal-body p + p { margin-top: 12px; }
.legal-body ul { margin: 12px 0 12px 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--gold); }
.legal-body .placeholder { color: #b04a2f; font-weight: 500; }

/* ============================================================
   FOOTER-ERWEITERUNG
   ============================================================ */
footer { padding: 56px 0 32px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 40px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 9px; }

.footer-col a,
.footer-col p {
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold); }

.footer-claim {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 24px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.85;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .split--even { grid-template-columns: 1fr; gap: 40px; }
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 132px 0 72px; }
  .section { padding: 68px 0; }
  .svc-groups, .card-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; padding: 0 24px; }
  .footer-disclaimer { padding: 24px 24px 0; }
  .legal { padding: 120px 0 72px; }
  .btn-row { gap: 12px; }
  .nav-logo img { height: 46px; }
  .nav-lang { margin-right: 10px; font-size: 10.5px; }
  .btn-primary, .btn-outline, .btn-outline-light { padding: 14px 24px; font-size: 10.5px; }
}
