:root {
  --bg: #08090d;
  --bg-soft: #12141c;
  --panel: #181b25;
  --text: #f7f7f8;
  --muted: #a5a8b3;
  --accent: #d90429;
  --accent-soft: #ef233c;
  --line: #2a2f3f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 78% 8%, #2b3554 0%, #121726 32%, var(--bg) 70%);
  min-height: 100vh;
  overflow-x: hidden;
}

.cinematic-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(6) infinite;
}

.cinematic-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

@keyframes grainShift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2%, -1%);
  }
  50% {
    transform: translate(1%, 2%);
  }
  75% {
    transform: translate(-1%, 1%);
  }
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.speed-lines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.42;
}

.speed-lines span {
  position: absolute;
  width: 40vw;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(81, 192, 255, 0.85), transparent);
  transform: rotate(-18deg);
  filter: blur(0.3px);
  animation: streak 5.2s linear infinite;
}

.speed-lines span:nth-child(1) {
  top: 18%;
  left: -15%;
}

.speed-lines span:nth-child(2) {
  top: 33%;
  left: 8%;
  animation-delay: -1.2s;
}

.speed-lines span:nth-child(3) {
  top: 56%;
  left: -10%;
  animation-delay: -2.6s;
}

.speed-lines span:nth-child(4) {
  top: 69%;
  left: 12%;
  animation-delay: -1.8s;
}

