:root {
    --blue: #5BAFD6;
    --blue-light: #A8D8F0;
    --blue-dark: #3A8BB5;
    --anthrazit: #2D3035;
    --anthrazit-light: #3E444C;
    --white: #FFFFFF;
    --gray: #F4F6F8;
    --text-dark: #1C2026;
    --text-mid: #5A6370;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(45,48,53,0.97);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    border-bottom: 2px solid var(--blue);
  }
  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.04em;
  }
  .nav-logo span { color: var(--blue); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 0.45rem 1.2rem;
    border-radius: 2px;
    opacity: 1 !important;
  }
  .nav-cta:hover { background: var(--blue-dark); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--anthrazit);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 68px 0 0;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(135deg, rgba(91,175,214,0.08) 0%, transparent 60%),
      repeating-linear-gradient(
        0deg,
        transparent,
        transparent 39px,
        rgba(255,255,255,0.025) 39px,
        rgba(255,255,255,0.025) 40px
      ),
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 79px,
        rgba(255,255,255,0.02) 79px,
        rgba(255,255,255,0.02) 80px
      );
  }
  .hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url('/images/hero-startseite.jpeg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.13;
    z-index: 0;
    mix-blend-mode: luminosity;
  }
  .hero-accent {
    position: absolute;
    right: -80px; top: 0; bottom: 0;
    width: 55%;
    background: linear-gradient(160deg, var(--anthrazit-light) 0%, #252830 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-accent::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235BAFD6' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center 20%;
    opacity: 0.13;
    z-index: 0;
    mix-blend-mode: luminosity;
  }
  .hero-content {
    position: relative; z-index: 2;
    width: 100%;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
  }
  .hero-left { flex: 0 0 52%; }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.5rem;
  }
  .hero-eyebrow::before {
    content: '';
    width: 32px; height: 2px;
    background: var(--blue);
  }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--blue);
    display: block;
  }
  .hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 460px;
    margin-bottom: 2.5rem;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--blue);
    color: var(--white);
  }
  .btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
  }
  .btn-outline:hover { border-color: var(--blue); color: var(--blue); }

  .hero-right {
    flex: 1;
    position: relative;
    align-self: stretch;
    min-height: 100%;
  }
  .hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.06);
  }
  .hcard {
    background: rgba(45,48,53,0.8);
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.3s;
  }
  .hcard:hover { border-color: var(--blue); }
  .hcard-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .hcard h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
  }
  .hcard p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  /* ── SPLIT CTA ── */
  .split-cta {
    display: flex;
    height: 220px;
  }
  .split-cta-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .split-cta-item::before {
    content: '';
    position: absolute; inset: 0;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .split-cta-item:first-child {
    background: var(--blue);
  }
  .split-cta-item:last-child {
    background: var(--anthrazit-light);
  }
  .split-cta-item:hover { filter: brightness(1.1); }
  .split-cta-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: 0.06em;
    z-index: 1;
  }
  .split-cta-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    z-index: 1;
  }
  .split-divider {
    width: 2px;
    background: rgba(255,255,255,0.15);
    flex: 0;
  }

  /* ── SECTION BASICS ── */
  section { padding: 6rem 5%; }
  .section-label {
    display: inline-flex; align-items: center; gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
  }
  .section-label::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--blue);
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    line-height: 1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  /* ── LEISTUNGEN ── */
  .leistungen { background: var(--gray); }
  .leistungen-header { max-width: 600px; margin-bottom: 3.5rem; }
  .leistungen-header p { color: var(--text-mid); line-height: 1.75; font-size: 1.05rem; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--white);
  }
  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--blue);
    transition: width 0.4s ease;
  }
  .service-card:hover::after { width: 100%; }
  .service-card:hover { background: #FAFCFE; }
  .service-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(91,175,214,0.12);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
  .service-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--anthrazit);
    margin-bottom: 0.75rem;
  }
  .service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.65;
  }
  /* Photo service cards — einheitliche Größe */
  .service-card.has-photo {
    padding: 0;
    height: 400px;           /* FESTE Gesamthöhe für alle Karten gleich */
    display: flex;
    flex-direction: column;
    background: var(--white);
  }
  .service-card.has-photo::after { display: none; }
  .service-photo-wrap {
    overflow: hidden;
    flex-shrink: 0;
    height: 220px;           /* FESTE Bildhöhe — gleich für alle */
  }
  .service-photo {
    width: 100%;
    height: 220px;           /* Passt zur .service-photo-wrap Höhe */
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.4s, transform 0.5s;
  }
  .service-card.has-photo:hover .service-photo {
    filter: brightness(1);
    transform: scale(1.05);
  }
  .service-card.has-photo .service-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    position: relative;
    background: var(--white);
    border-top: 3px solid var(--blue);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .service-card.has-photo h3 {
    color: var(--anthrazit);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .service-card.has-photo p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.55;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;    /* Max 3 Zeilen Text — dann abschneiden */
    -webkit-box-orient: vertical;
  }
  .service-card.has-photo .service-num {
    position: absolute;
    top: -0.4rem; right: 1rem;
    font-size: 4.5rem;
    color: rgba(91,175,214,0.08);
    margin: 0;
    line-height: 1;
  }
  /* Mobile: kleinere feste Höhe */
  @media (max-width: 640px) {
    .service-card.has-photo { height: 340px; }
    .service-photo-wrap { height: 180px; }
    .service-photo { height: 180px; }
  }
  @media (max-width: 360px) {
    .service-card.has-photo { height: auto; min-height: 320px; }
    .service-photo-wrap { height: 160px; }
    .service-photo { height: 160px; }
  }

  /* ── VERSPRECHEN ── */
  .versprechen { background: var(--anthrazit); }
  .versprechen .section-title { color: var(--white); }
  .versprechen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
    background: rgba(255,255,255,0.06);
  }
  .versprechen-item {
    padding: 3rem 2.5rem;
    background: var(--anthrazit);
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }
  .versprechen-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--blue);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .versprechen-item:hover::before { transform: scaleX(1); }
  .v-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(91,175,214,0.08);
    line-height: 1;
    margin-bottom: -1rem;
  }
  .versprechen-item h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--blue);
    margin-bottom: 1rem;
  }
  .versprechen-item p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  .about { background: var(--white); }
  .about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
  }
  .about-visual {
    position: relative;
  }
  .about-badge {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--anthrazit);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
  }
  .about-badge::before {
    content: '';
    position: absolute; inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(91,175,214,0.03) 20px,
        rgba(91,175,214,0.03) 21px
      );
  }
  .about-badge-icon {
    font-size: 6rem;
    position: relative;
    z-index: 1;
  }
  .about-badge-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative; z-index: 1;
  }
  .about-badge-sub {
    font-size: 0.8rem;
    color: var(--blue);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative; z-index: 1;
  }
  .about-badge-accent {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: var(--blue);
    opacity: 0.15;
    border-radius: 50%;
  }
  .about-stats {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    background: var(--blue);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
  }
  .about-stats-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
  }
  .about-stats-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
  }
  .about-content .section-title { color: var(--anthrazit); }
  .about-content p {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }
  .about-values {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 2rem 0;
  }
  .about-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
  }
  .about-value-dot {
    width: 8px; height: 8px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── KONTAKT ── */
  .kontakt { background: var(--gray); }
  .kontakt-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }
  .kontakt-info p {
    color: var(--text-mid);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  .contact-item-icon {
    width: 44px; height: 44px;
    background: var(--anthrazit);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .contact-item-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .contact-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
  }
  .contact-item-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-decoration: none;
  }
  .contact-item-value:hover { color: var(--blue); }

  .kontakt-form { background: var(--white); padding: 2.5rem; border-radius: 2px; }
  .kontakt-form h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--anthrazit);
    margin-bottom: 1.5rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-mid);
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #E2E6EA;
    border-radius: 2px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
    resize: vertical;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
  }
  .form-group textarea { min-height: 120px; }
  .form-submit {
    width: 100%;
    margin-top: 0.5rem;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    padding: 3rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
  }
  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: 0.04em;
  }
  .footer-logo span { color: var(--blue); }
  footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
  footer a:hover { color: var(--blue); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1      { animation-delay: 0.25s; }
  .hero-sub     { animation-delay: 0.4s; }
  .hero-btns    { animation-delay: 0.55s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-content { flex-direction: column; padding-top: 3rem; }
    .hero-left { flex: none; width: 100%; }
    .hero-right { width: 100%; }
    .versprechen-grid { grid-template-columns: 1fr; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .kontakt-inner { grid-template-columns: 1fr; gap: 3rem; }
    .split-cta { height: auto; flex-direction: column; }
    .split-cta-item { padding: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* ── GIFT BOX ── */

  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
  }

  
  /* ── PERFORMANCE: font-display ── */
  @font-face { font-display: swap; }

  /* ── ACCESSIBILITY: focus-visible ── */
  :focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
  .skip-link { position: absolute; top: -100px; left: 1rem; background: var(--blue); color: #fff; padding: .5rem 1rem; border-radius: 2px; font-weight: 700; z-index: 9999; transition: top .2s; }
  .skip-link:focus { top: 1rem; }

  /* ── SAFE AREA (iPhone Notch/Dynamic Island) ── */
  nav { padding-left: max(5%, env(safe-area-inset-left)); padding-right: max(5%, env(safe-area-inset-right)); }
  footer { padding-left: max(5%, env(safe-area-inset-left)); padding-right: max(5%, env(safe-area-inset-right)); padding-bottom: max(2rem, env(safe-area-inset-bottom)); }

  /* ── TOUCH TARGETS: min 44×44px ── */
  nav a, .nav-cta, .btn, .btn-primary, .btn-outline, footer a { min-height: 44px; display: inline-flex; align-items: center; }

  /* ── IMAGES ── */
  img { max-width: 100%; height: auto; display: block; }

  /* ── EXTRA BREAKPOINT: sehr kleine Geräte (360px) ── */
  @media (max-width: 360px) {
    .hero h1 { font-size: 2rem; }
    .hero-karten { grid-template-columns: 1fr; }
    nav { padding: 0 3%; }
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ── BREAKPOINT 640px ── */
  @media (max-width: 640px) {
    html { font-size: 15px; }
    .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .leistungen-header h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    input, select, textarea { font-size: 16px !important; }
  }

  /* ── BREAKPOINT 1440px ── */
  @media (min-width: 1440px) {
    .hero-inner, .leistungen, section > div { max-width: 1400px; margin-left: auto; margin-right: auto; }
  }

  /* ── PRINT ── */
  @media print {
    nav, footer, .cookie-banner, .btn, .btn-primary, .btn-outline, .split-cta { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
    h1, h2, h3 { color: #000; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10pt; }
    .service-card { break-inside: avoid; }
  }

/* ===== UNTERSEITEN-SPEZIFISCH ===== */

/* BREADCRUMB */
.breadcrumb{background:var(--anthrazit);padding:1rem 5%;display:flex;gap:0.5rem;align-items:center;margin-top:68px}
.breadcrumb a,.breadcrumb span{font-size:0.78rem;color:rgba(255,255,255,0.5);text-decoration:none;letter-spacing:0.05em}
.breadcrumb a:hover{color:var(--blue)}
.breadcrumb .sep{color:rgba(255,255,255,0.25)}
.breadcrumb .current{color:var(--blue)}

/* PAGE HERO (Unterseiten) */
.page-hero{background:var(--anthrazit);padding:5rem 5% 5rem;position:relative;overflow:hidden;background-size:cover;background-position:center}
.page-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(to right,rgba(45,48,53,0.88) 0%,rgba(45,48,53,0.7) 60%,rgba(45,48,53,0.4) 100%)}
.page-hero-inner{position:relative;z-index:2;max-width:700px}
.hero-badge{display:inline-flex;align-items:center;gap:0.75rem;font-size:0.72rem;font-weight:700;letter-spacing:0.14em;text-transform:uppercase;color:var(--blue);margin-bottom:1.2rem}
.hero-badge::before{content:'';width:28px;height:2px;background:var(--blue)}
.page-hero h1{font-family:'Barlow Condensed',sans-serif;font-weight:800;font-size:clamp(2.8rem,5vw,4.5rem);line-height:0.95;color:var(--white);text-transform:uppercase;letter-spacing:-0.01em;margin-bottom:1.5rem}
.page-hero h1 em{font-style:normal;color:var(--blue);display:block}
.page-hero p{font-size:1.05rem;line-height:1.7;color:rgba(255,255,255,0.65);max-width:560px;margin-bottom:2rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}

/* STATS BAR */
.stats-bar{background:var(--blue);display:grid;grid-template-columns:repeat(4,1fr)}
.stat-item{padding:1.8rem;text-align:center;border-right:1px solid rgba(255,255,255,0.2)}
.stat-item:last-child{border-right:none}
.stat-num{font-family:'Barlow Condensed',sans-serif;font-weight:800;font-size:2.2rem;color:var(--white);letter-spacing:-0.01em;line-height:1}
.stat-label{font-size:0.78rem;font-weight:600;color:rgba(255,255,255,0.8);letter-spacing:0.06em;text-transform:uppercase;margin-top:0.3rem}
@media(max-width:600px){.stats-bar{grid-template-columns:repeat(2,1fr)}.stat-item:nth-child(2){border-right:none}.stat-item:nth-child(3){border-top:1px solid rgba(255,255,255,0.2)}}

/* DETAIL GRID */
.detail-grid{display:grid;grid-template-columns:1fr;gap:2px;background:var(--blue-light)}
.detail-card{background:var(--white);padding:2.5rem;position:relative;overflow:hidden}
.detail-card::before{content:'';position:absolute;top:0;left:0;width:3px;height:0;background:var(--blue);transition:height 0.4s}
.detail-card:hover::before{height:100%}
.detail-icon{font-size:2.2rem;margin-bottom:1rem}
.detail-card h3{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:1.3rem;text-transform:uppercase;color:var(--text-dark);margin-bottom:0.6rem;letter-spacing:0.03em}
.detail-card p{font-size:0.9rem;color:var(--text-mid);line-height:1.7}
@media(min-width:681px){.detail-grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1100px){.detail-grid{grid-template-columns:repeat(3,1fr)}}

/* REGION */
.region-section{background:var(--anthrazit)}
.region-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,0.06);margin-top:2.5rem}
.region-card{background:var(--anthrazit-light);padding:1.8rem 1.5rem;border:1px solid rgba(255,255,255,0.07);transition:border-color 0.3s}
.region-card:hover{border-color:var(--blue)}
.region-name{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:1.1rem;color:var(--white);text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.4rem}
.region-desc{font-size:0.82rem;color:rgba(255,255,255,0.5);line-height:1.5}
@media(max-width:680px){.region-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:420px){.region-grid{grid-template-columns:1fr}}

/* PROCESS */
.process-section{background:var(--gray)}
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:3rem;position:relative}
.process-steps::before{content:'';position:absolute;top:2.5rem;left:calc(12.5% + 1.5rem);right:calc(12.5% + 1.5rem);height:2px;background:var(--blue-light)}
.step{text-align:center;padding:0 1.5rem;position:relative}
.step-num{width:48px;height:48px;border-radius:50%;background:var(--blue);color:var(--white);font-family:'Barlow Condensed',sans-serif;font-weight:800;font-size:1.3rem;display:flex;align-items:center;justify-content:center;margin:0 auto 1.2rem;position:relative;z-index:1}
.step h4{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:1.05rem;text-transform:uppercase;color:var(--text-dark);margin-bottom:0.4rem;letter-spacing:0.03em}
.step p{font-size:0.83rem;color:var(--text-mid);line-height:1.6}
@media(max-width:680px){.process-steps{grid-template-columns:1fr 1fr;gap:2rem}.process-steps::before{display:none}}

/* FAQ */
.faq-section{background:var(--white)}
.faq-list{margin-top:2.5rem;display:flex;flex-direction:column;gap:1px;background:var(--blue-light)}
.faq-item{background:var(--white)}
.faq-q{width:100%;text-align:left;padding:1.4rem 2rem;font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:1.05rem;text-transform:uppercase;letter-spacing:0.03em;color:var(--text-dark);cursor:pointer;border:none;background:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;transition:color 0.2s}
.faq-q:hover{color:var(--blue)}
.faq-q .faq-arrow{font-size:1.2rem;transition:transform 0.3s;flex-shrink:0;color:var(--blue)}
.faq-q.open{color:var(--blue)}
.faq-q.open .faq-arrow{transform:rotate(180deg)}
.faq-a{display:none;padding:0 2rem 1.4rem;font-size:0.92rem;color:var(--text-mid);line-height:1.75}
.faq-a.open{display:block}

/* CTA SECTION */
.cta-section{background:var(--anthrazit);text-align:center;padding:5rem 5%}
.cta-section h2{font-family:'Barlow Condensed',sans-serif;font-weight:800;font-size:clamp(2rem,4vw,3.5rem);text-transform:uppercase;color:var(--white);margin-bottom:1rem}
.cta-section h2 span{color:var(--blue)}
.cta-section p{color:rgba(255,255,255,0.6);font-size:1rem;line-height:1.7;max-width:540px;margin:0 auto 2.5rem}
.contact-info{display:flex;gap:2rem;justify-content:center;flex-wrap:wrap;margin-top:1.5rem}
.contact-item{display:flex;align-items:center;gap:0.6rem;font-size:0.9rem;color:rgba(255,255,255,0.7)}
.contact-item a{color:var(--blue);text-decoration:none;font-weight:600}
.contact-item a:hover{text-decoration:underline}

/* REVEAL ANIMATION */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.55s,transform 0.55s}
.reveal.visible{opacity:1;transform:none}

/* SECTION TITLES (white variant) */
.section-title.white{color:var(--white)}

/* SERVICE CARD LINK */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 0.7rem;
}

/* ===== FOOTER GRID (4 Spalten) ===== */
footer {
  background: #1a1d21 !important;
  padding: 3rem 5% !important;
  display: block !important;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white) !important;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}
