/* =========================================================
   MUSTANG SHELBY GT500 SVT — VERMIETUNG
   Aesthetic: Dark Cinematic Racing · Carbon · Shelby Blau/Rot
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Variables ---------- */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --bg-card: #161616;
  --bg-elevated: #1c1c1c;

  --text: #f5f5f5;
  --text-muted: #9a9a9a;
  --text-dim: #6b6b6b;

  --accent: #c8102e;            /* Shelby-Rot / Racing-Rot */
  --accent-glow: rgba(200, 16, 46, 0.4);
  --shelby-blue: #003478;       /* Klassisches Shelby-Blau */
  --gold: #d4a04a;              /* Akzent-Gold für Premium-Touch */

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);

  --font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --font-condensed: 'Oswald', sans-serif;
  --font-body: 'Inter Tight', -apple-system, sans-serif;

  --container: 1280px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
}

/* ---------- Selection ---------- */
::selection { background: var(--accent); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  z-index: 9999;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; }

/* ---------- Background Effects ---------- */
.bg-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  position: relative;
  z-index: 2;
}
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}
.hide-mobile { display: inline; }
@media (max-width: 700px) { .hide-mobile { display: none; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}
.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.section-title .accent {
  color: var(--accent);
  font-style: italic;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}
.section-head { margin-bottom: clamp(2rem, 5vw, 4rem); }
.section-head-center { text-align: center; }
.section-head-center .section-tag { padding-left: 0; padding-top: 1.5rem; }
.section-head-center .section-tag::before {
  left: 50%; top: 0; transform: translateX(-50%);
  width: 1px; height: 1rem;
}
.section-sub {
  margin-top: 1rem;
  color: var(--text-muted);
}
.section-sub a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}
.section-sub a:hover { border-color: var(--accent); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
strong { color: var(--text); font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.5);
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: var(--bg-card);
  border-color: var(--text);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all var(--transition);
  backdrop-filter: blur(0px);
}
.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
}
.logo-cobra {
  width: 42px;
  height: 28px;
  color: var(--accent);
  transition: transform var(--transition);
}
.logo:hover .logo-cobra { transform: scale(1.1) rotate(-5deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line-1 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.logo-line-2 {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-desktop { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}
.nav-desktop a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-desktop a:not(.btn):hover { color: var(--text); }
.nav-desktop a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile.open { opacity: 1; pointer-events: auto; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-mobile a.btn {
  font-size: 1rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.55) saturate(1.05) contrast(1.05);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 52, 120, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(5,5,5,0.85) 100%);
}
.hero-stripes {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%) skewX(-20deg);
  width: 320px;
  height: 80%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(200, 16, 46, 0.08) 80px,
      rgba(200, 16, 46, 0.08) 100px,
      transparent 100px,
      transparent 110px,
      rgba(200, 16, 46, 0.04) 110px,
      rgba(200, 16, 46, 0.04) 130px
    );
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow { margin-bottom: 1.5rem; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 50px;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}
.hero-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-line-sm {
  font-family: var(--font-condensed);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  padding-left: 0.4em;
}
.hero-line-xl {
  font-size: clamp(4.5rem, 16vw, 12rem);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero-line-lg {
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: 0.02em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  flex-wrap: wrap;
}
.hero-svt {
  font-size: 0.5em;
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
  background: transparent;
  padding: 0.05em 0.3em;
  border: 2px solid var(--accent);
  letter-spacing: 0.1em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-strong);
}
@media (max-width: 600px) {
  .stat-divider { height: 1px; width: 50px; }
  .hero-stats { flex-direction: row; gap: 2rem; }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent, var(--text-dim));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--accent);
  animation: scrollDown 2.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}
@media (max-width: 700px) { .hero-scroll { display: none; } }

