/* Fimpler Automaten — gemeinsames öffentliches Design-System (extrahiert aus index.html) */
  /* Lokal eingebundene Schriften (DSGVO-konform, kein externer Server) */
  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Variable.ttf') format('truetype-variations');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Italic-Variable.ttf') format('truetype-variations');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
  }

  :root {
    --orange: #ff7f00;
    --orange-soft: #ffa040;
    --orange-glow: rgba(255, 127, 0, 0.15);
    --black: #0a0a0a;
    --black-soft: #141414;
    --gray-900: #1a1a1a;
    --gray-700: #3d3d3d;
    --gray-500: #6b6b6b;
    --gray-300: #c8c8c8;
    --gray-100: #ebebe8;
    --cream: #f7f5f0;
    --white: #ffffff;
    --display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Lora', Georgia, 'Times New Roman', serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--display);
    font-weight: 400;
    background: var(--cream);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  ::selection { background: var(--orange); color: var(--black); }

  /* ============= NAV ============= */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 130;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 10, 10, 0.55);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.4s ease, border-color 0.4s ease;
  }
  .nav.light {
    background: rgba(247, 245, 240, 0.75);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.4s ease;
  }
  .nav.light .nav-logo { color: var(--black); }
  .nav-logo svg { height: 26px; width: auto; }
  .nav-logo span {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .nav-logo span em {
    font-style: normal;
    font-weight: 400;
    opacity: 0.65;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
  }
  .nav.light .nav-links a { color: rgba(0,0,0,0.65); }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: var(--black) !important;
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .nav-cta:hover {
    background: var(--orange-soft);
    color: var(--black) !important;
    transform: translateY(-1px);
  }
  .nav-login {
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.9) !important;
    transition: border-color 0.2s ease, color 0.2s ease;
  }
  .nav.light .nav-login { border-color: rgba(0,0,0,0.2); color: rgba(0,0,0,0.75) !important; }
  .nav-login:hover { border-color: var(--orange); color: var(--orange) !important; }
  @media (max-width: 720px) {
    .nav-links a { display: none; }
    .nav { padding: 14px 20px; }
  }

  /* ============= HERO ============= */
  .hero {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 32px 80px;
  }

  /* Animated diagonal bars background motif */
  .hero-bars {
    position: absolute;
    top: 50%;
    right: -8%;
    transform: translateY(-50%) rotate(-12deg);
    width: 90%;
    max-width: 1200px;
    opacity: 0.07;
    pointer-events: none;
  }
  .hero-bars .bar {
    height: 70px;
    background: var(--orange);
    margin-bottom: 30px;
    transform-origin: left;
    animation: barSlide 1.4s cubic-bezier(.2,.8,.2,1) both;
  }
  .hero-bars .bar:nth-child(1) { width: 100%; animation-delay: 0.1s; }
  .hero-bars .bar:nth-child(2) { width: 70%; animation-delay: 0.25s; }
  .hero-bars .bar:nth-child(3) { width: 30%; animation-delay: 0.4s; }
  @keyframes barSlide {
    from { transform: scaleX(0); opacity: 0; }
    to   { transform: scaleX(1); opacity: 0.07; }
  }

  .hero-glow {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: radial-gradient(ellipse at center, var(--orange-glow), transparent 60%);
    pointer-events: none;
    filter: blur(60px);
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px 7px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.1s cubic-bezier(.2,.8,.2,1) both;
  }
  .hero-eyebrow::before { display: none; }

  .hero h1 {
    font-family: var(--display);
    font-size: clamp(50px, 9vw, 132px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    animation: fadeUp 0.9s 0.2s cubic-bezier(.2,.8,.2,1) both;
  }
  .hero h1 .accent {
    color: var(--orange);
    font-style: italic;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .hero-sub {
    font-size: clamp(17px, 1.6vw, 21px);
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    line-height: 1.5;
    margin-bottom: 48px;
    font-weight: 400;
    animation: fadeUp 0.9s 0.35s cubic-bezier(.2,.8,.2,1) both;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.9s 0.5s cubic-bezier(.2,.8,.2,1) both;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .btn-primary {
    background: var(--orange);
    color: var(--black);
  }
  .btn-primary:hover {
    background: var(--orange-soft);
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
  }
  .btn svg { width: 16px; height: 16px; }

  .hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeUp 1s 0.8s cubic-bezier(.2,.8,.2,1) both;
  }
  .hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollLine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ============= TICKER ============= */
  .ticker {
    background: var(--black);
    color: var(--white);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
  }
  .ticker-track {
    display: flex;
    gap: 64px;
    animation: tickerScroll 38s linear infinite;
    white-space: nowrap;
    width: max-content;
  }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.85);
  }
  .ticker-item .dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
  }
  @keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ============= SECTION BASE ============= */
  section { position: relative; }
  .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 720px) {
    .container { padding: 0 20px; }
  }

  .eyebrow-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
  }
  .eyebrow-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
  }

  /* ============= PRODUCTS ============= */
  .products {
    padding: 140px 0 120px;
    background: var(--cream);
  }
  .products-header {
    max-width: 720px;
    margin-bottom: 80px;
  }
  .products-header h2 {
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
  .products-header h2 em {
    font-style: italic;
    font-family: var(--serif);
    font-weight: 400;
    color: var(--orange);
  }
  .products-header p {
    font-size: 19px;
    color: var(--gray-500);
    line-height: 1.55;
  }

  .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    align-items: center;
  }
  .product:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
  @media (max-width: 880px) {
    .product { grid-template-columns: 1fr; gap: 40px; }
    .product-visual { order: -1; }
  }

  .product-content h3 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 20px;
  }
  .product-content p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.65;
    margin-bottom: 28px;
  }
  .product-features {
    list-style: none;
    margin-bottom: 32px;
  }
  .product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--gray-700);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .product-features li:last-child { border-bottom: none; }
  .product-features li::before {
    content: '';
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
    background: var(--orange);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10l4 4 8-8' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M4 10l4 4 8-8' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  }
  .product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 3px;
    transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .product-link:hover {
    gap: 14px;
    color: var(--orange);
    border-bottom-color: var(--orange);
  }

  /* Product visuals: stylized SVG illustrations */
  .product-visual {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
      0 30px 60px -20px rgba(0,0,0,0.25),
      0 0 0 1px rgba(0,0,0,0.06);
  }
  .product-visual.light {
    background: linear-gradient(135deg, #ffe4c4 0%, #ffcc8a 100%);
  }
  .product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 20%, rgba(255,127,0,0.18), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255,127,0,0.12), transparent 50%);
  }
  .product-visual svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .product-visual .badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 3;
  }
  .product-visual.light .badge {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.1);
    color: var(--black);
  }


  /* Product visual with real photo */
  .product-visual.photo {
    background: linear-gradient(135deg, #f5f1e8 0%, #ebe5d4 100%);
    padding: 0;
  }
  .product-visual.photo::before {
    background:
      radial-gradient(circle at 30% 20%, rgba(255,127,0,0.12), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255,127,0,0.08), transparent 50%);
  }
  .product-visual.photo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .product-visual.photo.contain {
    background: radial-gradient(ellipse at center, #2a2a2a 0%, #0f0f0f 100%);
  }
  .product-visual.photo.contain::before {
    background:
      radial-gradient(circle at 30% 20%, rgba(255,127,0,0.18), transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255,127,0,0.12), transparent 50%);
  }
  .product-visual.photo.contain img {
    object-fit: contain;
    padding: 12% 8%;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
  }
  .product-visual .badge.dark {
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border-color: rgba(255,255,255,0.1);
    color: var(--white);
  }


  /* ============= STATS ============= */
  .stats {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(255,127,0,0.08), transparent 60%);
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 880px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  }
  .stat-item .num {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(180deg, var(--white) 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .stat-item .num .unit {
    color: var(--orange);
    -webkit-text-fill-color: var(--orange);
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
  }
  .stat-item .label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.02em;
  }

  /* ============= PROCESS ============= */
  .process {
    padding: 140px 0;
    background: var(--cream);
  }
  .process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
  }
  .process-header .eyebrow-label {
    margin: 0 auto 24px;
  }
  .process-header .eyebrow-label::before { display: none; }
  .process-header h2 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
  }
  .process-header p {
    font-size: 18px;
    color: var(--gray-500);
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
  }
  @media (max-width: 880px) {
    .steps { grid-template-columns: 1fr; }
  }
  .step {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  .step:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.12);
  }
  .step::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }
  .step:hover::before { transform: scaleX(1); }
  .step-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 56px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 400;
  }
  .step h4 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .step p {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.6;
  }

  /* ============= CONTACT ============= */
  .contact {
    background: var(--black);
    color: var(--white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
  }
  .contact::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    background: radial-gradient(ellipse at center right, rgba(255,127,0,0.12), transparent 60%);
    pointer-events: none;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
  }
  @media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  }

  .contact-info h2 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: 24px;
  }
  .contact-info h2 em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--orange);
  }
  .contact-info > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 48px;
    max-width: 480px;
  }

  .contact-channels {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .channel {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    text-decoration: none;
    color: var(--white);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  }
  .channel:hover {
    background: rgba(255,127,0,0.08);
    border-color: rgba(255,127,0,0.3);
    transform: translateX(4px);
  }
  .channel-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,127,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
  }
  .channel-icon svg { width: 20px; height: 20px; }
  .channel-text .label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .channel-text .value {
    font-size: 17px;
    font-weight: 500;
  }

  /* Form */
  .contact-form {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px;
  }
  @media (max-width: 720px) {
    .contact-form { padding: 28px; }
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  @media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
  }
  .form-field { margin-bottom: 16px; }
  .form-field label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
  }
  .form-field label .opt {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-left: 4px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: rgba(255,255,255,0.3);
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255,127,0,0.04);
  }
  .form-field textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
  }
  .form-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ff7f00'%3E%3Cpath d='M5 8l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
  }
  .form-field select option { background: var(--black); color: var(--white); }
  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: var(--black);
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 8px;
  }
  .form-submit:hover {
    background: var(--orange-soft);
    transform: translateY(-1px);
  }
  .form-note {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-top: 14px;
    text-align: center;
  }

  /* Product cards (Dark theme for homepage form) */
  .product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }
  @media (max-width: 540px) {
    .product-cards { grid-template-columns: 1fr; }
  }
  .product-card-dark {
    cursor: pointer;
    padding: 18px 14px;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    transition: all 0.15s;
    text-align: center;
    display: block;
  }
  .product-card-dark input { display: none; }
  .product-card-dark:hover {
    border-color: rgba(255,127,0,0.5);
    background: rgba(255,127,0,0.05);
  }
  .product-card-dark.selected {
    border-color: var(--orange);
    background: rgba(255,127,0,0.1);
    box-shadow: 0 2px 12px rgba(255,127,0,0.2);
  }
  .product-card-dark .pc-icon { font-size: 28px; line-height: 1; margin-bottom: 6px; }
  .product-card-dark .pc-title { font-weight: 600; font-size: 14px; color: #fff; margin-bottom: 3px; }
  .product-card-dark .pc-sub { font-size: 11.5px; color: rgba(255,255,255,0.5); line-height: 1.4; }

  /* Photo upload slots (dark theme) */
  .photo-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }
  @media (max-width: 700px) {
    .photo-grid-dark { grid-template-columns: repeat(2, 1fr); }
  }
  .photo-slot-dark {
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.03);
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.15s;
  }
  .photo-slot-dark:hover {
    border-color: var(--orange);
    background: rgba(255,127,0,0.06);
  }
  .photo-slot-dark input[type=file] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer;
  }
  .photo-slot-dark img { width: 100%; height: 100%; object-fit: cover; }
  .ps-hint-dark { text-align: center; color: rgba(255,255,255,0.4); pointer-events: none; }
  .ps-hint-dark .ps-icon { font-size: 22px; opacity: 0.55; margin-bottom: 4px; line-height: 1; }
  .ps-hint-dark .ps-label { font-size: 11px; }
  .ps-remove-dark {
    position: absolute; top: 5px; right: 5px;
    width: 22px; height: 22px; border-radius: 50%;
    background: rgba(0,0,0,0.75); color: #fff; border: none;
    cursor: pointer; font-size: 14px; line-height: 0; padding: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .photo-slot-dark.has-image { border-style: solid; }
  /* Schlanke Einzel-Foto-Variante (öffentliches Formular) */
  .photo-slot-dark.single {
    aspect-ratio: auto;
    min-height: 110px;
    width: 100%;
    flex-direction: row;
    gap: 12px;
  }
  .photo-slot-dark.single .ps-hint-dark { display: flex; align-items: center; gap: 12px; }
  .photo-slot-dark.single .ps-hint-dark .ps-icon { margin-bottom: 0; font-size: 26px; }
  .photo-slot-dark.single .ps-hint-dark .ps-label { font-size: 13px; }
  .form-hint-dark { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 8px; }


  /* DSGVO consent checkbox */
  .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0;
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
  }
  .consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--orange);
    cursor: pointer;
  }
  .consent.dark { color: rgba(255,255,255,0.7); }
  .consent.light { color: var(--gray-700); }
  .consent a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .consent a:hover { color: var(--orange-soft); }

  /* ============= FOOTER ============= */
  footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  @media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  .footer-brand svg { height: 28px; margin-bottom: 16px; }
  .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
  }
  .footer-col h5 {
    color: var(--white);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }
  .footer-col a:hover { color: var(--orange); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 20px;
  }




  /* === Distinctive Aufwertungen === */
  
  /* Outlined display text (hollow letters) */
  .outlined {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    transition: -webkit-text-stroke-color 0.4s ease;
  }
  @media (max-width: 720px) {
    .outlined { -webkit-text-stroke-width: 1.5px; }
  }

  /* Subtle grain texture overlay on hero */
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.18;
    mix-blend-mode: overlay;
  }

  /* Floating brand-mark watermark in hero (huge, subtle) */
  .hero-watermark {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 70vw;
    max-width: 900px;
    height: auto;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
    animation: floatMark 18s ease-in-out infinite;
  }
  @keyframes floatMark {
    0%, 100% { transform: translate(0, 0) rotate(-8deg); }
    50% { transform: translate(-30px, -20px) rotate(-6deg); }
  }

  /* Display number style for stats */
  .stat-item .num.outlined-num {
    -webkit-text-stroke: 2px rgba(255,255,255,0.85);
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: none;
  }

  /* Eyebrow chip with bar motif */
  .bar-motif {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    margin-right: 14px;
    vertical-align: middle;
  }
  .bar-motif span {
    display: block;
    height: 3px;
    background: var(--orange);
    border-radius: 1px;
  }
  .bar-motif span:nth-child(1) { width: 22px; }
  .bar-motif span:nth-child(2) { width: 16px; }
  .bar-motif span:nth-child(3) { width: 8px; }

  /* Marquee items with bar motif separator */
  .ticker-item .bars-sep {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    margin-right: 4px;
  }
  .ticker-item .bars-sep span {
    display: block;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
  }
  .ticker-item .bars-sep span:nth-child(1) { width: 18px; }
  .ticker-item .bars-sep span:nth-child(2) { width: 12px; }
  .ticker-item .bars-sep span:nth-child(3) { width: 6px; }

  /* Step number with bigger, more distinctive treatment */
  .step-num.fancy {
    font-family: var(--display);
    font-style: normal;
    font-weight: 700;
    -webkit-text-stroke: 2px var(--orange);
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 88px;
    line-height: 0.85;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
  }

  /* Footer brand redo */
  .footer-brand-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }
  .footer-brand-row svg { height: 32px; flex-shrink: 0; }
  .footer-brand-row .brand-text {
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  .footer-brand-row .brand-text em {
    font-style: normal;
    font-weight: 400;
    opacity: 0.6;
  }
  .footer-contact-block {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
  }
  .footer-contact-block strong {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
  }
  .footer-contact-block a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact-block a:hover { color: var(--orange); }

  .footer-social { margin-top: 20px; display: flex; gap: 14px; }
  .footer-social a {
    display: inline-flex; align-items: center; gap: 9px;
    color: rgba(255,255,255,0.65); text-decoration: none;
    font-size: 14px; font-weight: 500; transition: color 0.2s ease;
  }
  .footer-social a:hover { color: var(--orange); }
  .footer-social svg { flex: none; }

  /* Section interlude: bar-motif divider */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0 auto;
    padding: 60px 32px;
    max-width: 1280px;
  }
  .section-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
  }
  .section-divider .mark {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
  }
  .section-divider .mark span {
    display: block;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
  }
  .section-divider .mark span:nth-child(1) { width: 36px; }
  .section-divider .mark span:nth-child(2) { width: 26px; }
  .section-divider .mark span:nth-child(3) { width: 14px; }


  .footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 500;
  }
  .footer-tagline .bars-sep {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
  }
  .footer-tagline .bars-sep span {
    display: block;
    height: 2px;
    background: var(--orange);
    border-radius: 1px;
  }
  .footer-tagline .bars-sep span:nth-child(1) { width: 16px; }
  .footer-tagline .bars-sep span:nth-child(2) { width: 11px; }
  .footer-tagline .bars-sep span:nth-child(3) { width: 6px; }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(.2,.8,.2,1), transform 0.9s cubic-bezier(.2,.8,.2,1); }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ============= MOBILE NAV (Burger + Drawer) ============= */
  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 120;
  }
  .nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.4s ease;
  }
  .nav.light .nav-burger span { background: var(--black); }
  body.menu-open .nav-burger span { background: var(--white); }
  body.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 90px 32px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  }
  body.menu-open .mobile-drawer { opacity: 1; visibility: visible; transform: translateY(0); }
  .drawer-close {
    position: absolute; top: 16px; right: 18px;
    width: 46px; height: 46px; border: none; background: rgba(255,255,255,0.08);
    color: #fff; font-size: 24px; line-height: 1; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    z-index: 5; transition: background 0.2s ease;
  }
  .drawer-close:hover { background: rgba(255,255,255,0.16); }
  .mobile-drawer a {
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.02em;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-drawer a:last-of-type { border-bottom: none; }
  .mobile-drawer a span.arrow { color: var(--orange); font-size: 22px; }
  .mobile-drawer .drawer-cta {
    margin-top: 22px;
    background: var(--orange);
    color: var(--black);
    border-radius: 100px;
    justify-content: center;
    border-bottom: none;
    font-weight: 700;
  }
  .mobile-drawer .drawer-contact {
    margin-top: 26px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 400;
    border: none;
    padding: 0;
    display: block;
  }
  .mobile-drawer .drawer-contact a {
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    border: none;
    padding: 0;
    display: inline;
  }
  @media (max-width: 720px) {
    .nav-burger { display: flex; }
  }

  /* ============= BRANCHEN / FÜR WEN ============= */
  .branchen { padding: 120px 0; background: var(--black); color: var(--white); }
  .branchen-header { max-width: 720px; margin-bottom: 56px; }
  .branchen-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
  }
  .branchen-header h2 em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--orange); }
  .branchen-header p { font-size: 18px; color: var(--gray-300); line-height: 1.55; }
  .branchen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .branche-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .branche-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,127,0,0.4);
    background: rgba(255,127,0,0.06);
  }
  .branche-card .b-icon { font-size: 30px; margin-bottom: 14px; display: block; }
  .branche-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
  .branche-card p { font-size: 14px; color: var(--gray-300); line-height: 1.55; }
  .branchen-note {
    margin-top: 40px;
    font-size: 15px;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .branchen-note strong { color: var(--white); font-weight: 600; }

  /* ============= WARUM FIMPLER ============= */
  .warum { padding: 130px 0; background: var(--cream); }
  .warum-header { max-width: 720px; margin-bottom: 64px; }
  .warum-header h2 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 20px;
  }
  .warum-header h2 em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--orange); }
  .warum-header p { font-size: 18px; color: var(--gray-500); line-height: 1.55; }
  .warum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
  }
  .warum-item { padding-top: 26px; border-top: 2px solid var(--black); }
  .warum-item .w-num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    color: var(--orange);
    margin-bottom: 14px;
  }
  .warum-item h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
  .warum-item p { font-size: 15px; color: var(--gray-500); line-height: 1.6; }

  /* ============= FAQ ============= */
  .faq { padding: 130px 0; background: var(--black); color: var(--white); }
  .faq-header { max-width: 720px; margin-bottom: 56px; }
  .faq-header h2 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: 18px;
  }
  .faq-header h2 em { font-style: italic; font-family: var(--serif); font-weight: 400; color: var(--orange); }
  .faq-header p { font-size: 18px; color: var(--gray-300); line-height: 1.55; }
  .faq-list { max-width: 880px; }
  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .faq-q {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 600;
    text-align: left;
    padding: 26px 48px 26px 0;
    cursor: pointer;
    position: relative;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
  }
  .faq-q:hover { color: var(--orange); }
  .faq-q::after {
    content: '';
    position: absolute;
    right: 6px;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7f00' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }
  .faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-a-inner {
    padding: 0 48px 28px 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-300);
  }
  .faq-a-inner a { color: var(--orange); text-decoration: none; border-bottom: 1px solid rgba(255,127,0,0.4); }
  .faq-cta-row {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 16px;
    color: var(--gray-300);
  }
  .faq-cta-row a.btn { background: var(--orange); color: var(--black); }
  .faq-cta-row a.btn:hover { background: var(--orange-soft); transform: translateY(-2px); }

