:root {
  --green: #009846;
  --green-dark: #006f35;
  --red: #ef3e33;
  --ink: #07121f;
  --ink-2: #0d1c2c;
  --text: #1d2b3a;
  --muted: #283545;
  --line: #dde5eb;
  --soft: #f4f7f6;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 18, 31, .12);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
}
.skip-link:focus { top: 16px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.top-info-bar {
  position: sticky;
  top: 0;
  z-index: 220;
  color: rgba(255,255,255,.88);
  background: linear-gradient(90deg, #07121f, #0b1f31);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .89rem;
}
.top-info-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.top-info-bar strong { color: var(--white); font-weight: 850; }
.top-info-bar a { color: var(--white); font-weight: 850; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.top-info-bar span:nth-child(2) { color: #d9f1e4; font-weight: 720; }
.producer-note {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0,152,70,.20);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-md);
  background: rgba(0,152,70,.07);
  color: #274135;
}
.producer-note strong { color: var(--green-dark); }
.section { padding: 104px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.08; letter-spacing: -.04em; }
h1 { color: var(--white); font-size: clamp(2.7rem, 5.7vw, 5.9rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }

.site-header {
  position: sticky;
  top: var(--top-info-height, 42px);
  z-index: 210;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,18,31,.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 38px rgba(7, 18, 31, .08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 82px; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 250px; }
.brand img { width: 66px; height: 52px; object-fit: contain; }
.brand strong { display: block; font-size: 1.04rem; color: var(--ink); letter-spacing: -.01em; }
.brand small { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; }
.main-nav { display: flex; align-items: center; gap: 18px; color: #293747; font-size: .94rem; font-weight: 720; }
.main-nav a, .nav-dropdown-trigger { transition: color .18s ease, background .18s ease; }
.main-nav a:hover, .nav-dropdown-trigger:hover { color: var(--green); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; font-weight: 720; }
.nav-dropdown-trigger span { font-size: .9em; line-height: 1; transition: transform .18s ease; }
.nav-dropdown.is-open .nav-dropdown-trigger span, .nav-dropdown:hover .nav-dropdown-trigger span, .nav-dropdown:focus-within .nav-dropdown-trigger span { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, 8px); z-index: 20; min-width: 210px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.dropdown-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.dropdown-menu a { display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; border-radius: 11px; color: var(--ink); white-space: nowrap; }
.dropdown-menu a:hover { color: var(--green-dark); background: var(--soft); }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu, .nav-dropdown.is-open .dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); pointer-events: auto; }
.nav-cta { padding: .72rem 1rem; border-radius: 999px; color: var(--green-dark); background: rgba(0,152,70,.09); border: 1px solid rgba(0,152,70,.22); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 14px;
  min-height: auto;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 20%, rgba(0,152,70,.28), transparent 36%),
    radial-gradient(circle at 22% 82%, rgba(239,62,51,.18), transparent 32%),
    linear-gradient(135deg, #07121f 0%, #0b1928 50%, #07121f 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent 78%);
}
.hero::after {
  content: "WIRE PROCESSING";
  position: absolute;
  left: 50%;
  bottom: -42px;
  transform: translateX(-50%);
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 950;
  letter-spacing: -.08em;
  color: rgba(255,255,255,.035);
  white-space: nowrap;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 38px; align-items: center; }
.hero .eyebrow { color: #73d69a; }
.hero h1 {
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  max-width: 780px;
}

.lead { margin-top: 18px; max-width: 670px; color: rgba(255,255,255,.76); font-size: clamp(1.08rem, 1.7vw, 1.36rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .86rem 1.22rem; border-radius: 999px; border: 1px solid transparent; font-weight: 850; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--green); box-shadow: 0 14px 34px rgba(0,152,70,.24); }
.btn-primary:hover { background: var(--green-dark); }
.btn-light { color: var(--white); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.btn-light:hover { background: rgba(255,255,255,.14); }
.btn-normal { color: var(--ink); border-color: rgba(7,18,31,.16); background: var(--white); box-shadow: 0 10px 26px rgba(7,18,31,.08); }
.btn-normal:hover { color: var(--ink); background: #f4f7f9; border-color: rgba(7,18,31,.24); }
.hero-product-card { position: relative; justify-self: end; width: min(100%, 560px); min-height: 370px; display: grid; place-items: center; padding: 22px 22px 58px; margin-top: 0; transform: translateX(30px); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025)); border: 1px solid rgba(255,255,255,.13); box-shadow: var(--shadow); }
.hero-product-card::before { content: ""; position: absolute; inset: 10%; background: linear-gradient(90deg, rgba(0,152,70,.36), rgba(239,62,51,.26)); filter: blur(72px); opacity: .62; }
.hero-product-stack { position: relative; z-index: 1; width: 100%; height: 292px; }
.hero-product-stack img { position: absolute; z-index: 1; object-fit: contain; filter: drop-shadow(0 30px 34px rgba(0,0,0,.30)); }
.hero-img-brush { width: 74%; right: -2%; top: -8px; }
.hero-img-fix { width: 70%; left: -4%; bottom: 0; }
.hero-product-card-duo .product-label { left: 22px; right: auto; bottom: 22px; }
.product-label { position: absolute; right: 24px; bottom: 24px; z-index: 2; padding: 12px 14px; border-radius: 16px; color: var(--white); background: rgba(7,18,31,.68); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(12px); }
.product-label span { display: block; color: rgba(255,255,255,.65); font-size: .78rem; }
.product-label strong { display: block; margin-top: 2px; }

.quick-facts { background: var(--ink); }
.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border-inline: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.08); }
.fact-grid div { min-height: 92px; padding: 18px 24px; background: var(--ink); color: var(--white); }
.fact-grid strong { display: block; color: #7ddd9f; font-size: clamp(1.2rem, 2vw, 1.8rem); letter-spacing: -.04em; }
.fact-grid span { display: block; margin-top: 5px; color: rgba(255,255,255,.62); }

.company-section { padding-top: 34px; background: var(--soft); }
.company-card { display: grid; grid-template-columns: 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.company-card img { width: min(100%, 860px); margin: 12px auto 0; height: auto; min-height: 0; display: block; object-fit: contain; background: #eef3f6; image-rendering: auto; border-radius: 16px; }
.company-content { display: grid; align-content: start; padding: 26px 38px 32px; }
.company-content p:not(.eyebrow) { color: var(--muted); margin-top: 12px; font-size: 1rem; }
.mini-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.mini-cta-row a { font-weight: 850; color: var(--green-dark); padding: .65rem .95rem; border: 1px solid rgba(0,152,70,.20); border-radius: 999px; background: rgba(0,152,70,.07); }
.mini-cta-row a.mini-cta-primary { color: var(--white); background: var(--green); border-color: var(--green); box-shadow: 0 12px 28px rgba(0,152,70,.18); }
.mini-cta-row a.mini-cta-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.company-content h2 { font-size: clamp(2.15rem, 3.7vw, 3.55rem); line-height: 1.03; }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:not(.eyebrow) { margin-top: 16px; color: var(--muted); font-size: 1.07rem; }
.advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.advantage-card { padding: 22px; min-height: 210px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 10px 30px rgba(7,18,31,.06); }
.advantage-card span { display: inline-grid; place-items: center; width: 40px; height: 40px; margin-bottom: 18px; border-radius: 50%; color: var(--green-dark); background: rgba(0,152,70,.10); font-weight: 900; }
.advantage-card p { margin-top: 8px; color: var(--muted); font-size: .96rem; line-height: 1.45; }
.benefits-section { padding: 52px 0 60px; }
.benefits-section .section-head { margin-bottom: 26px; }
.benefits-section .section-head h2 { font-size: clamp(2.2rem, 4vw, 3.9rem); line-height: 1.03; max-width: 880px; margin-left: auto; margin-right: auto; }
.benefits-section .section-head p:not(.eyebrow) { margin-top: 12px; font-size: .98rem; max-width: 820px; margin-left: auto; margin-right: auto; }
.advantage-card h3 { font-size: 1.08rem; line-height: 1.15; }

.products-section { padding: 46px 0 58px; background: var(--soft); }
.products-section .section-head { margin-bottom: 22px; }
.products-section .section-head h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); line-height: 1.02; }
.products-section .section-head p:not(.eyebrow) { margin-top: 10px; font-size: .96rem; max-width: 680px; }
.product-split { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.product-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 18px 50px rgba(7,18,31,.08); }
.product-image { height: 220px; display: grid; place-items: center; padding: 18px; background: linear-gradient(145deg, #eef3f6, #ffffff); }
.product-image img { max-height: 178px; object-fit: contain; filter: drop-shadow(0 16px 16px rgba(7,18,31,.14)); }
.product-text { padding: 22px 24px 20px; }
.tag { display: inline-flex; padding: .4rem .7rem; border-radius: 999px; color: var(--green-dark); background: rgba(0,152,70,.09); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.tag-red { color: #a91f17; background: rgba(239,62,51,.10); }
.product-text h3 { margin-top: 12px; font-size: 1.65rem; line-height: 1.04; }
.product-text p { color: var(--muted); margin-top: 8px; font-size: .94rem; }
.check-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 6px; }
.check-list li { display: flex; gap: 8px; align-items: flex-start; color: #293849; font-size: .95rem; line-height: 1.35; }
.check-list li::before { content: ""; width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 5px rgba(255,255,255,.75); }
.text-link { display: inline-flex; align-items: center; margin-top: 14px; color: var(--green-dark); font-weight: 850; }
.text-link::after { content: "→"; margin-left: 8px; transition: transform .18s ease; }
.text-link:hover::after { transform: translateX(4px); }

.system-section { padding: 58px 0 66px; }
.system-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 38px; align-items: center; }
.system-copy p:not(.eyebrow) { color: var(--muted); margin-top: 14px; font-size: 1rem; }
.system-copy h2 { font-size: clamp(2rem, 3.8vw, 3.45rem); line-height: 1.04; }
.spec-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.spec-row div { padding: 16px 18px; border-radius: var(--radius-md); background: var(--ink); color: var(--white); }
.spec-row strong { display: block; color: #79d99d; font-size: 1.55rem; letter-spacing: -.04em; }
.spec-row span { display: block; color: rgba(255,255,255,.64); margin-top: 3px; font-size: .86rem; }
.section-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.section-actions .btn { min-height: 48px; }
.system-visual { min-height: 360px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, #edf2f5, #ffffff); }
.system-gallery { display: grid; gap: 12px; align-content: start; }
.system-preview-frame { position: relative; display: grid; place-items: center; min-height: 190px; padding: 18px; border-radius: calc(var(--radius-xl) - 8px); background: rgba(255,255,255,.72); overflow: hidden; }
.system-preview { max-width: 100%; max-height: 190px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 16px 16px rgba(7,18,31,.12)); transition: opacity .2s ease, transform .2s ease; }
.system-preview.is-changing { opacity: .2; transform: scale(.98); }
.system-preview-label { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(7,18,31,.86); color: #fff; font-size: .85rem; font-weight: 800; line-height: 1.2; }
.system-thumb-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; }
.system-thumb { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; padding: 8px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.system-thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,18,31,.08); }
.system-thumb.is-active { border-color: rgba(0,152,70,.45); box-shadow: 0 0 0 2px rgba(0,152,70,.12), 0 10px 24px rgba(7,18,31,.08); }
.system-thumb img { width: 100%; height: 50px; object-fit: contain; display: block; }
.system-thumb span { position: absolute; left: 6px; right: 6px; bottom: 6px; padding: 4px 6px; border-radius: 9px; background: rgba(7,18,31,.84); color: #fff; font-size: .61rem; font-weight: 800; line-height: 1.12; text-align: center; }
.system-video-thumb { grid-column: span 3; min-height: 68px; display: flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid rgba(0,152,70,.22); border-radius: 13px; background: linear-gradient(135deg, rgba(0,152,70,.10), rgba(255,255,255,.88)); color: var(--ink); cursor: pointer; box-shadow: inset 0 1px 0 rgba(255,255,255,.72); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.system-video-thumb:hover, .system-video-thumb:focus-visible { transform: translateY(-2px); border-color: rgba(0,152,70,.48); box-shadow: 0 12px 26px rgba(7,18,31,.10), 0 0 0 3px rgba(0,152,70,.10); outline: none; }
.video-play-icon { width: 42px; height: 42px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--green); color: #fff; font-size: .9rem; box-shadow: 0 10px 22px rgba(0,152,70,.22); }
.system-video-thumb strong, .system-video-thumb small { display: block; text-align: left; }
.system-video-thumb strong { font-size: .95rem; line-height: 1.1; }
.system-video-thumb small { margin-top: 3px; color: var(--muted); font-size: .78rem; font-weight: 750; }
body.modal-open { overflow: hidden; }
.video-modal { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 24px; }
.video-modal.is-open { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(4,11,18,.72); backdrop-filter: blur(10px); cursor: pointer; }
.video-modal-panel { position: relative; width: min(980px, 100%); border-radius: 24px; background: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.42); overflow: hidden; border: 1px solid rgba(255,255,255,.14); }
.video-modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; font-weight: 800; }
.video-modal-frame { position: relative; aspect-ratio: 16 / 9; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.tool-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 26px; }
.tool-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft); }
.tool-card p { color: var(--muted); margin-top: 12px; }

.brush-section { padding: 56px 0 64px; background: var(--soft); }
.brush-grid { display: grid; grid-template-columns: .94fr 1.06fr; align-items: start; gap: 34px; }
.brush-copy p:not(.eyebrow) { color: var(--muted); margin-top: 14px; font-size: 1rem; }
.brush-copy h2 { font-size: clamp(2rem, 3.8vw, 3.35rem); line-height: 1.04; }
.brush-spec-row { margin-top: 20px; }
.brush-spec-row strong { font-size: 1.28rem; }
.brush-gallery { padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(145deg, #edf2f5, #ffffff); box-shadow: 0 16px 44px rgba(7,18,31,.08); }
.brush-preview-frame { position: relative; display: grid; place-items: center; min-height: 250px; padding: 20px; border-radius: calc(var(--radius-xl) - 8px); background: rgba(255,255,255,.72); overflow: hidden; }
.brush-preview { max-width: 100%; max-height: 250px; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(7,18,31,.12)); transition: opacity .22s ease, transform .22s ease; }
.brush-preview.is-changing { opacity: .16; transform: scale(.98); }
.brush-preview-label { position: absolute; left: 14px; bottom: 14px; z-index: 2; display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(7,18,31,.86); color: #fff; font-size: .85rem; font-weight: 800; line-height: 1.2; }
.brush-thumb-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 8px; margin-top: 12px; }
.brush-thumb { position: relative; min-width: 0; border: 1px solid var(--line); border-radius: 13px; background: #fff; overflow: hidden; padding: 8px; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.brush-thumb:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(7,18,31,.08); }
.brush-thumb.is-active { border-color: rgba(0,152,70,.45); box-shadow: 0 0 0 2px rgba(0,152,70,.12), 0 10px 24px rgba(7,18,31,.08); }
.brush-thumb img { width: 100%; height: 62px; object-fit: contain; display: block; }
.brush-thumb span { position: absolute; left: 6px; right: 6px; bottom: 6px; padding: 4px 6px; border-radius: 9px; background: rgba(7,18,31,.84); color: #fff; font-size: .61rem; font-weight: 800; line-height: 1.12; text-align: center; }
.brush-info-grid { margin-top: 20px; }

.spares-section { background: var(--white); }
.spares-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.spare-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: 0 16px 44px rgba(7,18,31,.08); }
.spare-image { height: 225px; display: grid; place-items: center; padding: 28px; background: linear-gradient(145deg, #eef3f6, #ffffff); }
.spare-image img { max-height: 180px; object-fit: contain; filter: drop-shadow(0 18px 18px rgba(7,18,31,.14)); }
.spare-content { padding: 28px; }
.spare-content h3 { margin-top: 16px; }
.spare-content p { margin-top: 12px; color: var(--muted); }

.applications-section { padding: 54px 0 62px; background: var(--soft); }
.applications-section .section-head { margin-bottom: 26px; }
.applications-section .section-head h2 { font-size: clamp(2rem, 3.7vw, 3.35rem); line-height: 1.04; }
.application-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.app-card { min-height: 185px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 10px 30px rgba(7,18,31,.06); }
.app-card span { display: inline-block; color: var(--green); font-weight: 900; margin-bottom: 16px; }
.app-card p { margin-top: 8px; color: var(--muted); font-size: .96rem; line-height: 1.45; }
.app-highlight { color: var(--white); background: linear-gradient(145deg, var(--green), var(--green-dark)); border-color: transparent; }
.app-highlight h3 { color: var(--white); }
.app-highlight p { color: rgba(255,255,255,.84); }
.app-highlight a { display: inline-flex; margin-top: 14px; font-weight: 850; }

.service-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #07121f, #0b1928 55%, #07121f); }
.service-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 18%, rgba(0,152,70,.25), transparent 36%); }
.service-section .container { position: relative; z-index: 1; }
.service-section h2, .service-section h3 { color: var(--white); }
.service-section .eyebrow { color: #73d69a; }
.service-section .section-head p:not(.eyebrow) { color: rgba(255,255,255,.67); }
.service-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: start; }
.service-section .section-head { margin-bottom: 0; }
.service-cards { display: grid; gap: 16px; }
.service-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 28px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); }
.service-card span { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; color: var(--white); background: rgba(0,152,70,.36); font-weight: 900; }
.service-card p { grid-column: 2; color: rgba(255,255,255,.69); margin-top: -8px; }

.catalog-section { background: var(--soft); }
.catalog-card { display: flex; gap: 32px; align-items: center; justify-content: space-between; padding: 42px; border-radius: var(--radius-xl); color: var(--white); background: linear-gradient(135deg, var(--ink), #10243a); box-shadow: var(--shadow); }
.catalog-card h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 3rem); }
.catalog-card p:not(.eyebrow) { max-width: 660px; margin-top: 14px; color: rgba(255,255,255,.69); }
.catalog-card .eyebrow { color: #73d69a; }
.catalog-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.catalog-actions .btn-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 12px 28px rgba(0,152,70,.22);
}
.catalog-actions .btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}


.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.contact-copy p:not(.eyebrow) { color: var(--muted); margin-top: 18px; font-size: 1.08rem; }
.contact-box { display: grid; gap: 6px; margin-top: 30px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--soft); }
.contact-box strong { color: var(--ink); font-size: 1.1rem; }
.contact-box span { color: var(--muted); }
.contact-box a { color: var(--green-dark); font-weight: 850; }
.contact-form { display: grid; gap: 16px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); background: var(--white); }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-weight: 760; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; color: var(--text); background: #fbfcfd; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(0,152,70,.65); box-shadow: 0 0 0 4px rgba(0,152,70,.10); }
.form-note { color: var(--muted); font-size: .88rem; }

.contact-map { margin-top: 34px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--white); box-shadow: var(--shadow); }
.contact-map-header { display: flex; justify-content: space-between; gap: 18px; align-items: flex-end; margin-bottom: 18px; }
.contact-map-header .eyebrow { margin-bottom: 8px; }
.contact-map-header h3 { margin: 0; color: var(--ink); font-size: clamp(1.35rem, 2.1vw, 2rem); }
.map-route-link { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 16px; border: 1px solid rgba(0,152,70,.22); border-radius: 999px; color: var(--green-dark); font-weight: 850; background: rgba(0,152,70,.08); white-space: nowrap; }
.map-route-link:hover { border-color: rgba(0,152,70,.42); background: rgba(0,152,70,.14); }
.contact-map iframe { display: block; width: 100%; min-height: 320px; border-radius: 20px; overflow: hidden; background: var(--soft); }
.map-privacy-note { margin: 12px 0 0; color: var(--muted); font-size: .88rem; }