.speed-lines span:nth-child(5) {
  top: 81%;
  left: -4%;
  animation-delay: -3.1s;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(1200px, calc(100% - 2.4rem));
  margin: 1.2rem auto 0;
  padding: 0.85rem 1.4rem;
  background: rgba(12, 14, 20, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: clamp(34px, 4.2vw, 44px);
  width: auto;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.footer-logo img {
  display: block;
  height: 38px;
  width: auto;
  opacity: 0.95;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
}

main {
  width: 100%;
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 4rem 4vw 3rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-inner {
  width: min(1280px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-letterbox {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-letterbox::before,
.hero-letterbox::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(28px, 4vh, 56px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-letterbox::before {
  top: 0;
}

.hero-letterbox::after {
  bottom: 0;
  transform: rotate(180deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  pointer-events: none;
}

.scroll-progress-track {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.scroll-progress-bar {
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 55%, #51c0ff 100%);
  box-shadow: 0 0 12px rgba(217, 4, 41, 0.6), 0 0 24px rgba(239, 35, 60, 0.35);
  transition: transform 0.08s linear;
}

.scroll-progress-pct {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 200;
}

.scroll-progress-pct::after {
  content: "%";
  margin-left: 1px;
  color: var(--accent-soft);
}

.scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 2.5rem;
  z-index: 180;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 14, 20, 0.92);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: rgba(217, 4, 41, 0.25);
  border-color: var(--accent-soft);
  color: #fff;
}

.scroll-to-top:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

body.is-scrolling .scroll-progress-pct,
.scroll-progress-pct.is-visible {
  opacity: 1;
}

.hero-media {
  position: absolute;
  inset: -8% 0;
  z-index: -1;
  border-radius: 20px;
  overflow: hidden;
  background-image: url("assets/images/hero-poster.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 180px rgba(19, 117, 255, 0.2), inset 0 -80px 140px rgba(217, 4, 41, 0.18);
  transform: scale(1.08);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.7) contrast(1.12) brightness(0.62);
}

.hero-video.is-fallback,
.hero-video.is-paused {
  display: none;
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
      90deg,
      rgba(5, 6, 10, 0.94) 5%,
      rgba(5, 6, 10, 0.65) 52%,
      rgba(5, 6, 10, 0.28) 100%
    ),
    linear-gradient(180deg, rgba(8, 9, 13, 0.35) 0%, transparent 40%, rgba(8, 9, 13, 0.5) 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(217, 4, 41, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(34, 121, 255, 0.1), transparent 50%);
}

.hero-content {
  max-width: 720px;
}

.hero-content h1 {
  max-width: 50vw;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.55), 0 0 80px rgba(217, 4, 41, 0.2);
}

.kicker {
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 0.4rem 0 1rem;
  font-size: clamp(2.3rem, 6vw, 6rem);
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.5), 0 0 60px rgba(217, 4, 41, 0.15);
  letter-spacing: -0.02em;
}

h1 span {
  color: var(--accent-soft);
}

.hero-copy {
  color: var(--muted);
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  font-family: inherit;
  cursor: pointer;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 8px 22px rgba(217, 4, 41, 0.35), 0 0 18px rgba(239, 35, 60, 0.45);
}

.btn-secondary,
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.btn-whatsapp-icon {
  flex-shrink: 0;
  opacity: 0.9;
}

.hero-trust {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(12, 14, 20, 0.65);
  backdrop-filter: blur(6px);
  width: fit-content;
  max-width: 100%;
}

.hero-trust-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.stars {
  color: #ffc107;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 193, 7, 0.35);
}

.hero-trust-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.hero-trust-divider {
  width: 1px;
  height: 22px;
  background: var(--line);
  flex-shrink: 0;
}

.hero-trust-badge {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(239, 35, 60, 0.35);
  background: rgba(217, 4, 41, 0.12);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-trust-cta {
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 8px 22px rgba(217, 4, 41, 0.35), 0 0 18px rgba(239, 35, 60, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-trust-cta:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 10px 26px rgba(217, 4, 41, 0.45), 0 0 22px rgba(239, 35, 60, 0.55);
}

.hero-trust-cta:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

.hero-trust-link {
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hero-trust-link:hover {
  border-color: var(--accent-soft);
  color: var(--text);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 8, 0.78);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  max-height: min(92vh, 900px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(160deg, #151926 0%, #0e1016 100%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  padding: 1.4rem 1.4rem 1.2rem;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.modal-header {
  padding-right: 2.5rem;
  margin-bottom: 1rem;
}

.modal-header h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
}

.modal-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.vehicle-form {
  display: grid;
  gap: 1rem;
}

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

.form-actions .btn.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

.form-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem 1rem;
  margin: 0;
}

.form-section legend {
  padding: 0 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
}

.form-row {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.65rem;
}

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

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field label span {
  font-weight: 500;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(8, 9, 13, 0.65);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.2);
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 35, 60, 0.75);
}

.field-hint {
  font-size: 0.75rem;
  color: var(--muted);
}

.form-error {
  margin: 0;
  color: #ff8a9b;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-success {
  margin: 0;
  color: #8ee4a8;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.6rem;
}

body.modal-open {
  overflow: hidden;
}

.hero-cards {
  display: grid;
  gap: 0.9rem;
  padding-right: 1rem;
}

.floating-card {
  background: linear-gradient(145deg, #151926 0%, #10131b 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  transform: translateY(0);
  transition: transform 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
}

.floating-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-soft);
}

.floating-card h3 {
  margin: 0 0 0.35rem;
}

.floating-card p {
  margin: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(1200px, calc(100% - 8vw));
  margin: 0 auto;
}

.stat-item {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.stat-number {
  margin: 0;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-weight: 800;
  color: var(--accent-soft);
}

.stat-label {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-section {
  padding-top: 2.5rem;
}

.reviews-head {
  margin-bottom: 1.2rem;
}

.reviews-intro {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 52ch;
}

.reviews-intro a {
  color: var(--accent-soft);
  text-decoration: none;
  font-weight: 600;
}

.reviews-intro a:hover {
  text-decoration: underline;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.trust-badge {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(21, 25, 38, 0.95), rgba(16, 19, 27, 0.95));
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-badge strong {
  font-size: 0.95rem;
  color: var(--text);
}

.trust-badge span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.55);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.review-topic {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}

.review-stars {
  color: #ffc107;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.review-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  flex: 1;
}

.review-author {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.review-author span {
  font-weight: 500;
  color: var(--muted);
}

.reviews-source {
  margin: 1.2rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

.reviews-source a {
  color: var(--accent-soft);
  text-decoration: none;
}

.reviews-source a:hover {
  text-decoration: underline;
}

.about-copy {
  display: grid;
  gap: 1rem;
  max-width: 72ch;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 0.2rem 1rem;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(239, 35, 60, 0.5);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  list-style: none;
}

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

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-weight: 800;
  font-size: 1rem;
}

.footer-tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-heading {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-soft);
}

.footer-grid p {
  margin: 0.25rem 0;
}

.footer-grid a {
  color: var(--muted);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--text);
}

.footer-copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.contact-box p a {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: none;
}

.contact-box p a:hover {
  text-decoration: underline;
}

.contact-box .btn-primary {
  color: #fff;
  text-decoration: none;
}

.contact-box .btn-primary:hover {
  text-decoration: none;
}

.section {
  padding: 3.5rem 4vw 1rem;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

.hero {
  content-visibility: visible;
}

.section > :not(.feature-shot) {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.section-head h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.service-grid,
.build-grid {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.service-grid article,
.build-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.parallax-layer {
  contain: layout style paint;
}

body.is-scrolling .parallax-layer,
body.is-loaded .hero-media {
  will-change: transform;
}

.parallax-block {
  overflow: hidden;
}

.feature-shot {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.feature-shot-inner {
  will-change: transform;
}

.feature-shot img {
  width: 100%;
  height: clamp(280px, 38vw, 460px);
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.08) brightness(0.92);
  transform: scale(1.12);
}

.build-card {
  overflow: hidden;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.build-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.75);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.build-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.build-card h3,
.build-card p {
  padding-inline: 1rem;
}

.build-card h3 {
  margin: 0.9rem 0 0.4rem;
}

.build-card p {
  margin: 0 0 1rem;
}

.service-grid p,
.build-card p {
  color: var(--muted);
}

.chip-row {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chip {
  background: #131722;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
}

.chip.active {
  color: #fff;
  border-color: var(--accent-soft);
  background: rgba(217, 4, 41, 0.2);
}

.kleinanzeigen-intro {
  margin: 0.5rem 0 0;
  max-width: 52rem;
  color: var(--muted);
}

.kleinanzeigen-intro a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: none;
}

.kleinanzeigen-intro a:hover {
  text-decoration: underline;
}

.kleinanzeigen-status {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.kleinanzeigen-status a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: none;
}

.kleinanzeigen-status a:hover {
  text-decoration: underline;
}

.kleinanzeigen-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.kleinanzeigen-card {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.kleinanzeigen-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 35, 60, 0.75);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28);
}

.kleinanzeigen-card-media {
  position: relative;
}

.kleinanzeigen-card-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #0f1219;
}

.kleinanzeigen-price {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.88);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}

.kleinanzeigen-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.kleinanzeigen-card-body h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kleinanzeigen-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.kleinanzeigen-cta {
  margin-top: 1.4rem;
}

.community,
.contact-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(150deg, rgba(239, 35, 60, 0.22), rgba(25, 31, 50, 0.94));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-box {
  margin-top: 1rem;
  flex-direction: column;
  align-items: flex-start;
}

.contact-box p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  width: min(1200px, calc(100% - 8vw));
  margin: 2.5rem auto 1.5rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.cinematic-banner {
  padding-top: 1.2rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.cinematic-banner-inner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cinematic-banner img {
  width: 100%;
  height: clamp(300px, 46vw, 540px);
  object-fit: cover;
  display: block;
  filter: saturate(0.9) contrast(1.12) brightness(0.78);
  transform: scale(1.15);
}

.cinematic-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(8, 9, 13, 0.5) 0%,
      transparent 35%,
      transparent 65%,
      rgba(8, 9, 13, 0.7) 100%
    ),
    linear-gradient(90deg, rgba(217, 4, 41, 0.15), transparent 40%, rgba(34, 121, 255, 0.1));
  pointer-events: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .hero-content.reveal-up {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

body.is-loaded .hero-cards .floating-card {
  animation: cardFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.is-loaded .hero-cards .floating-card:nth-child(1) {
  animation-delay: 0.35s;
}

body.is-loaded .hero-cards .floating-card:nth-child(2) {
  animation-delay: 0.5s;
}

body.is-loaded .hero-cards .floating-card:nth-child(3) {
  animation-delay: 0.65s;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.is-scrolling .speed-lines span {
  animation-duration: 2.3s;
}

@keyframes streak {
  0% {
    transform: translateX(-16vw) rotate(-18deg);
    opacity: 0;
  }
  20% {
    opacity: 0.8;
  }
  80% {
    opacity: 0.45;
  }
  100% {
    transform: translateX(70vw) rotate(-18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-progress-bar {
    transition: none;
  }

  .hero-video {
    display: none;
  }

  .cinematic-grain {
    animation: none;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .parallax-layer,
  .hero-media,
  .feature-shot img,
  .cinematic-banner img {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .trust-badges,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero-trust-divider {
    display: none;
  }

  .hero-trust-label,
  .hero-trust-badge,
  .hero-trust-cta,
  .hero-trust-link {
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 7vw, 3rem);
  }

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

  .hero {
    padding: 2.6rem 4vw 2rem;
    min-height: 78vh;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .speed-lines {
    opacity: 0.25;
  }

  .hero-cards {
    padding-right: 0;
  }

  .service-grid,
  .build-grid,
  .kleinanzeigen-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .main-nav {
    display: none;
  }

  .service-grid,
  .build-grid,
  .kleinanzeigen-grid {
    grid-template-columns: 1fr;
  }

  .community {
    flex-direction: column;
    align-items: flex-start;
  }

  .speed-lines span {
    width: 70vw;
  }
}
