/* ============================================================
   ROOF CAMP – Custom CSS (Gesamt)
   Einbinden: Helix Template → Custom CSS
   Stand: Hero + USP Bar + Transparent Header
   ============================================================

   Google Font – einmalig im Helix <head> eintragen:
   <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap" rel="stylesheet">

   ============================================================ */


/* ── Globale Variablen ─────────────────────────────────────── */
:root {
  --rc-dark:            #322f30;
  --rc-white:           #ffffff;
  --rc-yellow:          #F0B800;
  --rc-font:            'Inter', system-ui, -apple-system, sans-serif;
  --rc-radius:          4px;
  --rc-transition:      0.25s ease;
  /* Helix-Variable auf transparent zwingen – überschreibt index.php:939 */
  --sppb-header-bg-color: transparent;
  --sppb-header-bg:     transparent;
}

/* ── Smooth Scroll + Reset ─────────────────────────────────── */
html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
}

body {
  margin: 0 !important;
  padding: 0 !important;
}


/* ============================================================
   HEADER – transparent overlay, Glassmorphism beim Scrollen
   ============================================================ */

/* Kein Abstand oben – Hero zieht bis Viewport-Top */
body,
.body-wrapper,
.body-innerwrapper,
#sp-main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* SP Page Builder: erste Sektion kein Abstand */
.sppb-section:first-child,
#sp-main > .sppb-section:first-child,
#sp-main > div:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 1. Header: fixed + subtiler Frost initial + Fade-in beim Laden */
#sp-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  --sppb-header-bg-color: transparent !important;
  --sppb-header-bg: transparent !important;
  box-shadow: none !important;
  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  animation: rc-fadein 1.4s ease 0.6s both !important;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

@keyframes rc-fadein {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 2. Alle Child-Elemente transparent – schlägt Helix .header-wrap */
#sp-header > *,
#sp-header .header-wrap,
#sp-header .sp-header-wrap,
#sp-header .header-inner,
#sp-header .container-fluid,
#sp-header .container,
#sp-header .container-inner,
#sp-header .row {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}


/* 3. Helix Sticky-Klassen neutralisieren */
#sp-header.sticky,
#sp-header.affix,
#sp-header.fixed-header {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* 4. GESCROLLT: helles Glassmorphism */
#sp-header.rc-scrolled {
  background: rgba(255, 255, 255, 0.80) !important;
  background-color: rgba(255, 255, 255, 0.80) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.10) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.60) !important;
}

/* 4. Menülinks: initial weiß, dunkel beim Scrollen */
#sp-header .sp-megamenu-wrapper a,
#sp-header #sp-menu a,
#sp-header #sp-menu li > a,
#sp-header .sp-megamenu-wrapper li > a {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

#sp-header.rc-scrolled .sp-megamenu-wrapper a,
#sp-header.rc-scrolled #sp-menu a,
#sp-header.rc-scrolled #sp-menu li > a,
#sp-header.rc-scrolled .sp-megamenu-wrapper li > a {
  color: var(--rc-dark) !important;
}

/* 5. Hamburger */
#sp-header .offcanvas-toggler span {
  background-color: #ffffff !important;
}

#sp-header.rc-scrolled .offcanvas-toggler span {
  background-color: var(--rc-dark) !important;
}

/* 6. Hover */
#sp-header .sp-megamenu-wrapper a:hover,
#sp-header #sp-menu li > a:hover {
  color: var(--rc-yellow) !important;
}

/* 7. Scrollspy: aktiver Abschnitt – gelb wenn Header gescrollt */
#sp-header.rc-scrolled #sp-menu li.rc-active > a,
#sp-header.rc-scrolled .sp-megamenu-wrapper li.rc-active > a {
  color: var(--rc-yellow) !important;
}

/* Ganz oben (transparenter Header = "Start" aktiv) → weiß wie alle anderen */
#sp-header:not(.rc-scrolled) #sp-menu li.rc-active > a,
#sp-header:not(.rc-scrolled) .sp-megamenu-wrapper li.rc-active > a {
  color: #ffffff !important;
}

/* Aktive Seite: weiß/dunkel – kein Gelb */
html body #sp-header #sp-menu li.active > a,
html body #sp-header .sp-megamenu-wrapper li.active > a,
html body #sp-header #sp-menu li.current > a,
html body #sp-header .sp-megamenu-wrapper li.current > a {
  color: #ffffff !important;
  font-weight: 700 !important;
}

html body #sp-header.rc-scrolled #sp-menu li.active > a,
html body #sp-header.rc-scrolled .sp-megamenu-wrapper li.active > a,
html body #sp-header.rc-scrolled #sp-menu li.current > a,
html body #sp-header.rc-scrolled .sp-megamenu-wrapper li.current > a {
  color: var(--rc-dark) !important;
  font-weight: 700 !important;
}

/* 6. Hover: Gelb */
#sp-header .sp-megamenu-wrapper a:hover,
#sp-header #sp-menu li.active > a {
  color: var(--rc-yellow) !important;
}



/* ============================================================
   HERO
   ============================================================ */

.rc-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  max-height: 1080px;
  background-image: url('https://roofspace.de/cdn/shop/files/2025_GL_Photo_Lifestyle_RS4__-SPH_A7R3956_klein.jpg?v=1769007047&width=3200');
  background-size: cover;
  background-position: center 60%;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  font-family: var(--rc-font);
  overflow: hidden;
}

/* Overlay */
.rc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(50, 47, 48, 0.82) 0%,
    rgba(50, 47, 48, 0.30) 55%,
    rgba(50, 47, 48, 0.10) 100%
  );
  z-index: 1;
}

/* Content */
.rc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

/* Headline */
.rc-hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--rc-white);
  margin: 0 0 20px;
  max-width: 640px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* Subline */
.rc-hero__subline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px;
  max-width: 520px;
  letter-spacing: 0.01em;
}

/* Location */
.rc-hero__location {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 36px;
}

/* Buttons Container */
.rc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button Basis */
.rc-btn {
  display: inline-block;
  padding: 16px 44px;
  font-family: var(--rc-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--rc-radius);
  transition: background var(--rc-transition), color var(--rc-transition),
              border-color var(--rc-transition), transform var(--rc-transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

/* Primär – Gelb */
.rc-btn--primary {
  background: var(--rc-yellow);
  color: var(--rc-dark);
  border-color: var(--rc-yellow);
}
.rc-btn--primary:hover,
.rc-btn--primary:focus-visible {
  background: #d9a600;
  border-color: #d9a600;
  transform: translateY(-2px);
}

/* Sekundär – Ghost */
.rc-btn--secondary {
  background: transparent;
  color: var(--rc-white);
  border-color: rgba(255, 255, 255, 0.55);
}
.rc-btn--secondary:hover,
.rc-btn--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.10);
  border-color: var(--rc-white);
  transform: translateY(-2px);
}

/* Hero – Tablet */
@media (max-width: 900px) {
  .rc-hero__content {
    padding: 0 32px 64px;
  }
}

/* Hero – Mobile */
@media (max-width: 600px) {
  .rc-hero {
    height: 100svh;
    background-position: 70% center;
  }
  .rc-hero__content {
    padding: 0 20px 52px;
  }
  .rc-hero__subline {
    margin-bottom: 12px;
  }
  .rc-hero__actions {
    flex-direction: column;
    gap: 12px;
  }
  .rc-btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}


/* ============================================================
   USP BAR
   ============================================================ */

.rc-usp {
  background: var(--rc-dark);
  width: 100%;
  padding: 0;
}

.rc-usp__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

/* Item */
.rc-usp__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--rc-transition);
}
.rc-usp__item:last-child {
  border-right: none;
}
.rc-usp__item:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Icon */
.rc-usp__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  color: var(--rc-yellow);
}
.rc-usp__icon svg {
  width: 100%;
  height: 100%;
}