.site-footer { position: relative; overflow: hidden; padding: 68px 0 28px; color: rgba(255,255,255,.80); background: #30343a; }
.site-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 82% 82%, rgba(0,152,70,.16), transparent 24%), linear-gradient(180deg, rgba(255,255,255,.035), transparent 34%); }
.footer-shell { position: relative; z-index: 1; }
.footer-main { display: grid; grid-template-columns: 1.1fr .9fr 1fr 1fr 1.25fr; gap: clamp(24px, 4vw, 58px); align-items: start; }
.footer-brand-panel { display: grid; gap: 18px; align-content: start; }
.footer-logo { display: inline-flex; width: 118px; height: 72px; padding: 12px; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 18px 38px rgba(0,0,0,.18); }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-panel p { max-width: 270px; margin: 0; color: rgba(255,255,255,.76); line-height: 1.55; }
.footer-contact-stack { display: grid; gap: 8px; }
.footer-contact-stack a { color: #fff; font-weight: 850; }
.footer-column { display: grid; gap: 12px; align-content: start; }
.footer-column h3, .footer-feature h3 { margin: 0 0 10px; color: #fff; font-size: 1.18rem; line-height: 1.2; letter-spacing: -.02em; }
.footer-column a { color: rgba(255,255,255,.78); font-weight: 760; line-height: 1.25; transition: color .18s ease, transform .18s ease; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-feature { display: grid; gap: 14px; align-content: start; }
.footer-feature img { width: 100%; max-height: 145px; object-fit: cover; border-radius: 14px; filter: grayscale(.15); box-shadow: 0 18px 42px rgba(0,0,0,.24); }
.footer-feature a { color: #fff; font-weight: 850; }
.footer-feature a::before { content: "›"; margin-right: 9px; color: #79d99d; font-size: 1.3em; vertical-align: -1px; }
.footer-bottom { position: relative; display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 28px; align-items: end; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.62); }
.footer-legal { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; color: rgba(255,255,255,.74); font-size: .88rem; }
.footer-legal a, .footer-legal strong { color: rgba(255,255,255,.92); font-weight: 820; }
.footer-legal a:hover { color: #fff; }
.footer-claim { position: relative; min-width: 330px; padding-top: 22px; color: #fff; font-size: clamp(1.35rem, 2.2vw, 1.95rem); line-height: 1; text-align: right; }
.footer-claim::before { content: ""; position: absolute; right: 0; top: -22px; width: min(420px, 48vw); height: 74px; border-bottom: 2px solid rgba(255,255,255,.70); border-radius: 0 0 0 100%; transform: skewX(-10deg); }
.footer-claim::after { content: ""; display: block; width: 180px; height: 2px; margin: 20px 0 0 auto; background: rgba(255,255,255,.62); box-shadow: -110px 18px 0 rgba(255,255,255,.48); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .main-nav { position: fixed; inset: calc(var(--top-info-height, 42px) + 82px) 20px auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a, .nav-dropdown-trigger { width: 100%; padding: 13px 14px; border-radius: 12px; text-align: left; justify-content: space-between; }
  .main-nav a:hover, .nav-dropdown-trigger:hover { background: var(--soft); }
  .nav-dropdown { width: 100%; }
  .dropdown-menu { position: static; min-width: 0; margin: 0 0 6px; padding: 6px; border-radius: 14px; box-shadow: none; transform: none; background: var(--soft); display: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .dropdown-menu::before { display: none; }
  .nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { transform: none; }
  .nav-dropdown.is-open .dropdown-menu { display: block; transform: none; }
  .nav-toggle { display: block; }
  .hero-grid, .company-card, .system-grid, .brush-grid, .service-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 38px; min-height: auto; }
  .hero-product-card { justify-self: stretch; width: 100%; min-height: 360px; transform: none; }
  .hero-product-stack { height: 285px; }
  .hero-img-brush { width: 72%; right: 0; top: 0; }
  .hero-img-fix { width: 68%; left: 0; bottom: 0; }
  .fact-grid, .advantage-grid { grid-template-columns: repeat(2,1fr); }
  .product-split { grid-template-columns: 1fr; }
  .application-grid, .tool-grid, .spares-grid { grid-template-columns: repeat(2,1fr); }
  .system-thumb-grid { grid-template-columns: repeat(4,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  .contact-map { padding: 18px; }
  .contact-map-header { align-items: flex-start; flex-direction: column; }
  .map-route-link { width: 100%; white-space: normal; text-align: center; }
  .contact-map iframe { min-height: 280px; }
  .products-section { padding: 40px 0 48px; }
  .applications-section { padding: 42px 0 48px; }
  .applications-section .section-head { margin-bottom: 18px; }
  .app-card { min-height: 0; padding: 18px; }
  .system-section { padding: 44px 0 52px; }
  .system-grid { gap: 26px; }
  .brush-grid { gap: 26px; }
  .system-preview-frame { min-height: 175px; }
  .system-preview { max-height: 170px; }
  .brush-thumb-grid { grid-template-columns: repeat(2,1fr); }
  .products-section .section-head { margin-bottom: 18px; }
  .benefits-section { padding: 42px 0 48px; }
  .benefits-section .section-head { margin-bottom: 18px; }
  .advantage-card { min-height: 0; padding: 18px; }
  .product-image { height: 195px; padding: 14px; }
  .product-image img { max-height: 150px; }
  .product-text { padding: 18px; }
  .header-inner { min-height: 74px; }
  .brand { min-width: 0; }
  .brand img { width: 54px; height: 44px; }
  .brand small { display: none; }
  .main-nav { inset: calc(var(--top-info-height, 42px) + 74px) 14px auto; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.8rem); }
  .hero { padding: 28px 0 34px; }
  .hero-grid { gap: 24px; }
  .hero-product-card { min-height: 300px; padding: 18px 18px 74px; }
  .hero-product-stack { height: 230px; }
  .product-label { position: static; margin-top: 18px; justify-self: start; }
  .fact-grid, .advantage-grid, .application-grid, .tool-grid, .spares-grid, .spec-row { grid-template-columns: 1fr; }
  .system-thumb-grid { grid-template-columns: repeat(2,1fr); }
  .system-thumb img { height: 64px; }
  .system-video-thumb { grid-column: 1 / -1; }
  .company-content, .product-text, .catalog-card, .contact-form { padding: 20px; }
  .company-card img { min-height: 0; }
  .product-image { height: 240px; }
  .brush-gallery { min-height: 420px; }
  .brush-preview-frame { min-height: 260px; padding: 18px; }
  .brush-preview { max-height: 220px; }
  .brush-preview-label { left: 16px; right: 16px; bottom: 16px; justify-content: center; text-align: center; }
  .brush-thumb-grid { grid-template-columns: repeat(2,1fr); }
  .catalog-card { align-items: flex-start; flex-direction: column; }
  .footer-grid nav, .footer-contact { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .text-link::after { transition: none; }
}

@media (max-width: 760px) {
  .top-info-inner { min-height: auto; padding: 9px 0; justify-content: center; text-align: center; gap: 7px 14px; }
  .top-info-inner span:nth-child(2) { order: -1; flex-basis: 100%; }
}


/* Ehemalige Zusatzseiten */
.nav-dropdown-trigger.is-active { color: var(--green-dark); }
.sales-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 78px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,18,31,.96), rgba(7,18,31,.86) 54%, rgba(0,152,70,.42)),
    url('../img/ritz-gebaeude.webp') center/cover no-repeat;
}
.sales-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(0,152,70,.34), transparent 35%);
  pointer-events: none;
}
.sales-hero .container { position: relative; z-index: 1; }
.sales-hero h1 { color: var(--white); max-width: 900px; }
.sales-hero .lead { max-width: 780px; margin-top: 24px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem, 1.7vw, 1.28rem); }
.sales-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.sales-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 34px; align-items: stretch; }
.sales-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7,18,31,.08);
}
.sales-card h2 { font-size: clamp(1.7rem, 3vw, 3rem); }
.sales-card p { margin-top: 16px; color: var(--muted); }
.sales-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.sales-list li { display: flex; gap: 12px; align-items: flex-start; color: #293849; }
.sales-list li::before { content: ""; width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; border-radius: 50%; background: var(--green); box-shadow: inset 0 0 0 5px rgba(255,255,255,.72); }
.partner-placeholder {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px dashed rgba(0,152,70,.38);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(0,152,70,.08), #ffffff);
}
.partner-placeholder strong { color: var(--ink); font-size: 1.25rem; }
.partner-placeholder span { color: var(--muted); }
.sales-contact-box { margin-top: 24px; display: grid; gap: 8px; padding: 22px; border-radius: var(--radius-lg); background: var(--soft); border: 1px solid var(--line); }
.sales-contact-box a { color: var(--green-dark); font-weight: 850; }
.sales-note-section { background: var(--soft); }
.sales-note-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.sales-note { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.sales-note span { display: inline-block; margin-bottom: 20px; color: var(--green); font-weight: 950; }
.sales-note p { margin-top: 12px; color: var(--muted); }
@media (max-width: 980px) {
  .sales-grid, .sales-note-grid { grid-template-columns: 1fr; }
  .sales-hero { padding: 82px 0 56px; }
}


/* Download pages */
.download-section { background: var(--soft); }
.download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.download-card {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 16px 48px rgba(7,18,31,.08);
}
.download-card h2 { font-size: clamp(1.7rem, 3vw, 3rem); }
.download-card p { color: var(--muted); }
.download-card-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: -6px; }
.download-pill { display: inline-flex; align-items: center; padding: .45rem .72rem; border-radius: 999px; color: var(--green-dark); background: rgba(0,152,70,.09); font-size: .82rem; font-weight: 850; }
.download-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.download-note {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(0,152,70,.22);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  background: rgba(0,152,70,.06);
  color: #274135;
}
.download-list { display: grid; gap: 18px; }
.download-list-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(7,18,31,.06);
}
.download-list-item h3 { margin-bottom: 8px; }
.download-list-item p { color: var(--muted); }
.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  border: 1px dashed rgba(7,18,31,.25);
  color: #64748b;
  background: #f1f5f9;
  font-weight: 850;
  cursor: not-allowed;
}
@media (max-width: 820px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-list-item { grid-template-columns: 1fr; }
  .download-actions .btn, .download-actions .btn-disabled { width: 100%; }
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.03;
  }
}


