/* FF-WHEELS v4 — Apple Card-Based Light */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&display=swap');

:root {
  --bg: #F5F5F7;
  --card: #FFFFFF;
  --card-alt: #ECECEE;
  --text: #1D1D1F;
  --text2: #6E6E73;
  --text3: #86868B;
  --accent: #B29876;
  --accent-lt: #C4AC8E;
  --border: rgba(0,0,0,0.04);
  --shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 24px rgba(0,0,0,0.10);
  --r: 20px;
  --r-sm: 14px;
  --r-lg: 24px;
  --max: 1440px;
  --edge: clamp(16px, 3vw, 40px);
  --font: 'Inter', -apple-system, sans-serif;
}

body.home, .ff-page { background: var(--bg)!important; color: var(--text); font-family: var(--font); -webkit-font-smoothing: antialiased; }
.fx { max-width: var(--max); margin: 0 auto; padding: 0 var(--edge); }

/* Typo */
.t-caps { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text3); }
.t-h1 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; }
.t-h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.t-h3 { font-size: 17px; font-weight: 600; line-height: 1.3; }
.t-body { font-size: 15px; line-height: 1.6; color: var(--text2); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 980px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all .3s; }
.btn--fill { background: var(--text); color: #fff; }
.btn--fill:hover { background: #333; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,.12); }
.btn--outline:hover { border-color: var(--text); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-lt); }
.btn--white { background: #fff; color: var(--text); box-shadow: var(--shadow); }
.btn--white:hover { box-shadow: var(--shadow-hover); }

/* Reveal */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.rv.is-v { opacity: 1; transform: none; }


/* ═══ HERO — Apple Card Bento ═══ */
.ff-hero { padding: 80px 0 32px; }
.ff-hero__grid {
  display: grid; grid-template-columns: 1fr .32fr; gap: 14px;
  height: 55vh; min-height: 320px; max-height: 520px;
}

/* Main card = text + image combined */
.ff-hero__main {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: .42fr 1fr;
  box-shadow: var(--shadow);
}
.ff-hero__text {
  padding: 32px 30px; display: flex; flex-direction: column; justify-content: space-between;
}
.ff-hero__badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600;
  color: var(--accent); margin-bottom: 16px;
}
.ff-hero__badge img { width: 22px; height: 22px; border-radius: 6px; object-fit: cover; }
.ff-hero__text .t-h1 { margin-bottom: 10px; }
.ff-hero__text .t-body { margin-bottom: 24px; max-width: 260px; }
.ff-hero__image {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  isolation: isolate;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
/* Top-left dark vignette */
.ff-hero__image::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 0% 0%, rgba(0,0,0,.22) 0%, transparent 70%);
}

/* Slides — crossfade */
.ff-hero__slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .8s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.ff-hero__slide.is-active { opacity: 1; z-index: 1; }
.ff-hero__slide img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

/* First slide visible by default before JS kicks in */
.ff-hero__slide:first-of-type { opacity: 1; }

/* Dots */
.ff-hero__dots {
  position: absolute; top: 16px; left: 16px; z-index: 20;
  display: flex; gap: 6px; align-items: center;
}
.ff-hero__slide-label {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,.7);
  margin-left: 8px; letter-spacing: .01em;
  transition: opacity .2s ease;
  white-space: nowrap;
}
.ff-hero__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 1.5px solid rgba(255,255,255,.8);
  cursor: pointer; padding: 0;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative; overflow: hidden;
}
.ff-hero__dot.is-active {
  width: 26px; border-radius: 4px;
  background: #fff; border-color: #fff;
}
.ff-hero__dot.is-active::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.15);
  animation: dot-progress 3.5s linear forwards;
  transform-origin: left;
  border-radius: 4px;
}
@keyframes dot-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.ff-hero__image-dots { display: none; }
.ff-hero__trust {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; gap: 8px; flex-wrap: wrap; z-index: 10;
}
.ff-hero__trust-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 980px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.3);
  font-size: 11px; font-weight: 600; color: #fff;
}
.ff-hero__trust-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.ff-hero__image-dots { display: none; }

