/* ============================================================
   FÖRTIG GbR – Design System
   GTÜ Corporate Design konform (Leitfaden VP, Stand 05/2022)
   ============================================================ */

/* ── Font Faces ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Mark Pro';
  src: url('../assets/fonts/MarkPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Mark Pro';
  src: url('../assets/fonts/MarkPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Custom Properties (Design Tokens) ──────────────────── */
:root {
  /* GTÜ Primärfarben */
  --gtue-brand-red: #DA1F3D;
  --gtue-brand-red-hover: #c41a35;
  --gtue-brand-red-light: rgba(218, 31, 61, 0.08);
  --gtue-brand-grey: #C2C4C6;
  --gtue-white: #FFFFFF;
  
  /* GTÜ Sekundärfarben (Grautöne) */
  --gtue-grey-80: #555555;
  --gtue-grey-60: #888888;
  --gtue-grey-20: #DADBDD;
  --gtue-grey-10: #F2F2F2;
  
  /* GTÜ Sonderfarben */
  --gtue-stoerer-blau: #037DB2;
  
  /* Förtig-eigene Ergänzungsfarben */
  --foertig-dunkelrot: #8B1A1A;
  --foertig-dunkelrot-hover: #701515;
  --dark-bg: #1A1A2E;
  --dark-bg-lighter: #232340;
  --warm-accent: #D4A853;
  --warm-accent-hover: #c49a45;
  
  /* Semantische Farben */
  --color-text: #333333;
  --color-text-light: #666666;
  --color-text-inverted: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: var(--gtue-grey-10);
  --color-border: var(--gtue-grey-20);
  --color-success: #2E7D32;
  
  /* Typografie */
  --font-primary: 'Mark Pro', 'Inter', Arial, Helvetica, sans-serif;
  --font-display: 'Mark Pro', 'Inter', Arial, Helvetica, sans-serif;
  
  /* Font Sizes (fluid) */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --fs-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --fs-3xl: clamp(1.875rem, 1.4rem + 2.5vw, 2.75rem);
  --fs-4xl: clamp(2.25rem, 1.6rem + 3.25vw, 3.5rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Layout */
  --max-width: 1320px;
  --max-width-narrow: 800px;
  --header-height: 80px;
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gtue-brand-red);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--gtue-brand-red-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--gtue-grey-80);
  /* Verhindert horizontales Scrollen/Layout-Zerstörung durch extrem lange Wörter am Handy */
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p {
  margin-bottom: var(--space-md);
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--dark-bg);
  color: var(--color-text-inverted);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inverted);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section__subtitle {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gtue-brand-red);
  margin-bottom: var(--space-sm);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text-light);
  font-size: var(--fs-lg);
}

/* ── Header & Navigation ────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gtue-grey-20);
  height: var(--header-height);
  transition: box-shadow var(--transition-base);
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__logo-separator {
  width: 1px;
  height: 32px;
  background: var(--gtue-grey-20);
}

.header__logo-gtue img {
  height: 36px;
  width: auto;
}

/* Desktop Nav */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gtue-grey-80);
  padding: var(--space-sm) 0;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gtue-brand-red);
  transition: width var(--transition-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--gtue-brand-red);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--gtue-brand-red);
  color: var(--gtue-white) !important;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--border-radius);
  font-size: var(--fs-sm);
  font-weight: 700;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav__cta:hover {
  background: var(--gtue-brand-red-hover);
  color: var(--gtue-white) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--gtue-grey-80);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.menu-toggle--active .menu-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle--active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle--active .menu-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  padding: 85px var(--space-lg) var(--space-xl);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.mobile-nav--open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__link {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gtue-grey-80);
  transition: color var(--transition-fast);
}

.mobile-nav__link:hover {
  color: var(--gtue-brand-red);
}

.mobile-nav__cta {
  margin-top: var(--space-sm);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--fs-base);
  padding: 0.875em 1.75em;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
}

.btn--primary:hover {
  background: var(--gtue-brand-red-hover);
  color: var(--gtue-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 31, 61, 0.3);
}

