/* Footer Logo Bar */
.footer-logo-bar {
  width: 100vw;
  background: #0a0a0c;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 0 36px 0;
  margin: 0;
}

.footer-logo-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 38px;
  font-weight: 800;
  color: var(--txt);
}

.footer-logo-inner .brand-badge {
  width: 48px;
  height: 48px;
  font-size: 2.2em;
  border-radius: 14px;
  background: #202024;
  display: inline-grid;
  place-items: center;
}

.footer-logo-inner .brand-text {
  font-size: 1.2em;
  font-weight: 800;
  letter-spacing: 0.04em;
}

:root {
  --bg: #0b0b0c;
  --panel: #131315;
  --muted: #8c8d92;
  --txt: #f5f6f7;
  --white: #ffffff;
  --brand: #ffffff;
  --pill: #1b1b1e;
  --shadow: 0 10px 30px rgba(0, 0, 0, .4);
  --radius: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.5;
}

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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.1s
}

.stagger-2 {
  transition-delay: 0.2s
}

.stagger-3 {
  transition-delay: 0.3s
}

.stagger-4 {
  transition-delay: 0.4s
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px
}

.small {
  font-size: 14px;
  color: var(--muted)
}

.center {
  text-align: center
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
  backdrop-filter: none;
}

.site-header.scrolled {
  background: #fff !important;
  backdrop-filter: none !important;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

/* Wenn gescrollt, dunkle Farbe */
.site-header.scrolled .nav-links a {
  color: #555;
}

.site-header.scrolled .nav-links a:hover {
  color: #000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px
}

.brand {
  color: var(--txt);
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0
}

.brand img {
  height: 47px;
  width: auto
}

.brand-badge {
  display: inline-grid;
  place-items: center;
  background: #202024;
  border-radius: 10px;
  width: 28px;
  height: 28px;
  font-weight: 800
}

.nav-links {
  display: flex;
  gap: 28px
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap
}

.nav-links a:hover {
  color: var(--txt)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

.socials {
  display: flex;
  gap: 10px
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #1b1b1e;
  color: #c9c9cf;
  text-decoration: none;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: #25252a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-white {
  background: var(--white);
  color: #111
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.btn-ghost {
  background: #1b1b1e;
  color: #e6e6ea
}

.btn-ghost:hover {
  background: #25252a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

/* Button im gescrollten Zustand */
.site-header.scrolled .btn-white {
  background: #111;
  color: #fff;
}

.site-header.scrolled .btn-white:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .burger-menu span {
  background: #0a0a0c;
}

/* Burger Menu */
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 60;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  position: relative;
}

.burger-menu span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  left: 8px;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.burger-menu span:nth-child(1) {
  top: 11px;
}

.burger-menu span:nth-child(2) {
  top: 19px;
}

.burger-menu span:nth-child(3) {
  top: 27px;
}

.burger-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(20px);
  z-index: 55;
  overflow-y: auto;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  display: block;
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  color: var(--txt);
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e22;
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--white);
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1e1e22;
}

.mobile-nav-socials .icon-btn {
  width: 48px;
  height: 48px;
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
  height: 52px;
  font-size: 16px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url('images/Allgemein/hero-background.jpg') center/cover no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  animation: zoomIn 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* Premium Gradient Overlay for better legibility */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(10, 10, 12, 0.9) 0%,
      rgba(10, 10, 12, 0.6) 30%,
      rgba(10, 10, 12, 0.2) 60%,
      transparent 100%);
  z-index: 1;
}