/* Right sidebar cards */
.ff-hero__sidebar { display: flex; flex-direction: column; gap: 8px; min-height: 0; }
.ff-hero__side-card {
  background: #fff; border-radius: var(--r);
  display: grid; grid-template-columns: auto 1fr; flex: 1; min-height: 0;
  text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: box-shadow .3s, transform .3s; overflow: hidden;
}
.ff-hero__side-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.ff-hero__side-thumb {
  height: 100%; aspect-ratio: 1; background: var(--bg);
  overflow: hidden;
}
.ff-hero__side-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ff-hero__side-info { padding: 10px 16px; display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.ff-hero__side-name { font-size: 15px; font-weight: 700; color: var(--text); }
.ff-hero__side-sub { font-size: 13px; color: var(--text3); margin-top: 2px; }
.ff-hero__side-btn {
  display: block; margin-top: 5px;
  background: none; color: var(--accent);
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 0; border-radius: 0;
  transition: opacity .2s;
}
.ff-hero__side-card:hover .ff-hero__side-btn { opacity: .7; }

/* Dark variant — Kompletträder card */
.ff-hero__side-card--dark {
  background: #111;
}
.ff-hero__side-card--dark:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.ff-hero__side-thumb--dark { background: #1e1e1e; }
.ff-hero__side-cta {
  margin-top: 6px; font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: .04em;
  transition: letter-spacing .2s;
}
.ff-hero__side-card--dark:hover .ff-hero__side-cta { letter-spacing: .08em; }

/* ═══ TRUST BAR ═══ */
.ff-trust { padding: 40px 0 0; }
.ff-trust__row {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.ff-trust__item { display: flex; align-items: center; gap: 10px; }
.ff-trust__item .material-symbols-rounded { font-size: 20px; color: var(--accent); }
.ff-trust__item span:last-child { font-size: 13px; font-weight: 500; color: var(--text2); }

/* ═══ SECTION HEADER ═══ */
.sec-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.sec-head .t-h2 { margin: 0; }
.sec-link { font-size: 14px; font-weight: 500; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 4px; border: 1px solid var(--border); padding: 8px 20px; border-radius: 980px; transition: all .3s; }
.sec-link:hover { border-color: var(--accent); }

/* ═══ PRODUCTS ═══ */
.ff-products { padding: 64px 0; }
.ff-products .sec-head { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ff-products .sec-head .t-h2 { margin-right: 0; }

/* View Toggle */
.ff-view-toggle { display: flex; gap: 4px; background: var(--card); border-radius: 10px; padding: 3px; border: 1px solid var(--border); margin-left: auto; }
.ff-view-btn {
  height: 32px; border: none; background: transparent; border-radius: 8px; padding: 0 12px;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px;
  color: var(--text3); font-size: 12px; font-weight: 600; transition: all .2s;
  white-space: nowrap;
}
.ff-view-btn.is-active { background: var(--text); color: #fff; }
.ff-view-btn:hover:not(.is-active) { color: var(--text); }

/* Stacked Grid */
.ff-stacked { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Stacked Card */
.sc {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: box-shadow .3s, transform .3s;
}
.sc:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.sc__img-wrap {
  position: relative; aspect-ratio: 1; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sc__img-wrap .pc__badge { z-index: 2; }
.sc__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .4s ease;
}
.sc__img.is-active { opacity: 1; }
.sc__body { padding: 20px 24px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.sc__name { font-size: 20px; font-weight: 700; color: var(--text); margin: 4px 0 6px; }
.sc__swatches { display: flex; gap: 8px; margin-top: 14px; align-items: center; flex-wrap: wrap; }
.sc__swatch {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid transparent;
  cursor: pointer; transition: all .2s; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.sc__swatch.is-active { border-color: var(--text); transform: scale(1.15); }
.sc__swatch:hover:not(.is-active) { transform: scale(1.1); }
.sc__color-label {
  font-size: 12px; color: var(--text3); margin-left: 4px;
  white-space: nowrap; line-height: 22px;
}
.sc__cta {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 16px;
  font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none;
  transition: gap .2s;
}
.sc__cta:hover { gap: 8px; }

/* CTA "Alle ansehen" card */
.sc--cta { text-decoration: none; background: var(--card); }
.sc--cta:hover { box-shadow: var(--shadow-hover); }
.sc__cta-visual {
  background: #fff!important; display: flex; align-items: center; justify-content: center;
}
.sc__cta-visual .material-symbols-rounded {
  font-size: 56px; color: var(--accent);
  font-variation-settings: 'FILL' 0, 'wght' 300;
  transition: transform .3s;
}
.sc--cta:hover .sc__cta-visual .material-symbols-rounded { transform: translateX(8px); }

/* Tabs */
.ff-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
.ff-tab {
  padding: 8px 22px; border-radius: 980px; font-size: 13px; font-weight: 600;
  color: var(--text2); cursor: pointer; background: var(--card); border: 1px solid var(--border);
  transition: all .25s; box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.ff-tab.is-active { background: var(--text); color: #fff; border-color: var(--text); }
.ff-tab:hover:not(.is-active) { border-color: rgba(0,0,0,.12); }

.ff-pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* Product card — white, rounded */
.pc {
  background: var(--card); border-radius: var(--r); overflow: hidden;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: box-shadow .4s, transform .4s;
}
.pc:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pc__img {
  aspect-ratio: 1; background: var(--card); display: flex; align-items: center;
  justify-content: center; padding: 0; position: relative; overflow: hidden;
}
.pc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pc:hover .pc__img img { transform: scale(1.06); }
.pc__badge {
  position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 980px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text); font-size: 11px; font-weight: 600;
  letter-spacing: .02em; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.pc__body { padding: 20px; flex: 1; display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,0.06); }
.pc__series { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: .04em; text-transform: uppercase; }
.pc__name { font-size: 15px; font-weight: 600; margin: 4px 0 6px; }
.pc__price { font-size: 13px; color: var(--text2); }
.pc__price strong { color: var(--text); }
.pc__action {
  margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: .03em; text-transform: uppercase;
}

/* ═══ SHOWCASE — Bento Split ═══ */
.ff-showcase { padding: 64px 0; }
.ff-showcase__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ff-showcase__card {
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.ff-showcase__card--img { padding: 0; }
.ff-showcase__collage {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 4px; aspect-ratio: 1 / 1; overflow: hidden;
}
.ff-showcase__collage-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 0;
}
/* Large image: left column full height — round top-left + bottom-left */
.ff-showcase__collage-img--lg {
  grid-row: 1 / 3;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
}
/* Top-right image — round top-right only */
.ff-showcase__collage-img:nth-child(2) { border-radius: 0 var(--r-lg) 0 0; }
/* Bottom-right image — round bottom-right only */
.ff-showcase__collage-img:nth-child(3) { border-radius: 0 0 var(--r-lg) 0; }
.ff-showcase__card--text { padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.ff-showcase__card--text .t-caps { color: var(--accent); margin-bottom: 14px; }
.ff-showcase__card--text .t-h2 { margin-bottom: 16px; }
.ff-showcase__card--text .t-body { margin-bottom: 32px; max-width: 400px; }
.ff-showcase__stats { display: flex; gap: 40px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.ff-showcase__stat-val { font-size: 28px; font-weight: 700; color: var(--accent); display: block; }
.ff-showcase__stat-lbl { font-size: 11px; color: var(--text3); font-weight: 500; }

/* ═══ FEATURES — Small cards row ═══ */
.ff-features { padding: 64px 0; }
.ff-features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ff-feat {
  background: var(--card); border-radius: var(--r); padding: 32px 28px;
  box-shadow: var(--shadow); transition: box-shadow .3s, transform .3s;
}
.ff-feat:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ff-feat__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(178,152,118,.08); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ff-feat__icon .material-symbols-rounded { font-size: 22px; color: var(--accent); }
.ff-feat__title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.ff-feat__desc { font-size: 13px; line-height: 1.6; color: var(--text2); margin: 0; }

/* ═══ CTA ═══ */
.ff-cta-section {
  padding: 80px 0; margin: 24px 0 0;
}
.ff-cta-card {
  background: var(--text); border-radius: var(--r-lg); padding: 72px 48px;
  text-align: center; box-shadow: var(--shadow);
}
.ff-cta-card .t-caps { color: rgba(255,255,255,.35); margin-bottom: 14px; }
.ff-cta-card .t-h2 { color: #fff; margin-bottom: 12px; }
.ff-cta-card .t-body { color: rgba(255,255,255,.4); max-width: 400px; margin: 0 auto 28px; }

/* ═══ SPECS — Split Layout ═══ */
.ff-specs { padding: 64px 0; }
.ff-specs__split {
  display: grid; grid-template-columns: .48fr 1fr; gap: 0;
  background: var(--card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow);
}

/* Video Panel */
.ff-specs__videos {
  display: flex; gap: 6px; padding: 12px;
  height: 480px; /* fixed height — no shrink on switch */
}
.ff-specs__vid {
  position: relative; overflow: hidden; cursor: pointer;
  border-radius: 0;
  flex: 0 0 60px;
  transition: flex .5s cubic-bezier(.4,0,.2,1);
}
/* Outer corners only — match parent card radius minus padding */
.ff-specs__vid:first-child { border-radius: 14px 0 0 14px; }
.ff-specs__vid:last-child  { border-radius: 0 14px 14px 0; }
/* If only one child or if active is first/last, keep full outer rounding */
.ff-specs__vid:first-child:last-child { border-radius: 14px; }

.ff-specs__vid.is-active { flex: 1 1 0; }
.ff-specs__vid video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.ff-specs__vid-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(0,0,0,.35);
  transition: opacity .3s;
}
.ff-specs__vid-play {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s;
}
.ff-specs__vid:hover .ff-specs__vid-play { transform: scale(1.08); }
.ff-specs__vid-play .material-symbols-rounded { font-size: 22px; color: #fff; }
.ff-specs__vid-label {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  white-space: nowrap;
}
/* Inactive: smaller play + rotated label */
.ff-specs__vid:not(.is-active) .ff-specs__vid-play { width: 28px; height: 28px; }
.ff-specs__vid:not(.is-active) .ff-specs__vid-play .material-symbols-rounded { font-size: 16px; }
.ff-specs__vid:not(.is-active) .ff-specs__vid-label {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-size: 9px; letter-spacing: .1em;
}

/* Content */
.ff-specs__content {
  padding: 40px 40px 36px;
  display: flex; flex-direction: column; justify-content: center;
}
.ff-specs__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
}
.ff-specs__row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
}
.ff-specs__row:last-child, .ff-specs__row:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.ff-specs__icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(178,152,118,.08);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ff-specs__icon .material-symbols-rounded { font-size: 15px; color: var(--accent); }
.ff-specs__key { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.ff-specs__val { font-size: 13px; color: var(--text2); margin-left: auto; text-align: right; }

/* Color Dots */
.ff-specs__dots {
  display: flex; gap: 5px; align-items: center; justify-content: flex-end;
}
.ff-specs__dot {
  width: 16px; height: 16px; border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
  cursor: default; position: relative;
  transition: transform .2s;
}
.ff-specs__dot:hover { transform: scale(1.25); }
/* Native tooltip via title attribute — no extra CSS needed */

.ff-specs__ctas {
  display: flex; gap: 10px; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.ff-specs__ctas .btn {
  padding: 10px 22px; font-size: 13px;
}
.ff-specs__ctas .btn--fill {
  background: var(--accent); color: #fff;
}
.ff-specs__ctas .btn--fill:hover { background: var(--accent-lt); }
.ff-specs__ctas .btn--outline {
  border-color: rgba(0,0,0,.1); color: var(--text2);
}
.ff-specs__ctas .btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ═══ FAQ ═══ */
.ff-faq { padding: 64px 0 0; }
.ff-faq__card {
  background: var(--card); border-radius: var(--r-lg); padding: 48px;
  box-shadow: var(--shadow);
}
.ff-faq__grid {
  display: grid; grid-template-columns: .4fr 1fr; gap: 48px;
  align-items: flex-start;
}
.ff-faq__header .t-caps { color: var(--accent); margin-bottom: 8px; }
.ff-faq__header .t-h2 { margin-bottom: 12px; }
.ff-faq__header .t-body { max-width: 280px; }
.ff-faq__list { display: flex; flex-direction: column; gap: 0; }
.ff-faq__item {
  border-bottom: 1px solid var(--border);
}
.ff-faq__item:last-child { border-bottom: none; }
.ff-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 18px 0; background: none; border: none;
  cursor: pointer; text-align: left; font-family: inherit;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: color .2s;
}
.ff-faq__q:hover { color: var(--accent); }
.ff-faq__q .material-symbols-rounded {
  font-size: 20px; color: var(--text3); flex-shrink: 0;
  transition: transform .3s ease;
}
.ff-faq__item.is-open .ff-faq__q .material-symbols-rounded { transform: rotate(45deg); }
.ff-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 0;
}
.ff-faq__item.is-open .ff-faq__a {
  max-height: 200px; padding: 0 0 18px;
}
.ff-faq__a p {
  margin: 0; font-size: 13px; line-height: 1.7; color: var(--text2);
}

/* ═══ FOOTER — Apple Light (all pages) ═══ */
.dm-footer {
  background: var(--bg); border-top: 1px solid rgba(0,0,0,.06);
  padding: 48px 0 0;
}
.dm-footer__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--edge);
}
.dm-footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px;
}
.dm-footer__brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dm-footer__brand-name { font-size: 15px; font-weight: 700; color: var(--text); letter-spacing: .08em; }
.dm-footer__slogan { font-size: 13px; color: var(--text3); margin: 0; }
.dm-footer__heading {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); margin: 0 0 14px;
}
.dm-footer__info { display: flex; flex-direction: column; gap: 6px; }
.dm-footer__info span,
.dm-footer__info a {
  font-size: 13px; color: var(--text2); text-decoration: none; transition: color .2s;
}
.dm-footer__info a:hover { color: var(--text); }
.dm-footer__social { display: flex; gap: 12px; margin-top: 16px; }
.dm-footer__social-link {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,.04);
  display: flex; align-items: center; justify-content: center; transition: background .3s;
}
.dm-footer__social-link:hover { background: rgba(0,0,0,.08); }
.dm-footer__social-link svg { stroke: var(--text2)!important; }
.dm-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 12px; padding: 20px 0; border-top: 1px solid rgba(0,0,0,.06);
}
.dm-footer__copy { font-size: 12px; color: var(--text3); }
.dm-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.dm-footer__legal a {
  font-size: 12px; color: var(--text3); text-decoration: none; transition: color .2s;
}
.dm-footer__legal a:hover { color: var(--text); }
@media (max-width: 768px) {
  .dm-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .dm-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .ff-hero__grid { grid-template-columns: 1fr; }
  .ff-hero__sidebar { display: none; }
  .ff-hero__main { grid-template-columns: .5fr 1fr; }
  .ff-pgrid { grid-template-columns: repeat(2, 1fr); }
  .ff-showcase__grid { grid-template-columns: 1fr; }
  .ff-features__grid { grid-template-columns: 1fr 1fr; }
  .ff-specs__split { grid-template-columns: 1fr; }
  .ff-specs__videos { height: 300px; flex-direction: row; }
  .ff-specs__vid { flex: 0 0 80px; }
  .ff-specs__vid:first-child { border-radius: 14px 0 0 14px; }
  .ff-specs__vid:last-child  { border-radius: 0 14px 14px 0; }
  .ff-specs__vid:not(.is-active) .ff-specs__vid-label { writing-mode: horizontal-tb; }
  .ff-specs__content { padding: 32px 28px 28px; }
  .ff-faq__grid { grid-template-columns: 1fr; gap: 24px; }
  .ff-faq__card { padding: 32px 28px; }
}

@media (max-width: 768px) {
  /* Hero: image top, text bottom, no fixed height */
  .ff-hero { padding: 78px 0 24px; }
  .ff-hero__grid {
    grid-template-columns: 1fr;
    height: auto; min-height: 0; max-height: none;
  }
  .ff-hero__main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    overflow: visible;
  }
  .ff-hero__image {
    order: -1;
    aspect-ratio: 4/3;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    min-height: 220px;
  }
  .ff-hero__text { order: 1; padding: 24px 20px; }

  /* Smaller trust pills on mobile */
  .ff-hero__trust { gap: 5px; bottom: 10px; left: 10px; right: 10px; }
  .ff-hero__trust-pill { padding: 4px 9px; font-size: 10px; gap: 4px; }
  .ff-hero__trust-pill svg { width: 11px; height: 11px; }

  /* Show sidebar on mobile as 2x2 grid */
  .ff-hero__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .ff-hero__side-card {
    grid-template-columns: 70px 1fr; /* narrow thumb, text gets the rest */
  }
  .ff-hero__side-thumb {
    width: 70px; height: auto; aspect-ratio: 1;
  }
  .ff-hero__side-info { padding: 8px 10px; }
  .ff-hero__side-name {
    font-size: 12px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .ff-hero__side-sub  {
    font-size: 11px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  /* Products header:
     Row 1: "Unsere Felgen" (full width)
     Row 2: toggle + "Alle ansehen" left-aligned in one line */
  .ff-products .sec-head {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .ff-products .sec-head .t-h2 {
    flex-basis: 100%;      /* full row */
    white-space: nowrap;
  }
  .ff-view-toggle { margin-left: 0; flex-shrink: 0; order: 2; }
  .sec-link { order: 3; margin-top: 0; flex-basis: auto; }

  /* Grids: 1 column on mobile */
  .ff-stacked { grid-template-columns: 1fr; gap: 16px; }
  .ff-pgrid { grid-template-columns: 1fr; gap: 12px; }

  /* Swatches below name, left-aligned */
  .sc__body { padding: 16px 18px 20px; }
  .sc__swatches { justify-content: flex-start; }

  /* Tabs: scrollable row */
  .ff-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; flex-wrap: nowrap; }
  .ff-tab { white-space: nowrap; flex-shrink: 0; }

  .ff-features__grid { grid-template-columns: 1fr; }
  .ff-showcase__stats { gap: 24px; }
  .ff-trust__row { gap: 20px; }
  .ff-specs__grid { grid-template-columns: 1fr; }
  .ff-specs__videos { padding: 10px; gap: 4px; height: 240px; }
  .ff-specs__vid { flex: 0 0 48px; }
  .ff-specs__vid:first-child { border-radius: 10px 0 0 10px; }
  .ff-specs__vid:last-child  { border-radius: 0 10px 10px 0; }
  .ff-faq__q { font-size: 13px; padding: 14px 0; }
}

@media (max-width: 480px) {
  .ff-showcase__stats { flex-direction: column; }
}