.btn--secondary {
  background: var(--dark-bg);
  color: var(--gtue-white);
}

.btn--secondary:hover {
  background: var(--dark-bg-lighter);
  color: var(--gtue-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--gtue-brand-red);
  border: 2px solid var(--gtue-brand-red);
}

.btn--outline:hover {
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--gtue-white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: var(--gtue-white);
  color: var(--gtue-brand-red);
  transform: translateY(-2px);
}

.btn--lg {
  font-size: var(--fs-lg);
  padding: 1em 2em;
  border-radius: var(--border-radius-lg);
}

.btn--sm {
  font-size: var(--fs-sm);
  padding: 0.625em 1.25em;
}

.btn--icon {
  font-size: 1.2em;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(26, 26, 46, 0.6) 50%,
    rgba(26, 26, 46, 0.3) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-text-inverted);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 100px;
  font-size: var(--fs-sm);
  font-weight: 700;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__badge-icon {
  width: 28px;
  height: 28px;
}

.hero__title {
  font-size: var(--fs-4xl);
  font-weight: 700;
  color: var(--color-text-inverted);
  margin-bottom: var(--space-lg);
  max-width: 850px;
}

.hero__title span {
  color: var(--gtue-brand-red);
}

.hero__subtitle {
  font-size: var(--fs-xl);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.8);
}

.hero__trust-icon {
  font-size: 1.5em;
}

.hero__trust-value {
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--gtue-white);
}

/* ── Cards ──────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
}

.card {
  background: var(--gtue-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--gtue-grey-20);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

.card__icon--red {
  background: var(--gtue-brand-red-light);
  color: var(--gtue-brand-red);
}

.card__icon--dark {
  background: rgba(26, 26, 46, 0.08);
  color: var(--dark-bg);
}

.card__icon--gold {
  background: rgba(212, 168, 83, 0.12);
  color: var(--warm-accent);
}

.card__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--gtue-grey-80);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.card__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  flex-grow: 1;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--gtue-brand-red);
}

.card__link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.card__link:hover::after {
  transform: translateX(4px);
}

/* ── USP Items ──────────────────────────────────────────────── */
.usps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
}

.usp {
  text-align: center;
  padding: var(--space-xl);
}

.usp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gtue-brand-red);
  color: #fff;
  margin: 0 auto var(--space-md);
}

.usp__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.usp__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.review {
  background: var(--gtue-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--gtue-grey-20);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.review__body {
  padding: var(--space-xl);
}

.review__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--warm-accent);
  font-size: 1.1rem;
}

.review__text {
  font-size: var(--fs-sm);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.review__author {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--gtue-grey-80);
}

.review__source {
  font-size: var(--fs-xs);
  color: var(--gtue-grey-60);
}

/* ── Location Teaser ────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.location__map {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  border: 0;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.location__detail-icon {
  font-size: 1.5rem;
  color: var(--gtue-brand-red);
  flex-shrink: 0;
  margin-top: 2px;
}

.location__detail h4 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.location__detail p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

.location__detail a {
  font-weight: 700;
  font-size: var(--fs-lg);
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand p {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer__heading {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gtue-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--gtue-white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-xs);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal a:hover {
  color: var(--gtue-white);
}

/* ── GTÜ Aufzählungszeichen ("+" in Brand-Red) ──────────────── */
.gtue-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.gtue-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--fs-base);
}

.gtue-list li::before {
  content: '+';
  font-weight: 700;
  color: var(--gtue-brand-red);
  font-size: 1.2em;
  flex-shrink: 0;
  line-height: 1.5;
}

