:root {
    --blue: #1e4c7a;
    --cyan: #3fa9f5;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
  
    --font: "Plus Jakarta Sans", sans-serif;
    --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
    --container: 1200px;
    --radius: 24px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  html {
    scroll-behavior: smooth;
    max-width: 100vw;
    overflow-x: hidden;
  }
  body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
  }
  body.is-locked {
    overflow: hidden;
  }
  
  /* 1. LOADER */
  .loader-overlay {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s var(--ease);
  }
  .l-brand {
    font-weight: 800;
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
    text-align: center;
  }
  .l-bar {
    width: 150px;
    height: 3px;
    background: #eee;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 4px;
  }
  .l-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--cyan);
    animation: load 1.2s forwards;
  }
  @keyframes load {
    to {
      width: 100%;
    }
  }
  body.loaded .loader-overlay {
    transform: translateY(-100%);
  }
  
  /* 2. NAVBAR - VERBESSERT RESPONSIVE */
  .header-floating {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
  }
  .nav-pill {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 30px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    display: flex;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
  }
  .brand {
    font-weight: 800;
    font-size: 18px;
    color: var(--blue);
    text-decoration: none;
    z-index: 1002;
    position: relative;
  }
  .dot {
    color: var(--cyan);
  }
  
  .nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .nav-links a:not(.nav-cta) {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: 0.3s;
  }
  .nav-links a:not(.nav-cta):hover {
    color: var(--cyan);
  }
  .nav-cta {
    background: var(--dark);
    color: white !important;
    padding: 8px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  
  .burger-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
  }
  .burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
    border-radius: 2px;
  }
  
  /* MOBILE MENU - NEU GESTYLT */
  @media (max-width: 960px) {
    .nav-pill {
      padding: 12px 20px;
      gap: 0;
      justify-content: space-between;
      width: 90%;
      max-width: 500px;
    }
  
    .nav-links {
      position: fixed;
      top: -5px;
      left: 5px;
      border-radius: 0 0 var(--radius) var(--radius);
     
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
      flex-direction: column;
      justify-content: center;
      gap: 0;
      transform: translateX(100%);
      transition: transform 0.4s ease;
      opacity: 1;
      padding: 40px;
    }
  
    .nav-links.mobile-open {
      transform: translateX(0);
    }
  
    .nav-links a {
      font-size: 28px !important;
      color: white !important;
      margin: 15px 0;
      opacity: 0;
      transform: translateX(30px);
      transition: all 0.3s ease;
    }
  
    .nav-links.mobile-open a {
      opacity: 1;
      transform: translateX(0);
    }
  
    .nav-links.mobile-open a:nth-child(1) {
      transition-delay: 0.1s;
    }
    .nav-links.mobile-open a:nth-child(2) {
      transition-delay: 0.15s;
    }
    .nav-links.mobile-open a:nth-child(3) {
      transition-delay: 0.2s;
    }
    .nav-links.mobile-open a:nth-child(4) {
      transition-delay: 0.25s;
      color: var(--blue) !important;
      padding: 10px 20px !important;
    }
  
  
    .nav-cta {
      background: white !important;
      color: var(--blue) !important;
      padding: 15px 40px !important;
      margin-top: 20px;
      font-size: 18px !important;
    }
  
    .burger-btn {
      display: flex;
    }
  
    .burger-btn.open span{
      background-color: white;
    }
  
    .loaded.is-locked .brand {
      color: white;
    }
  
    .loaded.is-locked .nav-links{
      left: -1px;
    }
  
    .burger-btn.open span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }
    .burger-btn.open span:nth-child(2) {
      opacity: 0;
    }
    .burger-btn.open span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }
  }
  
  @media (max-width: 550px)  {
    .nav-links{
      position: absolute;
      height: 95vh;
      border-radius: var(--radius);
    }
  }
  
  /* 3. HERO */
  .hero {
    padding: 180px 0 100px;
    overflow: hidden;
  }
  .hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .anim-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease) forwards;
  }
  .anim-fade {
    opacity: 0;
    animation: fadeIn 1.5s var(--ease) forwards;
  }
  .anim-pop {
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeIn {
    to {
      opacity: 1;
    }
  }
  @keyframes popIn {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  .floating-anim {
    animation: float 6s ease-in-out infinite;
  }
  .delay-1 {
    animation-delay: 0.1s;
  }
  .delay-2 {
    animation-delay: 0.2s;
  }
  .delay-3 {
    animation-delay: 0.3s;
  }
  .delay-4 {
    animation-delay: 0.4s;
  }
  .delay-5 {
    animation-delay: 0.5s;
  }
  .delay-6 {
    animation-delay: 0.6s;
  }
  .delay-7 {
    animation-delay: 1.2s;
  }
  
  .hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .status-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
  }
  .hero-heading {
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 24px;
  }
  .line {
    display: block;
  }
  .text-blue {
    color: var(--blue);
  }
  .hero-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 32px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .btn {
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
  }
  .btn-primary {
    background: var(--blue);
    color: white;
  }
  .btn-primary:hover {
    background: var(--cyan);
    transform: translateY(-3px);
  }
  .btn-text {
    font-weight: 700;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    padding: 0;
  }
  
  .hero-visual {
    position: relative;
  }
  .visual-inner {
    position: relative;
    border-radius: 32px;
    overflow: visible;
  }
  .visual-inner img {
    width: 100%;
    border-radius: 32px;
    max-height: 70vh;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  
  .chat-bubble {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: 20px 20px 0 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    gap: 12px;
    align-items: center;
    max-width: 280px;
    z-index: 10;
  }
  .chat-avatar {
    width: 40px;
    height: 40px;
    background: #dcf8c6;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .chat-content {
    display: flex;
    flex-direction: column;
  }
  .chat-sender {
    font-size: 11px;
    color: #999;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .chat-content p {
    font-size: 13px;
    margin: 0;
    color: var(--dark);
    line-height: 1.4;
    font-weight: 600;
  }
  
  /* 3.5 ÜBER UNS SECTION */
  .about-section {
    padding: 120px 0;
    background: white;
  }
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .about-content h2 {
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .about-lead {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin: 30px 0 20px;
    line-height: 1.4;
  }
  .about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .value-icon {
    width: 28px;
    height: 28px;
    background: var(--cyan);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
  }
  .value-text {
    flex: 1;
  }
  .value-text strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
  }
  .value-text span {
    font-size: 14px;
    color: #666;
  }
  
  /* 4. SERVICES */
  .services {
    padding: 120px 0;
    background: var(--light);
  }
  .section-top {
    margin-bottom: 60px;
  }
  .section-top h2 {
    font-size: 14px;
    color: var(--cyan);
    letter-spacing: 2px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .line-sep {
    width: 50px;
    height: 2px;
    background: var(--blue);
    margin-top: 15px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  .service-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    transition: 0.2s ease-out;
    border: 1px solid transparent;
  }
  .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--cyan);
  }
  .icon-box {
    width: 40px;
    height: 40px;
    color: var(--blue);
    margin-bottom: 24px;
  }
  .service-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
  }
  .s-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .s-list li {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
  }
  .s-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: bold;
  }
  
  /* 5. PROJEKTE SLIDER */
  .projects {
    padding: 120px 0;
    background: white;
  }
  .projects-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
  }
  .projects-content h2 {
    font-size: 43px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
  }
  .stats-mini {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }
  .stats-mini div {
    font-size: 16px;
    color: #666;
  }
  .stats-mini strong {
    display: block;
    font-size: 24px;
    color: var(--blue);
  }
  .comparison-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
  }
  .comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .comparison-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  .img-after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .img-before {
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    border-right: 3px solid white;
    position: absolute;
    top: 0;
    left: 0;
  }
  .handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: ew-resize;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .label {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    z-index: 3;
  }
  .img-before .label {
    left: 20px;
  }
  .img-after .label {
    right: 20px;
  }
  
  /* 6. REAL PROJECTS */
  .real-projects {
    padding: 100px 0;
    background: var(--light);
  }
  .rp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .rp-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
  }
  .rp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  }
  .rp-image {
    height: 250px;
    position: relative;
  }
  .rp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rp-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--blue);
  }
  .rp-content {
    padding: 30px;
  }
  .rp-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
  }
  
  /* 7. INSIGHTS - RESPONSIVE VERBESSERT */
  .insights {
    padding: 100px 0;
    background: white;
  }
  .insights-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .insights-text {
    flex: 1;
  }
  .insights-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .insights-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
  }
  .btn-insta {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: 0.3s;
  }
  .btn-insta:hover {
    background: var(--cyan);
    transform: translateY(-2px);
  }
  .insights-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
  }
  .ig-item {
    border-radius: 16px;
    overflow: hidden;
  }
  .ig-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.3s;
    display: block;
  }
  .ig-item:hover img {
    transform: scale(1.05);
  }
  
  /* 8. KONTAKT - KOMPLETT NEU */
  .contact-section {
    padding: 120px 0;
    background: var(--light);
  }
  .contact-modern {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  }
  
  .contact-info-side h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
  }
  .contact-info-side > p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .info-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .info-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--blue);
    flex-shrink: 0;
  }
  .info-icon svg {
    width: 24px;
    height: 24px;
  }
  .info-text {
    flex: 1;
  }
  .info-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
  .info-text a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
  }
  .info-text a:hover {
    color: var(--blue);
  }
  .info-text p {
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
  }
  
  .contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .form-row {
    width: 100%;
  }
  .form-field {
    display: flex;
    flex-direction: column;
  }
  .form-field label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
  }
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    color: var(--dark);
    font-weight: 500;
    font-family: var(--font);
  }
  .form-field input:focus,
  .form-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 76, 122, 0.1);
  }
  .form-field textarea {
    resize: vertical;
    min-height: 120px;
  }
  .btn-full {
    width: 100%;
    margin-top: 10px;
  }
  
  /* 9. FOOTER - KOMPLETT NEU */
  .footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 80px 0 30px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
  }
  .footer-col h5 {
    font-size: 14px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .footer-brand {
    color: var(--cyan);
  }
  .footer-tagline {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  .footer-address {
    font-size: 14px;
    line-height: 1.8;
  }
  .footer-links {
    list-style: none;
    padding: 0;
  }
  .footer-links li {
    margin-bottom: 10px;
  }
  .footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  .footer-links a:hover {
    color: var(--cyan);
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }
  .footer-credit {
    color: #94a3b8;
  }
  .credit-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
  }
  .credit-link:hover {
    text-decoration: underline;
  }
  
  /* UTILITY */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s var(--ease);
  }
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: 0.8s var(--ease);
  }
  .reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
  }
  
  /* RESPONSIVE */
  @media (max-width: 960px) {
    .hero-layout,
    .about-layout,
    .projects-layout,
    .contact-modern,
    .rp-grid,
    .services-grid,
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .hero-heading {
      font-size: 48px;
    }
    .comparison-wrapper {
      height: 300px;
    }
    .chat-bubble {
      right: 0;
      bottom: -20px;
      max-width: 240px;
    }
  
    .about-layout {
      gap: 50px;
    }
    .about-image {
      height: 300px;
    }
  
    .insights-flex {
      flex-direction: column;
      align-items: flex-start;
    }
    .insights-gallery {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }
    .ig-item img {
      height: 200px;
    }
  
    .contact-modern {
      padding: 40px 30px;
      gap: 40px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
  }
  
  @media (max-width: 640px) {
    .insights-gallery {
      grid-template-columns: 1fr;
    }
    .footer-grid {
      grid-template-columns: 1fr;
    }
    .rp-grid {
      grid-template-columns: 1fr;
    }
  }
  




.fingerprint {
  position: fixed;
  left: 0.4rem;
  bottom: 0.6rem;
  z-index: 100;
}
.fingerprint button {
  background-color: #fff0;
  border: unset;
}
.fingerprint img {
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
  transition: 0.3s ease-in-out;
}
.fingerprint img:hover {
  opacity: 1;
  transform: scale(1.2);
}