@media (max-width: 520px) {
  .hero-product-stack { height: 210px; }
  .hero-img-brush { width: 78%; right: -8%; top: 0; }
  .hero-img-fix { width: 78%; left: -8%; bottom: 4px; }
  .product-label { right: 16px; bottom: 16px; }
}

/* Language switch */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.language-switch button {
  min-width: 38px;
  min-height: 28px;
  padding: 4px 8px;
  border: 0;
  border-radius: 999px;
  color: rgba(255,255,255,.84);
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}
.language-switch button.is-active,
.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}
@media (max-width: 760px) {
  .language-switch { order: 2; }
}

@media (max-width: 1100px) {
  .system-grid { gap: 32px; }
  .system-thumb-grid { grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 820px) {
  .system-thumb-grid { grid-template-columns: repeat(2,1fr); }
  .system-preview-frame { min-height: 210px; }
}


/* Compact download pages */
.downloads-hero { padding: 86px 0 58px; }
.downloads-hero .lead { margin-top: 16px; font-size: clamp(1rem, 1.45vw, 1.16rem); }
.downloads-hero .sales-hero-actions { margin-top: 26px; }
.download-section { padding: 58px 0 66px; }
.download-section .section-head { margin-bottom: 24px; }
.download-section .section-head h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); line-height: 1.04; }
.compact-download-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.compact-download-grid .download-card { padding: 26px; gap: 16px; }
.compact-download-grid .download-card h2 { font-size: clamp(1.35rem, 2vw, 1.95rem); line-height: 1.1; }
.compact-download-grid .download-card p { font-size: .95rem; line-height: 1.45; }
.compact-download-grid .download-card-meta { margin-top: 14px; }
.compact-download-grid .download-actions { align-items: flex-start; }
.download-note { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.download-note-cta { flex: 0 0 auto; }
.manual-section .download-list { gap: 14px; }
.manual-download-list .download-list-item { padding: 22px 24px; grid-template-columns: 1fr; align-items: start; }
.manual-download-list .download-actions { justify-content: flex-start; justify-self: stretch; align-self: start; margin-top: 0; }
@media (max-width: 1080px) {
  .compact-download-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .downloads-hero { padding: 70px 0 48px; }
  .download-section { padding: 46px 0 54px; }
  .download-note { display: grid; }
  .download-note-cta { width: 100%; }
  .manual-download-list .download-actions { justify-content: flex-start; justify-self: stretch; }
}

/* Manual download update */
.manuals-subhead { margin-top: 46px; }
.manual-download-list .download-actions .btn { white-space: nowrap; }
.manual-download-list .download-card-meta { margin-top: 12px; }


/* Rechtliche Seiten: Impressum & Datenschutz */
.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 122px);
  padding: 86px 0 92px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7,18,31,.97), rgba(7,18,31,.88) 54%, rgba(0,152,70,.34)),
    url('../img/ritz-gebaeude.webp') center/cover no-repeat;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 12%, rgba(0,152,70,.28), transparent 35%);
  pointer-events: none;
}
.legal-hero > .container { position: relative; z-index: 1; }
.legal-hero .badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(105, 216, 144, .34);
  color: #79d99d;
  background: rgba(7,18,31,.58);
  margin-bottom: 16px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.legal-hero .intro {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255,255,255,.74);
  font-size: 1.08rem;
  line-height: 1.6;
}
.legal-card {
  margin-top: 34px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-xl);
  background: rgba(7,18,31,.88);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}
