/* ==========================================================================
   HAVIT Deutschland — havitsmart.de
   Ein Angebot der Anytrade Germany (Anylink Systems AG)
   Design: HAVIT Coral + Anylink Rubik
   ========================================================================== */

@font-face { font-family: 'Rubik'; font-weight: 300; font-style: normal; font-display: swap; src: url('../fonts/rubik-300.woff2') format('woff2'); }
@font-face { font-family: 'Rubik'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/rubik-400.woff2') format('woff2'); }
@font-face { font-family: 'Rubik'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/rubik-500.woff2') format('woff2'); }
@font-face { font-family: 'Rubik'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/rubik-600.woff2') format('woff2'); }
@font-face { font-family: 'Rubik'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/rubik-700.woff2') format('woff2'); }

:root {
  --havit-coral: #FF5740;
  --havit-coral-dark: #E8442E;
  --anylink-salmon: #FF7065;
  --ink: #141414;
  --ink-soft: #3d3d3d;
  --grey: #6b6b6b;
  --bg: #ffffff;
  --bg-soft: #f3f3f3;
  --bg-warm: #faf7f6;
  --line: #e6e2e0;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20, 20, 20, .08);
  --shadow-lg: 0 24px 60px rgba(20, 20, 20, .14);
  --maxw: 1240px;
  --font: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- HAVIT wordmark ---------- */
.wordmark {
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1;
  margin-right: .32em; /* optischer Ausgleich des Letter-Spacing */
}
.wordmark sup { font-size: .45em; letter-spacing: 0; vertical-align: super; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 24px;
}
.main-nav { display: flex; gap: 34px; }
.main-nav a {
  font-weight: 500; font-size: .95rem; color: var(--ink-soft);
  padding: 6px 0; position: relative;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--havit-coral); transition: width .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--ink); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; font-weight: 500; font-size: .9rem;
  padding: 10px 20px; border-radius: 999px; transition: background .2s ease, transform .2s ease;
}
.header-cta:hover { background: var(--havit-coral); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem; padding: 15px 32px; border-radius: 999px;
  border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary { background: var(--havit-coral); color: #fff; box-shadow: 0 10px 26px rgba(255,87,64,.35); }
.btn-primary:hover { background: var(--havit-coral-dark); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--ink); }
.btn-ghost:hover { border-color: var(--havit-coral); color: var(--havit-coral); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--havit-coral);
  color: #fff;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: 48px; min-height: 640px; padding: 80px 0 64px;
}
.hero-kicker {
  display: inline-block; font-size: .82rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; background: rgba(0,0,0,.16);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.05; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: 22px;
}
.hero p.lead { font-size: 1.2rem; font-weight: 300; max-width: 34em; margin-bottom: 38px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual img {
  width: min(520px, 100%); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); transform: rotate(2.5deg);
  background: #fff;
}
.hero-badge {
  position: absolute; bottom: 26px; left: -8px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 14px 20px; font-size: .85rem; font-weight: 500; box-shadow: var(--shadow);
}
.hero-badge strong { display: block; font-size: 1.05rem; }
.hero-wave { display: block; width: 100%; margin-bottom: -2px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-warm { background: var(--bg-warm); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--havit-coral); margin-bottom: 14px;
}
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.15; font-weight: 700; letter-spacing: -.01em; }
.section-head p { margin-top: 16px; color: var(--grey); font-size: 1.08rem; }

/* ---------- Category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ink); color: #fff; min-height: 210px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-tile .cat-count {
  position: absolute; top: 20px; right: 22px; font-size: .78rem; font-weight: 600;
  background: rgba(255,255,255,.14); padding: 5px 12px; border-radius: 999px;
}
.cat-tile h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 4px; }
.cat-tile p { font-size: .9rem; color: rgba(255,255,255,.75); }
.cat-tile .cat-arrow {
  margin-top: 14px; font-weight: 600; font-size: .9rem; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.cat-tile .cat-arrow::after { content: '→'; transition: transform .2s; }
.cat-tile:hover .cat-arrow::after { transform: translateX(4px); }
.cat-tile.tile-coral { background: var(--havit-coral); }
.cat-tile.tile-dark { background: #1c1c1e; }
.cat-tile.tile-grey { background: #3a3a3c; }
.cat-tile.tile-salmon { background: var(--anylink-salmon); }
.cat-tile.tile-black { background: #000; }
.cat-tile.tile-steel { background: #2c2c2e; }

/* ---------- Featured products ---------- */
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feature-card .fc-img { background: var(--bg-soft); padding: 30px; display: flex; justify-content: center; }
.feature-card .fc-img img { height: 210px; width: auto; object-fit: contain; }
.feature-card .fc-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.fc-tag { font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--havit-coral); }
.feature-card h3 { font-size: 1.25rem; margin: 8px 0 10px; font-weight: 600; }
.feature-card p { color: var(--grey); font-size: .94rem; flex: 1; }
.fc-link { margin-top: 18px; font-weight: 600; color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.fc-link::after { content: '→'; color: var(--havit-coral); }

/* ---------- Stats band ---------- */
.stats-band { background: var(--ink); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; padding: 64px 0; }
.stat .stat-num { font-size: clamp(2rem, 3.6vw, 2.9rem); font-weight: 700; color: var(--havit-coral); letter-spacing: -.01em; }
.stat .stat-label { margin-top: 6px; color: rgba(255,255,255,.72); font-size: .95rem; }

/* ---------- Distributor section ---------- */
.dist-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.dist-points { margin-top: 28px; display: grid; gap: 16px; }
.dist-point { display: flex; gap: 16px; align-items: flex-start; }
.dist-point .dp-icon {
  flex: 0 0 44px; height: 44px; border-radius: 12px; background: rgba(255,87,64,.12);
  color: var(--havit-coral); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.05rem;
}
.dist-point h4 { font-size: 1.02rem; font-weight: 600; }
.dist-point p { color: var(--grey); font-size: .93rem; }
.dist-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.dist-card img { height: 44px; width: auto; margin-bottom: 22px; }
.dist-card .dc-row { padding: 14px 0; border-top: 1px solid var(--line); font-size: .96rem; }
.dist-card .dc-row strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--grey); margin-bottom: 3px; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--havit-coral), var(--anylink-salmon));
  color: #fff; border-radius: var(--radius-lg); padding: 64px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.cta-band h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; }