.footer-logo span { color: var(--blue); }
.footer-contact-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-contact-text a {
  color: var(--blue) !important;
  text-decoration: none;
  font-weight: 600;
}
.footer-contact-phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  margin: 0.5rem 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue) !important; }
.footer-copy {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
@media(max-width:768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:480px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ===== HAMBURGER IMMER SICHTBAR (alle Bildschirmgrößen) ===== */

/* Nav-Links standardmäßig versteckt, nur per Hamburger */
.nav-links {
  display: none !important;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(45,48,53,0.99);
  padding: 1.5rem 5%;
  flex-direction: column !important;
  gap: 0.75rem;
  z-index: 99;
}
.nav-links.open {
  display: flex !important;
}
.nav-links li {
  list-style: none;
}
.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  padding: 0.3rem 0;
  display: block;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue); }
.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  display: inline-block;
  margin-top: 0.5rem;
}
.nav-links a.nav-cta:hover { background: var(--blue-dark); }

/* Hamburger immer anzeigen */
.hamburger {
  display: flex !important;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}




/* ===== HERO FOTO RECHTS (Startseite) ===== */
.hero-photo-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  overflow: hidden;
  z-index: 1;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45,48,53,0.55);
  z-index: 2;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
  opacity: 0.65;
  display: block;
}
@media(max-width: 900px) {
  .hero-photo-wrap { display: none; }
}