@keyframes zoomIn {
  from {
    transform: scale(1.15);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 0.7;
    /* Image itself slightly dimmed */
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 320px 0 60px 50px;
  text-align: left;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s both;
  width: 100%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s both;
}

.hero-title {
  font-size: clamp(32px, 8vw, 88px);
  font-weight: 300;
  /* Lighter weight for the base text */
  line-height: 0.95;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  color: #ffffff;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.6s both;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  font-weight: 800;
  /* Extra bold for the highlighted words */
  display: inline-block;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin-bottom: 40px;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn {
  padding: 0 32px;
  height: 54px;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.hero .btn-white {
  background: #ffffff;
  color: #000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.hero .btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.25);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px);
}

/* Sections */
.section {
  padding: 72px 0
}

.section-title {
  font-size: 36px;
  margin: 0 0 26px
}

#cars .center {
  margin-top: 28px
}

/* Car grid */
.car-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px
}

.car-card {
  position: relative;
  background: #121214;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.car-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.car-card .media {
  aspect-ratio: 16/9;
  background: #222 url('') center/cover no-repeat;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.car-card:hover .media {
  transform: scale(1.08);
}

.car-card .content {
  padding: 16px 18px 18px;
  transition: background 0.3s ease;
}

.car-card:hover .content {
  background: rgba(255, 255, 255, 0.02);
}

.car-card .title {
  font-weight: 700;
  margin: 0 0 4px;
  font-size: 18px;
  transition: color 0.3s ease
}

.car-card:hover .title {
  color: var(--white)
}

.car-card .price {
  color: var(--muted);
  font-size: 14px
}

.learn {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: #bcbcc2;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.car-card:hover .learn {
  opacity: 1;
  transform: translateX(0);
}

.pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.pill span {
  background: var(--pill);
  color: #e5e5ea;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.car-card:hover .pill span {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Terms */
.terms {
  background: #0e0e10
}

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: start
}

.terms-intro p {
  color: var(--muted);
  max-width: 560px
}

.advisor {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
  transition: transform 0.3s ease;
}

.advisor:hover {
  transform: translateX(5px);
}

.advisor img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.advisor:hover img {
  transform: scale(1.1);
}

.advisor-name {
  font-weight: 800
}

.advisor-role {
  color: var(--muted);
  font-size: 14px
}

.terms-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.term-card {
  background: #111114;
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    8px 8px 16px rgba(0, 0, 0, 0.4),
    -4px -4px 12px rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 200px;
}

.term-card:hover {
  transform: translateY(-5px);
  box-shadow:
    12px 12px 24px rgba(0, 0, 0, 0.5),
    -6px -6px 16px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.term-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3),
    inset -4px -4px 8px rgba(255, 255, 255, 0.02);
}

/* 1. Age Visual (Dial) */
.visual-dial {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  position: relative;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3),
    -2px -2px 6px rgba(255, 255, 255, 0.02);
}

.visual-dial::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transform-origin: 0% 50%;
  /* Pivot exactly at the start of the line */
  transform: translateY(-50%) rotate(-90deg);
  animation: rotateDial 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Center Dot */
.visual-dial::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes rotateDial {
  0% {
    transform: translateY(-50%) rotate(-90deg);
  }

  20% {
    transform: translateY(-50%) rotate(45deg);
  }

  45% {
    transform: translateY(-50%) rotate(20deg);
  }

  70% {
    transform: translateY(-50%) rotate(160deg);
  }

  100% {
    transform: translateY(-50%) rotate(-90deg);
  }
}

/* 2. Docs Visual (Sliding Cards) */
.visual-docs {
  position: relative;
  width: 40px;
  height: 50px;
}

.visual-docs span {
  position: absolute;
  width: 30px;
  height: 40px;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.visual-docs span:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 2;
  animation: slideDoc1 3s ease-in-out infinite;
}

.visual-docs span:nth-child(2) {
  top: 10px;
  left: 10px;
  opacity: 0.5;
  animation: slideDoc2 3s ease-in-out infinite;
}

@keyframes slideDoc1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(5px, 5px);
  }
}

@keyframes slideDoc2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-5px, -5px);
  }
}

/* 3. Bars Visual (Pulsing Bars) */
.visual-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 40px;
}