.cta-band p { margin-top: 10px; color: rgba(255,255,255,.9); max-width: 44em; }

/* ---------- Product catalog ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 42px;
}
.filter-chip {
  border: 1.5px solid var(--line); background: #fff; border-radius: 999px;
  padding: 9px 20px; font-family: var(--font); font-size: .9rem; font-weight: 500;
  cursor: pointer; color: var(--ink-soft); transition: all .2s ease;
}
.filter-chip:hover { border-color: var(--havit-coral); color: var(--havit-coral); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.catalog-count { color: var(--grey); font-size: .9rem; margin-bottom: 22px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pc-img { background: var(--bg-soft); padding: 22px; height: 190px; display: flex; align-items: center; justify-content: center; }
.pc-img img { max-height: 150px; width: auto; object-fit: contain; }
.pc-img .pc-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  color: #b9b3b0; font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px dashed var(--line); border-radius: 10px;
}
.pc-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pc-cat { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--havit-coral); }
.pc-body h3 { font-size: 1.02rem; font-weight: 600; margin: 6px 0 6px; line-height: 1.35; }
.pc-spec { color: var(--grey); font-size: .84rem; flex: 1; }
.pc-colors { margin-top: 8px; font-size: .78rem; color: var(--grey); }
.pc-cta {
  margin-top: 14px; align-self: flex-start; font-size: .88rem; font-weight: 600;
  color: var(--ink); border-bottom: 2px solid var(--havit-coral); padding-bottom: 2px;
}
.pc-cta:hover { color: var(--havit-coral); }

/* ---------- Steps (RMA) ---------- */
.steps { display: grid; gap: 0; counter-reset: step; max-width: 860px; }
.step {
  display: grid; grid-template-columns: 72px 1fr; gap: 26px; padding: 30px 0;
  border-bottom: 1px solid var(--line); counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-size: 1.6rem; font-weight: 700; color: var(--havit-coral); letter-spacing: .02em;
}
.step h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--ink-soft); font-size: .97rem; }
.info-box {
  background: rgba(255,87,64,.07); border: 1px solid rgba(255,87,64,.25);
  border-radius: var(--radius); padding: 24px 28px; margin-top: 40px;
}
.info-box h4 { color: var(--havit-coral-dark); font-size: 1rem; margin-bottom: 6px; }
.info-box p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.contact-info-card { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 42px; }
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 22px; }
.ci-row { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.14); font-size: .97rem; }
.ci-row:first-of-type { border-top: 0; }
.ci-row .ci-label { color: rgba(255,255,255,.6); min-width: 92px; font-size: .85rem; padding-top: 2px; }
.ci-row a { color: #fff; border-bottom: 1px solid var(--havit-coral); }
.ci-row a:hover { color: var(--havit-coral); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .86rem; font-weight: 600; }
.form-field label .req { color: var(--havit-coral); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font); font-size: .95rem; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 10px; background: #fff;
  transition: border-color .2s ease; color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--havit-coral);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: .85rem; color: var(--grey); grid-column: 1 / -1; }
