/* ══════════════════════════════════════════════
   PRINT SOLUTIONS — Shared Stylesheet
   Design System: "Editorial B2B — Precision Print"
   ══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #afca0c;
  --dark:       #1f2020;
  --gray:       #9c9c9c;
  --surface:    #f5f5f5;
  --white:      #ffffff;
  --border:     #e8e8e8;
  --green-bg:   #e8f4d0;
  --green-text: #4a5c00;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--green); color: var(--dark);
  padding: 8px 16px; border-radius: 8px; font-size: 14px;
  font-weight: 500; z-index: 9999; transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--green); color: var(--dark);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.btn-primary:hover { opacity: 0.85; }
.btn-outline {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border); padding: 14px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 400;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--dark); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.3); padding: 14px 28px;
  border-radius: 8px; font-size: 14px; font-weight: 400;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  cursor: pointer; transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif; white-space: nowrap;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.65); }
.btn-sm {
  padding: 10px 20px; font-size: 13px;
}

/* ── LAYOUT ── */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY HELPERS ── */
.eyebrow {
  font-size: 11px; font-weight: 500; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px;
}
.section-title {
  font-size: 38px; font-weight: 500; color: var(--dark);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px;
}
.section-sub {
  font-size: 16px; font-weight: 300; color: var(--gray);
  max-width: 520px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 400; color: var(--gray);
  margin-bottom: 32px; list-style: none; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: var(--dark); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb li:last-child { color: var(--dark); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 56px 0 60px;
}
.page-hero .eyebrow { margin-bottom: 8px; }
.page-hero h1 {
  font-size: 42px; font-weight: 500; color: var(--dark);
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px;
}
.page-hero p {
  font-size: 16px; font-weight: 300; color: var(--gray);
  max-width: 520px; line-height: 1.7;
}

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border); height: 64px;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-logo {
  text-decoration: none; font-size: 18px;
  letter-spacing: 0.02em; font-weight: 500; flex-shrink: 0;
}
.nav-logo .g { color: var(--green); }
.nav-logo .m { color: var(--gray); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: 14px; font-weight: 400; transition: opacity 0.15s;
}
.nav-links a:hover, .nav-links a.active { opacity: 0.5; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: var(--dark); transition: 0.2s;
}
.nav-drawer {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 32px 24px; gap: 0;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  text-decoration: none; color: var(--dark); font-size: 18px;
  font-weight: 400; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.nav-drawer .btn-primary { margin-top: 24px; justify-content: center; }

/* ── HERO (homepage) ── */
.hero {
  position: relative; overflow: hidden; min-height: 600px;
  display: flex; align-items: center;
  background-image: url('../hero-bg.jpg');
  background-size: cover; background-position: center 40%;
  background-color: var(--dark);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(105deg,
    rgba(31,32,32,0.92) 0%,
    rgba(31,32,32,0.82) 40%,
    rgba(31,32,32,0.50) 70%,
    rgba(31,32,32,0.28) 100%
  );
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 100px 40px;
  position: relative; z-index: 1; width: 100%;
}
.hero-text { max-width: 620px; display: flex; flex-direction: column; gap: 24px; }
.hero h1 {
  font-size: 54px; font-weight: 500; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.1;
}
.hero p {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.70); max-width: 480px; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-top: 8px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--surface); border-bottom: 1px solid var(--border); padding: 48px 0;
}
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
}
.stat { padding: 0 40px; }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat-num {
  font-size: 42px; font-weight: 500; color: var(--dark);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 6px;
}
.stat-lbl {
  font-size: 11px; font-weight: 500; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 8px;
}
.stat-desc { font-size: 13px; font-weight: 300; color: var(--gray); max-width: 220px; line-height: 1.6; }
.stat-divider { background: var(--border); }

/* ── QUOTE ── */
.quote-section { background: var(--dark); padding: 80px 0; }
.quote-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.quote-mark {
  font-size: 160px; line-height: 1; color: var(--green);
  font-weight: 500; letter-spacing: -0.04em; margin-top: -24px;
  user-select: none; flex-shrink: 0;
}
.quote-body { display: flex; flex-direction: column; gap: 20px; }
.quote-text {
  font-size: 26px; font-weight: 300; color: var(--white);
  line-height: 1.5; letter-spacing: -0.01em; font-style: italic; max-width: 680px;
}
.quote-author {
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.12em;
}