.legal-card h2 {
  margin: 34px 0 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.1;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 {
  margin: 22px 0 10px;
  color: #dff7ea;
  font-size: 1.15rem;
}
.legal-card p,
.legal-card li,
.legal-subtitle {
  color: rgba(255,255,255,.78);
  line-height: 1.72;
  font-size: .98rem;
}
.legal-card p { margin-bottom: 13px; }
.legal-card ul { margin: 8px 0 16px; padding-left: 22px; }
.legal-card a { color: #79d99d; font-weight: 800; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 8px;
}
.info-box {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.045);
}
.info-box strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.info-box p { margin-bottom: 0; }
.info-box.full-width { grid-column: 1 / -1; }
.note-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(121,217,157,.24);
  background: rgba(0,152,70,.10);
}
.note-box p { margin-bottom: 0; }
@media (max-width: 820px) {
  .legal-hero { padding: 58px 0 64px; }
  .legal-card { padding: 22px; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .footer-main { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-feature { grid-column: 1 / -1; max-width: 520px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-claim { min-width: 0; text-align: left; }
  .footer-claim::before { left: 0; right: auto; width: min(520px, 90vw); transform: skewX(10deg); }
  .footer-claim::after { margin-left: 0; margin-right: auto; }
}
@media (max-width: 680px) {
  .site-footer { padding: 46px 0 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-feature img { max-height: 190px; }
  .footer-bottom { margin-top: 38px; }
  .footer-legal { gap: 8px; font-size: .82rem; }
  .footer-claim { font-size: 1.28rem; }
}


/* Dynamische Partnerliste aus CSV */
.partner-data-panel { align-content: start; }
.partner-list-shell { display: grid; gap: 14px; }
.partner-list-status { color: var(--muted); line-height: 1.65; }
.partner-list { display: grid; gap: 14px; }
.partner-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(7,18,31,.10);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 32px rgba(7,18,31,.06);
}
.partner-card h3 { margin: 0; font-size: 1.08rem; color: var(--ink); }
.partner-card-location { display: inline-flex; width: fit-content; padding: 6px 10px; border-radius: 999px; background: rgba(0,152,70,.10); color: var(--green-dark); font-size: .78rem; font-weight: 900; }
.partner-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.partner-card-meta { display: grid; gap: 7px; }
.partner-card-meta span, .partner-card-meta a { color: #293849; font-size: .94rem; line-height: 1.35; }
.partner-card-meta a { color: var(--green-dark); font-weight: 850; text-decoration: none; }
.partner-card-meta a:hover { text-decoration: underline; }
.partner-card-products { font-weight: 850; color: var(--ink) !important; }