/* Text */
.rc-usp__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.rc-usp__text strong {
  font-family: var(--rc-font);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--rc-white);
  line-height: 1.2;
}
.rc-usp__text span {
  font-family: var(--rc-font);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}

/* USP Bar – Tablet: 2×2 */
@media (max-width: 900px) {
  .rc-usp__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .rc-usp__item {
    padding: 24px 28px;
  }
  .rc-usp__item:nth-child(2) {
    border-right: none;
  }
  .rc-usp__item:nth-child(1),
  .rc-usp__item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* USP Bar – Mobile: 2×2 wie Dachzelte-Feature-Bar */
@media (max-width: 540px) {
  .rc-usp__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .rc-usp__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .rc-usp__text { align-items: center; }
  .rc-usp__item:nth-child(even)    { border-right: none; }
  .rc-usp__item:nth-child(3),
  .rc-usp__item:nth-child(4)       { border-bottom: none; }
}


/* ============================================================
   PRODUKT-SEKTION v2
   ============================================================ */

.rc-products {
  background: #f8f7f7;
  padding: 96px 0;
}

.rc-products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Header ────────────────────────────────────────────────── */
.rc-products__header {
  text-align: center;
  margin-bottom: 52px;
}

.rc-products__eyebrow {
  font-family: var(--rc-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
}

.rc-products__headline {
  font-family: var(--rc-font);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.rc-products__subline {
  font-family: var(--rc-font);
  font-size: 1rem;
  color: rgba(50, 47, 48, 0.60);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Gemeinsame Features Bar ───────────────────────────────── */
.rc-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--rc-dark);
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}

.rc-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
}

.rc-feature:last-child {
  border-right: none;
}

.rc-feature__icon {
  width: 32px;
  height: 32px;
  color: var(--rc-yellow);
  margin-bottom: 4px;
}

.rc-feature__icon svg {
  width: 100%;
  height: 100%;
}

.rc-feature strong {
  font-family: var(--rc-font);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.rc-feature span {
  font-family: var(--rc-font);
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.4;
}

/* ── Produktkarten Grid ────────────────────────────────────── */
.rc-products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Karte */
.rc-product-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(50, 47, 48, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--rc-transition), transform var(--rc-transition);
}

.rc-product-card:hover {
  box-shadow: 0 8px 40px rgba(50, 47, 48, 0.15);
}

.rc-product-card--featured {
  box-shadow: 0 4px 32px rgba(50, 47, 48, 0.13);
}

/* Bild mit Overlay */
.rc-product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.rc-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}


.rc-product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50,47,48,0.35) 0%, transparent 50%);
}

/* Badge */
.rc-product-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(50, 47, 48, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-family: var(--rc-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

.rc-product-card__badge--yellow {
  background: var(--rc-yellow);
  color: var(--rc-dark);
}

.rc-product-card__badge--award {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 4px solid var(--rc-yellow);
  border-radius: 6px;
  padding: 9px 16px 9px 12px;
  box-shadow: 0 2px 16px rgba(50, 47, 48, 0.14);
  opacity: 1;
  transition: opacity 0.35s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.rc-product-card__badge--award:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(50, 47, 48, 0.20);
}

.rc-product-card__badge--award.rc-award--hidden {
  opacity: 0;
  pointer-events: none;
}

.rc-award__winner {
  font-family: var(--rc-font);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  line-height: 1;
}

.rc-award__name {
  font-family: var(--rc-font);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rc-dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Body */
.rc-product-card__body {
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rc-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rc-product-card__model {
  font-family: var(--rc-font);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rc-dark);
  letter-spacing: -0.01em;
}

.rc-product-card__persons {
  font-family: var(--rc-font);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--rc-yellow);
  background: rgba(240, 184, 0, 0.12);
  padding: 3px 9px;
  border-radius: 20px;
}

.rc-product-card__desc {
  font-family: var(--rc-font);
  font-size: 0.86rem;
  color: rgba(50, 47, 48, 0.60);
  line-height: 1.6;
  margin: 0 0 18px;
}

/* Specs Grid (2×2) */
.rc-product-card__specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.rc-spec {
  background: #f8f7f7;
  border-radius: 6px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-spec__label {
  font-family: var(--rc-font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(50, 47, 48, 0.45);
}

.rc-spec__value {
  font-family: var(--rc-font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--rc-dark);
}

/* Footer */
.rc-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(50, 47, 48, 0.08);
}

.rc-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rc-product-card__price-label {
  font-family: var(--rc-font);
  font-size: 0.75rem;
  color: rgba(50, 47, 48, 0.50);
}

.rc-product-card__price-value {
  font-family: var(--rc-font);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--rc-dark);
  letter-spacing: -0.02em;
}

/* Button Dunkel */
.rc-btn--dark {
  background: var(--rc-dark);
  color: #ffffff;
  border-color: var(--rc-dark);
}

.rc-btn--dark:hover,
.rc-btn--dark:focus-visible {
  background: #1a1819;
  border-color: #1a1819;
  transform: translateY(-2px);
}

/* Hinweis */
.rc-products__note {
  text-align: center;
  font-family: var(--rc-font);
  font-size: 0.78rem;
  color: rgba(50, 47, 48, 0.40);
  margin-top: 32px;
}

/* ============================================================
   PRODUKT-SLIDER (.rc-slider)
   ============================================================ */

.rc-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  clip-path: inset(0);
}

.rc-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
}

.rc-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  height: 100%;
}

.rc-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.rc-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(50, 47, 48, 0.60);
  backdrop-filter: blur(6px);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background var(--rc-transition);
}

.rc-slider__btn:hover { background: rgba(50, 47, 48, 0.90); }
.rc-slider__btn--prev { left: 12px; }
.rc-slider__btn--next { right: 12px; }

.rc-slider__dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.rc-slider__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--rc-transition), transform var(--rc-transition);
}

.rc-slider__dot--active {
  background: var(--rc-yellow);
  transform: scale(1.3);
}


/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
  .rc-products { padding: 72px 0; }
  .rc-products__inner { padding: 0 32px; }
  .rc-features-bar { grid-template-columns: repeat(2, 1fr); }
  .rc-feature:nth-child(2) { border-right: none; }
  .rc-feature:nth-child(1),
  .rc-feature:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rc-product-card__footer { flex-direction: column; align-items: flex-start; }
  .rc-btn--dark, .rc-products .rc-btn--primary { width: 100%; text-align: center; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 640px) {
  .rc-products { padding: 56px 0; }
  .rc-products__inner { padding: 0 20px; }
  .rc-features-bar { grid-template-columns: 1fr; border-radius: 8px; }
  .rc-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rc-feature:last-child { border-bottom: none; }
  .rc-products__grid { grid-template-columns: 1fr; }
  .rc-product-card__footer { flex-direction: column; align-items: flex-start; }
  .rc-btn--dark, .rc-products .rc-btn--primary { width: 100%; text-align: center; }
}


/* ============================================================
   TRAILER HERO (.rc-th) + DETAILS (.rc-td)
   ============================================================ */

/* ── Dachzelte: Hintergrundbild + 4-Spalten Feature Bar ───── */
#dachzelte.rc-th {
  background-image: url('/files/2026/06/03/hero_dachzelte.jpg');
  background-position: center 35%;
}

#dachzelte.rc-th .rc-th__overlay {
  background: linear-gradient(
    to right,
    rgba(30, 22, 15, 0.78) 0%,
    rgba(30, 22, 15, 0.55) 32%,
    rgba(30, 22, 15, 0.12) 56%,
    transparent 72%
  );
}

#dachzelte .rc-th__headline {
  color: #ffffff;
}

#dachzelte .rc-th__subline {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.rc-th__bar-inner--4 {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Produktkarten-Sektion: weißer Hintergrund */
#dachzelte-produkte.rc-products {
  background: #ffffff;
  padding: 64px 0 80px;
}

/* Produktbilder: volle Höhe, Zelt oben sichtbar */
#dachzelte-produkte .rc-product-card__image-wrap {
  aspect-ratio: 4 / 3;
}