/* ── Price Table ────────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-table th {
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-sm);
}

.price-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--gtue-grey-20);
  font-size: var(--fs-sm);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:nth-child(even) {
  background: var(--gtue-grey-10);
}

.price-table .price {
  font-weight: 700;
  color: var(--gtue-grey-80);
  font-size: var(--fs-base);
  white-space: nowrap;
}

/* ── Scroll Indicator ───────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-xs);
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Page Hero (Subpages) ──────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-height);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.88) 0%,
    rgba(26, 26, 46, 0.65) 50%,
    rgba(26, 26, 46, 0.4) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--space-lg);
  color: var(--color-text-inverted);
}

.page-hero__title {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--color-text-inverted);
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.page-hero__title span {
  color: var(--gtue-brand-red);
}

.page-hero__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-2xl);
  max-width: 550px;
  line-height: 1.5;
}

/* ── Steps (Ablauf) ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  counter-reset: step;
}

.step {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  font-weight: 700;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(218, 31, 61, 0.25);
}

.step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gtue-brand-red-light);
  color: var(--gtue-brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: background var(--transition-base), transform var(--transition-base);
}

.step:hover .step__icon {
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
  transform: scale(1.08);
}

.step:hover .step__icon svg {
  stroke: var(--gtue-white);
}

.step__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--gtue-grey-80);
}

.step__text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ── Price Cards ───────────────────────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.price-card {
  background: var(--gtue-white);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid var(--gtue-grey-20);
  text-align: center;
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card--featured {
  border: 2px solid var(--gtue-brand-red);
  background: linear-gradient(180deg, rgba(218, 31, 61, 0.03) 0%, var(--gtue-white) 100%);
  transform: scale(1.03);
}

.price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gtue-brand-red);
  color: var(--gtue-white);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--gtue-grey-20);
}

.price-card--featured .price-card__header {
  border-bottom-color: rgba(218, 31, 61, 0.15);
}

.price-card__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gtue-grey-80);
}

.price-card--featured .price-card__title {
  color: var(--gtue-brand-red);
}

.price-card__body {
  margin-bottom: var(--space-xl);
}

.price-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: 2px;
}

.price-card__price--secondary {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px dashed var(--gtue-grey-20);
}

.price-card__from {
  font-size: var(--fs-sm);
  color: var(--gtue-grey-60);
  font-weight: 400;
}

.price-card__amount {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--gtue-grey-80);
  line-height: 1;
}

.price-card--featured .price-card__amount {
  color: var(--gtue-brand-red);
}

.price-card__amount--secondary {
  font-size: var(--fs-2xl);
  color: var(--gtue-grey-80);
}

.price-card__detail {
  font-size: var(--fs-sm);
  color: var(--gtue-grey-60);
  margin-bottom: 0;
}

.price-card__cta {
  width: 100%;
}

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq {
  background: var(--gtue-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--gtue-grey-20);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq:hover {
  box-shadow: var(--shadow-sm);
}

.faq[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--gtue-brand-red);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--gtue-grey-80);
  list-style: none;
  transition: color var(--transition-fast);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question:hover {
  color: var(--gtue-brand-red);
}

.faq__icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gtue-brand-red);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq[open] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 var(--space-xl) var(--space-xl);
}

.faq__answer p {
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ── FAQ Minimal Style ─────────────────────────────────────── */
.faq-list--minimal {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gtue-grey-20);
}

.faq-item:first-child {
  border-top: 1px solid var(--gtue-grey-20);
}

.faq-item__q {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-sm);
  cursor: pointer;
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--gtue-grey-80);
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q:hover {
  color: var(--gtue-brand-red);
}

.faq-item__q svg {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

details[open] .faq-item__q svg {
  transform: rotate(180deg);
}

.faq-item__a {
  padding: 0 var(--space-sm) var(--space-lg) calc(20px + var(--space-md));
  font-size: var(--fs-sm);
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 768px) {
  .nav {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero__title {
    font-size: var(--fs-3xl);
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero__trust {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .location__map {
    height: 300px;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .price-grid,
  .price-grid[style] {
    grid-template-columns: 1fr !important;
    max-width: 360px;
    margin: 0 auto;
  }

  .price-card--featured {
    transform: scale(1);
  }

  .price-card--featured:hover {
    transform: translateY(-4px);
  }

  .page-hero__title {
    font-size: var(--fs-2xl);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