.form-consent input { margin-top: 4px; accent-color: var(--havit-coral); }
.form-consent a { color: var(--havit-coral); text-decoration: underline; }
.form-status { grid-column: 1 / -1; font-size: .92rem; font-weight: 500; display: none; }
.form-status.ok { display: block; color: #1a7f37; }
.form-status.err { display: block; color: #c0392b; }

.attio-placeholder {
  margin-top: 28px; border: 1.5px dashed var(--line); border-radius: var(--radius);
  padding: 24px 28px; background: var(--bg-soft);
}
.attio-placeholder h4 { font-size: .95rem; margin-bottom: 6px; }
.attio-placeholder p { font-size: .85rem; color: var(--grey); }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 800px; }
.legal-body h2 { font-size: 1.6rem; margin: 42px 0 14px; }
.legal-body h3 { font-size: 1.15rem; margin: 30px 0 10px; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: .98rem; margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; list-style: disc; }
.legal-body address { font-style: normal; line-height: 1.8; margin: 12px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); margin-top: 96px; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding: 72px 0 48px; }
.footer-brand .wordmark { color: #fff; }
.footer-brand p { margin-top: 18px; font-size: .92rem; max-width: 30em; }
.footer-operator {
  margin-top: 26px; display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.06); border-radius: var(--radius); padding: 16px 18px;
}
.footer-operator img { height: 30px; width: auto; }
.footer-operator span { font-size: .8rem; line-height: 1.5; color: rgba(255,255,255,.65); }
.footer-col h4 { color: #fff; font-size: .95rem; font-weight: 600; margin-bottom: 18px; letter-spacing: .04em; }
.footer-col ul { display: grid; gap: 11px; font-size: .92rem; }
.footer-col a:hover { color: var(--havit-coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: .84rem;
}
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 56px 0 48px; gap: 40px; }
  .hero-visual img { transform: none; }
  .dist-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 34px; }
  .section { padding: 68px 0; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column;
    padding: 22px 24px 30px; gap: 18px; border-bottom: 1px solid var(--line);
    display: none; box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid, .cat-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
}
@media (max-width: 460px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REVISION v2 — Hero-Slideshow, 5-Kategorien-Sortiment, DJI-Card, CTA-Fix
   ========================================================================== */

/* ---------- Hero als Vollbild-Slideshow ---------- */
.hero { background: var(--ink); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,14,14,.82) 0%, rgba(14,14,14,.58) 55%, rgba(14,14,14,.32) 100%);
}
.hero-inner { position: relative; z-index: 2; grid-template-columns: 1fr; }
.hero-inner > div { max-width: 760px; }
.hero-kicker { background: rgba(255,255,255,.14); }
.hero-dots { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hero-dots button {
  width: 34px; height: 4px; border: 0; border-radius: 2px; cursor: pointer;
  background: rgba(255,255,255,.35); transition: background .3s;
}
.hero-dots button.active { background: #fff; }

/* ---------- Sortiment: 2 große + 3 kleine Karten (wie havitsmart.com) ---------- */
.sort-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.sort-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  color: #fff; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; min-height: 300px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.sort-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.sort-card.large { grid-column: span 3; min-height: 430px; }
.sort-card.small { grid-column: span 2; }
.sort-card img.sc-img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.sort-card:hover img.sc-img { transform: scale(1.05); }
.sort-card .sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06) 35%, rgba(0,0,0,.74) 100%);
}
.sort-card .sc-body { position: relative; z-index: 2; }
.sort-card .cat-count {
  position: absolute; top: 22px; right: 22px; z-index: 2;
  font-size: .78rem; font-weight: 600; background: rgba(0,0,0,.38);
  backdrop-filter: blur(4px); padding: 6px 14px; border-radius: 999px;
}
.sort-card h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 4px; }
.sort-card.small h3 { font-size: 1.18rem; }
.sort-card p { font-size: .92rem; color: rgba(255,255,255,.85); }
.sort-card .cat-arrow {
  margin-top: 12px; font-weight: 600; font-size: .9rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.sort-card .cat-arrow::after { content: '→'; color: var(--havit-coral); transition: transform .2s; }
.sort-card:hover .cat-arrow::after { transform: translateX(4px); }

/* ---------- Anytrade-Card mit DJI_0017-Hintergrund ---------- */
.dist-card.dist-photo { position: relative; overflow: hidden; border: 0; color: #fff; }
.dist-card.dist-photo img.dc-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; margin: 0;
}
.dist-card.dist-photo .dc-layer {
  position: absolute; inset: 0;
  background: linear-gradient(155deg, rgba(255,87,64,.90) 0%, rgba(200,40,25,.86) 55%, rgba(20,20,20,.88) 100%);
}
.dist-card.dist-photo > * { position: relative; z-index: 2; }
.dist-card.dist-photo img.dc-logo { height: 44px; width: auto; margin-bottom: 22px; }
.dist-card.dist-photo .dc-row { border-top: 1px solid rgba(255,255,255,.28); }
.dist-card.dist-photo .dc-row strong { color: rgba(255,255,255,.78); }
.dist-card.dist-photo a { color: #fff !important; border-bottom: 1px solid rgba(255,255,255,.5); }

/* ---------- CTA-Sektion: korrekte Abstände & Button ---------- */
.cta-section { padding-top: 24px; padding-bottom: 96px; }
.cta-band { align-items: center; }
.cta-band .btn { flex-shrink: 0; white-space: nowrap; }

/* ---------- Produkt-Detailseiten ---------- */
.pd-hero { background: var(--bg-soft); padding: 56px 0 64px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pd-img { background: #fff; border-radius: var(--radius-lg); padding: 48px; display: flex; justify-content: center; box-shadow: var(--shadow); }
.pd-img img { max-height: 420px; width: auto; object-fit: contain; }
.pd-img .pc-placeholder { width: 100%; min-height: 300px; display: flex; align-items: center; justify-content: center; color: #b9b3b0; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; border: 1.5px dashed var(--line); border-radius: 10px; }
.breadcrumb { font-size: .86rem; color: var(--grey); margin-bottom: 26px; }
.breadcrumb a { color: var(--grey); }
.breadcrumb a:hover { color: var(--havit-coral); }
.pd-info .pc-cat { font-size: .8rem; }
.pd-info h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.12; margin: 10px 0 16px; }
.pd-info .pd-lead { color: var(--ink-soft); font-size: 1.06rem; max-width: 36em; }
.pd-meta { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 26px 0 32px; }
.pd-meta .pm { font-size: .88rem; color: var(--grey); }
.pd-meta .pm strong { color: var(--ink); font-weight: 600; }
.pd-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pd-spec-section { padding: 72px 0; }
.pd-spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 64px; }
.pd-spec-list { display: grid; gap: 0; }
.pd-spec-list li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .97rem; color: var(--ink-soft); display: flex; gap: 12px; }
.pd-spec-list li::before { content: ''; flex: 0 0 7px; height: 7px; border-radius: 50%; background: var(--havit-coral); margin-top: 9px; }
.pd-related-head { margin: 80px 0 30px; }

@media (max-width: 880px) {
  .sort-card.large, .sort-card.small { grid-column: span 6; min-height: 300px; }
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-spec-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   REVISION v2.1 — Karten-Design, Marken-Sektion, Vertrieb mit Anylink-Verlauf
   ========================================================================== */

/* ---------- Punkte 1–3: weiße Bildzone (randlos), graue Textzone ---------- */
.feature-card .fc-img {
  background: #fff; padding: 0; height: 250px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card .fc-img img { height: 100%; width: auto; max-width: 100%; object-fit: contain; }
.feature-card .fc-body { background: var(--bg-soft); }
.product-card .pc-img {
  background: #fff; padding: 0; height: 190px;
}
.product-card .pc-img img { height: 100%; width: auto; max-width: 100%; max-height: none; object-fit: contain; }
.product-card .pc-body { background: var(--bg-soft); }
.product-card .pc-img .pc-placeholder { border: 0; background: var(--bg-soft); }

/* ---------- Punkt 4: Marken-Sektion mit Bild ---------- */
.brand-image { margin-bottom: 24px; }
.brand-image img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
}

/* ---------- Punkt 5: Vertrieb — DJI-Hintergrund + Anylink-Verlauf ---------- */
.dist-photo-section {
  position: relative;
  background: url('../images/DJI_0017.jpg') center 35% / cover no-repeat;
  color: #fff;
}
.dist-photo-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(66,117,107,.93) 0%, rgba(33,41,89,.93) 100%);
}
.dist-photo-section .container { position: relative; z-index: 2; }
.dist-photo-section h2 { color: #fff; }
.dist-photo-section .dist-lead { color: rgba(255,255,255,.88) !important; }
.dist-photo-section .dist-point h4 { color: #fff; }
.dist-photo-section .dist-point p { color: rgba(255,255,255,.82); }
.dist-photo-section .dist-point .dp-icon {
  background: rgba(255,255,255,.16); color: #fff;
}
/* Frosted-Card: Inhalt bleibt lesbar auf dem Verlauf */
.dist-card.dist-frost {
  background: rgba(255,255,255,.96); color: var(--ink);
  box-shadow: var(--shadow-lg); border: 0;
}
.dist-card.dist-frost .dc-row { border-top: 1px solid var(--line); }
.dist-card.dist-frost .dc-row strong { color: var(--grey); }
.dist-card.dist-frost a { color: var(--havit-coral) !important; border-bottom: 1px solid rgba(255,87,64,.4); }

/* ---------- Fix: Marken-Sektion — Bild neben Überschrift, kein Leerraum ---------- */
.brand-grid { align-items: start; }
.brand-head { margin-bottom: 40px; max-width: 560px; }
.brand-head p { max-width: 32em; }
.brand-image img { aspect-ratio: 16 / 9; object-fit: cover; }