/* Page-Load-Animationen */
.hero-pill,
.hero-line-sm,
.hero-line-xl,
.hero-line-lg,
.hero-subtitle,
.hero-stats,
.hero-cta {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-pill { animation-delay: 0.1s; }
.hero-line-sm { animation-delay: 0.2s; }
.hero-line-xl { animation-delay: 0.3s; }
.hero-line-lg { animation-delay: 0.45s; }
.hero-subtitle { animation-delay: 0.7s; }
.hero-stats { animation-delay: 0.85s; }
.hero-cta { animation-delay: 1s; }
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   INTRO / FAHRZEUG
   ========================================================= */
.section-intro {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
}
.intro-text p { color: var(--text-muted); margin-bottom: 1.25rem; }

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 600px) {
  .feature-list { grid-template-columns: 1fr; }
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(200, 16, 46, 0.05);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature h3 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.intro-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-photo {
  width: 100%;
  max-width: 580px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,0.6),
    0 0 0 1px rgba(200, 16, 46, 0.08);
}
.intro-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
  pointer-events: none;
}
.intro-photo::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  z-index: 3;
  pointer-events: none;
}
.intro-photo picture,
.intro-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.intro-photo img {
  transition: transform 0.8s ease;
}
.intro-photo:hover img {
  transform: scale(1.04);
}
.intro-photo-meta {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* =========================================================
   SPECS
   ========================================================= */
.section-specs {
  background: var(--bg-alt);
  position: relative;
}
.section-specs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 16, 46, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(0, 52, 120, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) { .specs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .specs-grid { grid-template-columns: 1fr; } }

.spec-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s ease;
}
.spec-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}
.spec-card:hover::before { width: 100%; }
.spec-card-featured {
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.08) 0%, transparent 50%),
    var(--bg-card);
  border-color: rgba(200, 16, 46, 0.3);
}
.spec-card-featured .spec-value { color: var(--accent); }

.spec-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.spec-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  margin-bottom: 1rem;
}
.spec-value small {
  font-size: 0.35em;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.spec-bar {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.spec-bar-fill {
  height: 100%;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--accent), #ff4060);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.spec-card.in-view .spec-bar-fill { transform: scaleX(1); }
.spec-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.specs-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--accent);
  display: block;
  opacity: 0.3;
}
.specs-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--text);
  font-style: italic;
}

/* =========================================================
   GALERIE
   ========================================================= */