.visual-bars span {
  width: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.visual-bars span:nth-child(1) {
  height: 40%;
  animation: pulseBar 2s ease-in-out infinite 0.1s;
}

.visual-bars span:nth-child(2) {
  height: 70%;
  animation: pulseBar 2s ease-in-out infinite 0.3s;
}

.visual-bars span:nth-child(3) {
  height: 50%;
  animation: pulseBar 2s ease-in-out infinite 0.5s;
}

.visual-bars span:nth-child(4) {
  height: 90%;
  animation: pulseBar 2s ease-in-out infinite 0.2s;
}

@keyframes pulseBar {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.4;
  }

  50% {
    transform: scaleY(1.2);
    opacity: 1;
    background: #fff;
  }
}

/* 4. Deposit Visual (Pulse) */
.visual-deposit {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-deposit .pulse {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.visual-deposit .pulse::before,
.visual-deposit .pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 2s linear infinite;
}

.visual-deposit .pulse::after {
  animation-delay: 1s;
}

@keyframes ringPulse {
  0% {
    width: 14px;
    height: 14px;
    opacity: 1;
  }

  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}

.term-title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 4px;
  color: #fff;
}

.term-sub {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

/* Contact */
.contact {
  background: #0e0e10
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start
}

.contact-info p {
  color: var(--muted);
  max-width: 560px
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px
}

.contact-card {
  background: #131316;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.contact-card strong {
  font-size: 14px;
  color: #cfcfd6
}

.contact-card span {
  color: var(--txt);
  font-weight: 700;
  word-break: break-word
}

.contact-form {
  background: #131316;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}

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

.contact-form input,
.contact-form textarea {
  background: #1a1a1c;
  border: 1px solid #2a2a2e;
  border-radius: 12px;
  color: var(--txt);
  padding: 12px 14px;
  font-size: 14px;
  width: 100%
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted)
}

/* About */
.about {
  background: #0e0e10
}

.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 640px;
  line-height: 1.7
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.stat {
  text-align: center
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--txt)
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px
}

/* Read More Functionality */
.about-text-extended {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.about-text-extended.expanded {
  opacity: 1;
  overflow: visible;
  margin-top: 8px;
}

.about-text p strong {
  color: var(--txt);
  font-weight: 700;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--txt);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.read-more-icon {
  transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-icon {
  transform: rotate(180deg);
}

/* Footer */
.site-footer {
  background: #0a0a0c;
  padding: 60px 0 20px;
  margin-top: 60px
}

.footer-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px
}

.footer-socials {
  display: flex;
  gap: 12px
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1.1fr 1.1fr 1.7fr;
  gap: 64px;
  margin-bottom: 40px
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px
}

.footer-brand .brand-badge {
  display: inline-grid;
  place-items: center;
  background: #202024;
  border-radius: 10px;
  width: 28px;
  height: 28px;
  font-weight: 800
}

.footer-brand .brand-text {
  font-weight: 700;
  font-size: 18px
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px
}

.footer-links a:hover {
  color: var(--txt)
}

.contact-item {
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
}

a.contact-item:hover {
  opacity: 0.7;
}

.contact-label {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px
}

.contact-value {
  font-weight: 700;
  font-size: 14px;
  word-break: break-word
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 8px
}

.newsletter-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  background: #1a1a1c;
  border: 1px solid #2a2a2e;
  border-radius: 999px;
  color: var(--txt);
  font-size: 14px
}

.newsletter-input::placeholder {
  color: var(--muted)
}

.newsletter-disclaimer {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #1e1e22;
  font-size: 12px;
  color: var(--muted)
}

.footer-logo-big img {
  width: 100%;
  height: auto;
  max-width: 600px
}

/* Detail */
.car-detail {
  overflow-x: hidden;
  background: var(--bg);
  min-height: 100vh;
}

.car-detail .back-link {
  display: inline-block;
  color: #bdbdc3;
  text-decoration: none;
  margin: 100px 0 18px
}

.car-detail .back-link:hover {
  color: #ffffff
}

