:root {
  --rw-red: #d30000;
  --rw-red-hover: #dd1a1a;
  --rw-blue: #038fff;
  --rw-black: #000000;
  --rw-surface: #101010;
  --rw-surface-soft: #161616;
  --rw-border: rgba(255, 255, 255, 0.18);
  --rw-border-strong: rgba(255, 255, 255, 0.34);
  --rw-text: #ffffff;
  --rw-muted: rgba(255, 255, 255, 0.75);
  --rw-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  --rw-container: 1140px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.mobile-break {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--rw-black);
  color: var(--rw-text);
  font-family: "Raleway", Verdana, sans-serif;
}

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

a {
  color: var(--rw-red);
  text-decoration: none;
}

a:hover {
  color: #78828f;
}

button,
input,
fieldset,
legend {
  font: inherit;
}

input,
button {
  border-radius: 0;
}

main {
  overflow: clip;
}

.container {
  width: min(100% - 32px, var(--rw-container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--rw-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: min(100%, 280px);
}

.brand img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
}

.site-nav a,
.header-cta,
.nav-toggle,
.button {
  font-family: Verdana, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a,
.site-nav a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--rw-text);
}

.site-nav a:hover {
  color: var(--rw-red);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 24px;
  border: 1px solid #ffffff;
  border-radius: 0;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.header-cta {
  background: transparent;
  color: var(--rw-text);
}

.header-cta:hover {
  background: #ffffff;
  color: var(--rw-red);
}

.nav-toggle {
  display: none;
  border: 1px solid #ffffff;
  background: transparent;
  color: var(--rw-text);
  min-height: 44px;
  padding: 0 16px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 667px;
  padding: 84px 0 72px;
  background-image: url("https://rw-folierung.de/wp-content/uploads/2023/10/auto-scheiben-toenen-frankfurt-r-1.jpg");
  background-position: center;
  background-size: cover;
}

.hero-ceramic {
  background-image: url("https://rw-folierung.de/wp-content/uploads/2023/10/getoente-autofenster-Frankfurt-1024x768.webp?x78312");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 36px;
}

.hero-ceramic .hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow,
.section-kicker,
.panel-kicker,
.preview-card header span,
.preview-card header small {
  font-family: Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.section-kicker,
.panel-kicker {
  margin: 0 0 18px;
  color: var(--rw-red);
  font-size: 14px;
  font-weight: 700;
}

.hero h1,
.section-head h2,
.section-copy h2,
.site-footer h3 {
  margin: 0;
  color: var(--rw-text);
  font-family: Verdana, sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: var(--rw-shadow);
}

.inline-code {
  font-family: Verdana, sans-serif;
  font-size: 0.94em;
  font-weight: 600;
  color: var(--rw-text);
}

.hero h1 {
  max-width: 11ch;
  font-size: 52px;
  font-weight: 700;
}

.hero-text,
.section-head > p:last-child,
.section-copy > p,
.info-card p,
.media-card-body p,
.checklist-card li,
.faq-item p,
.site-footer p,
.form-note,
.result-copy {
  color: var(--rw-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button-primary {
  background: var(--rw-red);
  border-color: var(--rw-red);
  color: var(--rw-text);
}

.button-primary:hover {
  background: #ffffff;
  color: var(--rw-red);
  border-color: #ffffff;
}

.button-secondary {
  background: transparent;
  color: var(--rw-text);
}

.button-secondary:hover {
  background: #ffffff;
  color: var(--rw-red);
}

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

.trust-card,
.feature-box,
.info-card,
.demo-shell,
.preview-card,
.checklist-card,
.faq-item,
.bullet-card {
  background: rgba(16, 16, 16, 0.92);
  border: 1px solid var(--rw-border);
}

.trust-card {
  padding: 18px 16px;
}

.trust-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: Verdana, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.trust-card span {
  display: block;
  color: var(--rw-muted);
  font-size: 12px;
  font-family: Verdana, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature-box {
  padding: 28px;
}

.feature-box h2,
.info-card h3,
.bullet-card h3,
.media-card-body h3,
.checklist-card h3,
.faq-item summary {
  margin: 0;
  font-family: Verdana, sans-serif;
  line-height: 1.2;
}

.feature-box h2 {
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-ceramic .feature-box h2 {
  margin-top: 34px;
}

.feature-box > p {
  margin: 16px 0 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--rw-text);
  font-size: 16px;
}

.feature-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--rw-red);
  font-family: Verdana, sans-serif;
  font-weight: 700;
}

.feature-list.compact {
  margin-top: 16px;
}

.feature-list.compact li {
  font-size: 15px;
}

.metrics,
.demo-section,
.process-section,
.faq-section {
  padding: 78px 0;
}

.section-head {
  max-width: 840px;
  text-align: center;
}

.section-head.narrow {
  max-width: 760px;
}

.section-head h2,
.section-copy h2 {
  font-size: 35px;
  font-weight: 600;
}

.section-head > p:last-child,
.section-copy > p {
  margin: 18px 0 0;
}

.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.checklist-card {
  padding: 26px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--rw-red);
  font-family: Verdana, sans-serif;
  font-weight: 700;
}

.info-card h3,
.media-card-body h3,
.checklist-card h3 {
  font-size: 25px;
  font-weight: 600;
}

.info-card p,
.checklist-card .feature-list {
  margin-top: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: 32px;
  align-items: start;
}

.switch-copy {
  margin: 22px 0 0;
}

.bullet-card {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding: 26px;
}

.demo-shell {
  padding: 26px;
}

.demo-side-stack {
  display: grid;
  gap: 24px;
}

.demo-form {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 10px;
}

#dateiauswahl {
  scroll-margin-top: 104px;
}

.field span,
.field legend {
  font-family: Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input[type="file"] {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid #ffffff;
  background: #000000;
  color: var(--rw-text);
}

.fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.tint-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ceramic-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 14px;
}

.window-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tint-choice {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid #ffffff;
  background: #000000;
  cursor: pointer;
}

.ceramic-choice,
.window-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid #ffffff;
  background: #000000;
  cursor: pointer;
}

