/* =========================================================
   MINGLE EUROPE — Steel Editorial Design System
   ========================================================= */

/* ---------- Tokens — Mingle Steel Blue Edition ---------- */
:root {
  /* Primärfarben — Dunkel & Struktur */
  --primary-dark: #1A1D21;        /* Schwarz-Grau für Body-Text */
  --primary-mid: #2E343A;         /* Mittleres Grau */

  /* MINGLE Blau — Marken-Hauptakzent */
  --mingle-blue: #2B5C8A;         /* Markenfarbe — Nav, Links, Trust */
  --mingle-blue-light: #3A7AB8;   /* Hover */
  --mingle-blue-dark: #1E4460;    /* Active / Footer */

  /* Sekundärfarben — Neutral & Background */
  --secondary-light: #B9BEC4;
  --secondary-bg: #F4F2EE;
  --secondary-bg-alt: #E8EAED;

  /* Akzentfarbe — Call-to-Action */
  --accent-orange: #E8501C;
  --accent-orange-hover: #D14317;

  /* Basis */
  --white: #FFFFFF;
  --black: #000000;

  /* Edelstahl-Grautöne für Produktdarstellung */
  --steel-light: #D4D7DA;
  --steel-mid: #8B9196;
  --steel-dark: #4A4E52;

  /* Legacy-Aliase (Abwärtskompatibilität im bestehenden Code) */
  --steel-100: #E8E6E1;
  --steel-200: #D4D2CD;
  --steel-300: #9DA3AB;
  --steel-700: #404750;
  --steel-900: #15171A;

  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --container: 1440px;
  --container-px: clamp(20px, 4vw, 64px);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(20, 22, 26, .06);
  --shadow-md: 0 6px 24px rgba(20, 22, 26, .08);
  --shadow-lg: 0 24px 60px rgba(20, 22, 26, .14);
  --shadow-blue: 0 8px 24px rgba(43, 92, 138, .18);

  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--primary-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
p { margin: 0 0 1em; }

/* ---------- Typography ---------- */
.h-display { font-size: clamp(44px, 8vw, 120px); font-weight: 800; line-height: .96; letter-spacing: -.035em; }
.h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; letter-spacing: -.03em; }
.h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; }
.h3 { font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; letter-spacing: -.02em; }
.h4 { font-size: clamp(18px, 1.4vw, 22px); font-weight: 600; }
.lead { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.5; color: var(--steel-700); }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel-300);
}
.mono { font-family: var(--font-mono); }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}
.section { padding: clamp(60px, 8vw, 120px) 0; }
.section--tight { padding: clamp(40px, 5vw, 72px) 0; }
.section--dark { background: linear-gradient(135deg, var(--mingle-blue-dark) 0%, var(--mingle-blue) 100%); color: var(--white); }
.section--bg { background: var(--secondary-bg); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -.01em;
  border: 1.5px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--accent-orange); color: var(--white); }