#dachzelte-produkte .rc-product-card__image {
  object-position: top center;
}

/* ── Trailer Hero ──────────────────────────────────────────── */
.rc-th {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background-image: url('http://roof.camp/files/2026/05/30/rc_trailer_1.png');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--rc-font);
}

.rc-th__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.90) 0%,
    rgba(255, 255, 255, 0.70) 28%,
    rgba(255, 255, 255, 0.15) 48%,
    transparent 62%
  );
  z-index: 1;
}

.rc-th__content {
  position: relative;
  z-index: 2;
  max-width: 460px;
  padding: 80px 48px 60px;
}

.rc-th__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 16px;
}

.rc-th__headline {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--rc-dark);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.rc-th__subline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(50, 47, 48, 0.88);
  line-height: 1.5;
  margin: 0 0 36px;
}

/* ── Feature Bar ───────────────────────────────────────────── */
.rc-th__bar {
  position: relative;
  z-index: 2;
  background: var(--rc-dark);
}

.rc-th__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.rc-th__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  gap: 10px;
}

.rc-th__feature:last-child { border-right: none; }

.rc-th__feature-icon { color: var(--rc-yellow); flex-shrink: 0; }

.rc-th__feature strong {
  font-family: var(--rc-font);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.rc-th__feature span {
  font-family: var(--rc-font);
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ── Trailer Details ───────────────────────────────────────── */
.rc-td {
  background: #ffffff;
  padding: 80px 0;
  font-family: var(--rc-font);
}

.rc-td__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.rc-td__desc {
  font-size: 0.92rem;
  color: rgba(50, 47, 48, 0.65);
  line-height: 1.8;
  margin: 0 0 28px;
}

.rc-td__desc strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin-bottom: 12px;
}

.rc-td__config-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(50, 47, 48, 0.38);
  display: block;
  margin: 0 0 12px;
}

.rc-td__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rc-td__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--rc-dark);
  line-height: 1.45;
}

.rc-td__list li svg {
  flex-shrink: 0;
  color: var(--rc-yellow);
  margin-top: 2px;
}

.rc-td__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(240, 184, 0, 0.07);
  border-left: 3px solid var(--rc-yellow);
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}

.rc-td__highlight svg { flex-shrink: 0; color: var(--rc-yellow); margin-top: 2px; }

.rc-td__highlight-text {
  font-size: 0.86rem;
  color: rgba(50, 47, 48, 0.75);
  line-height: 1.6;
}

.rc-td__highlight-text strong { color: var(--rc-dark); font-weight: 600; }

.rc-td__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(50, 47, 48, 0.09);
  background: #ffffff;
}

.rc-td__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  border-right: 1px solid rgba(50, 47, 48, 0.09);
  border-bottom: 1px solid rgba(50, 47, 48, 0.09);
}

.rc-td__spec:nth-child(2n) { border-right: none; }
.rc-td__spec:nth-child(3),
.rc-td__spec:nth-child(4) { border-bottom: none; }

.rc-td__spec-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(50, 47, 48, 0.38);
}

.rc-td__spec-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rc-dark);
}

.rc-td__cta-note {
  font-size: 0.75rem;
  color: rgba(50, 47, 48, 0.38);
  margin: 10px 0 0;
}

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 991px) {
  .rc-th__content { max-width: 100%; padding: 60px 32px 48px; }
  .rc-th__bar-inner { grid-template-columns: repeat(3, 1fr); padding: 0 32px; }
  .rc-th__feature:nth-child(3) { border-right: none; }
  .rc-th__feature:nth-child(1),
  .rc-th__feature:nth-child(2),
  .rc-th__feature:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .rc-td__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 32px; }
  .rc-td { padding: 60px 0; }
  .rc-trailer-process { padding: 60px 0; }
  .rc-trailer-process__inner { padding: 0 32px; }
  .rc-trailer-process__grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 16px; overflow: visible; }
  .rc-trailer-process__arrow { display: none !important; }
  .rc-trailer-process__step { flex: auto; min-width: 0; transform: none !important; }
  .rc-trailer-cta__inner { flex-direction: column; align-items: flex-start; gap: 28px; padding: 0 32px; }
  .rc-trailer-cta__subline { max-width: 100%; }
  .rc-trailer-cta .rc-btn { display: block; width: 100%; text-align: center; }
  .rc-trailer-cta__checks { justify-content: flex-start; }
  .rc-td__why-block { margin-top: 24px; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
/* Mobile-Bild verstecken – wir nutzen background-image */
.rc-th__mobile-img { display: none; }

@media (max-width: 600px) {
  /* 4-Spalten Bar → 2×2 auf Mobile */
  .rc-th__bar-inner--4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rc-th__bar-inner--4 .rc-th__feature:nth-child(2) { border-right: none; }
  .rc-th__bar-inner--4 .rc-th__feature:nth-child(1),
  .rc-th__bar-inner--4 .rc-th__feature:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .rc-th {
    min-height: 115svh;
    background-image: url('http://roof.camp/files/2026/05/30/rc_trailer_21.png');
    background-position: center 40%;
    background-size: cover;
  }

  /* Trailer: eigenes Hochformat-Bild auf Mobile */
  #anhaenger.rc-th {
    background-image: url('https://roof.camp/files/2026/05/31/rc_trailer_mobile.png');
  }

  /* Dachzelte: Overlay auf Mobile top→bottom, Zelt unten besser sichtbar */
  #dachzelte.rc-th {
    background-position: center 50%;
  }
  #dachzelte.rc-th .rc-th__overlay {
    background: linear-gradient(
      to bottom,
      rgba(30, 22, 15, 0.65) 0%,
      rgba(30, 22, 15, 0.28) 28%,
      rgba(30, 22, 15, 0.05) 52%,
      transparent 72%
    );
  }

  #dachzelte .rc-th__content .rc-btn {
    width: fit-content;
  }

  #anhaenger .rc-th__content .rc-btn {
    width: fit-content;
  }

  .rc-th__overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.82) 0%,
      rgba(255,255,255,0.60) 30%,
      rgba(255,255,255,0.00) 46%
    );
  }
  .rc-th__content { padding: 40px 20px 32px; max-width: 100%; }
  .rc-th__eyebrow { font-size: 0.62rem; margin-bottom: 10px; }
  .rc-th__headline { font-size: 1.75rem; margin-bottom: 12px; }
  .rc-th__subline { font-size: 0.92rem; margin-bottom: 20px; }
  .rc-th .rc-btn { padding: 13px 28px; font-size: 0.85rem; width: 100%; text-align: center; }
  .rc-th__bar-inner { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .rc-th__feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .rc-th__feature:last-child { border-bottom: none; }
  .rc-td__inner { padding: 0 20px; gap: 32px; }
  .rc-td { padding: 48px 0; }
  .rc-td .rc-btn { width: 100%; text-align: center; }
  .rc-td__section-hl { font-size: 1.25rem; }
  .rc-td__price-big { font-size: 1.7rem; }
  .rc-trailer-process { padding: 48px 0; }
  .rc-trailer-process__inner { padding: 0 20px; }
  .rc-trailer-process__grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px; overflow: visible; }
  .rc-trailer-process__step { padding: 20px 16px 24px; min-width: 0; }
  .rc-trailer-process__step-title { font-size: 0.88rem; overflow-wrap: break-word; word-break: break-word; }
  .rc-trailer-process__step-desc { font-size: 0.80rem; }
  .rc-trailer-process__headline { font-size: 1.4rem; }
  .rc-trailer-cta { padding: 44px 0; }
  .rc-trailer-cta__inner { padding: 0 20px; }
  .rc-trailer-cta__headline { font-size: 1.2rem; }
  .rc-trailer-cta__checks { gap: 10px; }
  .rc-trailer-cta__checks span { white-space: normal; }
  .rc-td__why-list li { font-size: 0.84rem; }
}