.car-detail .hero-title {
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

.car-detail .detail-desc {
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.car-detail .btn {
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 35px;
  align-items: start
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px
}

.detail-text .hero-title {
  font-size: clamp(24px, 4vw, 44px);
  line-height: 1.2;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.detail-desc {
  color: var(--muted);
  max-width: 640px;
  white-space: pre-line;
}

.swiper {
  position: relative;
  background: #111;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 550px;
  height: 75vh;
  max-height: 650px
}

.swiper-track {
  display: flex;
  transition: transform .4s ease;
  height: 100%
}

.slide {
  min-width: 100%;
  height: 100%;
  background-color: #222;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .5);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10
}

.swiper-nav.prev {
  left: 12px
}

.swiper-nav.next {
  right: 12px
}

.swiper-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 10
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6c6c72;
  opacity: .8;
  cursor: pointer
}

.dot.active {
  background: #ffffff
}

.spec-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 10
}

.spec-badges span {
  background: var(--pill);
  color: #e5e5ea;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px
}

/* Prefooter image */
.prefooter-hero {
  width: 100%;
  min-height: 46vh;
  background: url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
  position: relative
}

.prefooter-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, .1))
}

/* All Cars */
.all-cars {
  padding: 100px 0 40px
}

.all-cars .back-link {
  display: inline-block;
  color: #bdbdc3;
  text-decoration: none;
  margin: 0 0 18px
}

.all-cars .back-link:hover {
  color: #ffffff;
  text-decoration: underline
}

.page-header {
  margin-bottom: 40px
}

.page-title {
  font-size: 48px;
  margin: 16px 0 12px
}

.page-subtitle {
  color: var(--muted);
  max-width: 600px
}

.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.filter-tab {
  background: #1a1a1c;
  border: 1px solid #2a2a2e;
  color: var(--muted);
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: all .2s
}

.filter-tab.active {
  background: var(--white);
  color: #111
}

.filter-tab:hover:not(.active) {
  background: #222;
  color: var(--txt)
}

.all-cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px
}

/* Responsive Breakpoints */

/* Large tablets and small desktops (1200px and below) */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px
  }

  .hero-title {
    font-size: 56px
  }

  .section-title {
    font-size: 32px
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px
  }
}

/* Medium screens - Activate burger menu (1024px and below) */
@media (max-width: 1024px) {
  .nav-links {
    display: none
  }

  .nav-actions .socials {
    display: none
  }

  .nav-actions>.btn {
    display: none
  }

  .burger-menu {
    display: block
  }

  .nav {
    height: 68px
  }

  .brand img {
    height: 42px
  }

  .mobile-nav {
    top: 68px
  }
}

/* Tablets (960px and below) */
@media (max-width: 960px) {
  .hero {
    min-height: 100vh;
  }

  .hero-media {
    background-position: 60% center
  }

  .hero-content {
    padding: 0 24px 0 24px;
  }

  .hero-title {
    font-size: clamp(36px, 7vw, 56px);
  }

  .car-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 60px 0
  }

  .section-title {
    font-size: 28px
  }

  .terms-grid {
    grid-template-columns: 1fr
  }

  .terms-cards {
    grid-template-columns: 1fr 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-form {
    margin-top: 24px
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-text {
    order: 2;
    padding-right: 0;
  }

  .detail-media {
    order: 1
  }

  .swiper {
    min-height: unset;
    height: 56.25vw;
    /* 16:9 fallback */
    max-height: 500px;
    aspect-ratio: 16/9;
  }

  .slide {
    height: 100%;
  }

  .about-content {
    grid-template-columns: 1fr
  }

  .about-stats {
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center
  }

  .all-cars-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr))
  }

  .page-title {
    font-size: 36px
  }
}