.btn--primary:hover { background: var(--accent-orange-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { border-color: var(--mingle-blue); color: var(--mingle-blue); }
.btn--ghost:hover { background: var(--mingle-blue); color: var(--white); border-color: var(--mingle-blue); }
.section--dark .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.section--dark .btn--ghost:hover { background: var(--white); color: var(--mingle-blue-dark); border-color: var(--white); }
.btn--dark { background: var(--mingle-blue); color: var(--white); }
.btn--dark:hover { background: var(--mingle-blue-dark); }
.btn--blue { background: var(--mingle-blue); color: var(--white); }
.btn--blue:hover { background: var(--mingle-blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.btn--sm { padding: 10px 16px; font-size: 13px; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--mingle-blue);
  color: var(--white);
  border-bottom: 1px solid var(--mingle-blue-dark);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.02em;
  color: var(--white);
}
.nav__logo .dot { width: 8px; height: 8px; background: var(--accent-orange); border-radius: 50%; display: inline-block; transform: translateY(-2px); }
.nav__logo span[style]:last-child { color: rgba(255,255,255,.6) !important; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  border-radius: var(--radius-sm);
}
.nav__link:hover { color: var(--white); background: var(--mingle-blue-light); }
.nav__link[style*="var(--primary-dark)"] { color: var(--white) !important; background: var(--mingle-blue-dark); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  letter-spacing: .08em;
  color: var(--white);
}
.nav__lang button, .nav__lang a { color: rgba(255, 255, 255, .5); padding: 0 4px; text-decoration: none; background: none; border: 0; cursor: pointer; font: inherit; }
.nav__lang button.active, .nav__lang a.active { color: var(--white); }
.nav__lang a:hover { color: var(--white); }
.nav__icon-btn {
  display: inline-grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--white);
}
.nav__icon-btn:hover { background: var(--mingle-blue-light); border-color: var(--mingle-blue-light); }

/* Mega menu */
.megamenu {
  position: absolute;
  top: calc(100% + 6px);
  left: -200px;
  width: min(900px, 92vw);
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.nav__item:hover .megamenu,
.nav__item:focus-within .megamenu { display: grid; }
.megamenu__col h4 {
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel-300);
  margin-bottom: 12px;
  font-weight: 500;
}
.megamenu__list a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary-dark);
}
.megamenu__list a:hover { background: var(--secondary-bg); color: var(--mingle-blue); }
.megamenu__list small { display: block; font-weight: 400; color: var(--steel-300); font-size: 12px; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  align-items: center; justify-content: center;
}
.nav__burger span {
  width: 18px; height: 1.5px; background: var(--white);
  display: block; position: relative;
}
.nav__burger span::before,
.nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--white);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

@media (max-width: 1024px) {
  .nav__menu { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta-text { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  padding: 80px 24px 32px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer a { display: block; padding: 14px 0; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--steel-100); }
.drawer__close { position: absolute; top: 24px; right: 24px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--mingle-blue-dark) 0%, var(--mingle-blue) 100%);
  color: var(--white);
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0 clamp(80px, 10vw, 140px);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 80% 30%, rgba(232,80,28,.18), transparent 60%),
    radial-gradient(40% 60% at 20% 90%, rgba(255,255,255,.06), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow { color: var(--secondary-light); margin-bottom: 24px; }
.hero__title { margin-bottom: 24px; max-width: 12ch; }
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--secondary-light);
  max-width: 52ch;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 80% at 50% 30%, var(--steel-dark) 0%, var(--steel-900) 80%);
  display: grid; place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.hero__visual img {
  max-width: 80%;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .5));
  will-change: transform;
}
.hero__badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(10px);
  padding: 10px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__spec {
  position: absolute;
  bottom: 24px; right: 24px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
}
.hero__spec b { display: block; font-size: 18px; letter-spacing: -.01em; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; margin: 0 auto; }
}

/* Trust stack */
.trust-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.trust-stack__item .num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.trust-stack__item .num .accent { color: var(--accent-orange); }
.trust-stack__item .num:not(:has(.accent)) { color: var(--white); }
.trust-stack__item .lbl {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--secondary-light);
}
@media (max-width: 700px) { .trust-stack { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
}
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head p { color: var(--steel-700); margin: 0; max-width: 52ch; }
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }

/* ---------- Bento Categories ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.bento__card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--secondary-bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento__card--lg { grid-column: span 4; grid-row: span 2; background: linear-gradient(135deg, var(--mingle-blue-dark) 0%, var(--mingle-blue) 100%); color: var(--white); }
.bento__card--md { grid-column: span 2; }
.bento__card--md:nth-of-type(2),
.bento__card--md:nth-of-type(3) { background: var(--secondary-bg-alt); }
.bento__card--md:nth-of-type(4) { background: var(--mingle-blue); color: var(--white); }
.bento__card .num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; opacity: .6; }
.bento__card h3 { font-size: clamp(22px, 2.2vw, 36px); margin-top: 4px; }
.bento__card p { opacity: .8; margin-top: 8px; max-width: 30ch; }
.bento__card__img {
  position: absolute;
  right: -20px; bottom: -20px;
  width: 60%;
  max-height: 75%;
  object-fit: contain;
  pointer-events: none;
}
.bento__card--lg .bento__card__img { right: 0; bottom: 0; width: 50%; opacity: .9; }
.bento__card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-orange);
  font-weight: 600;
}
.bento__card--lg .bento__card__cta,
.bento__card--md:nth-of-type(4) .bento__card__cta { color: var(--accent-orange); }

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .bento__card--lg { grid-column: span 2; grid-row: span 1; }
  .bento__card--md { grid-column: span 1; }
}

/* ---------- USP grid ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--steel-100); border-bottom: 1px solid var(--steel-100); }
.usp {
  padding: 36px 28px;
  border-right: 1px solid var(--steel-100);
}
.usp:last-child { border-right: 0; }
.usp__icon {
  width: 44px; height: 44px;
  background: var(--mingle-blue); color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 24px;
}
.usp h3 { font-size: 18px; margin-bottom: 8px; }
.usp p { color: var(--steel-700); font-size: 14px; margin: 0; }
@media (max-width: 1024px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } .usp:nth-child(2) { border-right: 0; } .usp:nth-child(-n+2) { border-bottom: 1px solid var(--steel-100); } }
@media (max-width: 600px) { .usp-grid { grid-template-columns: 1fr; } .usp { border-right: 0; border-bottom: 1px solid var(--steel-100); } .usp:last-child { border-bottom: 0; } }

/* ---------- Trust strip / cert badges ---------- */
.cert-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.cert {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 2px solid var(--mingle-blue);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  background: var(--white);
  color: var(--mingle-blue-dark);
  font-weight: 500;
}
.cert .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mingle-blue); }
.section--dark .cert { background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .3); color: var(--white); }
.section--dark .cert .dot { background: var(--accent-orange); }

.logo-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--steel-100); border-bottom: 1px solid var(--steel-100);
  margin-top: 40px;
}
.logo-wall__item {
  padding: 28px 16px;
  display: grid; place-items: center;
  border-right: 1px solid var(--steel-100);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--steel-300);
  letter-spacing: .12em;
  text-transform: uppercase;
  min-height: 90px;
  text-align: center;
}
.logo-wall__item:last-child { border-right: 0; }
@media (max-width: 1024px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } .logo-wall__item:nth-child(3n) { border-right: 0; } .logo-wall__item:nth-child(n+4) { border-top: 1px solid var(--steel-100); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-wall__item:nth-child(2n) { border-right: 0; } .logo-wall__item { border-right: 1px solid var(--steel-100) !important; } .logo-wall__item:nth-child(2n) { border-right: 0 !important; } }