/* ============================================================
   TRAILER: Neue Elemente
   (.rc-td__config-card, .rc-td__price-*,
    .rc-td__equip-list, .rc-td__section-hl,
    .rc-trailer-process, .rc-trailer-cta)
   ============================================================ */

/* ── Details – Abschnitts-Headline ──────────────────────── */
.rc-td__section-hl {
  font-family: var(--rc-font);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--rc-dark);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
}

/* ── Konfigurationskarte ─────────────────────────────────── */
.rc-td__config-card {
  border: 1px solid rgba(50, 47, 48, 0.11);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 20px rgba(50, 47, 48, 0.07);
}

.rc-td__config-card-head {
  padding: 24px 24px 0;
}

.rc-td__config-card-eyebrow {
  font-family: var(--rc-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-bottom: 8px;
}

.rc-td__config-card-title {
  font-family: var(--rc-font);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rc-td__config-card-body {
  padding: 0 24px 24px;
}

.rc-td__config-note {
  font-size: 0.80rem;
  color: rgba(50, 47, 48, 0.50);
  line-height: 1.6;
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(50, 47, 48, 0.08);
}

/* ── Ausstattungsliste ───────────────────────────────────── */
.rc-td__equip-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid rgba(50, 47, 48, 0.08);
}

.rc-td__equip-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.84rem;
  color: var(--rc-dark);
  line-height: 1.4;
}

.rc-td__equip-list li svg {
  flex-shrink: 0;
  color: var(--rc-yellow);
  margin-top: 2px;
}

/* ── Preisblock (innerhalb der Karte) ────────────────────── */
.rc-td__price-eyebrow {
  font-family: var(--rc-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(50, 47, 48, 0.08);
  margin-bottom: 6px;
}

.rc-td__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.rc-td__price-big {
  font-family: var(--rc-font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--rc-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.rc-td__price-mwst {
  font-family: var(--rc-font);
  font-size: 0.78rem;
  color: rgba(50, 47, 48, 0.45);
}

.rc-td__price-info {
  font-size: 0.76rem;
  color: rgba(50, 47, 48, 0.42);
  line-height: 1.5;
  margin: 4px 0 0;
}

/* ── Prozess-Block ───────────────────────────────────────── */
.rc-trailer-process {
  background: #f8f7f6;
  padding: 72px 0;
  font-family: var(--rc-font);
}

.rc-trailer-process__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.rc-trailer-process__header {
  margin-bottom: 40px;
  text-align: center;
}

.rc-trailer-process__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-bottom: 10px;
}

.rc-trailer-process__headline {
  font-family: var(--rc-font);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.rc-trailer-process__grid {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.rc-trailer-process__step {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px 24px;
  box-shadow: 0 2px 16px rgba(50, 47, 48, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rc-trailer-process__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(50, 47, 48, 0.12);
}

.rc-trailer-process__step:hover + .rc-trailer-process__arrow {
  opacity: 1;
}

.rc-trailer-process__step-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-trailer-process__num {
  width: 34px;
  height: 34px;
  background: var(--rc-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rc-font);
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.rc-trailer-process__icon { color: var(--rc-yellow); opacity: 0.9; }

.rc-trailer-process__arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-yellow);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.rc-trailer-process__step-title {
  font-family: var(--rc-font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.rc-trailer-process__step-desc {
  font-size: 0.84rem;
  color: rgba(50, 47, 48, 0.58);
  line-height: 1.6;
  margin: 0;
}

/* ── "Warum ein Trailer?" Block ──────────────────────────── */
.rc-td__why-block {
  margin-top: 32px;
  padding: 18px 20px;
  background: rgba(240, 184, 0, 0.10);
  border-left: 3px solid var(--rc-yellow);
  border-radius: 0 8px 8px 0;
}

.rc-td__why-label {
  font-family: var(--rc-font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-bottom: 14px;
}

.rc-td__why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rc-td__why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--rc-dark);
  line-height: 1.4;
}

.rc-td__why-list li svg { flex-shrink: 0; color: rgba(50, 47, 48, 0.38); }

/* ── CTA Vertrauensindikatoren ───────────────────────────── */
.rc-trailer-cta__checks {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.rc-trailer-cta__checks span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  font-weight: 500;
}

.rc-trailer-cta__checks svg { color: var(--rc-yellow); flex-shrink: 0; }

/* ── Linke Spalte – Eyebrow ──────────────────────────────── */
.rc-td__eyebrow {
  font-family: var(--rc-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-bottom: 10px;
}

/* ── Footer CTA ──────────────────────────────────────────── */
.rc-trailer-cta {
  background: var(--rc-dark);
  padding: 56px 0;
  font-family: var(--rc-font);
}

.rc-trailer-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.rc-trailer-cta__eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  display: block;
  margin-bottom: 10px;
}

.rc-trailer-cta__headline {
  font-family: var(--rc-font);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.rc-trailer-cta__subline {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.rc-trailer-cta__right {
  flex-shrink: 0;
  text-align: center;
}

.rc-trailer-cta__note {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 8px 0 0;
  display: block;
}


/* ============================================================
   TERMINBUCHUNG (.rc-termin)
   ============================================================ */

.rc-termin {
  background: transparent;
  padding: 0;
  font-family: var(--rc-font);
}

/* ── Zweispaltig: Panel | Booking ──────────────────────────── */
.rc-termin__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 32px;
  align-items: stretch;
}

/* ── Linkes Info-Panel ─────────────────────────────────────── */
.rc-termin__panel {
  background: var(--rc-dark);
  border-radius: 12px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}

.rc-termin__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 16px;
}

.rc-termin__headline {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--rc-white);
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rc-termin__intro {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.7;
  margin: 0 0 40px;
}

/* USP-Liste */
.rc-termin__usps {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rc-termin__usp {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.rc-termin__usp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(240, 184, 0, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-yellow);
  margin-top: 1px;
}

.rc-termin__usp strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rc-white);
  margin-bottom: 2px;
  line-height: 1.3;
}

.rc-termin__usp span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* Google Maps Link innerhalb USP */
.rc-termin__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: rgba(240, 184, 0, 0.75);
  text-decoration: none;
  transition: color var(--rc-transition);
  margin-top: 3px;
}

.rc-termin__maps-link:hover {
  color: var(--rc-yellow);
}

/* Span + Maps-Link im Showroom-USP untereinander */
.rc-termin__usp div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* Adresszeile (als Link) */
.rc-termin__address {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--rc-transition);
}

.rc-termin__address:hover {
  color: rgba(255, 255, 255, 0.60);
}

.rc-termin__address svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.30);
}

/* ── Rechte Booking-Karte ──────────────────────────────────── */
.rc-termin__booking {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(50, 47, 48, 0.09);
  display: flex;
  flex-direction: column;
}

/* Header-Bereich */
.rc-termin__cta-header {
  background: var(--rc-dark);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
}

/* Dekorative Hintergrundelemente */
.rc-termin__cta-header::before {
  content: '';
  position: absolute;
  right: -24px;
  top: -24px;
  width: 160px;
  height: 160px;
  background: rgba(240, 184, 0, 0.07);
  border-radius: 28px;
  transform: rotate(18deg);
}

.rc-termin__cta-header::after {
  content: '';
  position: absolute;
  right: 40px;
  bottom: -40px;
  width: 110px;
  height: 110px;
  background: rgba(240, 184, 0, 0.05);
  border-radius: 20px;
  transform: rotate(-10deg);
}

.rc-termin__cta-icon {
  color: var(--rc-yellow);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.rc-termin__cta-title {
  font-family: var(--rc-font);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  max-width: 340px;
}

.rc-termin__cta-subtitle {
  font-family: var(--rc-font);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Schritt-Liste */
.rc-termin__steps {
  list-style: none;
  margin: 0;
  padding: 36px 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.rc-termin__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}

/* Verbindungslinie zwischen den Schritten */
.rc-termin__step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: rgba(50, 47, 48, 0.07);
}

.rc-termin__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(240, 184, 0, 0.12);
  border: 2px solid rgba(240, 184, 0, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rc-font);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--rc-yellow);
  position: relative;
  z-index: 1;
}

