/* Stylesheet der Seiten unter /aktuelles/ – erzeugt von website/aktuelles_build.py.
   Nicht von Hand aendern: Quelle ist der <style>-Block der Startseite. */

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

  :root {
    --bg: #ffffff;
    --bg2: #f3f8fa;
    --bg3: #e7f3f5;
    --navy: #201936;
    --navy2: #2c2447;
    --accent: #2f93b8;
    --accent-bright: #50b1d0;
    --accent-dark: #1f6f8c;
    --heading: #261f39;
    --text: #41475a;
    --muted: #6b7689;
    --white: #ffffff;
    --line: #dfeaee;
    --radius: 14px;
    --grad-teal: linear-gradient(135deg, #5cc0db 0%, #2f93b8 100%);
    --grad-navy: linear-gradient(135deg, #201936 0%, #2c2447 55%, #1b2640 100%);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
  }

  a { color: var(--accent); text-decoration: none; }
  a:hover { color: var(--accent-dark); }

  img { max-width: 100%; height: auto; display: block; }

  /* ===== NAV ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 0 24px;
    box-shadow: 0 2px 20px rgba(13,21,37,0.04);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
  }
  .logo img { height: 44px; width: auto; }
  .nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
  .nav-links a {
    color: var(--heading); font-size: 14px; font-weight: 500;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-links .cta-btn {
    background: var(--grad-teal); color: var(--white) !important;
    padding: 9px 20px; border-radius: 8px; font-weight: 700;
    transition: box-shadow .2s, transform .1s;
    box-shadow: 0 4px 14px rgba(47,147,184,0.3);
  }
  .nav-links .cta-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(47,147,184,0.45); }

  .hamburger {
    display: none; background: none; border: none; cursor: pointer;
    flex-direction: column; gap: 5px; padding: 4px;
  }
  .hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--heading); border-radius: 2px; transition: all .3s;
  }

  .mobile-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px; border-bottom: 1px solid var(--line);
    flex-direction: column; gap: 16px; z-index: 999;
    box-shadow: 0 12px 30px rgba(13,21,37,0.08);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { color: var(--heading); font-size: 16px; font-weight: 500; }
  .mobile-menu a:hover { color: var(--accent); }

  /* ===== SECTIONS ===== */
  section { padding: 84px 24px; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    color: var(--accent); font-size: 13px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
  }
  h1, h2, h3, h4 { color: var(--heading); }
  h1 { font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1.12; }
  h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
  h3 { font-size: 1.2rem; }
  .accent {
    background: var(--grad-teal);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: var(--accent);
  }

  /* ===== HERO ===== */
  #hero {
    padding-top: 140px; padding-bottom: 90px;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(80,177,208,0.18) 0%, transparent 55%),
      radial-gradient(ellipse at 0% 90%, rgba(47,147,184,0.10) 0%, transparent 50%),
      linear-gradient(180deg, #f3fbfc 0%, #ffffff 100%);
    position: relative; overflow: hidden;
  }
  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .hero-text .tagline {
    display: inline-block; background: var(--bg3); color: var(--accent-dark);
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
    border: 1px solid rgba(47,147,184,0.25);
  }
  .hero-text h1 { margin-bottom: 20px; }
  .hero-text p { color: var(--text); font-size: 1.08rem; margin-bottom: 32px; max-width: 500px; }
  .btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--grad-teal); color: var(--white); font-weight: 700;
    padding: 14px 28px; border-radius: 10px; font-size: 15px;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 6px 22px rgba(47,147,184,0.32);
  }
  .btn-primary:hover {
    color: var(--white);
    transform: translateY(-2px); box-shadow: 0 10px 30px rgba(47,147,184,0.45);
  }
  .btn-secondary {
    border: 2px solid rgba(47,147,184,0.35); color: var(--accent-dark);
    padding: 12px 26px; border-radius: 10px; font-size: 15px; font-weight: 700;
    transition: all .2s; background: var(--white);
  }
  .btn-secondary:hover { border-color: var(--accent); background: var(--bg3); }

  .hero-stats {
    display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
  }
  .stat-item .num {
    display: block; font-size: 1.9rem; font-weight: 800;
    background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .stat-item .label { font-size: 13px; color: var(--muted); }

  .hero-image-wrap { position: relative; }
  .hero-image-wrap::before {
    content: ''; position: absolute; inset: -14px -14px 14px 14px;
    background: var(--grad-teal); border-radius: 20px; opacity: .35;
    filter: blur(2px); z-index: 0;
  }
  .hero-image-wrap img {
    position: relative; z-index: 1;
    border-radius: 16px; width: 100%;
    max-height: 430px; object-fit: cover; object-position: center 60%;
    box-shadow: 0 24px 60px rgba(13,21,37,0.22);
  }
  .hero-badge {
    position: absolute; bottom: -20px; left: -20px; z-index: 2;
    background: var(--white); border: 1px solid var(--line);
    border-radius: 12px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 12px 30px rgba(13,21,37,0.14);
  }
  .hero-badge .icon { font-size: 2rem; }
  .hero-badge .text { font-size: 12px; color: var(--muted); }
  .hero-badge .text strong { display: block; color: var(--heading); font-size: 14px; }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    padding: 26px 24px;
    background: var(--grad-navy);
  }
  .trust-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: #cfe2e6; font-size: 14px; font-weight: 500;
  }
  .trust-item .ti { font-size: 1.3rem; }

  /* ===== WHY US ===== */
  #warum { background: var(--bg2); }
  .why-layout {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center;
  }
  .why-photo { position: relative; }
  .why-photo img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(13,21,37,0.18); }
  .why-photo::after {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius);
    background: linear-gradient(160deg, transparent 60%, rgba(47,147,184,0.25));
  }
  .why-grid {
    display: grid; grid-template-columns: 1fr; gap: 18px;
  }
  .why-card {
    background: var(--white); border-radius: var(--radius);
    padding: 24px; border: 1px solid var(--line);
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: flex; gap: 18px; align-items: flex-start;
  }
  .why-card:hover { border-color: rgba(47,147,184,0.4); transform: translateY(-4px); box-shadow: 0 14px 30px rgba(13,21,37,0.08); }
  .why-icon {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
    background: var(--grad-teal); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
  }
  .why-card h3 { margin-bottom: 6px; }
  .why-card p { color: var(--muted); font-size: 0.95rem; }

  /* ===== SERVICES ===== */
  #service { background: var(--bg); }
  .section-header { text-align: center; margin-bottom: 48px; }
  .section-header p { color: var(--muted); max-width: 600px; margin: 12px auto 0; }
  .services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
  }
  .service-card {
    background: var(--white); border-radius: var(--radius); padding: 30px 28px;
    border: 1px solid var(--line); transition: all .2s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--grad-teal);
    transform: scaleX(0); transform-origin: left; transition: transform .25s;
  }
  .service-card:hover { border-color: rgba(47,147,184,0.3); transform: translateY(-4px); box-shadow: 0 16px 36px rgba(13,21,37,0.08); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px; border-radius: 14px; margin-bottom: 16px;
    background: var(--bg3); display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
  }
  .service-card h3 { margin-bottom: 8px; }
  .service-card p { color: var(--muted); font-size: 0.95rem; }

  /* ===== PARALLAX BAND ===== */
  .photo-band {
    position: relative; padding: 96px 24px; text-align: center;
    background:
      linear-gradient(rgba(13,21,37,0.78), rgba(13,21,37,0.82)),
      url('bilder/video-editor-arbeitsplatz.jpg') center/cover fixed;
  }
  .photo-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 14px; }
  .photo-band p { color: #cfe2e6; max-width: 560px; margin: 0 auto 28px; }

  /* ===== CTA SECTION ===== */
  .cta-section {
    background: var(--grad-teal);
    text-align: center; padding: 66px 24px;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.18), transparent 60%);
  }
  .cta-section h2 { color: var(--white); margin-bottom: 14px; position: relative; }
  .cta-section p { color: rgba(255,255,255,0.92); max-width: 520px; margin: 0 auto 28px; position: relative; }
  .cta-section .btn-white {
    position: relative; display: inline-block;
    background: var(--white); color: var(--accent-dark); font-weight: 700;
    padding: 14px 30px; border-radius: 10px; font-size: 15px;
    box-shadow: 0 8px 24px rgba(13,21,37,0.18); transition: transform .15s;
  }
  .cta-section .btn-white:hover { transform: translateY(-2px); color: var(--accent-dark); }

  /* ===== PROCESS ===== */
  #ablauf { background: var(--bg2); }
  .process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
  .process-steps::before {
    content: ''; position: absolute; left: 36px; top: 48px; bottom: 48px;
    width: 2px; background: linear-gradient(to bottom, var(--accent-bright), rgba(47,147,184,0.1));
  }
  .step {
    display: flex; gap: 28px; align-items: flex-start;
    padding: 26px 0; position: relative;
  }
  .step-num {
    flex-shrink: 0; width: 72px; height: 72px;
    background: var(--grad-teal); color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; font-weight: 800; position: relative; z-index: 1;
    box-shadow: 0 0 0 6px var(--bg2), 0 8px 20px rgba(47,147,184,0.3);
  }
  .step-content { padding-top: 14px; }
  .step-content h3 { font-size: 1.15rem; margin-bottom: 6px; }
  .step-content p { color: var(--muted); font-size: 0.95rem; }
  .step-content a.btn-sm {
    display: inline-block; margin-top: 12px;
    background: var(--bg3); color: var(--accent-dark);
    padding: 7px 16px; border-radius: 8px; font-size: 13px; font-weight: 700;
    border: 1px solid rgba(47,147,184,0.25); transition: all .2s;
  }
  .step-content a.btn-sm:hover { background: var(--grad-teal); color: var(--white); border-color: transparent; }

  /* ===== PORTFOLIO ===== */
  #beispiele { background: var(--bg); }
  .portfolio-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
  }
  .portfolio-item {
    position: relative; border-radius: var(--radius); overflow: hidden;
    cursor: pointer; aspect-ratio: 16/9;
    box-shadow: 0 8px 24px rgba(13,21,37,0.12);
    transition: transform .2s, box-shadow .2s;
  }
  .portfolio-item:hover { transform: scale(1.02); box-shadow: 0 14px 40px rgba(13,21,37,0.2); }
  .portfolio-item img {
    width: 100%; height: 100%; object-fit: cover; transition: filter .2s, transform .3s;
  }
  .portfolio-item:hover img { filter: brightness(0.6); transform: scale(1.05); }
  .play-btn {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  }
  .play-btn::after {
    content: '▶'; font-size: 1.6rem; color: white;
    background: var(--grad-teal); width: 64px; height: 64px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    padding-left: 4px; transition: transform .2s;
    box-shadow: 0 8px 24px rgba(13,21,37,0.35);
  }
  .portfolio-item:hover .play-btn::after { transform: scale(1.15); }

  /* ===== PRICING ===== */
  #preise { background: var(--bg2); }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px;
    max-width: 900px; margin: 0 auto;
  }
  .price-card {
    background: var(--white); border-radius: var(--radius); padding: 36px;
    border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(13,21,37,0.05);
  }
  .price-card.featured {
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(47,147,184,0.22);
    position: relative;
  }
  .price-card.featured::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--radius); padding: 2px;
    background: var(--grad-teal);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
  }
  .price-badge {
    background: var(--grad-teal); color: var(--white); font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 6px;
    margin-bottom: 16px; display: inline-block;
  }
  .price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
  .price-sub { color: var(--muted); font-size: 13px; margin-bottom: 20px; }
  .price-amount { margin-bottom: 24px; }
  .price-amount .amount {
    font-size: 2.8rem; font-weight: 800;
    background: var(--grad-teal); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  }
  .price-amount .per { font-size: 14px; color: var(--muted); }
  .price-amount .note { font-size: 12px; color: var(--muted); margin-top: 4px; }
  .price-features { list-style: none; margin-bottom: 28px; }
  .price-features li {
    padding: 9px 0; border-bottom: 1px solid var(--line);
    color: var(--text); font-size: 0.9rem; display: flex; gap: 10px;
  }
  .price-features li::before { content: '✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; }

  /* ===== TESTIMONIALS ===== */
  #kundenstimmen { background: var(--bg); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
  }
  .review-card {
    background: var(--white); border-radius: var(--radius); padding: 26px;
    border: 1px solid var(--line); box-shadow: 0 6px 20px rgba(13,21,37,0.05);
    position: relative;
  }
  .review-card::before {
    content: '“'; position: absolute; top: 8px; right: 18px;
    font-size: 3.4rem; color: var(--bg3); font-family: Georgia, serif; line-height: 1;
  }
  .review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 12px; }
  .review-text { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; position: relative; }
  .review-author { font-weight: 700; color: var(--heading); font-size: 0.9rem; }

  .google-badge { text-align: center; margin-top: 40px; }
  .google-badge a { display: inline-block; }
  .google-badge img { border-radius: 8px; max-width: 300px; transition: opacity .2s; box-shadow: 0 6px 20px rgba(13,21,37,0.08); }
  .google-badge img:hover { opacity: 0.85; }

  /* ===== ABOUT ===== */
  #uebermich { background: var(--bg2); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
  }
  .about-img { position: relative; }
  .about-img::before {
    content: ''; position: absolute; inset: -14px 14px 14px -14px;
    background: var(--grad-teal); border-radius: 20px; opacity: .3; z-index: 0;
  }
  .about-img img { position: relative; z-index: 1; border-radius: 16px; box-shadow: 0 20px 50px rgba(13,21,37,0.2); }
  .about-text .section-label { display: block; }
  .about-text h2 { margin-bottom: 8px; }
  .about-title { color: var(--accent-dark); font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
  .about-text p { color: var(--text); margin-bottom: 16px; }

  /* ===== CONTACT ===== */
  #kontakt { background: var(--bg); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start;
  }
  .contact-info h2 { margin-bottom: 16px; }
  .contact-info p { color: var(--muted); margin-bottom: 28px; }
  .contact-detail {
    display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px;
  }
  .contact-detail .ci {
    font-size: 1.1rem; flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
    background: var(--bg3); display: flex; align-items: center; justify-content: center;
  }
  .contact-detail .ct { color: var(--muted); font-size: 0.95rem; padding-top: 4px; }
  .contact-detail .ct strong { display: block; color: var(--heading); }

  .contact-form-card {
    background: var(--bg2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 32px; box-shadow: 0 10px 30px rgba(13,21,37,0.05);
  }
  .form-group { margin-bottom: 18px; }
  .form-group label {
    display: block; font-size: 13px; font-weight: 700; color: var(--muted);
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
  }
  .form-group input, .form-group textarea {
    width: 100%; background: var(--white); border: 1px solid var(--line);
    border-radius: 10px; padding: 12px 16px; color: var(--heading); font-size: 15px;
    font-family: inherit; transition: border-color .2s, box-shadow .2s;
  }
  .form-group input:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,147,184,0.12);
  }
  .form-group textarea { resize: vertical; min-height: 120px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  #contact-form button {
    background: var(--grad-teal); color: var(--white); font-weight: 700;
    padding: 14px 32px; border: none; border-radius: 10px;
    font-size: 15px; cursor: pointer; transition: transform .15s, box-shadow .2s;
    box-shadow: 0 6px 22px rgba(47,147,184,0.32);
    font-family: inherit;
  }
  #contact-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(47,147,184,0.45); }

  #form-success {
    display: none; background: var(--bg3); border: 1px solid var(--accent);
    border-radius: 10px; padding: 16px 20px; color: var(--accent-dark); margin-top: 16px;
    font-weight: 600;
  }

  /* ===== MAP ===== */
  .map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 60px; height: 380px; box-shadow: 0 10px 30px rgba(13,21,37,0.08); }
  .map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

  /* ===== FAQ ===== */
  #faq { background: var(--bg2); }
  .faq-list { max-width: 800px; margin: 0 auto; }
  .faq-item {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    margin-bottom: 14px; overflow: hidden; transition: box-shadow .2s;
  }
  .faq-item.open { box-shadow: 0 10px 26px rgba(13,21,37,0.07); }
  .faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 20px 22px; color: var(--heading); font-size: 1rem; font-weight: 600;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    gap: 16px; font-family: inherit;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-arrow { font-size: 1.2rem; color: var(--accent); transition: transform .25s; flex-shrink: 0; }
  .faq-a {
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
    color: var(--muted); font-size: 0.95rem; line-height: 1.7;
  }
  .faq-a.open { max-height: 340px; }
  .faq-a-inner { padding: 0 22px 18px; }
  .faq-item.open .faq-arrow { transform: rotate(180deg); }

  /* ===== BLOG ===== */
  #blog { background: var(--bg); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px;
  }
  .blog-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); transition: all .2s; box-shadow: 0 6px 20px rgba(13,21,37,0.05);
  }
  .blog-card:hover { border-color: rgba(47,147,184,0.3); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(13,21,37,0.1); }
  .blog-card-top { height: 6px; background: var(--grad-teal); }
  .blog-card-body { padding: 22px; }
  .blog-date { font-size: 12px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
  .blog-card h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
  .blog-card a { color: var(--heading); }
  .blog-card a:hover { color: var(--accent); }
  .blog-read { font-size: 13px; color: var(--accent); font-weight: 700; }

  /* ===== FOOTER ===== */
  footer {
    background: var(--grad-navy);
    padding: 52px 24px 28px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px;
  }
  .footer-brand .logo { margin-bottom: 14px; }
  .footer-brand .logo img { height: 40px; opacity: .92; }
  .footer-brand p { color: #aebccb; font-size: 0.9rem; }
  .footer-brand a { color: #cfe2e6; }
  .footer-brand a:hover { color: var(--accent-bright); }
  .footer-col h4 { color: var(--accent-bright); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { color: #aebccb; font-size: 0.9rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--accent-bright); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { color: #8fa0b2; font-size: 13px; }

  /* ===== SCROLL TO TOP ===== */
  #scrolltop {
    position: fixed; bottom: 28px; right: 28px; z-index: 500;
    background: var(--grad-teal); color: var(--white); border: none; cursor: pointer;
    width: 46px; height: 46px; border-radius: 50%; font-size: 1.1rem;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(47,147,184,0.45); transition: transform .2s;
    font-family: inherit;
  }
  #scrolltop:hover { transform: translateY(-2px); }
  #scrolltop.visible { display: flex; }

  /* ===== TICKER ===== */
  .ticker-wrap {
    background: var(--navy); padding: 14px 0; overflow: hidden;
  }
  .ticker-track {
    display: flex; gap: 40px; white-space: nowrap;
    animation: ticker 25s linear infinite;
  }
  .ticker-track span { color: #8fa0b2; font-size: 14px; }
  .ticker-track span strong { color: var(--accent-bright); }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-image-wrap { display: none; }
    .why-layout { grid-template-columns: 1fr; }
    .why-photo { max-width: 460px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-width: 320px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .photo-band { background-attachment: scroll; }
  }
  @media (max-width: 700px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 58px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .pricing-grid { grid-template-columns: 1fr; }
    .trust-inner { gap: 18px; }
  }

  /* ===== ANIMATIONS ===== */
  .fade-up {
    opacity: 0; transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
  }
  .fade-up.visible { opacity: 1; transform: none; }

  /* ===== KI / AI SECTION ===== */
  #ki { background: var(--grad-navy); }
  #ki .section-header h2 { color: #fff; }
  #ki .section-header p { color: #aebccb; }
  #ki .service-card { background: rgba(255,255,255,0.05); border-color: rgba(80,177,208,0.20); }
  #ki .service-card:hover { border-color: rgba(80,177,208,0.55); box-shadow: 0 16px 36px rgba(0,0,0,0.35); }
  #ki .service-card h3 { color: #fff; }
  #ki .service-card p { color: #aebccb; }
  #ki .service-icon { background: rgba(80,177,208,0.15); }
  #ki .ki-note { color: #8fa0b2; font-size: 0.85rem; margin-top: 26px; text-align: center; }

  /* ===== CENTERED GRIDS (Boxen mittig) ===== */
  .services-grid, .reviews-grid, .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(270px, 340px));
    justify-content: center;
  }
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 380px));
    justify-content: center;
  }

  /* ===== EXPANDABLE BOXES (Mehr erfahren) ===== */
  .more-toggle {
    margin-top: 16px; background: none; border: none; cursor: pointer;
    color: var(--accent); font-weight: 700; font-size: 13px; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px; padding: 0;
    letter-spacing: .3px; transition: color .2s;
  }
  .more-toggle:hover { color: var(--accent-dark); }
  .more-toggle .pm {
    display: inline-flex; width: 20px; height: 20px; border-radius: 50%;
    background: var(--bg3); color: var(--accent); align-items: center; justify-content: center;
    font-size: 15px; line-height: 1; transition: transform .25s, background .2s;
  }
  .more-toggle.open .pm { transform: rotate(135deg); }
  .more-content { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
  .more-content.open { max-height: 460px; }
  .more-inner {
    padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--line);
    color: var(--muted); font-size: 0.9rem; line-height: 1.7;
  }
  .more-inner strong { color: var(--heading); }
  #ki .more-inner { color: #aebccb; border-top-color: rgba(80,177,208,0.22); }
  #ki .more-inner strong { color: #fff; }
  #ki .more-toggle .pm { background: rgba(80,177,208,0.16); color: var(--accent-bright); }

  /* ===== PORTFOLIO LABEL ===== */
  .portfolio-item { outline: none; }
  .pf-label {
    position: absolute; left: 14px; bottom: 12px; z-index: 2;
    color: #fff; font-weight: 700; font-size: 0.95rem; letter-spacing: .3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6); pointer-events: none;
    opacity: .92; transition: transform .2s;
  }
  .portfolio-item:hover .pf-label { transform: translateY(-2px); }
  .pf-soon {
    position: absolute; top: 12px; right: 12px; z-index: 2;
    background: rgba(13,21,37,0.55); color: #fff; font-size: 11px; font-weight: 600;
    padding: 4px 9px; border-radius: 20px; pointer-events: none; backdrop-filter: blur(4px);
  }

  /* ===== VIDEO LIGHTBOX ===== */
  .video-lightbox {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(13,18,30,0.88); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 24px;
  }
  .video-lightbox.open { display: flex; }
  .vl-inner { position: relative; width: min(960px, 100%); }
  .vl-frame {
    position: relative; width: 100%; padding-bottom: 56.25%; height: 0;
    border-radius: 14px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    background: #000;
  }
  .vl-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
  .vl-close {
    position: absolute; top: -46px; right: 0; background: none; border: none;
    color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; font-family: inherit;
    width: 40px; height: 40px; border-radius: 50%; transition: background .2s;
  }
  .vl-close:hover { background: rgba(255,255,255,0.15); }

  /* ===== TOAST ===== */
  #toast {
    position: fixed; left: 50%; bottom: 32px; transform: translateX(-50%) translateY(20px);
    background: var(--navy2); color: #fff; padding: 13px 22px; border-radius: 10px;
    font-size: 14px; z-index: 2500; opacity: 0; pointer-events: none;
    transition: opacity .3s, transform .3s; box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(80,177,208,0.4);
  }
  #toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

  /* ===== REFERENZEN / CLIENT-STRIP (CI) ===== */
  .client-strip { margin-top: 50px; text-align: center; }
  .client-strip .section-label { display: block; margin-bottom: 18px; }
  .client-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .client-logos span {
    padding: 10px 20px; border: 1px solid var(--line); border-radius: 30px;
    background: var(--white); color: var(--heading); font-weight: 700; font-size: 0.95rem;
    letter-spacing: .2px; box-shadow: 0 4px 14px rgba(13,21,37,0.05);
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .client-logos span:hover { border-color: rgba(47,147,184,0.55); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(47,147,184,0.18); }

  /* ===== LEISTUNGSSEITEN ===== */
  /* Das picture-Element ist nur eine Huelle um das Bild: Es waehlt das Format aus und bringt
     selbst keine Darstellung mit. Ohne diese Zeile bekaeme das Bild in Kacheln mit
     fester Hoehe (.portfolio-item img { height:100% }) eine Huelle ohne Hoehe als
     Bezugsgroesse und bliebe leer. display:contents nimmt die Huelle aus dem Layout,
     damit alle vorhandenen Regeln weiter genauso greifen wie vor der Umstellung. */
  picture { display: contents; }
  /* Die Startseite formatiert die Navigation ueber den Elementnamen: `nav { position: fixed }`.
     Die Brotkrume ist ebenfalls ein <nav> und wuerde sonst unter der Navigationsleiste
     kleben statt im Seitenkopf zu stehen. Deshalb hier zurueckgesetzt. */
  nav.krume {
    position: static; background: none; backdrop-filter: none; border-bottom: 0;
    box-shadow: none; padding: 0; z-index: auto;
  }
  .ls-hero { padding: 132px 24px 56px; background: var(--bg2); border-bottom: 1px solid var(--line); }
  .ls-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
  .ls-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1.14; color: var(--heading); margin: 14px 0 16px; }
  .ls-hero .lead { font-size: 1.08rem; max-width: 56ch; }
  .ls-hero .btn-group { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
  .ls-hero-image { border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 48px rgba(13,21,37,0.16); }
  .ls-hero-image img { width: 100%; height: 100%; object-fit: cover; max-height: 380px; }
  @media (max-width: 900px) {
    .ls-hero { padding: 108px 20px 40px; }
    .ls-hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .ls-hero-image { order: -1; }
    .ls-hero-image img { max-height: 240px; }
  }

  .krume { font-size: 0.82rem; color: var(--muted); }
  .krume a { color: var(--muted); }
  .krume a:hover { color: var(--accent); }

  .ls-text { padding: 64px 24px 8px; }
  .ls-refs { padding-top: 32px; padding-bottom: 8px; }
  .ls-refs .client-strip { margin-top: 0; }
  .ls-cta-wrap { padding: 0 24px; }
  .ls-prose { max-width: 74ch; margin: 0 auto; }
  .ls-prose h2 {
    font-size: 1.5rem; color: var(--heading); margin: 44px 0 14px; line-height: 1.3;
  }
  .ls-prose p { margin-bottom: 16px; }
  .ls-prose .ls-lead {
    font-size: 1.12rem; color: var(--heading); font-weight: 500; line-height: 1.62;
    border-left: 3px solid var(--accent); padding-left: 20px; margin-bottom: 28px;
  }
  .ls-prose strong { color: var(--heading); }

  .ls-cta {
    background: var(--grad-navy); color: #fff; border-radius: var(--radius);
    padding: 44px 36px; text-align: center; margin: 56px auto 0; max-width: 860px;
  }
  .ls-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
  .ls-cta p { color: #c9d3e2; max-width: 56ch; margin: 0 auto 24px; }
  .ls-cta .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .ls-cta .tel { display: block; margin-top: 18px; color: #8fa0b2; font-size: 0.92rem; }
  .ls-cta .tel a { color: #8fa0b2; }

  .ls-weiter { padding: 56px 24px 72px; }
  .ls-weiter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
  .ls-weiter-karte {
    display: block; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 20px 22px; background: var(--white); transition: box-shadow .2s, transform .15s;
  }
  .ls-weiter-karte:hover { box-shadow: 0 10px 28px rgba(13,21,37,0.1); transform: translateY(-2px); }
  .ls-weiter-karte strong { display: block; color: var(--heading); margin-bottom: 6px; font-size: 1.02rem; }
  .ls-weiter-karte span { color: var(--muted); font-size: 0.9rem; }
  .nav-links a[aria-current="page"] { color: var(--accent); font-weight: 700; }

  /* Die Fusszeile hat auf den Leistungsseiten eine Spalte mehr als auf der Startseite.
     Die Regeln der Startseite stehen weiter oben im Stylesheet, deshalb hier noch einmal
     samt der beiden Umbruchpunkte. */
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }

  /* ===== AKTUELLES (14.09.2026) ===== */
  #aktuelles { background: var(--bg2); }
  .ak-raster {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px; max-width: 1140px; margin: 0 auto;
  }
  /* Bei ein oder zwei Beitraegen nicht auf volle Breite ziehen: Kachelbreite deckeln. */
  .ak-raster > .ak-karte { max-width: 400px; width: 100%; margin: 0 auto; }
  .ak-karte {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .ak-karte:hover { border-color: rgba(47,147,184,0.3); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(13,21,37,0.1); }
  .ak-karte-bild { display: block; aspect-ratio: 4 / 5; background: var(--navy); overflow: hidden; }
  .ak-karte-bild img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ak-karte-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .ak-meta { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
  .ak-meta .ak-punkt { color: var(--muted); font-weight: 400; margin: 0 2px; }
  .ak-karte h3 { font-size: 1.05rem; line-height: 1.35; margin: 0; }
  .ak-karte h3 a { color: var(--heading); }
  .ak-karte h3 a:hover { color: var(--accent); }
  .ak-karte p { color: var(--text); font-size: .95rem; margin: 0; }
  .ak-weiter { margin-top: auto; padding-top: 6px; font-size: 13px; font-weight: 700; color: var(--accent); }
  .ak-mehr { text-align: center; margin-top: 40px; }
  .ak-leer {
    max-width: 640px; margin: 0 auto; text-align: center; background: var(--white);
    border: 1px dashed rgba(47,147,184,0.45); border-radius: var(--radius); padding: 36px 28px;
  }
  .ak-leer p { color: var(--text); margin: 0; }
  .ak-leer strong { color: var(--heading); }
  .ak-sozial { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
  .ak-sozial-link {
    display: inline-flex; align-items: center; gap: 8px; font-size: 0.86rem; font-weight: 700;
    color: var(--accent-dark); background: var(--bg3); border: 1px solid var(--line);
    border-radius: 999px; padding: 8px 16px; transition: background .2s, color .2s, border-color .2s;
  }
  .ak-sozial-link:hover { background: var(--grad-teal); color: var(--white); border-color: transparent; }
  .ak-sozial-link::before { content: '↗'; font-size: .8em; opacity: .7; }
  /* Unterseiten unter /aktuelles/ */
  .ak-kopf { padding: 132px 24px 40px; background: var(--bg2); border-bottom: 1px solid var(--line); }
  .ak-kopf .tagline {
    display: inline-block; background: var(--bg3); color: var(--accent-dark);
    padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase; margin: 12px 0 16px;
  }
  .ak-schmal { max-width: 760px; }
  .ak-kopf h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.16; margin: 10px 0 14px; }
  .ak-kopf .lead { font-size: 1.08rem; color: var(--text); max-width: 62ch; }
  .ak-kopf .ak-sozial { justify-content: flex-start; margin-top: 22px; }
  .ak-liste { padding: 56px 24px 24px; }
  .ak-beitrag { padding: 48px 24px 24px; }
  .ak-bild {
    margin: 0 auto 36px; max-width: 480px; border-radius: var(--radius); overflow: hidden;
    box-shadow: 0 18px 48px rgba(13,21,37,0.16);
  }
  .ak-bild img { width: 100%; height: auto; display: block; }
  .ak-text p { margin-bottom: 16px; font-size: 1.04rem; }
  .ak-text h2 { font-size: 1.35rem; margin: 32px 0 12px; line-height: 1.3; }
  .ak-text ul, .ak-text ol { margin: 0 0 16px 22px; }
  .ak-text li { margin-bottom: 6px; }
  .ak-text strong { color: var(--heading); }
  .ak-teilen {
    margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--line);
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: .9rem; color: var(--muted);
  }
  /* Ein <nav> ist auf der Startseite die feste Leiste oben (nav { position: fixed }). Die
     Vor/Zurueck-Zeile ist ebenfalls ein <nav> und muss davon befreit werden – sonst klebt
     der Titel des naechsten Beitrags oben rechts in der Navigationsleiste. */
  nav.ak-nachbarn {
    position: static; background: none; backdrop-filter: none; border-bottom: 0;
    box-shadow: none; padding: 0; z-index: auto;
    display: flex; justify-content: space-between; gap: 16px; margin-top: 28px; font-size: .92rem; font-weight: 600;
  }
  .ak-nachbarn a { color: var(--accent-dark); }
  .ak-nachbarn a:hover { color: var(--accent); }
  .ak-weitere { padding: 56px 24px 24px; }
  .ak-cta-wrap { padding: 32px 24px 72px; }
  @media (max-width: 700px) {
    .ak-kopf { padding: 108px 20px 32px; }
    .ak-beitrag, .ak-liste, .ak-weitere { padding-left: 20px; padding-right: 20px; }
    .ak-nachbarn { flex-direction: column; }
  }
