/* ============ CI Variables — Stone & Water (Royal Blue + Coral + Navy) ============ */
  :root {
    --primary: #1565d8;
    --primary-600: #0f4fb0;
    --primary-50: #eef4fd;
    --primary-100: #dbe8fb;
    --coral: #ff6b3d;
    --coral-600: #e54a1e;
    --coral-50: #fff1ec;
    --coral-100: #ffe0d4;
    --navy: #0a1b35;
    --navy-2: #142848;
    --ink: #0a1b35;
    --ink-2: #1a2d4a;
    --muted: #5b6478;
    --muted-2: #8a93a6;
    --line: #e6e9f0;
    --line-2: #eef0f5;
    --bg: #ffffff;
    --bg-2: #f7f9fc;
    --shadow-md: 0 4px 14px rgba(10, 27, 53, 0.06);
    --shadow-coral: 0 6px 20px rgba(255, 107, 61, 0.28);
    --shadow-blue: 0 6px 20px rgba(21, 101, 216, 0.25);
    --radius: 14px;
    --radius-lg: 20px;
    --container: 1180px;
    --hex-clip: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

  /* ============ Header ============ */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px; max-width: var(--container); margin: 0 auto;
  }
  .brand {
    display: flex; align-items: center; gap: 12px;
    font-weight: 700; font-size: 17px; letter-spacing: -0.01em;
    color: var(--navy);
  }
  /* Header logo (echtes WEBP) */
  .brand-logo {
    height: 38px; width: auto; display: block;
  }
  /* Footer brand mark — konstruiertes Hexagon-Trio (für dunklen Hintergrund) */
  .brand-hex {
    width: 44px; height: 38px;
    position: relative; flex-shrink: 0;
  }
  .brand-hex svg { position: absolute; top: 0; left: 0; }
  .brand-hex .hex-blue   { left: 0;   top: 4px;  width: 24px; height: 28px; }
  .brand-hex .hex-navy   { left: 10px; top: 6px;  width: 24px; height: 28px; }
  .brand-hex .hex-coral  { left: 20px; top: 0;   width: 24px; height: 28px; }

  .nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
  .nav-links a { transition: color .15s; }
  .nav-links a:hover { color: var(--primary); }
  .nav-links a.coral:hover { color: var(--coral); }

  .nav-cta {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px;
    background: var(--navy); color: #fff;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
    transition: all .2s;
  }
  .nav-cta:hover { background: var(--coral); transform: translateY(-1px); box-shadow: var(--shadow-coral); }
  .nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

  /* ============ Hero ============ */
  .hero {
    position: relative; padding: 96px 0 80px; overflow: hidden;
    background:
      radial-gradient(70% 50% at 88% -10%, rgba(21,101,216,0.10), transparent 60%),
      radial-gradient(50% 40% at -5% 100%, rgba(255,107,61,0.10), transparent 65%),
      var(--bg);
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92.4' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%230a1b35' stroke-opacity='0.05' stroke-width='1'/></svg>");
    background-size: 80px 92.4px;
    mask-image: radial-gradient(ellipse 80% 70% at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at center, #000 30%, transparent 80%);
    pointer-events: none;
  }
  .hero-hex { position: absolute; pointer-events: none; opacity: 0.85; }
  .hero-hex svg { width: 100%; height: 100%; }
  .hero-hex-1 { top: 18%; left: 6%; width: 64px; height: 73.9px; animation: floatA 7s ease-in-out infinite; }
  .hero-hex-2 { top: 28%; right: 8%; width: 84px; height: 97px; animation: floatB 9s ease-in-out infinite; }
  .hero-hex-3 { bottom: 14%; left: 14%; width: 48px; height: 55.4px; animation: floatA 6s ease-in-out infinite reverse; }
  .hero-hex-4 { bottom: 22%; right: 16%; width: 56px; height: 64.6px; animation: floatB 8s ease-in-out infinite reverse; }
  @keyframes floatA { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-14px) rotate(3deg); } }
  @keyframes floatB { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(14px) rotate(-3deg); } }

  .hero-inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; z-index: 2; }
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    background: var(--coral-50); color: var(--coral-600);
    border: 1px solid var(--coral-100); border-radius: 999px;
    font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    margin-bottom: 24px;
  }
  .eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); }

  h1.hero-title {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05; letter-spacing: -0.035em;
    font-weight: 800; color: var(--navy);
    margin-bottom: 22px;
  }
  h1.hero-title .blue { color: var(--primary); font-style: italic; font-weight: 700; }
  h1.hero-title .coral { color: var(--coral); font-style: italic; font-weight: 700; }

  .hero-sub {
    font-size: clamp(17px, 1.8vw, 19px);
    color: var(--muted); max-width: 640px; margin: 0 auto 36px;
    line-height: 1.55;
  }
  .hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px; border-radius: 999px;
    font-weight: 600; font-size: 15px;
    transition: all .2s; cursor: pointer; border: 1px solid transparent;
  }
  .btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-blue); }
  .btn-primary:hover { background: var(--primary-600); transform: translateY(-1px); }
  .btn-coral { background: var(--coral); color: #fff; box-shadow: var(--shadow-coral); }
  .btn-coral:hover { background: var(--coral-600); transform: translateY(-1px); }
  .btn-ghost { background: #fff; color: var(--navy); border-color: var(--line); }
  .btn-ghost:hover { border-color: var(--navy); }
  .btn svg { width: 16px; height: 16px; }

  /* ============ Section ============ */
  section.block { padding: 96px 0; }
  section.block.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
  }
  .section-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
  .section-num {
    width: 36px; height: 41.6px;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: #fff; font-weight: 600; letter-spacing: 0.05em;
    flex-shrink: 0;
    clip-path: var(--hex-clip);
    -webkit-clip-path: var(--hex-clip);
  }
  .section-num.blue { background: var(--primary); }
  .section-num.coral { background: var(--coral); }
  .section-num.navy { background: var(--navy); }

  .section-tag {
    font-size: 13px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  }
  h2.section-title {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1; letter-spacing: -0.025em;
    font-weight: 700; color: var(--navy); max-width: 720px;
  }
  h2.section-title .blue { color: var(--primary); font-style: italic; font-weight: 600; }
  h2.section-title .coral { color: var(--coral); font-style: italic; font-weight: 600; }
  .section-lead { font-size: 17px; color: var(--muted); max-width: 460px; line-height: 1.55; }

  /* ============ Feature Cards ============ */
  .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .feature-card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px 28px; transition: all .25s ease;
    position: relative; overflow: hidden;
  }
  .feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(10,27,53,0.08); }
  .feature-card[data-accent="blue"]:hover { border-color: var(--primary-100); }
  .feature-card[data-accent="coral"]:hover { border-color: var(--coral-100); }
  .feature-card[data-accent="navy"]:hover { border-color: #c5cde0; }

  .feature-icon {
    width: 52px; height: 60px;
    display: grid; place-items: center;
    color: #fff; margin-bottom: 22px; position: relative;
  }
  .feature-icon::before {
    content: ''; position: absolute; inset: 0;
    clip-path: var(--hex-clip); -webkit-clip-path: var(--hex-clip);
  }
  .feature-icon[data-accent="blue"]::before { background: linear-gradient(135deg, var(--primary), #2b7ff0); }
  .feature-icon[data-accent="coral"]::before { background: linear-gradient(135deg, var(--coral), #ff8a5e); }
  .feature-icon[data-accent="navy"]::before { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
  .feature-icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }

  .feature-card h3 {
    font-size: 22px; font-weight: 700; letter-spacing: -0.015em;
    margin-bottom: 12px; color: var(--navy);
  }
  .feature-card p { color: var(--muted); font-size: 15px; line-height: 1.6; }
  .feature-card::after {
    content: attr(data-num); position: absolute; top: 24px; right: 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--muted-2); letter-spacing: 0.05em;
  }

  /* ============ Approach ============ */
  .approach { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .approach-text h2 { margin-bottom: 20px; }
  .approach-text p { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin-bottom: 16px; }
  .approach-text strong { color: var(--navy); font-weight: 700; }

  .approach-visual {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 36px;
    box-shadow: var(--shadow-md);
  }
  .step-list { list-style: none; }
  .step-list li {
    display: flex; gap: 16px; padding: 18px 0;
    border-bottom: 1px solid var(--line-2); align-items: flex-start;
  }
  .step-list li:last-child { border-bottom: 0; }
  .step-num {
    flex-shrink: 0; width: 30px; height: 34.6px;
    display: grid; place-items: center;
    color: #fff; font-weight: 700; font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    clip-path: var(--hex-clip); -webkit-clip-path: var(--hex-clip);
    margin-top: 2px;
  }
  .step-num.blue { background: var(--primary); }
  .step-num.coral { background: var(--coral); }
  .step-body strong { display: block; font-weight: 700; color: var(--navy); font-size: 15.5px; margin-bottom: 3px; }
  .step-body span { font-size: 14px; color: var(--muted); }

  /* ============ Services ============ */
  .services-intro {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff; border-radius: var(--radius-lg);
    padding: 56px; margin-bottom: 48px;
    position: relative; overflow: hidden;
  }
  .services-intro::before {
    content: ''; position: absolute; top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(21,101,216,0.6), transparent 70%);
    pointer-events: none;
  }
  .services-intro::after {
    content: ''; position: absolute; bottom: -100px; left: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255,107,61,0.35), transparent 70%);
    pointer-events: none;
  }
  .services-hex-deco {
    position: absolute; bottom: 20px; right: 40px;
    width: 120px; height: 138.6px;
    opacity: 0.15; pointer-events: none; color: #fff;
  }
  .services-intro-tag {
    display: inline-block;
    background: rgba(255,107,61,0.18);
    border: 1px solid rgba(255,107,61,0.35);
    color: #ffb39a;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 5px 12px; border-radius: 6px;
    margin-bottom: 22px; position: relative;
  }
  .services-intro h3 {
    font-size: clamp(26px, 3.5vw, 36px); font-weight: 700;
    line-height: 1.2; letter-spacing: -0.02em;
    margin-bottom: 18px; position: relative;
  }
  .services-intro h3 .coral { color: var(--coral); font-style: italic; }
  .services-intro p { color: #b8c5dc; font-size: 16px; line-height: 1.7; max-width: 780px; position: relative; }

  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pillar {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px;
    transition: all .2s;
  }
  .pillar[data-accent="blue"]:hover { border-color: var(--primary); box-shadow: 0 8px 24px rgba(21,101,216,0.08); }
  .pillar[data-accent="coral"]:hover { border-color: var(--coral); box-shadow: 0 8px 24px rgba(255,107,61,0.08); }
  .pillar[data-accent="navy"]:hover { border-color: var(--navy); box-shadow: 0 8px 24px rgba(10,27,53,0.08); }

  .pillar-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 600; margin-bottom: 16px;
  }
  .pillar-tag.blue { color: var(--primary); }
  .pillar-tag.coral { color: var(--coral); }
  .pillar-tag.navy { color: var(--navy); }
  .pillar-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; }
  .pillar-tag.blue::before { background: var(--primary); }
  .pillar-tag.coral::before { background: var(--coral); }
  .pillar-tag.navy::before { background: var(--navy); }

  .pillar h4 { font-size: 19px; font-weight: 700; margin-bottom: 14px; color: var(--navy); letter-spacing: -0.01em; }
  .pillar ul { list-style: none; }
  .pillar ul li {
    padding: 7px 0; color: var(--muted); font-size: 14.5px;
    display: flex; gap: 10px; line-height: 1.5;
  }
  .pillar ul li::before { content: '→'; font-weight: 700; flex-shrink: 0; }
  .pillar[data-accent="blue"] ul li::before { color: var(--primary); }
  .pillar[data-accent="coral"] ul li::before { color: var(--coral); }
  .pillar[data-accent="navy"] ul li::before { color: var(--navy); }

  /* ============ Highlights ============ */
  .shop-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
  .highlight {
    padding: 28px 24px; border: 1px solid var(--line);
    border-radius: var(--radius); background: #fff;
  }
  .highlight-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; text-transform: uppercase;
    letter-spacing: 0.08em; font-weight: 500; margin-bottom: 14px;
  }
  .highlight[data-accent="blue"] .highlight-label { color: var(--primary); }
  .highlight[data-accent="coral"] .highlight-label { color: var(--coral); }
  .highlight[data-accent="navy"] .highlight-label { color: var(--navy); }
  .highlight h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; color: var(--navy); }
  .highlight p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

  /* ============ Stats ============ */
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; background: #fff;
  }
  .stat { padding: 36px 28px; border-right: 1px solid var(--line); text-align: left; }
  .stat:last-child { border-right: 0; }
  .stat-num {
    font-size: 44px; font-weight: 800; letter-spacing: -0.03em;
    line-height: 1; margin-bottom: 8px; font-family: 'Manrope', sans-serif;
  }
  .stat-num.blue { color: var(--primary); }
  .stat-num.coral { color: var(--coral); }
  .stat-num.navy { color: var(--navy); }
  .stat-num span { font-size: 22px; color: var(--muted-2); margin-left: 2px; }
  .stat-label { font-size: 14px; color: var(--muted); line-height: 1.4; }

  /* ============ Mission ============ */
  .mission {
    background: linear-gradient(135deg, var(--primary) 0%, #2872e8 60%, var(--coral) 130%);
    color: #fff; border-radius: var(--radius-lg);
    padding: 72px 56px; text-align: center;
    position: relative; overflow: hidden;
  }
  .mission::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92.4' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%23ffffff' stroke-opacity='0.12' stroke-width='1'/></svg>");
    background-size: 80px 92.4px;
    mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 20%, transparent 75%);
    pointer-events: none;
  }
  .mission > * { position: relative; }
  .mission .eyebrow {
    background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.25);
    color: #fff; margin-bottom: 20px;
  }
  .mission .eyebrow-dot { background: #fff; }
  .mission h2 {
    font-size: clamp(30px, 4vw, 44px); font-weight: 700;
    line-height: 1.15; letter-spacing: -0.025em;
    margin-bottom: 16px; max-width: 680px;
    margin-left: auto; margin-right: auto; color: #fff;
  }
  .mission h2 .accent { font-style: italic; color: #ffd9c9; }
  .mission p { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
  .mission .btn-primary { background: #fff; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .mission .btn-primary:hover { background: var(--navy); color: #fff; }
  .mission .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
  .mission .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.12); }

  /* ============ Footer ============ */
  footer {
    background: var(--navy); color: #c0c8d8;
    padding: 72px 0 32px; position: relative; overflow: hidden;
  }
  footer::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92.4' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='1'/></svg>");
    background-size: 80px 92.4px; pointer-events: none;
  }
  .footer-grid {
    position: relative;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 48px;
  }
  .footer-brand .brand { color: #fff; margin-bottom: 16px; }
  .footer-brand p { color: #8a93a6; font-size: 14.5px; line-height: 1.65; max-width: 340px; }
  footer h5 {
    color: #fff; font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.1em;
    font-weight: 600; margin-bottom: 18px;
  }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a { color: #a8b3c7; font-size: 14.5px; transition: color .15s; }
  footer ul li a:hover { color: var(--coral); }
  .footer-bottom {
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    font-size: 13.5px; color: #6d7790;
  }
  .footer-bottom a { color: #a8b3c7; }
  .footer-bottom a:hover { color: var(--coral); }

  /* ============ Responsive ============ */
  @media (max-width: 900px) {
    .feature-grid, .pillars, .shop-highlights { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); }
    .stat:nth-child(odd) { border-right: 1px solid var(--line); }
    .stat:nth-last-child(-n+2) { border-bottom: 0; }
    .approach { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-toggle.open + .nav-links {
      display: flex; flex-direction: column;
      position: absolute; top: 100%; left: 0; right: 0;
      background: #fff; padding: 20px 24px;
      border-bottom: 1px solid var(--line); gap: 14px;
    }
    .services-intro { padding: 40px 28px; }
    .services-hex-deco { display: none; }
    .mission { padding: 56px 24px; }
    section.block { padding: 64px 0; }
    .hero { padding: 64px 0 56px; }
    .hero-hex-1, .hero-hex-3 { display: none; }
  }
  @media (max-width: 560px) {
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
    .stat:last-child { border-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section-head { gap: 16px; }
    .hero-hex-2, .hero-hex-4 { display: none; }
  }

  /* ============ Animations ============ */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .hero-inner > * { animation: fadeUp .8s ease both; }
  .hero-inner > *:nth-child(1) { animation-delay: .05s; }
  .hero-inner > *:nth-child(2) { animation-delay: .15s; }
  .hero-inner > *:nth-child(3) { animation-delay: .25s; }
  .hero-inner > *:nth-child(4) { animation-delay: .35s; }
  /* ============ SUBPAGE LAYOUTS ============ */
  .subhero {
    position: relative;
    padding: 72px 0 56px;
    overflow: hidden;
    background:
      radial-gradient(60% 50% at 88% -20%, rgba(21,101,216,0.10), transparent 60%),
      radial-gradient(40% 40% at -5% 110%, rgba(255,107,61,0.10), transparent 65%),
      var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .subhero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92.4' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%230a1b35' stroke-opacity='0.05' stroke-width='1'/></svg>");
    background-size: 80px 92.4px;
    mask-image: radial-gradient(ellipse 80% 100% at center, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 100% at center, #000 30%, transparent 80%);
    pointer-events: none;
  }
  .subhero-inner { position: relative; max-width: 820px; z-index: 2; }
  .breadcrumb {
    display: flex; gap: 8px; align-items: center;
    font-size: 13px; color: var(--muted-2);
    margin-bottom: 18px;
    flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--muted); transition: color .15s; }
  .breadcrumb a:hover { color: var(--primary); }
  .breadcrumb-sep { color: var(--muted-2); }
  .breadcrumb .current { color: var(--navy); font-weight: 500; }

  h1.subhero-title {
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.1; letter-spacing: -0.03em;
    font-weight: 800; color: var(--navy);
    margin-bottom: 18px;
  }
  h1.subhero-title .blue { color: var(--primary); font-style: italic; font-weight: 700; }
  h1.subhero-title .coral { color: var(--coral); font-style: italic; font-weight: 700; }

  .subhero-sub {
    font-size: clamp(16px, 1.5vw, 18px);
    color: var(--muted); max-width: 640px;
    line-height: 1.6;
  }

  /* Content Section */
  .content { padding: 72px 0; }
  .content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 64px; align-items: start; }
  .content-grid.single { grid-template-columns: 1fr; max-width: 780px; margin: 0 auto; }
  .content-body { min-width: 0; }
  .content-body h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700; letter-spacing: -0.02em;
    color: var(--navy);
    margin-top: 48px; margin-bottom: 16px;
    line-height: 1.2;
  }
  .content-body h2:first-child { margin-top: 0; }
  .content-body h3 {
    font-size: 20px; font-weight: 700;
    color: var(--navy); letter-spacing: -0.01em;
    margin-top: 32px; margin-bottom: 12px;
  }
  .content-body p {
    font-size: 16px; line-height: 1.7;
    color: var(--ink-2); margin-bottom: 16px;
  }
  .content-body ul, .content-body ol { padding-left: 24px; margin-bottom: 18px; }
  .content-body li { font-size: 16px; line-height: 1.7; color: var(--ink-2); margin-bottom: 6px; }
  .content-body strong { color: var(--navy); font-weight: 700; }
  .content-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
  .content-body a:hover { color: var(--coral); }
  .content-body code {
    background: var(--bg-2); padding: 2px 6px;
    border-radius: 4px; font-size: 0.92em;
    font-family: 'JetBrains Mono', monospace;
    color: var(--navy);
  }
  .content-body blockquote {
    border-left: 3px solid var(--coral);
    padding: 10px 0 10px 20px;
    margin: 24px 0;
    color: var(--muted);
    font-style: italic;
  }
  .content-body hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

  /* Sidebar (TOC / Related) */
  .sidebar { position: sticky; top: 96px; }
  .sidebar-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 24px;
    margin-bottom: 16px;
  }
  .sidebar-card h4 {
    font-size: 13px; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--muted);
    font-weight: 600; margin-bottom: 14px;
  }
  .sidebar-card ul { list-style: none; }
  .sidebar-card ul li { padding: 6px 0; }
  .sidebar-card ul li a {
    font-size: 14.5px; color: var(--ink-2);
    transition: color .15s;
  }
  .sidebar-card ul li a:hover { color: var(--primary); }
  .sidebar-card ul li a.coral-link:hover { color: var(--coral); }

  /* Info-Box */
  .info-box {
    border: 1px solid var(--primary-100);
    background: var(--primary-50);
    border-radius: var(--radius);
    padding: 24px;
    margin: 24px 0;
    display: flex; gap: 16px;
    align-items: flex-start;
  }
  .info-box.coral {
    border-color: var(--coral-100);
    background: var(--coral-50);
  }
  .info-box-icon {
    flex-shrink: 0; width: 32px; height: 36.9px;
    display: grid; place-items: center; color: #fff;
    clip-path: var(--hex-clip);
    -webkit-clip-path: var(--hex-clip);
    background: var(--primary);
  }
  .info-box.coral .info-box-icon { background: var(--coral); }
  .info-box-icon svg { width: 16px; height: 16px; }
  .info-box-body strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
  .info-box-body { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

  /* Spec Table */
  .spec-table {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin: 24px 0;
    background: #fff;
  }
  .spec-row {
    display: grid; grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--line-2);
  }
  .spec-row:last-child { border-bottom: 0; }
  .spec-row > div:first-child {
    padding: 14px 18px;
    background: var(--bg-2);
    font-weight: 600; color: var(--navy);
    font-size: 14.5px;
    border-right: 1px solid var(--line-2);
  }
  .spec-row > div:last-child {
    padding: 14px 18px;
    font-size: 14.5px;
    color: var(--ink-2);
  }

  /* Form Layout */
  .form-grid { display: grid; gap: 18px; max-width: 620px; }
  .form-row { display: grid; gap: 6px; }
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .form-row label {
    font-size: 13px; font-weight: 600;
    color: var(--navy); letter-spacing: 0.02em;
  }
  .form-row input, .form-row textarea, .form-row select {
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit; font-size: 15px;
    color: var(--ink); background: #fff;
    transition: border-color .15s, box-shadow .15s;
  }
  .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
  }
  .form-row textarea { min-height: 130px; resize: vertical; }
  .form-row .hint { font-size: 12.5px; color: var(--muted-2); }

  /* Contact-Card / Address-Card */
  .info-card {
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 28px;
    display: grid; gap: 6px;
  }
  .info-card strong { display: block; color: var(--navy); font-weight: 700; font-size: 15.5px; margin-bottom: 6px; }
  .info-card a { color: var(--primary); }
  .info-card a:hover { color: var(--coral); }
  .info-card-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 16px; margin: 32px 0;
  }

  /* Two-column Pillars */
  .pillars-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Download buttons */
  .download-btn {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 22px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .2s; margin-bottom: 12px;
    text-decoration: none !important;
  }
  .download-btn:hover { border-color: var(--primary); box-shadow: 0 4px 14px rgba(21,101,216,0.10); transform: translateY(-1px); }
  .download-btn .dl-icon {
    flex-shrink: 0; width: 40px; height: 46.2px;
    clip-path: var(--hex-clip); -webkit-clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--primary), #2b7ff0);
    display: grid; place-items: center; color: #fff;
  }
  .download-btn .dl-icon.coral { background: linear-gradient(135deg, var(--coral), #ff8a5e); }
  .download-btn .dl-icon.navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
  .download-btn .dl-body { flex: 1; }
  .download-btn .dl-body strong { color: var(--navy); display: block; font-size: 15.5px; }
  .download-btn .dl-body span { color: var(--muted); font-size: 13.5px; }
  .download-btn .dl-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--muted-2);
  }

  /* FAQ */
  .faq details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }
  .faq details summary {
    cursor: pointer; list-style: none;
    font-weight: 700; color: var(--navy);
    font-size: 16.5px;
    display: flex; align-items: center; gap: 12px;
    padding-right: 24px;
    position: relative;
  }
  .faq details summary::-webkit-details-marker { display: none; }
  .faq details summary::after {
    content: '+'; position: absolute; right: 0;
    color: var(--primary); font-weight: 300;
    font-size: 24px; transition: transform .2s;
  }
  .faq details[open] summary::after { content: '−'; }
  .faq details p { padding-top: 12px; color: var(--ink-2); line-height: 1.7; }
  .faq details p:last-child { margin-bottom: 0; }

  /* Responsive subpage */
  @media (max-width: 900px) {
    .content-grid { grid-template-columns: 1fr; gap: 40px; }
    .sidebar { position: static; }
    .pillars-2, .info-card-grid { grid-template-columns: 1fr; }
    .form-row.two { grid-template-columns: 1fr; }
    .spec-row { grid-template-columns: 1fr; }
    .spec-row > div:first-child { border-right: 0; border-bottom: 1px solid var(--line-2); }
    .subhero { padding: 56px 0 40px; }
    .content { padding: 56px 0; }
  }

  /* ============ LANG SWITCHER ============ */
  .lang-switcher {
    display: inline-flex; gap: 0; align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px; overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; font-weight: 500;
    margin-left: 12px;
  }
  .lang-switcher a {
    padding: 6px 10px; color: var(--muted);
    transition: all .15s; text-decoration: none;
    letter-spacing: 0.05em;
  }
  .lang-switcher a:hover { color: var(--navy); background: var(--bg-2); }
  .lang-switcher a.active {
    background: var(--navy); color: #fff;
  }
  @media (max-width: 900px) {
    .lang-switcher { margin: 0; align-self: center; }
  }

  /* ============ RICH SUBPAGE HERO (für Detailseiten) ============ */
  .rich-hero {
    position: relative; padding: 96px 0 80px;
    overflow: hidden;
    background:
      radial-gradient(50% 60% at 90% 0%, rgba(21,101,216,0.08), transparent 60%),
      radial-gradient(40% 50% at 5% 100%, rgba(255,107,61,0.07), transparent 65%),
      var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .rich-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92.4' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%230a1b35' stroke-opacity='0.04' stroke-width='1'/></svg>");
    background-size: 80px 92.4px;
    mask-image: radial-gradient(ellipse 75% 100% at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 75% 100% at center, #000 30%, transparent 75%);
    pointer-events: none;
  }
  .rich-hero .hero-hex { position: absolute; pointer-events: none; opacity: 0.18; }
  .rich-hero .rh-hex-1 { top: 8%; right: 6%; width: 100px; transform: rotate(15deg); color: var(--primary); }
  .rich-hero .rh-hex-2 { bottom: 12%; right: 12%; width: 80px; transform: rotate(-25deg); color: var(--coral); }
  .rich-hero .rh-hex-3 { top: 60%; left: 4%; width: 70px; transform: rotate(40deg); color: var(--coral); }
  .rich-hero-inner { position: relative; max-width: 820px; z-index: 2; }
  .rich-hero h1 {
    font-size: clamp(38px, 5.5vw, 60px);
    line-height: 1.04; letter-spacing: -0.035em;
    font-weight: 800; color: var(--navy);
    margin-bottom: 24px;
  }
  .rich-hero h1 .blue { color: var(--primary); font-style: italic; font-weight: 700; }
  .rich-hero h1 .coral { color: var(--coral); font-style: italic; font-weight: 700; }
  .rich-hero p.lead {
    font-size: clamp(17px, 1.6vw, 19px);
    color: var(--muted); max-width: 680px;
    line-height: 1.6; margin-bottom: 32px;
  }
  .rich-hero .breadcrumb { margin-bottom: 28px; }
  .rich-hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
  @media (max-width: 900px) {
    .rich-hero { padding: 64px 0 56px; }
    .rich-hero .rh-hex-1, .rich-hero .rh-hex-2 { display: none; }
  }

  /* ============ HIGHLIGHT BAR (kleine Stat-Zeile unter Hero) ============ */
  .hero-highlights {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px; padding: 28px 32px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); margin-top: 24px;
    box-shadow: 0 1px 3px rgba(10,27,53,0.04);
  }
  .hero-highlight {
    display: grid; gap: 4px;
  }
  .hero-highlight strong {
    font-family: 'JetBrains Mono', monospace;
    color: var(--primary); font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
  }
  .hero-highlight.coral strong { color: var(--coral); }
  .hero-highlight span {
    font-size: 13px; color: var(--muted-2);
    letter-spacing: 0.02em;
  }
  @media (max-width: 600px) {
    .hero-highlights { padding: 20px; gap: 18px; }
  }

  /* ============ CONTENT SECTION (alt - update für mehr Tiefe) ============ */
  .content-body h2 {
    position: relative; padding-top: 8px;
  }
  .content-body h2::before {
    content: ''; display: block;
    width: 40px; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--coral));
    margin-bottom: 16px; border-radius: 2px;
  }
  .content-body h2:first-child::before { display: none; }

  /* ============ INLINE CODE BLOCK (für Twig-Templates etc.) ============ */
  .code-block {
    background: var(--navy); color: #e8eef8;
    padding: 18px 22px; border-radius: var(--radius);
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px; line-height: 1.55;
    overflow-x: auto; margin: 20px 0;
    border: 1px solid var(--navy-2);
    position: relative;
  }
  .code-block::before {
    content: attr(data-lang);
    position: absolute; top: 8px; right: 12px;
    font-size: 10px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 0.1em;
  }
  .code-block pre {
    margin: 0; white-space: pre-wrap; word-break: break-word;
    color: inherit; font-family: inherit;
  }
  .code-block .twig-var { color: #ff8a5e; }
  .code-block .twig-tag { color: #5b9dff; }

  /* ============ STEP-BY-STEP HOW-TO LIST ============ */
  .how-to {
    counter-reset: stepcounter;
    list-style: none; padding: 0; margin: 24px 0;
  }
  .how-to li {
    counter-increment: stepcounter;
    padding: 20px 24px 20px 80px;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); margin-bottom: 12px;
    position: relative;
  }
  .how-to li::before {
    content: counter(stepcounter, decimal-leading-zero);
    position: absolute; left: 24px; top: 50%;
    transform: translateY(-50%);
    font-family: 'JetBrains Mono', monospace;
    font-size: 22px; font-weight: 700;
    color: var(--primary); letter-spacing: -0.02em;
  }
  .how-to li strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 16px; }
  .how-to li span { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

  /* ============ HEX-NUMBERED FEATURE BLOCKS ============ */
  .feat-stack { display: grid; gap: 16px; margin: 28px 0; }
  .feat-stack-item {
    display: grid; grid-template-columns: 56px 1fr;
    gap: 20px; align-items: flex-start;
    padding: 22px; background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: all .2s;
  }
  .feat-stack-item:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(21,101,216,0.06); }
  .feat-stack-item .fs-icon {
    width: 48px; height: 55.4px;
    clip-path: var(--hex-clip); -webkit-clip-path: var(--hex-clip);
    background: linear-gradient(135deg, var(--primary), #2b7ff0);
    display: grid; place-items: center; color: #fff;
  }
  .feat-stack-item .fs-icon.coral { background: linear-gradient(135deg, var(--coral), #ff8a5e); }
  .feat-stack-item .fs-icon.navy { background: linear-gradient(135deg, var(--navy), var(--navy-2)); }
  .feat-stack-item .fs-icon svg { width: 22px; height: 22px; }
  .feat-stack-item .fs-body strong { display: block; color: var(--navy); font-size: 17px; margin-bottom: 4px; letter-spacing: -0.01em; }
  .feat-stack-item .fs-body p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }

  /* Mini CTA Strip am Footer eines Bereichs */
  .cta-strip {
    margin: 48px 0 0; padding: 32px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff; border-radius: var(--radius);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
  }
  .cta-strip::after {
    content: ''; position: absolute; right: -40px; top: -40px;
    width: 160px; height: 185px; clip-path: var(--hex-clip);
    background: rgba(21,101,216,0.18); pointer-events: none;
  }
  .cta-strip-text { max-width: 560px; }
  .cta-strip-text strong { display: block; font-size: 19px; color: #fff; margin-bottom: 6px; }
  .cta-strip-text span { color: rgba(255,255,255,0.7); font-size: 14.5px; }
  .cta-strip a {
    background: var(--coral); color: #fff !important;
    padding: 12px 22px; border-radius: var(--radius);
    font-weight: 600; font-size: 15px;
    text-decoration: none !important;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .2s; z-index: 1;
  }
  .cta-strip a:hover { background: #ff8a5e; transform: translateY(-1px); }
  .cta-strip a svg { width: 16px; height: 16px; }

  /* ============================================================
     pim-shopware.de STYLE ADAPTATION
     - bigger logo
     - plugins dropdown
     - flag language switcher
     - numbered sections (01/02/03…)
     - massive section titles with italic accent words
     - feature grid with icon + label + body + bullets
     ============================================================ */

  /* Logo larger + cleaner header rhythm */
  .site-header .nav { padding: 18px 32px; }
  .brand-logo { height: 56px; width: auto; }
  @media (max-width: 700px) {
    .site-header .nav { padding: 14px 18px; }
    .brand-logo { height: 44px; }
  }

  /* nav-meta cluster on the right */
  .nav-meta {
    display: flex; align-items: center; gap: 14px;
    margin-left: auto;
  }
  .lang-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 12px;
    font-size: 14px; font-weight: 600;
    color: var(--navy); text-decoration: none;
    border-radius: 8px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    transition: all .15s;
    white-space: nowrap;
  }
  .lang-link:hover { background: var(--primary-50); border-color: var(--primary-100); color: var(--primary); }
  .nav-meta .nav-cta {
    background: var(--coral);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600; font-size: 14px;
    text-decoration: none;
    transition: all .15s;
    white-space: nowrap;
  }
  .nav-meta .nav-cta:hover { background: #e85a2e; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,107,61,0.3); }

  /* Plugins dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown-toggle {
    background: transparent; border: 0; padding: 0;
    font: inherit; color: var(--ink);
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 15px; font-weight: 500;
    transition: color .15s;
  }
  .nav-dropdown-toggle:hover { color: var(--primary); }
  .nav-dropdown-toggle svg { transition: transform .2s; }
  .nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
  .nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(10px);
    margin-top: 12px;
    min-width: 260px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(10,27,53,0.12);
    padding: 8px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; pointer-events: none;
    transition: opacity .18s, transform .18s;
    z-index: 50;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown-menu a {
    padding: 9px 14px;
    border-radius: 7px;
    font-size: 14.5px;
    color: var(--ink-2);
    text-decoration: none;
    transition: background .12s, color .12s;
  }
  .nav-dropdown-menu a:hover { background: var(--primary-50); color: var(--primary); }
  .nav-dropdown-overview {
    font-weight: 600 !important;
    color: var(--coral) !important;
    border-bottom: 1px solid var(--line);
    margin-bottom: 4px;
    padding-bottom: 12px !important;
    padding-top: 10px !important;
  }
  .nav-dropdown-overview:hover { background: var(--coral-50) !important; color: var(--coral) !important; }

  /* Mobile: dropdown becomes inline group */
  @media (max-width: 900px) {
    .nav-dropdown-menu {
      position: static; opacity: 1; pointer-events: auto;
      transform: none; box-shadow: none; margin: 8px 0 0;
      background: var(--bg-2);
    }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 10px 0; }
  }

  /* ============ pim-shopware.de — Numbered Section Layout ============ */
  .pim-section { padding: 96px 0; border-top: 1px solid var(--line-2); }
  .pim-section:first-of-type { border-top: 0; }
  .pim-section.alt { background: var(--bg-2); }
  .pim-section-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px 48px;
    align-items: start;
    margin-bottom: 56px;
  }
  .pim-section-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 96px;
    font-weight: 200;
    line-height: 1;
    color: var(--primary);
    opacity: .25;
    letter-spacing: -0.04em;
  }
  .pim-section-num.coral { color: var(--coral); }
  .pim-section-head-text { padding-top: 14px; max-width: 760px; }
  .pim-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 18px;
  }
  .pim-eyebrow .badge-new {
    background: var(--coral);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .pim-section h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.025em;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 18px;
  }
  .pim-section h2 em {
    font-style: italic;
    color: var(--primary);
    font-weight: 700;
  }
  .pim-section h2 em.coral { color: var(--coral); }
  .pim-section-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 680px;
    margin: 0;
  }

  /* Feature grid (3-col on desktop, like pim-shopware.de) */
  .pim-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .pim-features.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .pim-feat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .pim-feat:hover {
    border-color: var(--primary-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,27,53,0.06);
  }
  .pim-feat-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 14px;
    padding: 3px 0;
    border-top: 2px solid var(--primary);
    padding-top: 8px;
  }
  .pim-feat-label.coral { color: var(--coral); border-top-color: var(--coral); }
  .pim-feat-label.navy  { color: var(--navy);  border-top-color: var(--navy); }
  .pim-feat h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
  }
  .pim-feat p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0 0 12px;
  }
  .pim-feat ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
  }
  .pim-feat ul li {
    position: relative;
    padding-left: 22px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 7px;
  }
  .pim-feat ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 12px; height: 1.5px;
    background: var(--primary);
    border-radius: 1px;
  }
  .pim-feat ul li:last-child { margin-bottom: 0; }
  .pim-feat strong { color: var(--navy); font-weight: 700; }

  /* Highlight card (for "the centerpiece" sections) */
  .pim-highlight {
    background: linear-gradient(135deg, #0a1b35 0%, #1a2d4e 100%);
    color: #fff;
    padding: 48px;
    border-radius: 16px;
    margin: 0 0 36px;
    position: relative;
    overflow: hidden;
  }
  .pim-highlight::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 230px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 92.4'><path d='M40 0L80 23.1V69.3L40 92.4L0 69.3V23.1Z' fill='none' stroke='%23ff6b3d' stroke-opacity='0.18' stroke-width='1.5'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
  }
  .pim-highlight .pim-eyebrow { color: rgba(255,255,255,0.7); }
  .pim-highlight h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    color: #fff;
    line-height: 1.3;
    margin: 8px 0 14px;
    letter-spacing: -0.015em;
  }
  .pim-highlight p {
    color: rgba(255,255,255,0.85);
    font-size: 15.5px;
    line-height: 1.65;
    max-width: 720px;
    margin: 0;
  }

  /* Stats section (big numbers) */
  .pim-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    padding: 56px 0;
  }
  .pim-stat {
    text-align: center;
    padding: 24px 12px;
  }
  .pim-stat-num {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1;
    color: var(--navy);
    letter-spacing: -0.04em;
  }
  .pim-stat-num em {
    font-style: normal;
    color: var(--coral);
    font-size: 0.6em;
    margin-left: 4px;
    font-weight: 700;
  }
  .pim-stat-label {
    margin-top: 10px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.45;
  }

  /* Changelog */
  .pim-changelog {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--line-2);
    align-items: start;
  }
  .pim-changelog:first-of-type { border-top: 0; }
  .pim-changelog-version {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
  }
  .pim-changelog-date {
    font-size: 12.5px;
    color: var(--muted-2);
    margin-top: 4px;
  }
  .pim-changelog-content ul {
    margin: 0; padding: 0; list-style: none;
  }
  .pim-changelog-content li {
    position: relative;
    padding-left: 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-2);
    margin-bottom: 8px;
  }
  .pim-changelog-content li::before {
    content: '';
    position: absolute;
    left: 0; top: 10px;
    width: 6px; height: 6px;
    background: var(--coral);
    border-radius: 50%;
  }
  .pim-changelog-content li strong { color: var(--navy); }

  /* Tech-details box */
  .pim-tech {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 32px;
    margin-bottom: 24px;
  }
  .pim-tech h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin: 0 0 14px;
  }
  .pim-tech-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
  }
  .pim-tech-tag {
    padding: 6px 12px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
  }
  .pim-tech p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 16px 0 0;
  }

  /* Final CTA */
  .pim-final-cta {
    text-align: center;
    padding: 96px 0;
    background: var(--bg-2);
    border-top: 1px solid var(--line);
  }
  .pim-final-cta .pim-eyebrow { justify-content: center; }
  .pim-final-cta h2 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin: 0 auto 18px;
    max-width: 760px;
  }
  .pim-final-cta p {
    font-size: 16.5px;
    line-height: 1.65;
    color: var(--ink-2);
    max-width: 640px;
    margin: 0 auto 32px;
  }
  .pim-final-cta .hero-cta { justify-content: center; }

  /* Footer logo as image */
  .footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
  }
  .footer-brand-link { display: block; text-decoration: none; }

  /* Responsive grid */
  @media (max-width: 1024px) {
    .pim-features { grid-template-columns: repeat(2, 1fr); }
    .pim-features.cols-2 { grid-template-columns: 1fr; }
    .pim-stats { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 700px) {
    .pim-section { padding: 64px 0; }
    .pim-section-head { grid-template-columns: 1fr; gap: 16px 0; margin-bottom: 36px; }
    .pim-section-num { font-size: 56px; }
    .pim-features { grid-template-columns: 1fr; }
    .pim-stats { grid-template-columns: repeat(2, 1fr); padding: 32px 0; }
    .pim-highlight { padding: 32px 24px; }
    .pim-changelog { grid-template-columns: 1fr; gap: 8px; }
    .pim-final-cta { padding: 64px 0; }
  }

  /* ============ Dropdown — explicitly clickable + visible on Plugins page ============ */
  /* When you're ON the Plugins page (or one of its subpages), highlight the menu */
  .nav-dropdown-toggle { line-height: 1.4; }
  .nav-dropdown-toggle > span { font-weight: 500; }
  /* Make sure the dropdown menu items navigate cleanly */
  .nav-dropdown-menu a {
    display: block;
    cursor: pointer;
  }
  /* On desktop: when the dropdown is .open (clicked), it stays open */
  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* Touch: tap target spacing on dropdown items */
  @media (hover: none) {
    .nav-dropdown-menu a {
      padding: 12px 14px;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
  }
  /* pim-shopware.de match: nav-meta uses no background pill for lang, more subtle */
  .lang-link {
    background: transparent;
    border: 0;
    padding: 8px 6px;
    color: var(--ink-2);
  }
  .lang-link:hover {
    background: transparent;
    border: 0;
    color: var(--primary);
  }
  /* Bigger Plugins button visual presence */
  .nav-links > a, .nav-dropdown-toggle {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    transition: color .15s;
    padding: 6px 4px;
  }
  .nav-links > a:hover, .nav-dropdown-toggle:hover {
    color: var(--primary);
  }
  /* Nicer spacing between nav items */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  /* ============================================================
     pim-shopware.de — final nav refinements (hover-only dropdown)
     ============================================================ */

  /* Wider hover-tolerance: bridge area between toggle and menu so cursor can travel */
  .nav-dropdown { position: relative; }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 12px;          /* invisible bridge so dropdown doesn't snap shut */
    pointer-events: none;
  }
  .nav-dropdown:hover::before { pointer-events: auto; }

  /* Toggle is now an <a> link, not a button — strip default link styling */
  a.nav-dropdown-toggle {
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 500;
    padding: 6px 4px;
    transition: color .15s;
  }
  a.nav-dropdown-toggle:hover { color: var(--primary); }
  a.nav-dropdown-toggle[aria-current="page"] { color: var(--primary); }
  a.nav-dropdown-toggle svg { transition: transform .2s; }
  .nav-dropdown:hover a.nav-dropdown-toggle svg { transform: rotate(180deg); }

  /* Dropdown menu: open on hover anywhere on .nav-dropdown */
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  /* Remove .open class behavior — we don't toggle by click any more */

  /* pim-shopware.de — even nav spacing */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;        /* slightly wider than default */
  }
  .nav-links > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 6px 0;
    transition: color .15s;
  }
  .nav-links > a:hover { color: var(--primary); }
  .nav-links > a[aria-current="page"] { color: var(--primary); }

  /* CTA: more compact button like pim-shopware.de — slimmer and tighter */
  .nav-meta .nav-cta {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: 8px;
  }

  /* Mobile: dropdown becomes inline group inside the burger */
  @media (max-width: 900px) {
    .nav-dropdown::before { display: none; }
    .nav-dropdown-menu {
      position: static;
      opacity: 1;
      pointer-events: auto;
      transform: none;
      box-shadow: none;
      margin: 8px 0 12px 12px;
      background: var(--bg-2);
      min-width: auto;
    }
    a.nav-dropdown-toggle { width: 100%; padding: 10px 0; }
    .nav-dropdown:hover a.nav-dropdown-toggle svg { transform: none; }
  }

  /* ============================================================
     FAQ Accordion (for Albis doc page)
     ============================================================ */
  .pim-faq-list {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
  }
  .pim-faq-item {
    border-bottom: 1px solid var(--line);
  }
  .pim-faq-item:last-child { border-bottom: 0; }
  .pim-faq-item summary {
    cursor: pointer;
    padding: 20px 24px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: background .12s, color .12s;
  }
  .pim-faq-item summary::-webkit-details-marker { display: none; }
  .pim-faq-item summary:hover { background: var(--primary-50); color: var(--primary); }
  .pim-faq-item summary:focus { outline: 0; background: var(--primary-50); }
  .pim-faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-2);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: transform .2s, background .12s;
  }
  .pim-faq-item[open] .pim-faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
  }
  .pim-faq-answer {
    padding: 0 24px 22px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-2);
  }
  .pim-faq-answer p { margin: 0 0 10px; }
  .pim-faq-answer p:last-child { margin: 0; }
  .pim-faq-answer code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    background: var(--bg-2);
    padding: 2px 6px;
    border-radius: 4px;
  }

  /* ============================================================
     Doc-style sticky table-of-contents for Albis page (optional aid)
     ============================================================ */
  .doc-toc {
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 36px;
  }
  .doc-toc h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .doc-toc ol {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 8px 16px;
    margin: 0;
    padding: 0 0 0 24px;
  }
  .doc-toc li { font-size: 14.5px; }
  .doc-toc a {
    color: var(--navy);
    text-decoration: none;
    transition: color .12s;
  }
  .doc-toc a:hover { color: var(--primary); text-decoration: underline; }

  /* ============================================================
     pim-shopware.de — FINAL navigation match (overrides all earlier rules)
     ============================================================ */

  /* Lang flag: sichtbare Pill mit dezentem Rand wie auf pim-shopware.de */
  .lang-link,
  .nav-meta .lang-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    line-height: 1;
    letter-spacing: 0.02em;
    transition: background .15s, border-color .15s, color .15s;
  }
  .lang-link:hover,
  .nav-meta .lang-link:hover {
    background: #fff;
    border-color: var(--ink-3, #b8c0cc);
    color: var(--primary);
  }

  /* CTA: kräftiges Coral wie der "Im Shopware Store"-Button */
  .nav-cta,
  .nav-meta .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--coral);
    color: #fff !important;
    padding: 11px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    border: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    transition: background .15s, transform .15s, box-shadow .15s;
  }
  .nav-cta:hover,
  .nav-meta .nav-cta:hover {
    background: #e85a2e;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255,107,61,0.3);
    color: #fff !important;
  }

  /* Tighter, evener gap between center nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
  }
  .nav-links > a,
  a.nav-dropdown-toggle {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: 8px 0;
    transition: color .15s;
    line-height: 1;
  }
  .nav-links > a:hover,
  a.nav-dropdown-toggle:hover {
    color: var(--primary);
  }
  .nav-links > a[aria-current="page"],
  a.nav-dropdown-toggle[aria-current="page"] {
    color: var(--primary);
  }

  /* nav-meta: lang-pill and CTA grouped with breathing room */
  .nav-meta {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  /* Header overall: more whitespace, cleaner */
  .site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand img.brand-logo {
    display: block;
    height: 44px;        /* slightly smaller than the 56 attribute — looks closer to pim-shopware.de */
    width: auto;
  }

  /* ============================================================
     Contact form status message
     ============================================================ */
  .form-status {
    margin-top: 14px;
    padding: 0;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.6;
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s, padding .2s;
  }
  .form-status.loading,
  .form-status.success,
  .form-status.error {
    padding: 14px 18px;
    max-height: 220px;
  }
  .form-status.loading {
    background: var(--bg-2);
    color: var(--ink-2);
    border: 1px solid var(--line);
  }
  .form-status.success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #6ee7b7;
  }
  .form-status.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fca5a5;
  }
  /* Disabled submit button state */
  #contact-submit:disabled {
    opacity: 0.6;
    cursor: wait;
  }

  /* Footer hosting line */
  .footer-hosting {
    font-size: 12.5px;
    color: var(--muted);
  }
  .footer-hosting a {
    color: var(--ink-2);
    text-decoration: none;
    border-bottom: 1px dotted var(--ink-3, #b8c0cc);
  }
  .footer-hosting a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
    row-gap: 8px;
  }

  /* ============================================================
     Nav layout v2 — bigger logo + truly centered links
     ============================================================ */

  /* Nav becomes a 3-column grid: brand | links (mittig) | meta (rechts) */
  .nav {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    max-width: 1320px;
    padding: 16px 32px;
  }
  .nav .brand { justify-self: start; }
  .nav .nav-links { justify-self: center; }
  .nav .nav-meta { justify-self: end; }

  /* Logo größer (war 44 px) */
  .brand img.brand-logo {
    display: block;
    height: 64px;     /* roughly 1.5× vorher */
    width: auto;
  }

  /* Mobile (≤900 px): kollabiert wieder zu Burger-Menü */
  @media (max-width: 900px) {
    .nav {
      display: flex !important;
      grid-template-columns: none;
    }
    .nav .nav-links { justify-self: auto; }
    .nav .nav-meta { justify-self: auto; }
    .brand img.brand-logo { height: 48px; }
  }