.section-gallery {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item-1 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(160px, 1fr);
  }
  .gallery-item-1 { grid-column: span 2; grid-row: auto; min-height: 280px; }
}
.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.gallery-item:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.gallery-item picture,
.gallery-item picture img {
  width: 100%;
  height: 100%;
  display: block;
}
.gallery-item picture img {
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.92) saturate(1.05);
}
.gallery-item:hover picture img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.15);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity var(--transition);
}
.gallery-item:hover::after {
  opacity: 0.3;
}
.gallery-cta {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent), #8a0a1f);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.gallery-item:has(.gallery-cta)::after {
  display: none;
}
.gallery-cta:hover {
  background: linear-gradient(135deg, #e0142f, var(--accent));
  transform: scale(1.02);
}
.gallery-cta-sub {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  opacity: 0.85;
}

/* =========================================================
   KONTAKT
   ========================================================= */
.section-contact {
  background: linear-gradient(180deg, var(--bg) 0%, #050505 100%);
  position: relative;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--accent));
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
.contact-info .lead { margin-bottom: 2.5rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-method:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  transform: translateX(4px);
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 16, 46, 0.1);
  border-radius: var(--radius);
  color: var(--accent);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-value {
  font-weight: 500;
  color: var(--text);
  word-break: break-word;
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.form-row { margin-bottom: 1.25rem; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 500px) {
  .form-row-2 { grid-template-columns: 1fr; }
}
.form-row label {
  display: block;
}
.form-row label > span:first-child {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  color: var(--text);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}
.form-row textarea { resize: vertical; min-height: 120px; }

.form-consent {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 2px;
}
.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.5em;
}
.form-status.success { color: #4ade80; }
.form-status.error { color: #ef4444; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 320px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 460px;
  z-index: 200;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(20px);
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner[hidden] { display: none; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-content h3 {
  font-family: var(--font-condensed);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.cookie-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.cookie-content a {
  color: var(--accent);
  text-decoration: underline;
}
.cookie-actions { display: flex; gap: 0.5rem; }

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header, .nav-mobile, .hero-scroll, .cookie-banner, .contact-form { display: none; }
  body { background: white; color: black; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =========================================================
   ACCESSIBILITY UTILITIES (für SEO + Screenreader)
   ========================================================= */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
   USE CASES / ANLÄSSE
   ========================================================= */
.section-usecases {
  background: var(--bg-alt);
  position: relative;
}
.section-usecases::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.usecase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.usecase::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transition: width 0.5s ease;
}
.usecase:hover {
  border-color: rgba(200, 16, 46, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
}
.usecase:hover::before {
  width: 100%;
}
.usecase-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.15), rgba(200, 16, 46, 0.05));
  border: 1px solid rgba(200, 16, 46, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.usecase-icon svg {
  width: 22px;
  height: 22px;
}
.usecase h3 {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.usecase p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.section-faq {
  background: var(--bg);
  position: relative;
}
.faq-list {
  max-width: 820px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item:hover {
  border-color: rgba(200, 16, 46, 0.3);
}
.faq-item[open] {
  border-color: rgba(200, 16, 46, 0.4);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(200, 16, 46, 0.03) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary:hover {
  background: rgba(255,255,255,0.02);
}
.faq-q {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  flex: 1;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.3);
  position: relative;
  transition: all var(--transition);
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--accent);
  transition: transform var(--transition);
}
.faq-toggle::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item[open] .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item[open] .faq-toggle::before {
  background: #fff;
}
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
  background: #fff;
}
.faq-a {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  animation: faqSlide 0.3s ease;
}
.faq-a p {
  margin: 0;
}
.faq-a a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.faq-a a:hover {
  color: #e0142f;
}
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .faq-item summary {
    padding: 1rem 1.1rem;
  }
  .faq-q {
    font-size: 0.95rem;
  }
  .faq-a {
    padding: 0 1.1rem 1.2rem;
    font-size: 0.9rem;
  }
  .usecase {
    padding: 1.5rem;
  }
}

/* =========================================================
   PRICING / PREISE
   ========================================================= */
.section-pricing {
  background: var(--bg);
  position: relative;
}
.section-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(200, 16, 46, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(0, 52, 120, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background 0.4s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
}
.pricing-card:hover::before {
  background: linear-gradient(90deg, var(--accent), transparent);
}
.pricing-card-featured {
  border-color: rgba(200, 16, 46, 0.4);
  background:
    linear-gradient(180deg, rgba(200, 16, 46, 0.04) 0%, transparent 50%),
    var(--bg-card);
  transform: scale(1.03);
  box-shadow: 0 20px 40px -20px rgba(200, 16, 46, 0.2);
}
.pricing-card-featured::before {
  background: linear-gradient(90deg, var(--accent), #8a0a1f);
  height: 4px;
}
.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-6px);
}
@media (max-width: 980px) {
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-6px); }
}
.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  z-index: 2;
}
.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.pricing-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.pricing-days {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.pricing-currency {
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.pricing-value {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.pricing-card-featured .pricing-value {
  color: var(--accent);
}
.pricing-period {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}
.pricing-amount-custom {
  margin-bottom: 1.75rem;
}
.pricing-custom-text {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text);
  letter-spacing: 0.02em;
  font-style: italic;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing-features svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}
.btn-pricing {
  width: 100%;
  justify-content: center;
}
.pricing-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .pricing-info { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
}
.pricing-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pricing-info-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.15rem;
}
.pricing-info-item strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.pricing-info-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.pricing-note p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}
.pricing-note a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-note a:hover { color: var(--accent); }

/* =========================================================
   DISCOUNT CODE FIELD
   ========================================================= */
.form-row-discount label {
  display: flex;
  flex-direction: column;
}
.discount-input-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.discount-input-wrap input {
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-condensed);
  font-weight: 500;
}
.discount-check-btn {
  padding: 0 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.discount-check-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.discount-check-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.discount-status {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  min-height: 1.2em;
  font-family: var(--font-condensed);
  letter-spacing: 0.02em;
}
.discount-status.is-valid {
  color: #4ade80;
}
.discount-status.is-invalid {
  color: var(--accent);
}
.discount-status.is-checking {
  color: var(--text-muted);
}