.rc-termin__step-body strong {
  display: block;
  font-family: var(--rc-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin: 6px 0 4px;
  line-height: 1.3;
}

.rc-termin__step-body span {
  font-family: var(--rc-font);
  font-size: 0.80rem;
  color: rgba(50, 47, 48, 0.50);
  line-height: 1.5;
}

/* CTA-Footer */
.rc-termin__cta-footer {
  padding: 0 40px 40px;
  border-top: 1px solid rgba(50, 47, 48, 0.07);
  margin: 0 40px;
  padding-top: 28px;
}

.rc-termin__cta-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px !important;
  font-size: 0.95rem !important;
  text-align: center;
  text-decoration: none;
}

.rc-termin__cta-btn svg {
  flex-shrink: 0;
  transition: transform var(--rc-transition);
}

.rc-termin__cta-btn:hover svg {
  transform: translateX(4px);
}

.rc-termin__cta-note {
  font-family: var(--rc-font);
  text-align: center;
  font-size: 0.73rem;
  color: rgba(50, 47, 48, 0.35);
  margin: 12px 0 0;
  letter-spacing: 0.02em;
}

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 1024px) {
  .rc-termin__inner {
    grid-template-columns: 300px 1fr;
    gap: 24px;
  }
  .rc-termin__panel { padding: 40px 32px; }
  .rc-termin__cta-header { padding: 36px 32px 32px; }
  .rc-termin__steps { padding: 28px 32px 20px; }
  .rc-termin__cta-footer { margin: 0 32px; padding-top: 24px; padding-bottom: 32px; }
}

@media (max-width: 860px) {
  .rc-termin__inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 20px;
  }
  .rc-termin__panel { padding: 40px 32px; }
  .rc-termin__usps { gap: 16px; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 600px) {
  .rc-termin__inner { padding: 0 20px; gap: 16px; }
  .rc-termin__panel { padding: 32px 24px; }
  .rc-termin__cta-header { padding: 32px 24px 28px; }
  .rc-termin__steps { padding: 24px 24px 16px; }
  .rc-termin__cta-footer { margin: 0 24px; padding-bottom: 28px; }
}


/* ============================================================
   ÜBER UNS v2 – STORY (.rc-story)
   ============================================================ */

.rc-story {
  background: #faf8f5;
  padding: 96px 0;
  font-family: var(--rc-font);
}

.rc-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── Header ────────────────────────────────────────────────── */
.rc-story__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rc-story__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
}

.rc-story__headline {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rc-story__subline {
  font-size: 1rem;
  color: rgba(50, 47, 48, 0.60);
  line-height: 1.65;
  margin: 0;
  max-width: 480px;
}

/* Partner-Schild (Roof Space) */
.rc-story__partner-sign {
  position: relative;
  display: inline-block;
  background: linear-gradient(150deg, #ffffff 0%, #f2efec 100%);
  border-radius: 12px;
  padding: 20px 26px;
  flex-shrink: 0;
  transform: rotate(0deg);
  transition: transform var(--rc-transition), box-shadow var(--rc-transition);
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.18),
    0 3px 6px  rgba(0, 0, 0, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.20),
    0 16px 36px rgba(0, 0, 0, 0.14);
}

.rc-story__partner-sign:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px  rgba(0, 0, 0, 0.20),
    0 8px 18px rgba(0, 0, 0, 0.24),
    0 18px 40px rgba(0, 0, 0, 0.20),
    0 28px 56px rgba(0, 0, 0, 0.14);
}

.rc-story__partner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rc-story__partner-logo {
  width: 100px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.rc-story__partner-divider {
  width: 1px;
  height: 44px;
  background: rgba(50, 47, 48, 0.15);
  flex-shrink: 0;
}

.rc-story__partner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-story__partner-text strong {
  font-family: var(--rc-font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--rc-dark);
  white-space: nowrap;
  display: block;
}

@media (max-width: 480px) {
  .rc-story__partner-text strong,
  .rc-story__partner-text span {
    white-space: normal;
    font-size: 0.82rem;
  }
  .rc-story__partner-logo { width: 80px; }
}

.rc-story__partner-text span {
  font-family: var(--rc-font);
  font-size: 0.80rem;
  color: rgba(50, 47, 48, 0.52);
  white-space: nowrap;
}

/* ── 4 Story-Karten ────────────────────────────────────────── */
.rc-story__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rc-story__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 28px 32px;
  box-shadow: 0 2px 16px rgba(50, 47, 48, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--rc-transition), transform var(--rc-transition);
}

.rc-story__card:hover {
  box-shadow: 0 6px 32px rgba(50, 47, 48, 0.12);
  transform: translateY(-2px);
}

/* Nummer + Icon nebeneinander */
.rc-story__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rc-story__num {
  width: 34px;
  height: 34px;
  background: rgba(240, 184, 0, 0.12);
  border: 2px solid rgba(240, 184, 0, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rc-font);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--rc-yellow);
  flex-shrink: 0;
}

.rc-story__icon {
  color: var(--rc-yellow);
  opacity: 0.85;
}

.rc-story__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.rc-story__card-text {
  font-size: 0.88rem;
  color: rgba(50, 47, 48, 0.62);
  line-height: 1.75;
  margin: 0;
}

/* Schrauben (Partner-Schild) */
.rc-story__screw {
  position: absolute;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 35% 35%, #d8d3ce, #a09890);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.35), 0 1px 1px rgba(255,255,255,0.5);
}

.rc-story__screw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.28);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.rc-story__screw--tl { top: 9px;  left: 9px;  }
.rc-story__screw--tr { top: 9px;  right: 9px; }
.rc-story__screw--bl { bottom: 9px; left: 9px;  }
.rc-story__screw--br { bottom: 9px; right: 9px; }

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
  .rc-story { padding: 72px 0; }
  .rc-story__inner { padding: 0 32px; gap: 44px; }
  .rc-story__header { flex-direction: column; gap: 24px; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 640px) {
  .rc-story { padding: 56px 0; }
  .rc-story__inner { padding: 0 20px; gap: 36px; }
  .rc-story__cards { grid-template-columns: 1fr; }
  .rc-story__card { padding: 22px 20px 26px; }
}


/* ============================================================
   ÜBER UNS (.rc-about)
   ============================================================ */

.rc-about {
  background: #faf8f5;
  padding: 96px 0;
  font-family: var(--rc-font);
}

.rc-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ── Zone 1: Header + Badge ────────────────────────────────── */
.rc-about__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(50, 47, 48, 0.09);
}

.rc-about__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
}

.rc-about__headline {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.rc-about__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(240, 184, 0, 0.09);
  border: 1px solid rgba(240, 184, 0, 0.28);
  border-radius: 10px;
  margin-top: 6px;
}