/* Mobile devices (640px and below) */
@media (max-width: 640px) {
  .container {
    padding: 0 16px
  }

  /* Header */
  .nav {
    height: 60px
  }

  .brand img {
    height: 36px
  }

  .mobile-nav {
    top: 60px;
    padding: 24px 16px
  }

  .mobile-nav-links a {
    font-size: 18px;
    padding: 14px 0
  }

  /* Hero */
  .hero {
    min-height: 100vh;
  }

  .hero::after {
    background: linear-gradient(0deg,
        rgba(10, 10, 12, 0.85) 0%,
        rgba(10, 10, 12, 0.4) 40%,
        rgba(10, 10, 12, 0.2) 60%,
        rgba(10, 10, 12, 0.5) 100%);
  }

  .hero-media {
    background-position: 65% center;
    background-size: cover;
  }

  .hero-content {
    padding: 120px 20px 40px 20px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 44px);
    line-height: 1.05;
    margin: 0 0 16px;
  }

  .hero-sub {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero .btn {
    width: 100%;
    max-width: 100%;
    height: 48px;
    font-size: 15px;
    padding: 0 24px;
  }

  /* Sections */
  .section {
    padding: 40px 0
  }

  .section-title {
    font-size: 24px;
    margin: 0 0 20px
  }

  /* Car cards */
  .car-card .title {
    font-size: 16px
  }

  .car-card .content {
    padding: 14px 16px 16px
  }

  .pill {
    top: 10px;
    left: 10px;
    gap: 6px
  }

  .pill span {
    font-size: 11px;
    padding: 5px 8px
  }

  .learn {
    right: 16px;
    bottom: 14px;
    font-size: 13px
  }

  /* Terms */
  .terms-cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .term-card {
    padding: 18px
  }

  .advisor {
    margin: 14px 0 20px
  }

  .advisor img {
    width: 40px;
    height: 40px
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .contact-card {
    padding: 14px
  }

  .contact-form {
    padding: 16px
  }

  /* About */
  .about-stats {
    flex-direction: column;
    gap: 20px
  }

  .stat-number {
    font-size: 28px
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .footer-top {
    justify-content: center;
    margin-bottom: 32px
  }

  .site-footer {
    padding: 40px 0 20px;
    margin-top: 40px
  }

  .footer-logo-big {
    padding: 24px 0 0 0 !important
  }

  /* Detail page - basic mobile adjustments (more specific overrides below) */
  .car-detail .back-link {
    margin: 70px 0 12px
  }

  .detail-grid {
    gap: 16px
  }

  .detail-text .hero-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .swiper-nav {
    width: 32px;
    height: 32px;
    font-size: 20px
  }

  .swiper-nav.prev {
    left: 8px
  }

  .swiper-nav.next {
    right: 8px
  }

  .spec-badges {
    top: 10px;
    left: 10px;
    gap: 6px
  }

  .spec-badges span {
    font-size: 11px;
    padding: 5px 8px
  }

  /* All Cars page */
  .all-cars {
    padding: 70px 0 30px
  }

  .page-title {
    font-size: 28px
  }

  .page-header {
    margin-bottom: 28px
  }

  .filter-tabs {
    gap: 6px;
    margin-bottom: 28px
  }

  .filter-tab {
    padding: 10px 16px;
    font-size: 14px
  }

  .all-cars-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }
}

/* Very small devices (380px and below) */
@media (max-width: 380px) {
  .hero {
    min-height: 100vh;
  }

  .hero-media {
    background-position: 70% center
  }

  .hero-content {
    padding: 100px 16px 30px 16px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.05;
    margin: 0 0 12px;
  }

  .hero-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero .btn {
    height: 44px;
    font-size: 14px;
  }

  .section-title {
    font-size: 22px
  }

  .pill {
    flex-direction: column;
    gap: 4px
  }

  .spec-badges {
    flex-direction: column;
    gap: 4px
  }

  .burger-menu span {
    width: 24px
  }

}


/* AGB Page */
.agb-page {
  padding: 100px 0 40px
}

.agb-page .back-link {
  display: inline-block;
  color: #bdbdc3;
  text-decoration: none;
  margin: 0 0 18px
}

.agb-page .back-link:hover {
  color: #ffffff;
  text-decoration: underline
}

.agb-content {
  max-width: 900px;
  margin: 0 auto
}

.agb-section {
  margin-bottom: 48px
}

.agb-section h2 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--txt)
}

.agb-section p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px
}

.agb-section ul {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 24px;
  margin: 16px 0
}

.agb-section li {
  margin-bottom: 8px
}

.agb-contact {
  background: #131316;
  border-radius: 18px;
  padding: 32px;
  margin-top: 60px;
  text-align: center
}

.agb-contact h3 {
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--txt)
}