/* ---------- Dealer CTA ---------- */
.dealer-cta {
  position: relative;
  background: linear-gradient(135deg, var(--mingle-blue-dark) 0%, var(--mingle-blue) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  overflow: hidden;
}
.dealer-cta::before {
  content: '';
  position: absolute; right: -10%; top: -50%;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232, 80, 28, .25), transparent 60%);
  pointer-events: none;
}
.dealer-cta__list { display: grid; gap: 16px; position: relative; }
.dealer-cta__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
}
.dealer-cta__list .num { font-family: var(--font-mono); color: var(--accent-orange); font-size: 13px; }
.dealer-cta__list .num b { display: block; font-size: 24px; color: var(--white); letter-spacing: -.02em; }
.dealer-cta__list .lbl { font-size: 14px; color: var(--secondary-light); }
.dealer-cta h2 { margin-bottom: 16px; }
.dealer-cta__lead { color: rgba(255, 255, 255, .8); margin-bottom: 32px; }
.dealer-cta .hero__ctas .btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.dealer-cta .hero__ctas .btn--ghost:hover { background: var(--white); color: var(--mingle-blue-dark); border-color: var(--white); }
@media (max-width: 900px) { .dealer-cta { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer {
  background: var(--mingle-blue-dark);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand h3 { color: var(--white); margin-bottom: 16px; font-size: 24px; }
.footer__brand p { font-size: 14px; max-width: 36ch; margin-bottom: 24px; }
.footer__col h4 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 16px;
}
.footer__col a { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.75); }
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 64px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.5);
}
.footer__bottom .legal a { margin-right: 20px; }
@media (max-width: 800px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Product card / listing ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--secondary-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: var(--mingle-blue);
}
.product-card__img {
  background: var(--secondary-bg);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: grid; place-items: center;
  margin-bottom: 16px;
  padding: 16px;
}
.product-card__img img { max-height: 100%; max-width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card__model {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; color: var(--steel-300);
  text-transform: uppercase;
}
.product-card__name { font-size: 18px; font-weight: 600; margin: 4px 0 12px; line-height: 1.2; }
.product-card__features { list-style: none; padding: 0; margin: 0 0 16px; font-size: 13px; color: var(--steel-700); }
.product-card__features li { padding: 3px 0; display: flex; gap: 6px; }
.product-card__features li::before { content: '—'; color: var(--accent-orange); }
.product-card__cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 13px; color: var(--mingle-blue);
  letter-spacing: -.01em;
}
.product-card__cta .arrow { color: var(--accent-orange); transition: transform .2s var(--ease); }
.product-card:hover .product-card__cta { color: var(--mingle-blue-dark); }
.product-card:hover .product-card__cta .arrow { transform: translateX(4px); }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--steel-100);
  margin-bottom: 40px;
}
.filter-chip {
  padding: 8px 16px;
  border: 1px solid var(--secondary-light);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  background: var(--white);
  color: var(--primary-mid);
  transition: all .2s var(--ease);
}
.filter-chip:hover { border-color: var(--mingle-blue); color: var(--mingle-blue); }
.filter-chip.active { background: var(--mingle-blue); color: var(--white); border-color: var(--mingle-blue); }
.filter-bar__sep { width: 1px; height: 24px; background: var(--secondary-light); }
.filter-bar__view {
  margin-left: auto; display: inline-flex; gap: 4px;
  border: 1px solid var(--secondary-light); border-radius: var(--radius-sm); padding: 4px;
}
.filter-bar__view button {
  padding: 6px 10px; font-size: 12px; font-weight: 600; color: var(--steel-mid);
  border-radius: 4px;
}
.filter-bar__view button.active { background: var(--mingle-blue); color: var(--white); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--steel-300);
  letter-spacing: .04em;
  padding: 24px 0;
}
.breadcrumb a:hover { color: var(--mingle-blue); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Page header ---------- */
.page-head {
  padding: clamp(40px, 5vw, 72px) 0 clamp(40px, 5vw, 72px);
  background: var(--secondary-bg);
}
.page-head h1 { font-size: clamp(40px, 5vw, 72px); letter-spacing: -.03em; max-width: 18ch; }
.page-head p { color: var(--steel-700); margin-top: 16px; max-width: 56ch; font-size: 18px; }

/* ---------- PDP ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  padding: 48px 0 80px;
}
.pdp__gallery { position: sticky; top: 96px; align-self: start; }
.pdp__main-img {
  background: linear-gradient(160deg, var(--steel-dark) 0%, var(--steel-900) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: grid; place-items: center;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.pdp__main-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 35%, rgba(255,255,255,.08) 0%, transparent 60%);
}
.pdp__main-img img {
  max-width: 80%; max-height: 80%; object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
  position: relative;
}
.pdp__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 16px;
}
.pdp__thumb {
  background: var(--secondary-bg);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-sm);
  aspect-ratio: 1;
  display: grid; place-items: center;
  padding: 12px;
  cursor: pointer;
  transition: border-color .2s var(--ease);
}
.pdp__thumb:hover, .pdp__thumb.active { border-color: var(--mingle-blue); }
.pdp__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }

.pdp__info h1 { font-size: clamp(32px, 4vw, 56px); letter-spacing: -.03em; margin-bottom: 16px; }
.pdp__model { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: var(--steel-300); text-transform: uppercase; margin-bottom: 12px; }
.pdp__short { font-size: 17px; color: var(--steel-700); margin-bottom: 32px; }
.pdp__specs { border-top: 1px solid var(--steel-100); padding-top: 24px; margin-bottom: 32px; }
.pdp__spec-row {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px;
  padding: 12px 0; border-bottom: 1px solid var(--steel-100);
  font-size: 14px;
}
.pdp__spec-row dt { font-family: var(--font-mono); color: var(--steel-300); letter-spacing: .04em; text-transform: uppercase; font-size: 11px; align-self: center; }
.pdp__spec-row dd { margin: 0; font-weight: 500; }
.pdp__buy {
  background: var(--secondary-bg);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid; gap: 16px;
  margin-bottom: 24px;
}
.pdp__buy-row { display: flex; justify-content: space-between; font-size: 13px; }
.pdp__buy-row span { font-family: var(--font-mono); letter-spacing: .04em; color: var(--steel-300); text-transform: uppercase; font-size: 11px; }
.pdp__cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
}

/* PDP Tabs */
.tabs { border-top: 1px solid var(--steel-100); padding-top: 48px; }
.tabs__nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid var(--steel-100);
  margin-bottom: 32px;
}
.tabs__btn {
  padding: 14px 20px;
  font-size: 14px; font-weight: 600;
  color: var(--steel-300);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.tabs__btn:hover { color: var(--mingle-blue); }
.tabs__btn.active { color: var(--mingle-blue-dark); border-bottom-color: var(--accent-orange); }
.tabs__panel { display: none; max-width: 800px; }
.tabs__panel.active { display: block; }
.tabs__panel table { width: 100%; border-collapse: collapse; font-size: 14px; }
.tabs__panel th, .tabs__panel td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--steel-100); }
.tabs__panel th { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--steel-300); text-transform: uppercase; font-weight: 500; }
.tabs__panel ul { padding-left: 20px; list-style: disc; }
.tabs__panel ul li { padding: 4px 0; }