.window-choice {
  min-height: 96px;
}

.tint-choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.ceramic-choice input,
.window-choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
}

.tint-choice span {
  position: relative;
  font-family: Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ceramic-choice strong,
.window-choice span {
  position: relative;
  font-family: Verdana, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.ceramic-choice strong {
  line-height: 1.25;
}

.window-choice span {
  font-size: 16px;
  line-height: 1.35;
}

.ceramic-choice small,
.window-choice small {
  position: relative;
  color: var(--rw-muted);
  font-family: Verdana, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tint-choice-blue span {
  color: #7fc5ff;
}

.tint-choice-red span {
  color: #ff9090;
}

.tint-choice input:checked + span {
  color: var(--rw-text);
}

.ceramic-choice strong,
.window-choice span {
  color: var(--rw-text);
}

.tint-choice-blue.is-active {
  border-color: var(--rw-blue);
  background: linear-gradient(135deg, rgba(3, 143, 255, 0.25), rgba(0, 0, 0, 0.9));
}

.tint-choice-red.is-active {
  border-color: var(--rw-red);
  background: linear-gradient(135deg, rgba(211, 0, 0, 0.28), rgba(0, 0, 0, 0.9));
}

.ceramic-choice.is-active {
  border-color: var(--rw-red);
  background: linear-gradient(135deg, rgba(211, 0, 0, 0.24), rgba(0, 0, 0, 0.92));
}

.window-choice.is-active {
  border-color: var(--rw-blue);
  background: linear-gradient(135deg, rgba(3, 143, 255, 0.22), rgba(0, 0, 0, 0.92));
}

.full-width {
  width: 100%;
}

.form-note {
  margin: -6px 0 0;
}

.legal-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 3px solid var(--rw-red);
  background: rgba(255, 255, 255, 0.04);
  color: var(--rw-muted);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.preview-card-result {
  scroll-margin-top: 104px;
}

.preview-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card header span {
  font-size: 13px;
  font-weight: 700;
}

.preview-card header small {
  color: var(--rw-muted);
  font-size: 10px;
  font-weight: 500;
}

.preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  background: #050505;
  overflow: hidden;
}

.preview-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
}

.gallery-shot {
  margin: 0;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.gallery-shot img {
  width: 100%;
  height: auto;
}

.gallery-shot figcaption {
  padding: 12px 16px 14px;
  color: var(--rw-muted);
  font-size: 13px;
  text-align: center;
}

.empty-state,
.loading-state {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 30px;
  color: var(--rw-muted);
  text-align: center;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.loading-state p {
  margin: 0;
}

.spinner {
  width: 46px;
  height: 46px;
  border: 3px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--rw-red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.result-copy {
  margin: 0;
  padding: 18px 20px 22px;
}

.media-card {
  display: grid;
  grid-template-columns: minmax(160px, 220px) minmax(0, 1fr);
  min-height: 220px;
  background: var(--rw-surface);
  border: 1px solid var(--rw-border);
}

.media-card-image {
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

.media-card-image-one {
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("https://rw-folierung.de/wp-content/uploads/2024/06/scheibentoenen-Frankfurt-.jpg");
}

.media-card-image-two {
  background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url("https://rw-folierung.de/wp-content/uploads/2024/06/scheibentoenen-Frankfurt-2.jpg");
}

.media-card-image-three {
  background-image: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url("https://rw-folierung.de/wp-content/uploads/2023/10/autofenster-folierung-Frankfurt-1024x768.webp?x78312");
}

.media-card-body {
  display: grid;
  align-content: center;
  padding: 20px 24px;
}

.media-card-body p {
  margin: 14px 0 0;
}

.faq-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.faq-item {
  padding: 0 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-size: 19px;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--rw-red);
  font-size: 26px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 0 18px;
}

.site-footer {
  padding: 48px 0 104px;
  background: var(--rw-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.site-footer section {
  padding: 12px 8px;
}

.site-footer h3 {
  font-size: 20px;
  font-weight: 600;
}

.site-footer p,
.site-footer a {
  margin-top: 16px;
}

.footer-button {
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-family: Verdana, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom nav a,
.footer-bottom nav a:visited {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--rw-text);
}

.footer-bottom nav a:hover {
  color: var(--rw-red);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--rw-red);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  color: var(--rw-text);
  font-family: Verdana, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

body.nav-open {
  overflow: hidden;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .header-shell {
    min-height: 78px;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .hero-grid,
  .split-grid,
  .card-grid-three,
  .card-grid-two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 14ch;
  }

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

  .media-card {
    grid-template-columns: 1fr;
  }

  .media-card-image {
    min-height: 220px;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: 79px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 0;
    background: var(--rw-black);
    border: 1px solid var(--rw-border-strong);
  }

  .site-nav a {
    min-height: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a:first-child {
    border-top: 0;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 20px, var(--rw-container));
  }

  .hero {
    padding: 100px 0 54px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.72) 100%);
  }

  .hero h1 {
    font-size: 28px;
    max-width: none;
  }

  .feature-box h2,
  .section-head h2,
  .section-copy h2,
  .info-card h3,
  .media-card-body h3,
  .checklist-card h3,
  .faq-item summary,
  .site-footer h3 {
    font-size: 29px;
  }

  .hero-actions,
  .trust-grid,
  .tint-options,
  .window-options {
    grid-template-columns: 1fr;
  }

  .ceramic-options {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .trust-grid {
    display: grid;
  }

  .metrics,
  .demo-section,
  .process-section,
  .faq-section {
    padding: 58px 0;
  }

  .feature-box,
  .info-card,
  .demo-shell,
  .bullet-card,
  .checklist-card {
    padding: 22px;
  }

  .preview-frame,
  .empty-state,
  .loading-state {
    min-height: 280px;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
  }

  .mobile-bar {
    display: grid;
  }

  .mobile-break {
    display: block;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
