:root {
    --brand-red: #FE0F09;
    --brand-red-deep: #D60B05;
    --brand-red-bright: #FF3D38;
    --brand-red-soft: rgba(254, 15, 9, 0.08);
    --brand-red-tint: rgba(254, 15, 9, 0.04);

    --charcoal: #1C1F23;
    --charcoal-deep: #0F1115;
    --charcoal-mid: #3A3D42;

    --green: #2C7A4F;
    --amber: #C77F00;

    --bg: #FAF9F7;
    --bg-card: #FFFFFF;
    --bg-tint: #F2F0EC;
    --bg-warm: #EDEAE3;
    --line: #E2DED7;
    --line-strong: #C7C2B8;

    --text: #1C1F23;
    --text-muted: #6B6863;
    --text-faint: #9C988F;
    --grid-line: rgba(28, 31, 35, 0.04);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ============ IMAGE PLACEHOLDER SYSTEM ============ */
  /* These are the locations where real product screenshots should be placed */
  .img-placeholder {
    position: relative;
    background: linear-gradient(135deg, #2A2D33 0%, #1C1F23 100%);
    border-radius: 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: white;
    text-align: center;
    padding: 32px;
    border: 2px dashed rgba(255,255,255,0.15);
    overflow: hidden;
  }
  .img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .img-placeholder .label {
    position: relative;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-red-bright);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .img-placeholder .hint {
    position: relative;
    font-size: 15px;
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
    max-width: 360px;
    line-height: 1.35;
  }
  .img-placeholder .spec {
    position: relative;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-family: 'JetBrains Mono', monospace;
    max-width: 360px;
    line-height: 1.5;
  }
  .img-placeholder .id {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.1em;
  }
  .img-placeholder.aspect-16-10 { aspect-ratio: 16 / 10; }
  .img-placeholder.aspect-4-3 { aspect-ratio: 4 / 3; }
  .img-placeholder.aspect-1-1 { aspect-ratio: 1 / 1; }
  .img-placeholder.aspect-16-9 { aspect-ratio: 16 / 9; }
  .img-placeholder.aspect-3-4 { aspect-ratio: 3 / 4; }

  /* ============ REAL SCREENSHOT WRAPPER ============ */
  .real-shot {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(28,31,35,0.08);
    box-shadow:
      0 1px 2px rgba(28,31,35,0.04),
      0 8px 24px -8px rgba(28,31,35,0.10),
      0 32px 64px -24px rgba(28,31,35,0.20);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
  }
  .real-shot:hover {
    transform: translateY(-4px);
    box-shadow:
      0 1px 2px rgba(28,31,35,0.04),
      0 16px 32px -8px rgba(28,31,35,0.12),
      0 48px 96px -32px rgba(28,31,35,0.28);
  }
  .real-shot img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .real-shot.aspect-16-10 { aspect-ratio: 16 / 10; }
  .real-shot.aspect-16-10 img { height: 100%; object-fit: cover; object-position: top center; }
  .real-shot.aspect-4-3 { aspect-ratio: 4 / 3; }
  .real-shot.aspect-4-3 img { height: 100%; object-fit: cover; object-position: top center; }
  .real-shot.aspect-3-4 { aspect-ratio: 3 / 4; }
  .real-shot.aspect-3-4 img { height: 100%; object-fit: cover; object-position: top center; }
  /* Inline brand caption inside the frame */
  .real-shot .caption {
    position: absolute;
    bottom: 12px; left: 12px;
    background: rgba(28,31,35,0.85);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
  }
  /* Placeholder variant for the still-missing kunststoff shot */
  .real-shot.placeholder-coming {
    background: linear-gradient(135deg, #2A1A18 0%, #1C1F23 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-align: center;
    padding: 32px;
    border-color: rgba(255,255,255,0.10);
  }
  .real-shot.placeholder-coming .label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-red-bright);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .real-shot.placeholder-coming .text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.5;
    max-width: 360px;
  }

  /* ============ ANNOTATION TOGGLE ============ */
  .annotation-toggle {
    position: fixed; top: 16px; right: 16px; z-index: 10000;
    background: var(--charcoal); color: white;
    padding: 10px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 500;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 24px rgba(28, 31, 35, 0.25);
    cursor: pointer; user-select: none;
  }
  .annotation-toggle .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(254, 15, 9, 0.25);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  body.annotations-off .section-note { display: none; }
  body.annotations-off .img-placeholder::after {
    content: 'Bildplatz: Echtes Screenshot einfügen';
    position: absolute;
    bottom: 12px; right: 12px;
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    font-family: 'JetBrains Mono', monospace;
  }

  .section-note {
    position: absolute;
    background: rgba(28, 31, 35, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    z-index: 100;
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--brand-red);
    max-width: 280px;
    line-height: 1.4;
    top: 16px; left: 16px;
  }

  /* ============ LOGO ============ */
  .gocad-logo {
    display: inline-flex; align-items: center;
    text-decoration: none; line-height: 0;
  }
  .gocad-logo svg, .gocad-logo img { height: 26px; width: auto; display: block; }
  .gocad-logo.size-sm svg, .gocad-logo.size-sm img { height: 22px; }
  .gocad-logo.on-dark .logo-dark { fill: white; }

  /* NAV / BREADCRUMB / HERO styles removed — provided globally by styles.css */

  /* ============ VALUE SECTION (4 pillars) ============ */
  .value {
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .container {
    max-width: 1280px; margin: 0 auto;
    padding: 96px 32px;
  }
  .container.tight { padding: 72px 32px; }
  .section-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--brand-red);
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: ''; width: 24px; height: 1px; background: var(--brand-red);
  }
  h2.section-title {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 18px;
    max-width: 760px;
  }
  h2.section-title .accent {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-red);
  }
  .section-lede {
    font-size: 17px; color: var(--text-muted);
    max-width: 680px; line-height: 1.6;
  }

  .problem-intro {
    background: var(--bg-tint);
    border-left: 4px solid var(--brand-red);
    padding: 24px 28px;
    border-radius: 0 8px 8px 0;
    margin: 32px 0 48px;
    max-width: 780px;
  }
  .problem-intro p {
    font-size: 16px;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
  }
  .problem-intro .highlight {
    background: var(--brand-red-soft);
    padding: 1px 6px;
    border-radius: 3px;
    color: var(--brand-red-deep);
    font-weight: 600;
  }

  .pillars {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 48px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
  }
  .pillar {
    padding: 36px 32px;
    background: white;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
  }
  .pillar:nth-child(2n) { border-right: none; }
  .pillar:nth-last-child(-n+2) { border-bottom: none; }
  .pillar:hover { background: var(--bg); }
  .pillar-icon {
    width: 40px; height: 40px;
    background: var(--brand-red-soft);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: var(--brand-red);
  }
  .pillar-icon svg { width: 20px; height: 20px; }
  .pillar h3 {
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.25;
  }
  .pillar p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ============ THREE STEPS ============ */
  .three-steps {
    background: var(--bg);
  }
  .steps-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    margin-top: 56px;
    align-items: center;
  }
  .steps-list {
    display: flex; flex-direction: column; gap: 4px;
  }
  .step-row {
    display: flex; gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.2s;
  }
  .step-row:last-child { border-bottom: none; }
  .step-row-num {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--line-strong);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--charcoal);
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .step-row.active .step-row-num {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
  }
  .step-row-content h3 {
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .step-row-content p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }
  .step-row-content .step-detail {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 8px 12px;
    background: var(--bg-warm);
    border-radius: 6px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'JetBrains Mono', monospace;
  }
  .step-row-content .step-detail .dot {
    width: 6px; height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
  }

  /* ============ HOW IT WORKS DEEP DIVE ============ */
  .how-deep {
    background: white;
    border-top: 1px solid var(--line);
  }
  .how-phases {
    display: flex; flex-direction: column;
    gap: 80px;
    margin-top: 64px;
  }
  .phase {
    display: grid;
    grid-template-columns: 0.85fr 1.55fr;
    gap: 56px;
    align-items: center;
  }
  .phase:nth-child(even) {
    grid-template-columns: 1.55fr 0.85fr;
  }
  .phase:nth-child(even) .phase-content {
    order: 2;
  }
  .phase-content {
    max-width: 480px;
  }
  .phase-num {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
  }
  .phase-content h3 {
    font-size: 28px; font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .phase-content h3 .accent {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-red);
  }
  .phase-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .phase-content .phase-list {
    list-style: none;
    margin-top: 20px;
  }
  .phase-content .phase-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--text);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .phase-content .phase-list li:last-child { border-bottom: none; }
  .phase-content .phase-list li::before {
    content: '';
    width: 14px; height: 14px;
    background: var(--green);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 4.5L6 12l-3.5-3.5L4 7l2 2 6-6 1.5 1.5z'/%3E%3C/svg%3E");
    background-size: contain;
  }
  .phase-content .phase-list li strong {
    color: var(--charcoal); font-weight: 600;
  }
  .phase-effect {
    margin-top: 20px;
    padding: 14px 18px;
    background: var(--brand-red-soft);
    border-radius: 8px;
    display: flex; align-items: flex-start; gap: 12px;
  }
  .phase-effect .label {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-red-deep);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .phase-effect .text {
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.5;
  }

  /* ============ PLASTICS SPOTLIGHT ============ */
  .plastics {
    background: var(--charcoal);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .plastics::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 85% 15%, rgba(254, 15, 9, 0.15), transparent 50%);
  }
  .plastics .container { position: relative; }
  .plastics-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.55fr;
    gap: 56px;
    align-items: center;
  }
  /* Plastics photo: rounded card with brand-tinted shadow, slight zoom on hover. */
  .plastics-photo {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
      0 1px 2px rgba(0, 0, 0, 0.3),
      0 24px 56px -20px rgba(0, 0, 0, 0.5),
      0 0 0 1px rgba(255, 255, 255, 0.06);
    aspect-ratio: 4 / 3;
    background: var(--charcoal-deep);
  }
  .plastics-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .plastics-photo:hover img { transform: scale(1.04); }
  .plastics-content .section-eyebrow { color: var(--brand-red-bright); }
  .plastics-content .section-eyebrow::before { background: var(--brand-red-bright); }
  .plastics-content h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.12;
    color: white;
    margin-bottom: 20px;
  }
  .plastics-content h2 .accent {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 400;
    color: var(--brand-red-bright);
  }
  .plastics-content p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .plastics-content p strong {
    color: white; font-weight: 600;
  }
  .plastics-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(254, 15, 9, 0.15);
    border: 1px solid rgba(254, 15, 9, 0.3);
    color: var(--brand-red-bright);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
  }
  .plastics-quote {
    margin-top: 28px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--brand-red-bright);
    border-radius: 0 8px 8px 0;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
    font-style: italic;
  }

  /* ============ DIFFERENTIATORS ============ */
  .diff {
    background: var(--bg-tint);
  }
  .diff-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    background: white;
  }
  .diff-item {
    padding: 36px 32px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: white;
  }
  /* The global styles.css has 3-column .diff-item rules for the homepage USP grid
     that strip the right border on item 3 and the bottom border on item 6. On
     this page the grid is 2-column, so those rules leave gaps in the boundary.
     Override them with a more specific selector (.diff-grid > .diff-item, 0,3,0)
     than the global one (.diff-item:nth-child, 0,2,0). */
  .diff-grid > .diff-item:nth-child(3n) { border-right: 1px solid var(--line); }
  .diff-grid > .diff-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .diff-grid > .diff-item:nth-child(2n) { border-right: none; }
  .diff-grid > .diff-item:nth-last-child(-n+2) { border-bottom: none; }
  .diff-item-head {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 14px;
  }
  .diff-num {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
  }
  .diff-item h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--charcoal);
    line-height: 1.25;
    padding-top: 4px;
  }
  .diff-item p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }
  .diff-item p strong {
    color: var(--charcoal); font-weight: 600;
  }

  /* ============ PROCESS COVERAGE ============ */
  .coverage {
    background: white;
    border-top: 1px solid var(--line);
  }
  .coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
  }
  .coverage-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 24px;
    transition: all 0.2s;
  }
  .coverage-card:hover {
    border-color: var(--brand-red);
    background: white;
    box-shadow: 0 8px 24px -12px rgba(254, 15, 9, 0.12);
  }
  .coverage-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  .coverage-card ul {
    list-style: none;
  }
  .coverage-card li {
    font-size: 13.5px;
    color: var(--text);
    padding: 5px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .coverage-card li::before {
    content: '—';
    color: var(--text-faint);
    font-family: 'JetBrains Mono', monospace;
  }

  /* ============ INTEGRATIONS ============ */
  .integrations {
    background: var(--bg);
  }
  .integrations-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.55fr;
    gap: 56px;
    align-items: center;
  }
  .int-list {
    display: flex; flex-direction: column; gap: 18px;
    margin-top: 32px;
  }
  .int-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .int-item-ic {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--brand-red-soft);
    color: var(--brand-red);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .int-item-ic svg { width: 20px; height: 20px; }
  .int-item h4 {
    font-size: 15px; font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 4px;
  }
  .int-item p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background: var(--charcoal);
    color: white;
    padding: 88px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }
  .final-cta-inner {
    max-width: 720px; margin: 0 auto;
    position: relative;
  }
  .final-cta h2 {
    font-size: 42px; font-weight: 600;
    letter-spacing: -0.025em; line-height: 1.12;
    margin-bottom: 18px;
  }
  .final-cta h2 .accent {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; color: var(--brand-red-bright);
  }
  .final-cta p {
    font-size: 17px; color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    line-height: 1.55;
  }
  .final-cta .hero-cta { justify-content: center; }
  .final-cta .btn-primary { background: var(--brand-red); }
  .final-cta .btn-primary:hover { background: var(--brand-red-bright); }
  .final-cta .btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.25); }
  .final-cta .btn-ghost:hover { border-color: white; }

  /* ============ FOOTER ============ */
  footer {
    background: var(--charcoal-deep);
    color: rgba(255,255,255,0.7);
    padding: 56px 32px 28px;
  }
  .footer-inner { max-width: 1280px; margin: 0 auto; }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-brand .gocad-logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; max-width: 280px; }
  .footer-social {
    margin-top: 16px; display: flex; gap: 10px;
  }
  .footer-social a {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }
  .footer-social a:hover {
    background: var(--brand-red); color: white; transform: translateY(-1px);
  }
  .footer-social svg { width: 18px; height: 18px; display: block; }
  .footer-col h4 {
    font-size: 11.5px; font-weight: 600;
    color: white; text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.15s;
  }
  .footer-col a:hover { color: var(--brand-red-bright); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    font-size: 12px; color: rgba(255,255,255,0.5);
    flex-wrap: wrap; gap: 16px;
  }
  .footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
  .badge {
    padding: 4px 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.7);
  }

  @media (max-width: 1024px) {
    .hero-inner, .steps-main, .integrations-inner, .plastics-grid { grid-template-columns: 1fr; gap: 40px; }
    .phase, .phase:nth-child(even) { grid-template-columns: 1fr; gap: 32px; }
    .phase:nth-child(even) .phase-content { order: 0; }
    .pillars, .diff-grid { grid-template-columns: 1fr 1fr; }
    .coverage-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    /* Mobile nav: hide desktop links + actions, show hamburger (rule in styles.css) */
    .nav-links,
    .nav-actions { display: none; }
    .nav-burger { display: inline-flex; }
  }
  @media (max-width: 640px) {
    .pillars, .diff-grid, .coverage-grid, .footer-grid { grid-template-columns: 1fr; }
    .container, .final-cta { padding: 56px 20px; }
    .nav-inner { padding: 12px 20px; }
    .hero { padding: 48px 20px; }
    .final-cta h2 { font-size: 32px; }
  }

  /* ============ INLINE WORKFLOW (scoped .wf-stage) ============ */
  .wf-stage { position: relative; padding: 24px 0 40px; margin-top: 24px; overflow: visible; }
  .wf-stage::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(28,31,35,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(28,31,35,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 0%, transparent 85%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 0%, transparent 85%);
    pointer-events: none; z-index: 0;
  }
  .wf-stage > * { position: relative; z-index: 1; }
  .wf-head { text-align: center; margin-bottom: 56px; }
  .wf-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--brand-red); margin-bottom: 18px;
  }
  .wf-eyebrow::before, .wf-eyebrow::after {
    content: ''; width: 28px; height: 1px; background: var(--brand-red);
  }
  .wf-title {
    font-size: clamp(28px, 4vw, 44px); line-height: 1.05;
    letter-spacing: -0.025em; font-weight: 600; color: var(--charcoal); margin: 0;
  }
  .wf-accent {
    font-family: 'Fraunces', serif; font-style: italic;
    font-weight: 400; color: var(--brand-red);
  }
  .wf-flow {
    display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr;
    align-items: stretch; gap: 0;
  }
  .wf-step { position: relative; display: flex; flex-direction: column; }
  .wf-step-head {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 24px; min-height: 120px;
  }
  .wf-num {
    flex: none; width: 44px; height: 44px;
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif; font-style: italic;
    font-size: 22px; color: var(--charcoal);
  }
  .wf-step:nth-child(3) .wf-num {
    background: var(--brand-red); color: white; border-color: var(--brand-red);
  }
  .wf-step-text { padding-top: 2px; min-width: 0; }
  .wf-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 500; letter-spacing: 0.08em;
    color: var(--text-faint); text-transform: uppercase; margin-bottom: 6px;
  }
  .wf-step h3 {
    font-size: clamp(15px, 1.45vw, 19px); font-weight: 600;
    letter-spacing: -0.015em; color: var(--charcoal); margin: 0 0 8px; line-height: 1.2;
  }
  .wf-step p {
    font-size: clamp(12px, 1vw, 14px); line-height: 1.55;
    color: var(--text-muted); margin: 0;
  }
  .wf-frame-stack { position: relative; flex: 1; }
  .wf-frame {
    background: var(--charcoal); border-radius: 10px; padding: 6px;
    box-shadow: 0 24px 48px -16px rgba(28,31,35,0.22), 0 6px 16px -4px rgba(28,31,35,0.08);
  }
  .wf-frame-bar {
    height: 16px; display: flex; align-items: center; gap: 4px; padding: 0 6px 6px;
  }
  .wf-frame-bar i {
    width: 6px; height: 6px; border-radius: 50%; background: #3A3D42; display: block;
  }
  .wf-frame img {
    width: 100%; display: block; border-radius: 4px; background: white;
  }
  .wf-stacked .wf-frame.wf-secondary {
    position: absolute; width: 56%; bottom: -32px; right: -20px;
    transform: rotate(2deg);
    box-shadow: 0 18px 36px -10px rgba(28,31,35,0.26), 0 3px 10px -2px rgba(28,31,35,0.12);
    z-index: 2;
  }
  .wf-stacked.wf-left .wf-frame.wf-secondary {
    right: auto; left: -20px; transform: rotate(-2deg);
  }
  .wf-stacked .wf-frame.wf-primary { transform: rotate(-0.6deg); }
  .wf-stacked.wf-left .wf-frame.wf-primary { transform: rotate(0.6deg); }
  .wf-connector {
    display: flex; align-items: center; justify-content: center; padding-top: 16%;
  }
  .wf-connector svg { width: 100%; height: 24px; overflow: visible; }
  .wf-line { stroke: var(--brand-red); stroke-width: 1.5; stroke-dasharray: 4 4; fill: none; }
  .wf-arrow { fill: var(--brand-red); }
  .wf-tags { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 5px; }
  .wf-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 500; color: var(--text-muted);
    background: var(--bg-card); border: 1px solid var(--line);
    border-radius: 100px; padding: 4px 9px;
  }
  .wf-tag.wf-green { color: var(--green); border-color: rgba(44,122,79,0.25); }
  .wf-tag.wf-red { color: var(--brand-red); border-color: rgba(254,15,9,0.25); background: var(--brand-red-soft); }
  .wf-price-pill {
    position: absolute; right: -24px; bottom: -28px;
    background: var(--charcoal); color: white;
    border-radius: 12px; padding: 14px 18px 12px;
    box-shadow: 0 18px 42px -10px rgba(28,31,35,0.55), 0 5px 14px -2px rgba(28,31,35,0.18);
    z-index: 5; transform: rotate(-2.5deg); min-width: 150px;
  }
  .wf-price-pill::before {
    content: ''; position: absolute;
    top: -3px; left: -3px; right: -3px; bottom: -3px;
    border: 2px solid var(--brand-red); border-radius: 14px;
    opacity: 0.22; pointer-events: none;
  }
  .wf-pp-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.6); text-transform: uppercase; margin-bottom: 3px;
  }
  .wf-pp-val {
    font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
    font-size: 30px; color: var(--brand-red); line-height: 1;
    display: flex; align-items: baseline; gap: 3px;
  }
  .wf-pp-euro {
    font-family: 'Inter', sans-serif; font-style: normal;
    color: white; font-size: 16px; font-weight: 500;
  }
  .wf-pp-sub {
    margin-top: 6px; font-family: 'JetBrains Mono', monospace;
    font-size: 10px; color: rgba(255,255,255,0.55);
  }
  .wf-pp-sub b { color: white; font-weight: 600; }
  .wf-foot {
    margin-top: 72px;
    display: flex; align-items: center; justify-content: center;
    gap: 12px; flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px; color: var(--text-faint); letter-spacing: 0.05em; text-align: center;
  }
  .wf-foot .wf-dot {
    width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong);
  }
  .wf-foot strong { color: var(--charcoal); font-weight: 600; }
  @media (max-width: 900px) {
    .wf-flow { grid-template-columns: 1fr; gap: 64px; }
    .wf-connector { display: none; }
    .wf-stacked .wf-frame.wf-secondary,
    .wf-stacked.wf-left .wf-frame.wf-secondary {
      position: relative; width: 100%;
      bottom: 0; right: 0; left: 0;
      margin-top: 12px; transform: none;
    }
    .wf-stacked .wf-frame.wf-primary,
    .wf-stacked.wf-left .wf-frame.wf-primary { transform: none; }
    .wf-price-pill {
      position: relative; right: 0; bottom: 0;
      transform: none; margin: 16px auto 0; display: block; width: fit-content;
    }
  }

  /* ============ HERO ANNOTATION PILLS (same style as homepage hero) ============ */
  .mockup-annot {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    box-shadow: 0 8px 24px -8px rgba(28,31,35,0.18);
    display: flex; align-items: center; gap: 8px;
    z-index: 10;
    white-space: nowrap;
  }
  .mockup-annot .ic {
    width: 18px; height: 18px;
    background: var(--brand-red);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .annot-1 { top: -14px; left: -14px; }
  .annot-2 { bottom: -14px; right: 30px; }
  .annot-3 { top: 40%; right: -50px; }
  .annot-3 .ic { background: var(--charcoal); }

  /* ============ INLINE HERO IFRAME EMBED — JS scaler (1600x1200 design) ============ */
  .hero-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
    background: transparent;
  }
  .hero-iframe-scaler {
    position: absolute;
    top: 0; left: 0;
    width: 1600px;
    height: 1200px;
    transform-origin: top left;
    transform: scale(1); /* updated by JS */
    will-change: transform;
  }
  .hero-iframe-scaler iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    pointer-events: none;
  }

  /* ============ TECH-GRID (Verfahren cards with image) ============ */
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
  }
  .tech-card {
    background: var(--bg-card);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s, border-color 0.24s;
    position: relative; isolation: isolate;
  }
  .tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(254,15,9,0.20);
    box-shadow: 0 28px 56px -20px rgba(28,31,35,0.16), 0 8px 16px -8px rgba(28,31,35,0.08);
  }
  .tech-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-tint);
  }
  .tech-card-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1); display: block;
  }
  .tech-card:hover .tech-card-image img { transform: scale(1.04); }
  .tech-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(28,31,35,0.40) 100%);
    pointer-events: none;
  }
  .tech-card-tag {
    position: absolute; top: 16px; left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: white;
    background: rgba(28,31,35,0.7);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px; border-radius: 100px; z-index: 2;
  }
  .tech-card-body { padding: 28px 26px 32px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
  .tech-card-body h3 {
    font-family: 'Inter', sans-serif;
    font-size: 22px; font-weight: 600; letter-spacing: -0.015em;
    color: var(--text); margin: 0;
  }
  .tech-card-body p { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin: 0; }
  .tech-card-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--line);
  }
  .tech-card-tags .tt {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px; font-weight: 500; color: var(--text-muted);
    background: var(--bg-tint); padding: 4px 10px; border-radius: 100px;
  }
  @media (max-width: 980px) {
    .tech-grid { grid-template-columns: 1fr; }
  }