.agb-contact p {
  color: var(--muted);
  margin-bottom: 12px
}

.agb-contact strong {
  color: var(--txt)
}

/* Cookie Consent Banner Styles */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 15, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-consent-text {
  flex: 1;
  color: #e6e6ea;
}

.cookie-consent-text h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #b8b8be;
}

.cookie-consent-text a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #111;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline {
  background: transparent;
  color: #e6e6ea;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 20px 16px;
  }

  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-consent-text h3 {
    font-size: 16px;
  }

  .cookie-consent-text p {
    font-size: 13px;
  }

  .cookie-consent-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}


.detail-desc {
  white-space: pre-line;
}






/* Booking Page */
/* ===== Booking Page ===== */
.booking-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}

.booking-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #bdbdc3;
  text-decoration: none;
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.booking-page .back-link:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

.booking-page-header {
  margin-bottom: 48px;
}

.booking-page-header .page-title {
  font-size: clamp(28px, 5vw, 48px);
  margin: 0 0 12px;
  line-height: 1.1;
}

.booking-page-header .page-subtitle {
  color: var(--muted);
  font-size: clamp(14px, 2vw, 18px);
  max-width: 600px;
  line-height: 1.5;
}

.booking-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.booking-page-form {
  background: #131316;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.booking-page-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #131316;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #1e1e22;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.info-card h3 {
  font-size: 18px;
  margin: 0 0 12px 0;
  color: #fff;
  display: flex;
  align-items: center;
}

.info-card p {
  color: #8c8d92;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.info-link {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.3s ease;
}

