
  :root{
    /* Base */
    --bg: #f6f7f9;
    --surface: rgba(255,255,255,0.72);
    --surface-strong: rgba(255,255,255,0.86);
    --text: #0b0b0c;
    --text-2: rgba(11,11,12,0.72);
    --muted: rgba(11,11,12,0.52);

    /* Borders / shadows */
    --border: rgba(11,11,12,0.08);
    --border-strong: rgba(11,11,12,0.12);
    --shadow: 0 20px 55px rgba(11,11,12,0.08);
    --shadow-hover: 0 30px 75px rgba(11,11,12,0.10);

    /* Glass */
    --blur: 28px;
    --radius: 26px;

    /* Layout */
    --container: 1200px;
  }

  *{ margin:0; padding:0; box-sizing:border-box; }
  html{ scroll-behavior:smooth; }
  body{
    font-family:'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
    overflow-x:hidden;
  }

  /* Ambient gradient "glow" (Apple-like, subtle) */
  body::before{
    content:"";
    position: fixed;
    inset: -20vh -10vw;
    background:
      radial-gradient(900px 520px at 18% 10%, rgba(120,165,255,0.18) 0%, rgba(120,165,255,0) 62%),
      radial-gradient(820px 520px at 82% 12%, rgba(255,175,110,0.18) 0%, rgba(255,175,110,0) 62%),
      radial-gradient(900px 700px at 55% 85%, rgba(120,255,205,0.10) 0%, rgba(120,255,205,0) 60%);
    pointer-events:none;
    z-index: -1;
    filter: blur(0px);
  }

  /* Navigation */
  .nav{
    position: fixed;
    top:0;
    width:100%;
    padding: 1.2rem 5%;
    z-index:1000;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: rgba(246,247,249,0.72);
    border-bottom: 1px solid rgba(11,11,12,0.06);
    transition: background 0.35s ease, border-color 0.35s ease;
  }
  .nav-content{
    max-width: var(--container);
    margin: 0 auto;
    display:flex;
    justify-content: space-between;
    align-items:center;
  }
  .logo{
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .nav-links{
    display:flex;
    gap: 2.25rem;
    list-style:none;
  }
  .nav-links a{
    color: rgba(11,11,12,0.78);
    text-decoration:none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
  }
  .nav-links a:hover{
    color: rgba(11,11,12,1);
    opacity: 1;
  }

  /* Hero */
  .hero{
    height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position: relative;
    background:
      radial-gradient(900px 520px at 18% 18%, rgba(120,165,255,0.20) 0%, rgba(120,165,255,0) 62%),
      radial-gradient(820px 520px at 82% 18%, rgba(255,175,110,0.20) 0%, rgba(255,175,110,0) 62%),
      linear-gradient(180deg, rgba(255,255,255,0.75) 0%, rgba(246,247,249,1) 72%);
  }
  .hero-content{
    max-width: 980px;
    padding: 0 5%;
  }
  .hero h1{
    font-size: clamp(3.0rem, 6.6vw, 5.2rem);
    font-weight: 320;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
  }
  .hero .subtitle{
    font-size: 1.25rem;
    color: var(--text-2);
    margin-bottom: 2.6rem;
    max-width: 720px;
    margin-left:auto;
    margin-right:auto;
  }

  /* CTA */
  .cta{
    display:inline-block;
    background: rgba(11,11,12,0.92);
    color: rgba(255,255,255,0.98);
    padding: 1.05rem 2.35rem;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 540;
    text-decoration:none;
    box-shadow: 0 14px 40px rgba(11,11,12,0.16);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  }
  .cta:hover{
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(11,11,12,0.20);
    background: rgba(11,11,12,0.98);
  }

  /* Sections */
  .section{
    padding: 120px 0;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 5%;
  }
  .section-title{
    font-size: clamp(2.35rem, 4.3vw, 3.6rem);
    font-weight: 320;
    text-align:center;
    margin-bottom: 0.9rem;
    letter-spacing: -0.02em;
  }
  .section-subtitle{
    font-size: 1.12rem;
    text-align:center;
    color: var(--text-2);
    max-width: 820px;
    margin: 0 auto 3.6rem;
  }

  /* Grids: 2 pro Reihe (Desktop), 1 (Mobile) */
  .services-grid,
  .why-grid,
  .projects-grid{
    display:grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.1rem;
    margin-top: 3.4rem;
      align-items: stretch;
  }

  /* Liquid Glass Card (White Edition) */
  .liquid-card{
    position: relative;
    overflow:hidden;
    border-radius: var(--radius);
    padding: 2.25rem;
    background:
      radial-gradient(900px 420px at -10% -20%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.40) 35%, rgba(255,255,255,0.12) 60%, rgba(255,255,255,0) 72%),
      linear-gradient(135deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.58) 48%, rgba(255,255,255,0.46) 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(var(--blur)) saturate(140%);
    -webkit-backdrop-filter: blur(var(--blur)) saturate(140%);
    transform: translateZ(0);
    transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease, opacity 0.42s ease;
    opacity: 0.98;
      display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  height: 100%;
  }

  .liquid-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    background:
      radial-gradient(680px 220px at 18% 10%, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.18) 32%, rgba(255,255,255,0.00) 64%),
      radial-gradient(420px 240px at 85% 0%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.00) 60%);
    pointer-events:none;
    opacity: 0.85;
  }
  .liquid-card::after{
    content:"";
    position:absolute;
    inset:0;
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.00) 28%),
      linear-gradient(90deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.00) 38%, rgba(255,255,255,0.12) 100%);
    pointer-events:none;
    opacity: 0.55;
    mix-blend-mode: screen;
  }
  .liquid-card:hover{
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-hover);
    opacity: 1;
  }

  /* Card Typography */
  .liquid-card h3{
    font-size: 1.5rem;
    font-weight: 560;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
  }
  .liquid-card h4{
    font-size: 1.25rem;
    font-weight: 560;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
  }
  .liquid-card p{
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-2);
    line-height: 1.75;
  }

  /* Service card = liquid */
  .service-card{ /* keep as hook if you want per-section tweaks later */ }

  /* Why item: left aligned feels more "consulting" */
  .why-item{
    text-align:left;
  }
  .why-item i{
    font-size: 1.7rem;
    color: rgba(11,11,12,0.62);
    margin-bottom: 1rem;
    display:block;
  }

  /* Project cards: reuse liquid-card look */
  .project-card{ /* hook */ }

  /* Contact (white version) */
  .contact{
    padding: 140px 0;
    text-align:center;
    background:
      radial-gradient(900px 520px at 20% 40%, rgba(120,165,255,0.14) 0%, rgba(120,165,255,0) 62%),
      radial-gradient(820px 520px at 80% 40%, rgba(255,175,110,0.14) 0%, rgba(255,175,110,0) 62%),
      linear-gradient(180deg, rgba(246,247,249,1) 0%, rgba(255,255,255,0.92) 100%);
  }
  .contact-form{
    max-width: 680px;
    margin: 0 auto;
    display:grid;
    gap: 1.2rem;
  }
  .contact-form input,
  .contact-form textarea{
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(11,11,12,0.10);
    border-radius: 18px;
    padding: 1.2rem 1.25rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder{
    color: rgba(11,11,12,0.40);
  }
  .contact-form input:focus,
  .contact-form textarea:focus{
    outline:none;
    border-color: rgba(11,11,12,0.18);
    box-shadow: 0 0 0 4px rgba(120,165,255,0.18);
    background: rgba(255,255,255,0.82);
  }
  .contact-form button{
    background: rgba(11,11,12,0.92);
    color: rgba(255,255,255,0.98);
    border:none;
    padding: 1.15rem 1.35rem;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 560;
    cursor:pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    font-family: inherit;
    box-shadow: 0 14px 40px rgba(11,11,12,0.14);
    width: auto !important;     /* Normale Button-Breite */
    display: inline-block !important;  /* Passt sich Textinhalt an */
    min-width: 160px !important;       /* Optional: Mindestbreite für Klickfläche */
    justify-self: center;     /* Zentriert im Grid */
  }
  .contact-form button:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 55px rgba(11,11,12,0.18);
    background: rgba(11,11,12,0.98);
  }

  /* Footer */
  .footer{
    padding: 3rem 5%;
    text-align:center;
    color: rgba(11,11,12,0.55);
    font-size: 0.92rem;
  }
  .footer a{
    color: rgba(11,11,12,0.62);
    text-decoration:none;
  }
  .footer a:hover{
    color: rgba(11,11,12,0.88);
  }

  /* Responsive */
  @media (max-width: 768px){
    .nav-links{ display:none; }
    .hero h1{ font-size: 2.6rem; }
    .section{ padding: 84px 5%; }
    .services-grid,
    .why-grid,
    .projects-grid{
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

.trust-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-stats li {
    margin: 0;
  color: rgba(11,11,12,0.72);
  font-size: 1.05rem;
    padding: 0.6rem 0;
  border-bottom: 1px solid rgba(11,11,12,0.06);
}
.trust-stats li:last-child {
  border-bottom: none;
}
.testimonial-quote{
  margin-top: 0.2rem; /* exakt wie ul optisch starten */
  color: rgba(11,11,12,0.72);
  line-height: 1.75;
}


  /* Scroll effect (optional, keeps nav slightly stronger on scroll) */
  /* Your JS already changes nav bg; this is just a safe default look */

/* Fokus-Grid System */
.focus-grid {
    position: relative;
    transition: backdrop-filter 0.3s ease;
}

/* Alle Karten smooth */
.focus-grid > * {
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* Wenn ein Element gehovt wird → alle anderen werden weich */
.focus-grid:has(> *:hover) > *:not(:hover) {
    filter: blur(3px);
    opacity: 0.4;
    transform: scale(0.98);
}

/* Aktives Element */
.focus-grid > *:hover {
    transform: translateY(-6px) scale(1.02);
    z-index: 2;
}

/* Optional: sanfter Background-Fokus */
.focus-grid:has(> *:hover) {
    backdrop-filter: blur(4px);
}

/* WHY GRID */
.why-item {
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

/* Icon Styling */
.why-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1.2rem auto;
    font-size: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

/* Optional: leichter Micro-Move beim Hover */
.why-item:hover i {
    transform: scale(1.08);
}

/* Accordion Container */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

/* Einzelnes FAQ */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 1.5rem 0;
}

/* Frage */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    position: relative;
    transition: opacity 0.2s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

/* Dezenter Pfeil */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* Antwort */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease;
    opacity: 0;
}

.faq-answer p {
    margin-top: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Aktiv */
.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-item.active .faq-question::after {
    content: "–";
}



/* ===== Article Template (FIXED) ===== */

/* Hero: etwas größer + Abstand zur Nav */
.hero.article-hero{
  min-height: auto !important;
  height: auto !important;
  display: block !important;

  /* Mehr Luft oben, damit H1 nicht in die Nav läuft */
  padding: 5.25rem 0 2rem !important;
}

/* Wenn deine Nav fixed ist: stellt sicher, dass nichts "unter" der Nav klebt */
.hero.article-hero .hero-content{
  max-width: 920px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: left;
}

/* Typo etwas ruhiger */
.hero.article-hero h1{
  font-size: 2.35rem;
  margin: 0 0 0.9rem 0;
  line-height: 1.15;
}

.hero.article-hero .subtitle{
  font-size: 1.08rem;
  max-width: 760px;
  margin: 0;
  line-height: 1.7;
}

.article-meta{
  margin-top: 1rem;
  opacity: 0.75;
  font-size: 0.95rem;
}

/* Body: mehr Luft unten */
.article-wrap{
  padding: 2.25rem 0 5.5rem; /* mehr Bottom */
}

/* Grid: minimal mehr Abstand */
.article-layout{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.25rem;
  align-items: start;
}

/* “Worum es hier geht” & sonstige Cards: kompakt, aber nicht gequetscht */
/* Mehr Luft um Artikel-Cards */
.article-content .article-card {
  margin: 1.5rem 0 2rem 0;   /* Abstand oben & unten */
  padding: 1.15rem 1.35rem;  /* etwas mehr Innenraum */
}

/* Falls du Cards direkt nach Überschriften nutzt */
.article-content h2 + .article-card,
.article-content h3 + .article-card {
  margin-top: 1rem;
}

/* Rhythmus: mehr Abstand zwischen Sektionen */
.article-content h2{
  margin-top: 2.75rem;
  margin-bottom: 0.85rem;
}

.article-content h3{
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
  opacity: 0.95;
}


.article-content p,
.article-content li {
  line-height: 1.75;
}

.article-section {
  padding: 0;
  margin: 0;
}

/* 6) Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  overflow: hidden;
  border-radius: 14px;
}

.article-content th,
.article-content td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}

.article-content th {
  text-align: left;
  background: rgba(0,0,0,0.03);
}

/* 7) TOC */
.toc {
  position: sticky;
  top: 92px;
  align-self: start;
}

.toc-card {
  padding: 1.15rem 1.15rem;
}

.toc h4 {
  margin: 0 0 0.75rem 0;
}

.toc a {
  display: block;
  padding: 0.35rem 0;
  opacity: 0.85;
  text-decoration: none;
}

.toc a:hover {
  opacity: 1;
}

/* 8) Mobile: TOC nach oben, aber nicht als riesiger Block */
@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .toc {
    position: relative;
    top: auto;
    order: -1;
  }

  .hero.article-hero {
    padding: 2.25rem 0 1rem !important;
  }
}

/* Letzte Sektion + Footer: mehr Luft */
.article-content section:last-of-type{
  margin-bottom: 2.25rem;
}

/* Mobile: Hero nicht zu klein, TOC sauber */
@media (max-width: 980px){
  .hero.article-hero{
    padding: 4.75rem 0 1.5rem !important;
  }

  .article-layout{
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.article-content ol,
.article-content ul {
  margin: 1rem 0 1.5rem 0;
  padding-left: 1.25rem;  /* bündig zum Text, aber Marker haben Platz */
}

/* Marker innerhalb des Blocks, damit es nicht links raussteht */
.article-content ol,
.article-content ul {
  list-style-position: outside;
}

.breadcrumb-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 5% 0 5%;
}

.breadcrumb {
  font-size: 0.9rem;
  opacity: 0.6;
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.breadcrumb a:hover {
  opacity: 1;
}

.breadcrumb span {
  margin: 0 0.4rem;
}

.breadcrumb .current {
  font-weight: 500;
}

.nav-links {
  position: relative;
}

/* Dropdown baseline */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Menü standardmäßig zu */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;

  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  border: 1px solid rgba(11,11,12,0.10);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(11,11,12,0.10);

  padding: 0.85rem 0.85rem;
  list-style: none;

  /* Wichtig: wirklich verstecken */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;

  z-index: 2000;

  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.dropdown-toggle {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
  padding: 0;
}

.dropdown-toggle:focus {
  outline: none;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.18s ease;
}

.dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menüeinträge */
.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(11,11,12,0.82);
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background: rgba(11,11,12,0.05);
  color: rgba(11,11,12,1);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.card-link:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* Contact layout (index + article compatible) */
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.25rem;
  align-items:start;
  margin-top: 3rem;
}

/* Left info card */
.contact-copy{
  padding: 2.1rem;
}

/* Right form card */
.contact-card{
  padding: 1.7rem;
}

/* Inputs layout helpers – ANGEPASST: justify-items für bessere Ausnutzung */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  justify-items: stretch; /* NEU: Stellt sicher, dass Items volle Grid-Zelle füllen */
}

/* NEU: Allgemeine Full-Width-Regel für alle Form-Inputs in Cards (auch außerhalb .contact-article) */
.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100% !important;  /* !important für Override von Theme-CSS */
  max-width: none;
  box-sizing: border-box;  /* Padding/Border in Width einbeziehen */
  margin: 0;
  
  /* Dein bestehender Stil (aus .contact-article übernommen für Konsistenz) */
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(11,11,12,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: rgba(11,11,12,0.25);
  box-shadow: 0 0 0 4px rgba(11,11,12,0.05);
}

/* Form note */
.form-note{
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(11,11,12,0.55);
  line-height: 1.5;
}

/* Ensure trust-stats look good inside cards */
.contact-copy .trust-stats{
  margin-top: 1rem;
}

/* Responsive */
@media (max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .two-col{
    grid-template-columns: 1fr;
  }
}

/* ===== Minimal Article Contact ===== */

.contact-article,
.contact-article.section {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
}

.contact-article .contact-compact {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.8rem;
}

/* Form layout */
.contact-article .contact-form {
  display: grid;
  gap: 1.4rem;
  justify-items: stretch;
}

/* Inputs full width inside card – BEIBEHALTEN (jetzt redundant, aber für Kompatibilität) */
.contact-article .contact-form input,
.contact-article .contact-form textarea {
  width: 100%;
  max-width: none;
  margin: 0;

  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(11,11,12,0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-article .contact-form input:focus,
.contact-article .contact-form textarea:focus {
  outline: none;
  border-color: rgba(11,11,12,0.25);
  box-shadow: 0 0 0 4px rgba(11,11,12,0.05);
}

.contact-article .contact-form button {
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #111, #1e1e1e);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-article .contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

/* Note */
.contact-article .form-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: rgba(11,11,12,0.55);
}

/* prevent lift on hover */
.contact-article .liquid-card:hover,
.contact-compact:hover {
  transform: none;
}

/* FIX: Breite Inputs + normaler Button (Ende der Datei) */
.contact-article .contact-compact {
  max-width: none !important;
  width: 100% !important;
}

.contact-article .contact-compact .contact-form {
  max-width: none !important;
  width: 100% !important;
}

.contact-article .contact-compact .contact-form input,
.contact-article .contact-compact .contact-form textarea {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  background: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(11,11,12,0.08) !important;
  border-radius: 20px !important;
  padding: 1.25rem 1.4rem !important;
  font-size: 1.05rem !important;
}

.contact-article .contact-compact .contact-form input:focus,
.contact-article .contact-compact .contact-form textarea:focus {
  outline: none !important;
  border-color: rgba(11,11,12,0.25) !important;
  box-shadow: 0 0 0 4px rgba(11,11,12,0.05) !important;
}

/* BUTTON FIX: Normale Breite */
.contact-article .contact-compact .contact-form button {
  width: auto !important;
  display: inline-block !important;
  min-width: 160px !important;
  justify-self: center;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-cta {
  margin-top: auto;
  padding-top: 1.8rem;
  text-align: center; /* oder center wenn du es ruhiger willst */
}

/* kleinere Variante deiner bestehenden CTA */
.cta-small {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 16px;
}