.download-list { display: grid; gap: 12px; }
.download-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border: 1px solid var(--secondary-light); border-radius: var(--radius-sm);
  transition: all .2s var(--ease);
}
.download-item:hover { border-color: var(--mingle-blue); background: var(--secondary-bg); box-shadow: var(--shadow-blue); }
.download-item__icon {
  width: 40px; height: 40px; background: var(--mingle-blue); color: var(--white);
  display: grid; place-items: center; border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
}
.download-item__info { flex: 1; }
.download-item__info b { display: block; font-size: 14px; font-weight: 600; }
.download-item__info span { font-size: 12px; color: var(--steel-300); font-family: var(--font-mono); }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--steel-100);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.form-stepper {
  display: flex; gap: 12px; margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}
.form-stepper__step {
  flex: 1; padding: 12px 0;
  border-top: 2px solid var(--secondary-light);
  color: var(--steel-mid);
}
.form-stepper__step.active { border-top-color: var(--accent-orange); color: var(--mingle-blue-dark); }
.form-stepper__step.done { border-top-color: var(--mingle-blue); color: var(--mingle-blue); }

.form-step { display: none; }
.form-step.active { display: block; }

.form-row { display: grid; gap: 8px; margin-bottom: 20px; }
.form-row--two { grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row--two { grid-template-columns: 1fr; } }
.form-row label {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--steel-300);
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--secondary-light); border-radius: var(--radius-sm);
  font: inherit; font-size: 15px; color: var(--primary-dark);
  background: var(--white);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--mingle-blue);
  box-shadow: 0 0 0 3px rgba(43, 92, 138, .15);
}
.form-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.form-chip {
  padding: 12px 18px; border: 1.5px solid var(--secondary-light); border-radius: 999px;
  font-size: 14px; font-weight: 500; background: var(--white);
  color: var(--primary-mid);
  cursor: pointer; transition: all .2s var(--ease);
  user-select: none;
}
.form-chip:hover { border-color: var(--mingle-blue); color: var(--mingle-blue); }
.form-chip.active { border-color: var(--mingle-blue); background: var(--mingle-blue); color: var(--white); }
.consent {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--secondary-bg); border-radius: var(--radius-sm);
  font-size: 13px; line-height: 1.5;
}
.consent input { margin-top: 4px; flex-shrink: 0; }

.form-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--steel-100);
}

/* ---------- Misc ---------- */
.placeholder-tag {
  display: inline-block;
  padding: 4px 10px; background: rgba(232,80,28,.1); color: var(--accent-orange);
  border: 1px dashed var(--accent-orange); border-radius: 4px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em;
  text-transform: uppercase;
}

.tag {
  display: inline-block; padding: 4px 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--secondary-bg); color: var(--steel-700);
  border-radius: 4px;
}

/* Counter accent */
.counter::after { content: '+'; color: var(--accent-orange); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}