.info-link:hover {
  color: #d0d0d0;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #1a1a1c;
  border: 1px solid #2a2a2e;
  border-radius: 12px;
  color: #fff;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238c8d92' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #fff;
  background: #222;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6c6c72;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

.booking-form .btn {
  width: 100%;
  height: 52px;
  font-size: 16px;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.booking-privacy {
  font-size: 13px;
  color: #8c8d92;
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

.booking-privacy a {
  color: #fff;
  text-decoration: underline;
}

/* Booking page - Large tablets (1200px) */
@media (max-width: 1200px) {
  .booking-page-grid {
    gap: 36px;
  }

  .booking-page-form {
    padding: 32px;
  }
}

/* Booking page - Tablets (960px) */
@media (max-width: 960px) {
  .booking-page {
    padding: 100px 0 60px;
  }

  .booking-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .booking-page-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .booking-page-header {
    margin-bottom: 36px;
  }
}

/* Booking page - Mobile (640px) */
@media (max-width: 640px) {
  .booking-page {
    padding: 80px 0 40px;
  }

  .booking-page .back-link {
    margin: 0 0 16px;
  }

  .booking-page-header {
    margin-bottom: 24px;
  }

  .booking-page-form {
    padding: 20px;
    border-radius: 18px;
  }

  .booking-page-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-card {
    padding: 18px;
    border-radius: 14px;
  }

  .info-card h3 {
    font-size: 16px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 16px;
    border-radius: 10px;
  }

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

  .booking-form .btn {
    height: 50px;
  }

  .booking-form {
    gap: 16px;
  }
}

/* Booking page - Very small (380px) */
@media (max-width: 380px) {
  .booking-page {
    padding: 70px 0 30px;
  }

  .booking-page-form {
    padding: 16px;
    border-radius: 14px;
  }

  .info-card {
    padding: 14px;
  }

  .info-card h3 {
    font-size: 15px;
    margin: 0 0 8px 0;
  }

  .info-card p {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 12px;
  }
}


/* Thank You Page */
.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #1a1a1c 0%, #2a2a2e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.thank-you-icon svg {
  stroke: #4ade80;
  animation: checkDraw 0.8s ease-out 0.3s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes checkDraw {
  from {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }

  to {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
}

.thank-you-title {
  font-size: 48px;
  margin: 0 0 20px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.thank-you-text {
  font-size: 18px;
  color: #8c8d92;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.thank-you-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.info-box {
  background: #131316;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  border: 1px solid #1e1e22;
}

.info-box h3 {
  font-size: 20px;
  margin: 0 0 16px;
  color: #fff;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box li {
  color: #8c8d92;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.info-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.info-box p {
  color: #8c8d92;
  font-size: 14px;
  margin: 0 0 12px;
}

.phone-link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #4ade80;
}

.hours {
  font-size: 13px !important;
  color: #6c6c72 !important;
}

.thank-you-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.9s both;
}

.thank-you-footer {
  padding-top: 32px;
  border-top: 1px solid #1e1e22;
  animation: fadeInUp 0.8s ease-out 1.1s both;
}

.thank-you-footer p {
  color: #8c8d92;
  font-size: 14px;
  margin: 0 0 12px;
}

.contact-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: #4ade80;
}

.contact-links span {
  color: #6c6c72;
}

@media (max-width: 768px) {
  .thank-you-page {
    padding: 80px 0 40px;
  }

  .thank-you-icon {
    width: 100px;
    height: 100px;
  }

  .thank-you-icon svg {
    width: 60px;
    height: 60px;
  }

  .thank-you-title {
    font-size: 36px;
  }

  .thank-you-text {
    font-size: 16px;
  }

  .thank-you-info {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .info-box {
    padding: 24px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

/* Mobile devices (640px and below) */
@media (max-width: 640px) {
  /* ... andere Styles ... */

  /* Detail page - KOMPLETT ÜBERARBEITET */
  .car-detail {
    padding-top: 60px;
  }

  .car-detail .back-link {
    margin: 20px 0 12px;
    font-size: 13px;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .detail-text {
    order: 2;
    padding: 0;
  }

  .detail-media {
    order: 1;
    margin: 0 -16px;
  }

  .detail-text .hero-title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 12px;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .detail-desc {
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .swiper {
    min-height: unset;
    height: 75vw;
    /* 4:3 fallback */
    max-height: 350px;
    border-radius: 0;
    aspect-ratio: 4/3;
  }

  .slide {
    height: 100%;
    min-width: 100%;
  }

  .slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
    background: rgba(0, 0, 0, 0.7);
  }

  .swiper-nav.prev {
    left: 12px;
  }

  .swiper-nav.next {
    right: 12px;
  }

  .spec-badges {
    top: 12px;
    left: 12px;
    gap: 6px;
  }

  .spec-badges span {
    font-size: 10px;
    padding: 4px 8px;
  }

  .swiper-dots {
    bottom: 12px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .detail-text .btn {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
    height: 46px;
  }
}

/* Detail page - very small screens override */
@media (max-width: 380px) {
  .detail-text .hero-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .detail-desc {
    font-size: 12px;
    line-height: 1.5;
  }

  .detail-text .btn {
    height: 42px;
    font-size: 13px;
  }

  .car-detail .back-link {
    margin: 60px 0 10px;
    font-size: 12px;
  }
}







/* Responsive Styles für AGB-Seite */
.page-title {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
    padding: 0.5rem 0 !important;
  }

  .agb-section h2 {
    font-size: 1.25rem !important;
    word-wrap: break-word;
  }

  .agb-section h3 {
    font-size: 1.1rem !important;
  }

  .agb-section p,
  .agb-section ul li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .agb-content {
    padding: 1rem !important;
  }

  .agb-section {
    margin-bottom: 2rem !important;
    padding: 1rem !important;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .back-link {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
  }

  .agb-contact {
    padding: 1rem !important;
  }

  .agb-contact h3 {
    font-size: 1.2rem !important;
  }

  .agb-contact p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem !important;
    padding: 0.5rem 0 !important;
  }

  .agb-section h2 {
    font-size: 1.1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .agb-section h3 {
    font-size: 1rem !important;
  }

  .agb-section p,
  .agb-section ul li {
    font-size: 0.875rem !important;
  }

  .agb-section ul {
    padding-left: 1.25rem !important;
  }

  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .agb-contact {
    padding: 0.75rem !important;
  }
}

/* Allgemeine Verbesserungen */
.agb-section {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

.agb-section p {
  text-align: justify;
}