/* ============================================================
   Unterseiten: kompakter Seiten-Header + CTA-Bänder + Aktiv-Nav
   (Ergänzung für die Mehrseiten-Struktur)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 150px 0 72px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, var(--orange-glow), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow-label { color: var(--orange); }
.page-hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.page-hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--orange); }
.page-hero .page-sub {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 20px 0 0;
}
.page-hero .hero-actions { margin-top: 30px; }
.page-hero .bar-trio { display:inline-flex; gap:5px; margin-bottom: 4px; }
.page-hero .bar-trio span { display:block; width:4px; border-radius:2px; background:var(--orange); }
.page-hero .bar-trio span:nth-child(1){height:14px;} .page-hero .bar-trio span:nth-child(2){height:22px;} .page-hero .bar-trio span:nth-child(3){height:10px;}

/* CTA-Band (Aufruf am Seitenende) */
.cta-band { background: var(--black); color: var(--white); padding: 78px 0; text-align: center; }
.cta-band.orange { background: var(--orange); color: var(--black); }
.cta-band h2 {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.12; margin: 0 0 14px;
}
.cta-band.orange h2 em, .cta-band h2 em { color: var(--orange); font-style: italic; }
.cta-band.orange h2 em { color: var(--black); text-decoration: underline; text-underline-offset: 4px; }
.cta-band p { font-size: 16px; line-height: 1.6; max-width: 540px; margin: 0 auto 26px; opacity: 0.82; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Aktiver Navigationspunkt */
.nav-links a.active { color: var(--orange); }
.nav.light .nav-links a.active { color: var(--orange); }

/* Intro-/Fließtext-Hilfsklassen für Unterseiten */
.prose-narrow { max-width: 720px; margin: 0 auto; }
.section-pad { padding: 84px 0; }
.section-pad.cream { background: var(--cream); }
.lead-text { font-size: 17px; line-height: 1.7; color: #4a4a4a; }

/* Dunkler Button (z. B. auf orangem CTA-Band) */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--black); color: var(--white) !important;
  font-weight: 600; font-size: 15px; padding: 15px 30px;
  border-radius: 100px; text-decoration: none; border: none; cursor: pointer;
  transition: transform .2s, background .2s;
}
.btn-dark:hover { background: var(--black-soft); transform: translateY(-2px); }
/* Ghost-Button auf orangem Band lesbar machen */
.cta-band.orange .btn-ghost { border-color: rgba(0,0,0,0.25); color: var(--black); }
.cta-band.orange .btn-ghost:hover { background: rgba(0,0,0,0.06); }
/* Ghost-Button auf dunklem Band */
.cta-band:not(.orange) .btn-ghost { border-color: rgba(255,255,255,0.25); color: var(--white); }
.cta-band:not(.orange) .btn-ghost:hover { background: rgba(255,255,255,0.08); }

/* === Mobile-Härtung (sicher, additiv) === */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (max-width: 720px) {
  /* Lange, nicht umbrechbare Strings (IBAN, E-Mail, URL, Token) nicht horizontal überlaufen lassen */
  body { overflow-wrap: break-word; }
  /* Medien nie breiter als der Bildschirm */
  img, video, iframe { max-width: 100%; height: auto; }
}

/* ── Chips (passende Orte) & Hero-Trust-Zeile (Tippgeber) ───────── */
.chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.chip { display:inline-flex; align-items:center; gap:9px; background:#fff; border:1px solid rgba(0,0,0,0.1); border-radius:999px; padding:9px 16px; font-size:14px; font-weight:500; color:#333; box-shadow:0 4px 14px rgba(0,0,0,0.04); }
.chip::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; }
.hero-meta { display:flex; flex-wrap:wrap; gap:11px 24px; margin-top:24px; font-size:14px; color:#5a5a5a; }
.hero-meta span { display:inline-flex; align-items:center; gap:8px; }
.hero-meta svg { width:17px; height:17px; color:var(--orange); flex-shrink:0; }