/* ── WARUM FEATURES ── */
.warum-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.warum-left { display: flex; flex-direction: column; gap: 24px; }
.warum-image {
  height: 420px; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px; color: var(--gray);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; position: relative;
}
.warum-image svg { width: 28px; height: 28px; stroke: var(--gray); stroke-width: 1.5; fill: none; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.feature-card {
  background: var(--surface); border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.feature-icon {
  width: 32px; height: 32px; background: var(--green-bg); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 15px; height: 15px; stroke: var(--green-text); stroke-width: 1.5; fill: none; }
.feature-card h3 { font-size: 15px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em; line-height: 1.3; }
.feature-card p { font-size: 13px; font-weight: 300; color: var(--dark); opacity: 0.65; line-height: 1.6; }

/* ── STATEMENT ── */
.statement-section {
  background: var(--surface); padding: 72px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.statement-inner { max-width: 800px; margin: 0 auto; padding: 0 40px; text-align: center; }
.statement-text {
  font-size: 22px; font-weight: 300; color: var(--dark);
  line-height: 1.6; letter-spacing: -0.01em; margin-bottom: 20px;
}
.statement-text strong { font-weight: 500; }
.statement-source { font-size: 11px; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── PRODUCT CARDS ── */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prod-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none; overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.07); }
.prod-card-img {
  height: 160px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em; position: relative; overflow: hidden;
}
.prod-card-img span { position: relative; z-index: 1; }
.img-wand    { background: linear-gradient(135deg, #2d3a1e 0%, #3d5228 60%, #4a6230 100%); }
.img-tasche  { background: linear-gradient(135deg, #1e2d3a 0%, #284452 60%, #2f5263 100%); }
.img-chef    { background: linear-gradient(135deg, #2d1e1e 0%, #52283a 60%, #633040 100%); }
.img-tisch   { background: linear-gradient(135deg, #1e2a2d 0%, #28484a 60%, #305456 100%); }
.img-notiz   { background: linear-gradient(135deg, #2a2d1e 0%, #464a28 60%, #525630 100%); }
.img-woche   { background: linear-gradient(135deg, #28221e 0%, #4a3c28 60%, #564830 100%); }
.img-jahr    { background: linear-gradient(135deg, #221e28 0%, #3c2848 60%, #483060 100%); }
.prod-card-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-tag { font-size: 11px; font-weight: 500; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2px; }
.prod-card-body h3 { font-size: 16px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em; line-height: 1.3; }
.prod-card-body p { font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.5; margin-top: 4px; }

/* Product detail image */
.prod-detail-img {
  height: 200px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
}

/* ── NACHHALTIGKEIT ── */
.nach-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nach-visual {
  height: 360px; border-radius: 16px; background: var(--green-bg); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px; position: relative;
}
.nach-visual-bg {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    135deg, transparent, transparent 20px,
    rgba(175,202,12,0.07) 20px, rgba(175,202,12,0.07) 21px
  );
}
.fsc-badge {
  width: 96px; height: 96px; border: 2.5px solid var(--green-text); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--green-text);
  letter-spacing: 0.04em; z-index: 1; background: rgba(232,244,208,0.8);
}
.nach-visual-label { font-size: 11px; font-weight: 500; color: var(--green-text); text-transform: uppercase; letter-spacing: 0.1em; z-index: 1; }
.nach-text { display: flex; flex-direction: column; gap: 16px; }
.nach-text .section-sub { color: var(--dark); opacity: 0.65; max-width: 420px; }
.nach-link {
  font-size: 14px; font-weight: 500; color: var(--dark); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; margin-top: 8px;
}
.nach-link::after { content: '→'; transition: transform 0.2s; }
.nach-link:hover::after { transform: translateX(4px); }

/* ── CONTACT CARDS ── */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
}
.contact-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 500; color: var(--white);
  flex-shrink: 0; letter-spacing: 0.02em;
}
.avatar-ulf   { background: linear-gradient(135deg, #2d3a1e, #4a6230); }
.avatar-klaus { background: linear-gradient(135deg, #1e2d3a, #2f5263); }
.avatar-matt  { background: linear-gradient(135deg, #2a1e2d, #4a2852); }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.contact-name { font-size: 18px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em; }
.contact-role { font-size: 13px; font-weight: 400; color: var(--gray); }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 300; color: var(--dark);
  text-decoration: none; transition: color 0.15s; white-space: nowrap;
}
.contact-link:hover { color: var(--green-text); }
.contact-link svg { width: 16px; height: 16px; stroke: var(--gray); stroke-width: 1.5; fill: none; flex-shrink: 0; }
.contact-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--green-text);
  background: var(--green-bg); padding: 6px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── CTA SECTION ── */
.cta-section { background: var(--dark); padding: 100px 0; }
.cta-inner {
  max-width: 700px; margin: 0 auto; padding: 0 40px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-inner h2 {
  font-size: 42px; font-weight: 500; color: var(--white);
  letter-spacing: -0.02em; line-height: 1.15;
}
.cta-inner p { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.55); max-width: 460px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

/* ── FOOTER ── */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.07); padding: 64px 0 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo {
  font-size: 18px; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; display: block; margin-bottom: 12px;
}
.footer-logo .g { color: var(--green); }
.footer-logo .m { color: rgba(255,255,255,0.3); }
.footer-tagline { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 240px; }
.footer-col h4 {
  font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom span, .footer-bottom a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 24px; }

/* ── SPECS TABLE ── */
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th {
  text-align: left; font-size: 11px; font-weight: 500; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 12px 16px; border-bottom: 2px solid var(--border);
}
.specs-table td {
  font-size: 14px; font-weight: 300; color: var(--dark);
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.specs-table tr:hover td { background: var(--surface); }
.specs-table .article-no {
  font-size: 11px; font-weight: 500; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.specs-table a { color: var(--dark); text-decoration: none; font-weight: 500; }
.specs-table a:hover { color: var(--green-text); }

/* ── INFO BOX ── */
.info-box {
  background: var(--green-bg); border-radius: 12px; padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-box-icon {
  width: 36px; height: 36px; background: rgba(175,202,12,0.2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-box-icon svg { width: 18px; height: 18px; stroke: var(--green-text); stroke-width: 1.5; fill: none; }
.info-box-body h4 { font-size: 14px; font-weight: 500; color: var(--green-text); margin-bottom: 4px; }
.info-box-body p { font-size: 13px; font-weight: 300; color: var(--green-text); line-height: 1.6; opacity: 0.8; }

/* ── FORMS ── */
.form-section { padding: 80px 0; }
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 48px; max-width: 760px; margin: 0 auto;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.form-group label {
  font-size: 13px; font-weight: 500; color: var(--dark); letter-spacing: -0.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-weight: 300; color: var(--dark);
  font-family: 'DM Sans', sans-serif; background: var(--white);
  transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; font-weight: 300; color: var(--gray); margin-top: 4px; }
.form-required { color: var(--green); }

/* ── STEP INDICATOR ── */
.step-indicator {
  display: flex; gap: 0; margin-bottom: 48px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.step {
  flex: 1; padding: 20px 24px; background: var(--white); border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.step:last-child { border-right: none; }
.step.active { background: var(--surface); }
.step.done { background: var(--green-bg); }
.step-num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--gray); flex-shrink: 0;
}
.step.active .step-num { background: var(--dark); color: var(--white); }
.step.done .step-num { background: var(--green); color: var(--dark); }
.step-label { font-size: 13px; font-weight: 400; color: var(--gray); line-height: 1.3; }
.step.active .step-label { color: var(--dark); font-weight: 500; }
.step.done .step-label { color: var(--green-text); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 760px; }
.legal-content h2 {
  font-size: 22px; font-weight: 500; color: var(--dark);
  letter-spacing: -0.01em; margin-top: 40px; margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 16px; font-weight: 500; color: var(--dark);
  margin-top: 24px; margin-bottom: 8px;
}
.legal-content p {
  font-size: 15px; font-weight: 300; color: var(--dark); opacity: 0.8;
  line-height: 1.7; margin-bottom: 14px;
}
.legal-content ul {
  padding-left: 20px; margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 15px; font-weight: 300; color: var(--dark); opacity: 0.8;
  line-height: 1.7; margin-bottom: 6px;
}
.legal-content a { color: var(--green-text); text-decoration: underline; }

/* ── PRODUCT DETAIL ── */
.prod-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.prod-detail-img-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.prod-specs-box {
  background: var(--surface); border-radius: 12px; padding: 24px 28px; margin: 24px 0;
}
.prod-specs-box h4 { font-size: 11px; font-weight: 500; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.prod-spec-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-key { font-size: 13px; font-weight: 400; color: var(--gray); }
.prod-spec-val { font-size: 13px; font-weight: 500; color: var(--dark); }

/* ── TAG PILLS ── */
.tag-pill {
  display: inline-flex; align-items: center;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 5px 14px;
  font-size: 12px; font-weight: 400; color: var(--dark);
}
.tag-pill.active {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .prod-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links, nav > .nav-inner > .btn-primary { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 520px; }
  .hero-inner { padding: 72px 24px; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }

  .page-hero { padding: 40px 0 44px; }
  .page-hero h1 { font-size: 32px; }

  .stats-inner { grid-template-columns: 1fr; gap: 0; }
  .stat { padding: 24px 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .stat-divider { display: none; }

  .quote-inner { grid-template-columns: 1fr; gap: 16px; }
  .quote-mark { font-size: 80px; margin-top: 0; }
  .quote-text { font-size: 20px; }

  .warum-inner { grid-template-columns: 1fr; gap: 40px; }
  .warum-image { height: 260px; }

  .prod-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nach-inner { grid-template-columns: 1fr; gap: 40px; }
  .nach-visual { height: 240px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .cta-inner h2 { font-size: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .section-title { font-size: 30px; }
  .step-indicator { flex-direction: column; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .form-group-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .prod-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .section-title { font-size: 26px; }
  .stats-bar { padding: 32px 0; }
  .stat-num { font-size: 36px; }
  .statement-text { font-size: 18px; }
  .contact-card { padding: 28px 24px; }
  .contact-grid { grid-template-columns: 1fr; }
}