.rc-about__badge svg {
  color: var(--rc-yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.rc-about__badge strong {
  display: block;
  font-family: var(--rc-font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rc-dark);
  margin-bottom: 3px;
  white-space: nowrap;
}

.rc-about__badge span {
  font-family: var(--rc-font);
  font-size: 0.75rem;
  color: rgba(50, 47, 48, 0.50);
  white-space: nowrap;
}

/* ── Zone 2: 4-Quadranten Story ────────────────────────────── */
.rc-about__story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(50, 47, 48, 0.09);
  border-bottom: 1px solid rgba(50, 47, 48, 0.09);
}

.rc-about__quad {
  padding: 36px 40px 36px 0;
  border-bottom: 1px solid rgba(50, 47, 48, 0.09);
}

/* Rechte Spalte */
.rc-about__quad:nth-child(even) {
  padding: 36px 0 36px 40px;
  border-left: 1px solid rgba(50, 47, 48, 0.09);
}

/* Untere Zeile: kein border-bottom */
.rc-about__quad--bottom {
  border-bottom: none;
}

.rc-about__section-title {
  font-family: var(--rc-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
  display: block;
}

.rc-about__text {
  font-size: 0.89rem;
  color: rgba(50, 47, 48, 0.62);
  line-height: 1.85;
  margin: 0 0 14px;
}

.rc-about__text:last-child {
  margin-bottom: 0;
}

/* Highlight-Satz in "Warum Roof Camp?" */
.rc-about__text--highlight {
  font-size: 0.88rem;
  font-weight: 600;
  font-style: italic;
  color: var(--rc-dark);
  border-left: 3px solid var(--rc-yellow);
  padding: 10px 14px;
  background: rgba(240, 184, 0, 0.07);
  border-radius: 0 6px 6px 0;
  margin-top: 6px;
  line-height: 1.6;
}

/* ── Zone 3: Team-Karten ───────────────────────────────────── */
.rc-about__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Karte: Zweispaltig – Foto links, Glasspanel rechts */
.rc-about__card {
  display: grid;
  grid-template-columns: 48% 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(50, 47, 48, 0.14);
  background: var(--rc-dark);
}

.rc-about__card-photo {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.rc-about__card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.5s ease;
}


.rc-about__card:hover .rc-about__card-photo img {
  transform: scale(1.03);
}

/* Info-Panel: leichte Transparenz + gelber Akzentbalken */
.rc-about__card-info {
  background: rgba(40, 37, 38, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-left: 3px solid var(--rc-yellow);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
}

.rc-about__card-name {
  font-family: var(--rc-font);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.rc-about__card-role {
  font-family: var(--rc-font);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--rc-yellow);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.rc-about__card-quote {
  font-family: var(--rc-font);
  font-size: 0.80rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rc-about__card-usps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
}

.rc-about__card-usps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--rc-font);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}

.rc-about__card-usps li svg {
  flex-shrink: 0;
  color: var(--rc-yellow);
  margin-top: 1px;
}

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 1024px) {
  .rc-about__card { grid-template-columns: 44% 1fr; }
  .rc-about__quad { padding-right: 28px; }
  .rc-about__quad:nth-child(even) { padding-left: 28px; }
}

@media (max-width: 860px) {
  .rc-about { padding: 72px 0; }
  .rc-about__inner { padding: 0 32px; gap: 40px; }
  /* Header: Badge unter Headline */
  .rc-about__header { flex-direction: column; gap: 20px; }
  /* 4 Quadranten → 1 Spalte */
  .rc-about__story { grid-template-columns: 1fr; }
  .rc-about__quad { padding: 28px 0; border-left: none !important; border-bottom: 1px solid rgba(50,47,48,0.09) !important; }
  .rc-about__quad--bottom:last-child { border-bottom: none !important; }
  /* Team */
  .rc-about__team { grid-template-columns: 1fr; }
  .rc-about__card { grid-template-columns: 42% 1fr; }
  .rc-about__card-photo { min-height: 280px; }
}

@media (max-width: 600px) {
  .rc-about { padding: 56px 0; }
  .rc-about__inner { padding: 0 16px; gap: 28px; }

  /* Karte: Foto als Vollhintergrund, Info als Gradient-Overlay */
  .rc-about__card {
    display: block;
    position: relative;
  }

  .rc-about__card-photo {
    min-height: unset;
    aspect-ratio: 4 / 5;
    position: relative;
  }

  .rc-about__card-photo img {
    object-position: center top;
  }

  /* Info als Gradient-Overlay über dem Foto */
  .rc-about__card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
      to top,
      rgba(40, 37, 38, 0.97) 0%,
      rgba(40, 37, 38, 0.90) 55%,
      transparent 100%
    );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-left: 3px solid var(--rc-yellow);
    border-radius: 0 0 12px 12px;
    padding: 20px 18px 22px;
  }

  .rc-about__card-quote { display: none; }

  .rc-about__badge strong,
  .rc-about__badge span { white-space: normal; }
}


/* ============================================================
   PRODUKTKARTE – ACCORDION (.rc-pdetails)
   Stil: flache Trennlinien wie Hersteller roofspace.de
   ============================================================ */

/* Wrapper */
.rc-pdetails {
  margin-top: 20px;
  border-top: 1px solid rgba(50, 47, 48, 0.10);
}

/* Item = <details>: kein Karten-BG, nur untere Trennlinie */
.rc-pdetails__item {
  border-bottom: 1px solid rgba(50, 47, 48, 0.10);
}

/* Trigger = <summary> – kein Browser-Dreieck */
.rc-pdetails__trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.rc-pdetails__trigger::-webkit-details-marker { display: none; }
.rc-pdetails__trigger::marker { display: none; }

/* Icon links – dunkel wie beim Hersteller */
.rc-pdetails__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--rc-dark);
  opacity: 0.75;
}

/* Titel */
.rc-pdetails__title {
  flex: 1;
  font-family: var(--rc-font);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--rc-dark);
  line-height: 1.2;
}

/* Chevron rechts – dreht bei [open] */
.rc-pdetails__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--rc-dark);
  opacity: 0.70;
  transition: transform 0.28s ease;
}

.rc-pdetails__item[open] .rc-pdetails__chevron {
  transform: rotate(180deg);
}

/* Body – Text fluchtet mit Titel (20px Icon + 14px Gap) */
.rc-pdetails__body {
  padding: 0 0 20px 34px;
}

/* Fließtext */
.rc-pdetails__text {
  font-family: var(--rc-font);
  font-size: 0.86rem;
  color: rgba(50, 47, 48, 0.65);
  line-height: 1.75;
  margin: 0;
}

/* Liste */
.rc-pdetails__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.rc-pdetails__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--rc-font);
  font-size: 0.86rem;
  color: rgba(50, 47, 48, 0.65);
  line-height: 1.5;
}

.rc-pdetails__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background: var(--rc-yellow);
  border-radius: 50%;
  margin-top: 6px;
}

/* Specs-Grid – 2-spaltig, nutzt vorhandene .rc-spec-Kacheln */
.rc-pdetails__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

/* Preis-Block: gestapelt statt nebeneinander */
.rc-product-card__price {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.rc-product-card__price-label {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 640px) {
  .rc-pdetails__specs { grid-template-columns: 1fr; }
  .rc-pdetails__body  { padding-left: 0; }
}


/* ============================================================
   ZUBEHÖR – Section Header (.rc-zubeh) + Produktkarten
   (#zubehoer, #zubehoer-produkte)
   ============================================================ */

/* ── Section Header ────────────────────────────────────────── */
.rc-zubeh {
  position: relative;
  background-color: var(--rc-dark);
  background-size: cover;
  background-position: center 40%;
  min-height: 88vh;
  font-family: var(--rc-font);
}

#zubehoer.rc-zubeh {
  background-image: url('https://roof.camp/files/2026/05/31/rc_zubehoer.png');
}

.rc-zubeh__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 30%,
    rgba(255, 255, 255, 0.15) 52%,
    transparent 66%
  );
  z-index: 0;
}

/* Inner: position relative damit z-index greift */
.rc-zubeh__inner {
  position: relative;
  z-index: 1;
}

/* Bar: absolut am unteren Rand fixiert – unabhängig von Joomla-Wrappern */
.rc-zubeh__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.rc-zubeh__inner {
  text-align: left;
  padding: 80px 48px 160px; /* 160px = Abstand zur absolut positionierten Bar */
  max-width: 480px;
  margin: 0;
}

.rc-zubeh__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 16px;
}

.rc-zubeh__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--rc-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.rc-zubeh__subline {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  color: rgba(50, 47, 48, 0.70);
  line-height: 1.6;
  margin: 0 0 32px;
}

