/* =========================================================
   Taxi Hauptbahnhof Tübingen
   Nur seitenspezifische Gestaltung.
   Gemeinsame Basis: /assets/css/global.css
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --soft: #efefeb;
  --text: #f5f5f0;
  --dark: #141414;
  --darkText: #141414;
  --muted: #b7b7ae;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(0,0,0,.12);
  --brand: #ffd60a;
  --brand-2: #e8c000;
  --radius: 28px;
  --container: 1240px;
  --shadow: 0 24px 80px rgba(0,0,0,.14);
}

/* Aktive Seite im gemeinsamen Header */
.nav-links a[aria-current="page"] {
  color: var(--brand);
}

/* Breadcrumb dieser Unterseite */
.breadcrumb {
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.breadcrumb .container {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7b7ae;
  font-size: .84rem;
}

.breadcrumb a {
  color: #fff;
}

.breadcrumb a:hover,
.breadcrumb .current {
  color: var(--brand);
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg,rgba(0,0,0,.90) 0%,rgba(0,0,0,.62) 48%,rgba(0,0,0,.25) 100%),
    url('/images/DSC04122.jpg') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,transparent 62%,rgba(0,0,0,.42));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 100px 0 86px;
  max-width: 900px;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: .9rem;
  font-weight: 650;
  letter-spacing: .04em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem,6vw,6.2rem);
  line-height: .96;
  font-weight: 650;
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.08rem,1.6vw,1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Seiten-Buttons ergänzen die globale Button-Basis */
.hero-actions .btn,
.final-actions .btn,
.faq-link-card .btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 750;
}

.hero-actions .btn-secondary {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.34);
  color: #fff;
}

/* Intro */
.intro {
  padding: 100px 0;
  background: var(--soft);
  color: var(--dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
}

.intro-copy,
.facts {
  border-radius: var(--radius);
  padding: clamp(30px,5vw,64px);
}

.intro-copy {
  background: #fff;
  border: 1px solid var(--line-dark);
}

.intro .kicker,
.process .kicker {
  margin-bottom: 18px;
  color: #756300;
  font-weight: 700;
  font-size: .88rem;
}

.intro h2,
.section-head h2,
.faq-link-card h2,
.final h2,
.process-card h2 {
  letter-spacing: -.045em;
  font-size: clamp(2.2rem,4.6vw,4.8rem);
  line-height: .98;
  font-weight: 650;
}

.intro-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #383834;
  font-size: 1.08rem;
}

.facts {
  display: grid;
  align-content: center;
  gap: 12px;
  background: #101010;
  color: #fff;
}

.fact {
  padding: 19px 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
}

.fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
}

.fact span {
  color: rgba(255,255,255,.72);
  font-size: .94rem;
}

/* Anschlussfahrten */
.services {
  padding: 105px 0;
  background: #090909;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-head h2 {
  max-width: 13ch;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
  display: flex;
  flex-direction: column;
}

.service-card .number {
  color: var(--brand);
  font-size: .8rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 34px;
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: -.045em;
}

.service-card p {
  margin: 14px 0 22px;
  color: rgba(255,255,255,.68);
}

.service-card a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 750;
}

/* Ablauf */
.process {
  padding: 100px 0;
  background: var(--soft);
  color: var(--dark);
}

.process-card {
  padding: clamp(30px,6vw,72px);
  border: 1px solid var(--line-dark);
  border-radius: 34px;
  background: #fff;
}

.process-card h2 {
  max-width: 14ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 34px;
}

.step {
  display: flex;
  gap: 15px;
  padding: 21px;
  border: 1px solid var(--line-dark);
  border-radius: 21px;
  background: #f3f3ef;
}

.step > span {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: var(--brand);
  font-weight: 800;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.step p {
  margin: 6px 0 0;
  color: #555;
  font-size: .92rem;
}

/* FAQ-Verweis */
.faq-link-section {
  padding: 90px 0;
  background: #0a0a0a;
}

.faq-link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(28px,5vw,54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
}

.faq-link-card .eyebrow {
  color: var(--brand);
}

.faq-link-card h2 {
  max-width: 11ch;
  font-size: clamp(2rem,4vw,3.8rem);
}

.faq-link-card p {
  max-width: 580px;
  margin: 16px 0 0;
  color: var(--muted);
}

/* Passende Seiten */
.related {
  padding: 95px 0;
  background: #090909;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 30px;
}

.related-link {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.035);
}

.related-link strong {
  display: block;
}

.related-link small {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.58);
}

.related-link:hover {
  border-color: rgba(255,214,10,.48);
}

/* Abschluss-CTA */
.final {
  padding: 115px 0;
  background: var(--brand);
  color: #000;
  text-align: center;
}

.final h2 {
  max-width: 13ch;
  margin: 0 auto;
}

.final p {
  max-width: 650px;
  margin: 22px auto 0;
  color: #3c3300;
  font-size: 1.05rem;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.final .btn-primary {
  background: #000;
  color: #fff;
  box-shadow: none;
}

.final .btn-secondary {
  border-color: rgba(0,0,0,.35);
  background: rgba(255,255,255,.25);
  color: #000;
}

/* Responsive */
@media (max-width:1050px) {
  .intro-grid,
  .service-grid,
  .steps,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .faq-link-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width:700px) {
  .container {
    width: min(calc(100% - 28px),var(--container));
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.8rem,14vw,4.6rem);
  }

  .hero-actions,
  .final-actions {
    display: grid;
  }

  .hero-actions .btn,
  .final-actions .btn,
  .faq-link-card .btn {
    width: 100%;
  }

  .intro,
  .services,
  .process,
  .faq-link-section,
  .related {
    padding: 72px 0;
  }

  .final {
    padding: 86px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn,
  .final-actions .btn,
  .faq-link-card .btn,
  .service-card,
  .related-link {
    transition: none !important;
  }
}