/* ── Feature Bar ───────────────────────────────────────────── */
.rc-zubeh__bar {
  background: var(--rc-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.rc-zubeh__bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rc-zubeh__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  gap: 10px;
}

.rc-zubeh__feature:last-child { border-right: none; }

.rc-zubeh__feature-icon { color: var(--rc-yellow); flex-shrink: 0; }

.rc-zubeh__feature strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.rc-zubeh__feature span {
  font-size: 0.74rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

/* ── Produktkarten-Sektion ─────────────────────────────────── */
#zubehoer-produkte.rc-products {
  background: #ffffff;
  padding: 64px 0 80px;
}

/* 3-spaltiges Grid auf Desktop */
#zubehoer-produkte .rc-products__grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Bildformat: 4:3 für bessere Produktansicht */
#zubehoer-produkte .rc-product-card__image-wrap {
  aspect-ratio: 4 / 3;
}

#zubehoer-produkte .rc-product-card__image {
  object-fit: cover;
  object-position: top center;
}

/* „ab" vor dem Preis – leichter, kleiner als Preiszahl */
.rc-price-prefix {
  font-size: 0.60em;
  font-weight: 400;
  color: rgba(50, 47, 48, 0.55);
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-right: 1px;
}

/* Footer: Preis oben, Button darunter – verhindert Zeilenumbruch im Preis */
#zubehoer-produkte .rc-product-card__footer {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

#zubehoer-produkte .rc-product-card__price {
  flex-direction: row;
  align-items: baseline;
  gap: 5px;
}

#zubehoer-produkte .rc-btn--dark,
#zubehoer-produkte .rc-btn--primary {
  width: 100%;
  text-align: center;
}

/* ── Responsive: Tablet → 2 Karten ────────────────────────── */
@media (max-width: 1024px) {
  #zubehoer-produkte .rc-products__grid { grid-template-columns: repeat(2, 1fr); }
  .rc-zubeh__inner { padding: 64px 32px 160px; }
  .rc-zubeh__bar-inner { padding: 0 32px; }
}

/* ── Responsive: Mobile → 1 Spalte ────────────────────────── */
@media (max-width: 640px) {
  #zubehoer-produkte .rc-products__grid { grid-template-columns: 1fr; }
  .rc-zubeh__inner { padding: 52px 20px 160px; max-width: 100%; }
  /* Zubehör: eigenes Hochformat-Bild auf Mobile, Motiv unten sichtbar */
  #zubehoer.rc-zubeh {
    background-image: url('https://roof.camp/files/2026/05/31/rc_zubehoer_mobile.png');
    background-position: center 40%;
    min-height: 115svh;
  }
  /* Overlay auf Mobile: dunkles Overlay oben → transparent */
  .rc-zubeh__overlay {
    background: linear-gradient(
      to bottom,
      rgba(50, 47, 48, 0.75) 0%,
      rgba(50, 47, 48, 0.40) 40%,
      rgba(50, 47, 48, 0.00) 58%
    );
  }
  .rc-zubeh__headline { color: #ffffff; }
  .rc-zubeh__subline  { color: rgba(255, 255, 255, 0.85); }
  .rc-zubeh__bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .rc-zubeh__feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .rc-zubeh__feature:nth-child(even) { border-right: none; }
  .rc-zubeh__feature:nth-child(3),
  .rc-zubeh__feature:nth-child(4)    { border-bottom: none; }
  .rc-zubeh .rc-btn { width: fit-content; }
}


/* ============================================================
   FOOTER (.rc-footer)
   Joomla Custom HTML Modul in Position footer1
   ============================================================ */

/* Helix-Footer-Wrapper neutralisieren */
#sp-footer {
  background: var(--rc-dark) !important;
  padding: 0 !important;
}
#sp-footer .container,
#sp-footer .container-fluid {
  padding: 0 !important;
  max-width: 100% !important;
}
/* Helix Copyright-Bar ausblenden – rc-footer bringt eigene */
#sp-footer .sp-copyright,
#sp-footer .copyright {
  display: none !important;
}

/* ── Wrapper ───────────────────────────────────────────────── */
.rc-footer {
  background: var(--rc-dark);
  font-family: var(--rc-font);
  color: rgba(255, 255, 255, 0.90) !important;
  width: 100%;
}


/* ── Dreispaltiges Layout ──────────────────────────────────── */
.rc-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

/* ── Spalte 1: Logo + Claim + Social ──────────────────────── */
/* ── Logo-Schild mit 4 Schrauben ───────────────────────────── */
.rc-footer__logo-link {
  display: inline-block;
  position: relative;
  background: linear-gradient(150deg, #ffffff 0%, #f2efec 100%);
  border-radius: 10px;
  padding: 16px 22px;
  margin-bottom: 20px;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.18),
    0 3px 6px  rgba(0, 0, 0, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.16);
  transition: transform var(--rc-transition), box-shadow var(--rc-transition);
  cursor: default;
}

.rc-footer__logo-link:hover {
  transform: translateY(-4px);
  box-shadow:
    0 2px 4px  rgba(0, 0, 0, 0.20),
    0 8px 18px rgba(0, 0, 0, 0.24),
    0 18px 40px rgba(0, 0, 0, 0.20),
    0 28px 56px rgba(0, 0, 0, 0.14);
}

/* Schrauben in den Ecken */
.rc-footer__screw {
  position: absolute;
  width: 9px;
  height: 9px;
  background: radial-gradient(circle at 35% 35%, #d8d3ce, #a09890);
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.35), 0 1px 1px rgba(255,255,255,0.5);
}

/* Schlitz auf der Schraube */
.rc-footer__screw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1.5px;
  background: rgba(0, 0, 0, 0.28);
  transform: translateY(-50%) rotate(45deg);
  border-radius: 1px;
}

.rc-footer__screw--tl { top: 9px;  left: 9px;  }
.rc-footer__screw--tr { top: 9px;  right: 9px; }
.rc-footer__screw--bl { bottom: 9px; left: 9px;  }
.rc-footer__screw--br { bottom: 9px; right: 9px; }

.rc-footer__logo {
  width: 150px;
  height: auto;
  display: block;
}

.rc-footer__claim {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.75;
  margin: 0 0 24px;
}

.rc-footer__social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rc-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--rc-font);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color var(--rc-transition), color var(--rc-transition),
              background var(--rc-transition);
  width: fit-content;
}

.rc-footer__social-link:hover {
  border-color: var(--rc-yellow);
  color: var(--rc-yellow);
  background: rgba(240, 184, 0, 0.08);
}

/* ── Abschnitts-Heading ────────────────────────────────────── */
.rc-footer__heading {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rc-yellow) !important;
  margin: 0 0 20px;
}

/* ── Quicklinks ────────────────────────────────────────────── */
.rc-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.rc-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
  transition: color var(--rc-transition);
}

.rc-footer__links a:hover { color: var(--rc-yellow); }

/* ── Adresse ───────────────────────────────────────────────── */
.rc-footer__address {
  font-style: normal;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.75;
  margin: 0 0 18px;
}

/* ── Kontakt-Items ─────────────────────────────────────────── */
.rc-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.rc-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
  transition: color var(--rc-transition);
}

.rc-footer__contact-item:hover { color: var(--rc-yellow); }

.rc-footer__contact-item svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color var(--rc-transition);
}

.rc-footer__contact-item:hover svg { color: var(--rc-yellow) !important; }

/* ── Öffnungszeiten ────────────────────────────────────────── */
.rc-footer__hours {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rc-footer__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.84rem;
}

.rc-footer__hours-day {
  font-weight: 600;
  color: var(--rc-yellow) !important;
}

.rc-footer__hours-time {
  color: rgba(255, 255, 255, 0.78) !important;
}

.rc-footer__hours-note {
  font-size: 0.74rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75) !important;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* ── Bottom Bar ────────────────────────────────────────────── */
.rc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.rc-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rc-footer__bottom-inner > span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.rc-footer__legal { display: flex; gap: 20px; }

.rc-footer__legal a {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
  transition: color var(--rc-transition);
}

.rc-footer__legal a:hover { color: var(--rc-yellow) !important; }

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
  .rc-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 32px 40px;
  }
  .rc-footer__brand { grid-column: 1 / -1; }
  .rc-footer__bottom-inner { padding: 18px 32px; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 600px) {
  .rc-footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 20px 36px;
  }
  .rc-footer__brand { grid-column: auto; }
  .rc-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 20px;
  }
}


/* ============================================================
   KONTAKT & ANFAHRT (.rc-contact)
   ============================================================ */

.rc-contact {
  background: #f8f7f7;
  padding: 96px 0;
  font-family: var(--rc-font);
}

/* ── Zweispaltig: Links Kontakt | Rechts Karte + Meta ──────── */
.rc-contact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Rechte Spalte: flex damit Karte + Button + Meta gestapelt */
.rc-contact__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Linke Spalte: Header ──────────────────────────────────── */
.rc-contact__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
}

.rc-contact__headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--rc-dark);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.rc-contact__subline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(50, 47, 48, 0.65);
  line-height: 1.65;
  margin: 0 0 36px;
}

/* ── Kontaktkarten ─────────────────────────────────────────── */
.rc-contact__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.rc-contact__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #f8f7f7;
  border: 1px solid rgba(50, 47, 48, 0.08);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color var(--rc-transition), background var(--rc-transition),
              transform var(--rc-transition);
}

.rc-contact__card:hover {
  border-color: var(--rc-yellow);
  background: rgba(240, 184, 0, 0.05);
  transform: translateX(4px);
}

/* WhatsApp-Karte: grüner Hover-Akzent */
.rc-contact__card--wa:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.05);
}

.rc-contact__card--wa:hover .rc-contact__card-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.rc-contact__card--wa:hover .rc-contact__card-arrow {
  color: #25d366;
}

/* CTA-Karte: dunkel */
.rc-contact__card--cta {
  background: var(--rc-dark);
  border-color: var(--rc-dark);
  margin-top: 4px;
}

.rc-contact__card--cta:hover {
  background: #1a1819;
  border-color: #1a1819;
  transform: translateX(4px);
}

/* Icon */
.rc-contact__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(50, 47, 48, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rc-dark);
  transition: background var(--rc-transition), color var(--rc-transition);
}

.rc-contact__card:hover .rc-contact__card-icon {
  background: rgba(240, 184, 0, 0.15);
  color: var(--rc-yellow);
}

.rc-contact__card--cta .rc-contact__card-icon {
  background: rgba(240, 184, 0, 0.15);
  color: var(--rc-yellow);
}

.rc-contact__card--cta:hover .rc-contact__card-icon {
  background: rgba(240, 184, 0, 0.25);
}

/* Card Body */
.rc-contact__card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-contact__card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(50, 47, 48, 0.40);
}

.rc-contact__card--cta .rc-contact__card-label {
  color: rgba(255, 255, 255, 0.45);
}

.rc-contact__card-value {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--rc-dark);
  line-height: 1.2;
}

.rc-contact__card--cta .rc-contact__card-value {
  color: #ffffff;
}

/* Arrow */
.rc-contact__card-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: rgba(50, 47, 48, 0.28);
  transition: color var(--rc-transition), transform var(--rc-transition);
}

.rc-contact__card:hover .rc-contact__card-arrow {
  color: var(--rc-yellow);
  transform: translateX(3px);
}

.rc-contact__card--cta .rc-contact__card-arrow {
  color: rgba(255, 255, 255, 0.40);
}

.rc-contact__card--cta:hover .rc-contact__card-arrow {
  color: var(--rc-yellow);
}

/* ── Meta: Adresse + Öffnungszeiten (rechte Spalte, unter Karte) */
.rc-contact__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(50, 47, 48, 0.08);
}

.rc-contact__meta-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin-bottom: 12px;
}

.rc-contact__meta-value {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--rc-dark);
  line-height: 1.75;
}

/* Öffnungszeiten */
.rc-contact__hours {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rc-contact__hours-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--rc-dark);
}

.rc-contact__hours-day {
  font-weight: 600;
  white-space: nowrap;
}

.rc-contact__hours-time {
  color: rgba(50, 47, 48, 0.60);
  white-space: nowrap;
}

.rc-contact__hours-note {
  font-size: 0.76rem;
  color: rgba(50, 47, 48, 0.42);
  font-style: italic;
  margin: 8px 0 0;
  line-height: 1.5;
}

/* ── Rechte Spalte: Karte ──────────────────────────────────── */
.rc-contact__map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(50, 47, 48, 0.12);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(50, 47, 48, 0.08);
}

.rc-contact__map,
.rc-contact__map-wrap iframe,
.rc-contact__map-wrap > div {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.rc-contact__map-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  text-align: center;
  text-decoration: none;
}

.rc-contact__map-btn svg {
  flex-shrink: 0;
  transition: transform var(--rc-transition);
}

.rc-contact__map-btn:hover svg {
  transform: scale(1.15);
}

/* ── Responsive: Tablet ────────────────────────────────────── */
@media (max-width: 900px) {
  .rc-contact { padding: 72px 0; }
  .rc-contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }
  /* Auf Tablet: Karten-Grid wieder einspaltig mit Meta darunter */
  .rc-contact__right { gap: 0; }
}

/* ── Responsive: Mobile ────────────────────────────────────── */
@media (max-width: 540px) {
  .rc-contact { padding: 56px 0; }
  .rc-contact__inner { padding: 0 20px; gap: 36px; }
  .rc-contact__meta { grid-template-columns: 1fr; gap: 20px; }
  .rc-contact__card-value { font-size: 0.86rem; }
  .rc-contact__map-btn { padding: 14px 20px; font-size: 0.85rem; }
}


/* ============================================================
   IMPRESSUM (.rc-legal)
   ============================================================ */

.rc-legal {
  background: #faf8f5;
  padding: 140px 0 80px;
  font-family: var(--rc-font);
}

.rc-legal__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Header ─────────────────────────────────────────────── */
.rc-legal__header {
  margin-bottom: 40px;
}

.rc-legal__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rc-yellow);
  margin: 0 0 14px;
}

.rc-legal__headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--rc-dark);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

/* ── Karte mit IT-Recht Kanzlei Inhalt ──────────────────── */
.rc-legal__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 44px;
  box-shadow: 0 2px 20px rgba(50, 47, 48, 0.08);
  font-size: 0.92rem;
  color: rgba(50, 47, 48, 0.80);
  line-height: 1.8;
}

/* Typografie innerhalb des eingebetteten Rechtstexts */
.rc-legal__card h2,
.rc-legal__card h3 {
  font-family: var(--rc-font);
  font-weight: 700;
  color: var(--rc-dark);
  margin: 1.8em 0 0.6em;
  letter-spacing: -0.01em;
  padding-left: 14px;
  border-left: 3px solid var(--rc-yellow);
}

.rc-legal__card h2 { font-size: 1.05rem; }
.rc-legal__card h3 { font-size: 0.95rem; }

/* Kontakt-Infoblock (1.2) */
.rc-legal__contact-block {
  background: rgba(240, 184, 0, 0.06);
  border: 1px solid rgba(240, 184, 0, 0.20);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0.8em 0 1em;
  font-size: 0.88rem;
  color: var(--rc-dark);
  line-height: 1.7;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.rc-legal__card p {
  margin: 0 0 0.9em;
}

.rc-legal__card p > b:first-child {
  color: var(--rc-yellow);
  font-weight: 700;
  margin-right: 0.25em;
}

.rc-legal__card a {
  color: var(--rc-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--rc-transition);
}

.rc-legal__card a:hover {
  color: var(--rc-yellow);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 640px) {
  .rc-legal { padding: 110px 0 60px; }
  .rc-legal__inner { padding: 0 20px; }
  .rc-legal__card { padding: 28px 24px; }
}
