/* Design-Variablen (Farben, Schatten, Radius, Übergänge) */
:root{
  --bg:#f4f7fb;
  --bg-soft:#eef3f9;
  --card:#ffffff;
  --text:#1e293b;
  --muted:#64748b;
  --primary:#0f4c81;
  --primary-soft:#e8f1fb;
  --accent:#1d8cf8;
  --line:#ffb3b3;
  --shadow:0 20px 50px rgba(15, 76, 129, .10);
  --shadow-soft:0 12px 32px rgba(15, 76, 129, .08);
  --radius:24px;
  --transition:all .35s ease;
}

/* Globales Box-Modell für berechenbares Layout */
*{
  box-sizing:border-box;
}

/* Weiches Scrollen zu Anker-Links (z. B. #kontakt) */
html{
  scroll-behavior:smooth;
}

/* Grundlayout und Hintergrundatmosphäre der gesamten Seite */
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(29,140,248,.10), transparent 28%),
    radial-gradient(circle at top left, rgba(15,76,129,.10), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
  overflow-x:hidden;
}

/* Standard-Link-Dekoration entfernen (Styling erfolgt pro Komponente) */
a{
  text-decoration:none;
}

/* Wiederverwendbare Section-Abstände und Überschriften-Stile */
.section-padding{
  padding:100px 0;
}

.section-title{
  font-size:clamp(2rem, 4vw, 3rem);
  font-weight:800;
  line-height:1.15;
  margin-bottom:1rem;
  color:#10233d;
}

.section-subtitle{
  color:var(--muted);
  max-width:760px;
  margin:0 auto;
  font-size:1.05rem;
  line-height:1.8;
}

.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:1100;
  background:rgba(255,255,255,.98);
  border-top:1px solid rgba(15,76,129,.12);
  box-shadow:0 -8px 30px rgba(15,76,129,.08);
  transform:translateY(110%);
  transition:transform .35s ease;
  padding:18px 0;
}

.cookie-banner.show{
  transform:translateY(0);
}

.cookie-banner .banner-text{
  color:var(--text);
  font-size:.95rem;
  line-height:1.6;
  margin:0;
}

.cookie-banner .banner-text a{
  color:var(--primary);
  font-weight:700;
}

.cookie-banner .banner-actions{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:flex-end;
}

.cookie-banner .btn-sm{
  min-width:110px;
}

/* Containerflächen ausblenden, Inhalt sichtbar lassen */
.container,
.container-fluid,
.hero-badge,
.hero-card,
.hero-feature,
.info-strip-card,
.about-card,
.about-visual,
.lines,
.leistungen-wrapper,
.service,
.info-box,
.why-card,
.cta-box,
.contact-card,
.footer-box{
  background:transparent !important;
  box-shadow:none !important;
  border-color:transparent !important;
}

.hero-card::before,
.service::before,
.cta-box::before{
  background:transparent !important;
}

/* Primärer CTA-Button (Gradient + Hover-Lift) */
.btn-main{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  border:none;
  color:#fff;
  border-radius:999px;
  padding:14px 26px;
  font-weight:700;
  box-shadow:var(--shadow-soft);
  transition:var(--transition);
}

.btn-main:hover{
  transform:translateY(-2px);
  color:#fff;
  box-shadow:0 18px 36px rgba(15,76,129,.18);
}

/* Sekundärer CTA-Button (hell, zurückhaltend) */
.btn-soft{
  background:#fff;
  border:1px solid rgba(15,76,129,.12);
  color:var(--primary);
  border-radius:999px;
  padding:14px 26px;
  font-weight:700;
  transition:var(--transition);
}

.btn-soft:hover{
  background:var(--primary-soft);
  color:var(--primary);
  transform:translateY(-2px);
}

/* Navbar: fixiert, halbtransparent, mit Blur für moderne Optik */
.navbar{
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(12px);
  box-shadow:0 8px 30px rgba(15,76,129,.06);
}

.navbar-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color:var(--primary);
  letter-spacing:.2px;
}

.navbar-brand-logo{
  width:46px;
  height:46px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(15,76,129,.16);
  border:1px solid rgba(15,76,129,.12);
  background:#fff;
}

.navbar-brand-text{
  line-height:1;
}

.navbar-nav .nav-link{
  color:#17324d;
  font-weight:600;
  margin:0 .35rem;
}

.navbar-nav .nav-link:hover{
  color:var(--accent);
}

.navbar-nav .dropdown-menu{
  border:none;
  border-radius:16px;
  padding:.55rem;
  margin-top:.55rem;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  box-shadow:var(--shadow-soft);
}

.navbar-nav .dropdown-item{
  border-radius:10px;
  font-weight:600;
  color:#17324d;
  padding:.55rem .85rem;
}

.navbar-nav .dropdown-item:hover{
  background:var(--primary-soft);
  color:var(--primary);
}

/* Hero-Bereich inkl. dekorativer Hintergrund-Glow-Flächen */
.hero{
  position:relative;
  padding:170px 0 110px;
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(115deg, rgba(246,250,255,.90), rgba(246,250,255,.84)),
    url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero > .container{
  position:relative;
  z-index:2;
}

.hero::before{
  content:"";
  position:absolute;
  inset:auto -10% -120px auto;
  width:520px;
  height:520px;
  background:radial-gradient(circle, rgba(29,140,248,.18), transparent 65%);
  pointer-events:none;
  z-index:1;
}

.hero::after{
  content:"";
  position:absolute;
  inset:20px auto auto -160px;
  width:420px;
  height:420px;
  background:radial-gradient(circle, rgba(15,76,129,.12), transparent 65%);
  pointer-events:none;
  z-index:1;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:rgba(255,255,255,.9);
  color:var(--primary);
  padding:10px 16px;
  border-radius:999px;
  box-shadow:var(--shadow-soft);
  font-weight:700;
  margin-bottom:1.4rem;
}

.hero h1{
  font-size:clamp(2.5rem, 6vw, 4.7rem);
  font-weight:900;
  line-height:1.05;
  color:#10233d;
  margin-bottom:1rem;
}

.hero p{
  font-size:1.08rem;
  line-height:1.9;
  color:var(--muted);
  max-width:620px;
  margin-bottom:2rem;
}

.hero-card{
  position:relative;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.55);
  border-radius:32px;
  box-shadow:var(--shadow);
  padding:30px;
  overflow:hidden;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.35));
  pointer-events:none;
}

.hero-card > *{
  position:relative;
  z-index:2;
}

.preview-logo{
  width:92px;
  height:92px;
  border-radius:24px;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:2rem;
  box-shadow:var(--shadow-soft);
  margin-bottom:1.2rem;
}

.hero-feature{
  background:#fff;
  border-radius:20px;
  padding:16px 18px;
  box-shadow:var(--shadow-soft);
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:14px;
}

.hero-feature i{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
  flex-shrink:0;
}

.hero-feature h6{
  margin:0 0 4px;
  font-weight:800;
}

.hero-feature p{
  margin:0;
  font-size:.95rem;
  line-height:1.5;
  color:var(--muted);
}

/* Schnellvorteile direkt unter dem Hero */
.info-strip{
  margin-top:-32px;
  position:relative;
  z-index:3;
}

.info-strip-card{
  background:#fff;
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:26px;
}

.mini-stat{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:14px;
  border-radius:18px;
  transition:var(--transition);
}

.mini-stat:hover{
  background:var(--bg-soft);
  transform:translateY(-2px);
}

.mini-stat i{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
  flex-shrink:0;
  font-size:1.1rem;
}

.mini-stat h6{
  margin:0 0 4px;
  font-weight:800;
}

.mini-stat p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:.96rem;
}

/* Über-uns-Card und Visual-Teaser */
.about-card{
  background:#fff;
  border-radius:30px;
  padding:36px;
  box-shadow:var(--shadow);
  height:100%;
  border:1px solid transparent;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-list{
  padding:0;
  margin:1.5rem 0 0;
  list-style:none;
}

.about-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:14px;
  color:var(--muted);
  line-height:1.7;
}

.about-list i{
  color:var(--accent);
  margin-top:4px;
}

.about-visual{
  background:linear-gradient(180deg, #ffffff, #eef5fc);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:26px;
  height:100%;
  position:relative;
  overflow:hidden;
  border:1px solid transparent;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.about-card:hover,
.about-visual:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 56px rgba(15,76,129,.18);
  border-color:rgba(29,140,248,.30);
}

.about-visual::before{
  content:"";
  position:absolute;
  top:-100px;
  right:-100px;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(29,140,248,.16), transparent 70%);
  transition:transform .35s ease, opacity .35s ease;
}

.about-visual:hover::before{
  transform:scale(1.08);
  opacity:.95;
}

.about-image{
  width:100%;
  min-height:360px;
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(15,76,129,.88), rgba(29,140,248,.88)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display:flex;
  align-items:end;
  padding:28px;
  color:#fff;
  position:relative;
  overflow:hidden;
}

.about-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(16,35,61,.05), rgba(16,35,61,.72));
}

.about-image-content{
  position:relative;
  z-index:2;
  max-width:420px;
}

.about-image-content h5{
  font-weight:800;
  margin-bottom:.6rem;
}

.about-image-content p{
  margin:0;
  line-height:1.7;
  color:rgba(255,255,255,.88);
}

.lines{
  margin-top:20px;
  padding:20px 16px 14px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(15,76,129,.10), rgba(15,76,129,.04));
  border:1px solid rgba(15,76,129,.10);
  display:grid;
  grid-template-columns:auto auto 1fr auto;
  grid-template-rows:auto auto;
  column-gap:12px;
  row-gap:8px;
  align-items:center;
  overflow:hidden;
  position:relative;
  isolation:isolate;
  min-height:118px;
}

.lines::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 82% 24%, rgba(52,199,89,.15), transparent 45%);
  pointer-events:none;
  z-index:0;
}

.lines-icon{
  width:42px;
  height:42px;
  border-radius:12px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,76,129,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--primary);
  font-size:1.1rem;
  position:relative;
  z-index:1;
  box-shadow:0 10px 22px rgba(15,76,129,.10);
}

.lines-icon-wan{
  color:#0f6cb0;
}

.lines-icon-shield{
  color:#138a53;
}

.lines-icon-pc{
  color:#0f4c81;
}

.lines-icon-server{
  color:#138a53;
}

.lines-track{
  min-width:120px;
  display:grid;
  gap:7px;
  position:relative;
  z-index:1;
  overflow:hidden;
  padding:2px 0;
}

.lines-track span{
  display:block;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(52,199,89,.0), rgba(52,199,89,.95), rgba(52,199,89,.0));
  transform:translateX(-58%);
  animation:aboutLinesFlow 2.8s linear infinite;
  filter:drop-shadow(0 0 8px rgba(52,199,89,.34));
}

.lines-track span:nth-child(1){ width:70%; }
.lines-track span:nth-child(2){ width:90%; animation-delay:.35s; opacity:.92; }
.lines-track span:nth-child(3){ width:78%; animation-delay:.7s; opacity:.85; }
.lines-track span:nth-child(4){ width:95%; animation-delay:1.05s; opacity:.88; }

.lines-server{
  grid-column:4;
  grid-row:2;
  justify-self:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  position:relative;
  z-index:1;
  margin-top:0;
}

.lines-server-line{
  width:2px;
  height:26px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(52,199,89,.95), rgba(52,199,89,.16));
  box-shadow:0 0 10px rgba(52,199,89,.35);
}

@keyframes aboutLinesFlow{
  0%{ transform:translateX(-55%); }
  100%{ transform:translateX(55%); }
}

/* Leistungssektion mit radialem Hub-and-Spoke-Layout */
.leistungen-section{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.leistungen-section > .container{
  position:relative;
  z-index:2;
}

.leistungen-wrapper{
  margin-top:60px;
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(248,251,255,.95));
  border-radius:36px;
  box-shadow:var(--shadow);
  padding:50px 30px;
}

.layout{
  position:relative;
  width:min(100%, 1100px);
  height:780px;
  margin:0 auto;
}

/* Zentrales Marken-Element im Leistungsdiagramm */
.center-box{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:190px;
  height:190px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow:0 24px 50px rgba(15,76,129,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  z-index:5;
  padding:20px;
  overflow:hidden;
}

.center-box::before{
  content:"";
  position:absolute;
  inset:8px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
}

.center-box-content{
  position:relative;
  z-index:2;
  color:#fff;
}

.center-logo-img{
  width:72px;
  height:72px;
  border-radius:18px;
  background:rgba(255,255,255,.16);
  margin:0 auto 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  backdrop-filter:blur(6px);
}

.center-logo-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.center-logo-img i{
  font-size:2rem;
  color:#fff;
}

.center-box h4{
  margin:0;
  font-size:1.15rem;
  font-weight:800;
  line-height:1.35;
}

/* Positionierte Leistungsknoten rund um das Zentrum */
.node{
  position:absolute;
  z-index:6;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.service{
  width:150px;
  height:150px;
  border-radius:50%;
  background:#fff;
  box-shadow:var(--shadow);
  border:1px solid rgba(15,76,129,.07);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:16px;
  transition:transform .35s ease, box-shadow .35s ease, background .35s ease;
  position:relative;
  overflow:hidden;
  cursor:pointer;
}

.service::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top, rgba(29,140,248,.10), transparent 60%);
  opacity:0;
  transition:opacity .35s ease;
}

.service i{
  font-size:2rem;
  color:var(--primary);
  margin-bottom:10px;
  position:relative;
  z-index:2;
}

.service-title{
  font-weight:800;
  color:#15314d;
  line-height:1.3;
  position:relative;
  z-index:2;
}

.info-box{
  width:300px;
  background:#fff;
  border-radius:24px;
  box-shadow:var(--shadow-soft);
  padding:22px 22px 20px;
  opacity:0;
  visibility:hidden;
  position:absolute;
  top:calc(100% + 18px);
  left:50%;
  transform:translate(-50%, 12px);
  transition:var(--transition);
  text-align:left;
  border:1px solid rgba(15,76,129,.07);
  z-index:8;
}

.info-box h5{
  margin:0 0 .6rem;
  font-weight:800;
  color:#15314d;
}

.info-box p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.node:hover .service{
  transform:translateY(-10px) scale(1.04);
  box-shadow:0 24px 46px rgba(15,76,129,.18);
  background:#fff;
}

.node:hover .service::before{
  opacity:1;
}

.node:hover .info-box{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, 0);
}

.node-1{
  left:0;
  top:50%;
  transform:translateY(-50%);
}

.node-1:hover .service{
  transform:translateX(-6px) translateY(-6px) scale(1.04);
}

.node-2{
  left:50%;
  bottom:0;
  transform:translateX(-50%);
}

.node-2:hover .service{
  transform:translateY(8px) scale(1.04);
}

.node-3{
  right:0;
  top:50%;
  transform:translateY(-50%);
}

.node-3:hover .service{
  transform:translateX(6px) translateY(-6px) scale(1.04);
}

.node-4{
  left:50%;
  top:0;
  transform:translateX(-50%);
}

.node-4:hover .service{
  transform:translateY(-8px) scale(1.04);
}

/* Verbindungslinien zwischen Zentrum und Leistungsnodes */
.line{
  position:absolute;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
  overflow:hidden;
  z-index:2;
  border-radius:999px;
}

.line::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,59,59,.0) 20%, rgba(255,59,59,.95) 50%, rgba(255,59,59,.0) 80%, transparent 100%);
  width:180px;
  animation:dataFlowX 2.2s linear infinite;
  filter:blur(.2px);
}

.line-vertical{
  background:linear-gradient(180deg, transparent, var(--line), transparent);
}

.line-vertical::before{
  width:100%;
  height:180px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(255,59,59,.0) 20%, rgba(255,59,59,.95) 50%, rgba(255,59,59,.0) 80%, transparent 100%);
  animation:dataFlowY 2.2s linear infinite;
}

.line-left{
  top:50%;
  left:130px;
  width:320px;
  height:3px;
  transform:translateY(-50%);
}

.line-right{
  top:50%;
  right:130px;
  width:320px;
  height:3px;
  transform:translateY(-50%);
}

.line-top{
  left:50%;
  top:130px;
  width:3px;
  height:210px;
  transform:translateX(-50%);
}

.line-bottom{
  left:50%;
  bottom:130px;
  width:3px;
  height:210px;
  transform:translateX(-50%);
}

@keyframes dataFlowX{
  0%{ transform:translateX(-180px); }
  100%{ transform:translateX(420px); }
}

@keyframes dataFlowY{
  0%{ transform:translateY(-180px); }
  100%{ transform:translateY(260px); }
}

/* Vorteile-Grid und Karten */
.why-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
  margin-top:48px;
}

.why-card{
  background:#fff;
  border-radius:24px;
  padding:26px;
  box-shadow:var(--shadow-soft);
  height:100%;
  transition:var(--transition);
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(15,76,129,.14);
}

.why-card i{
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
  font-size:1.2rem;
  margin-bottom:16px;
}

.why-card h5{
  font-weight:800;
  margin-bottom:.7rem;
  color:#15314d;
}

.why-card p{
  margin:0;
  line-height:1.8;
  color:var(--muted);
}

/* Bildübersicht mit realistischen IT-Szenen */
.image-overview-section{
  position:relative;
}

.image-overview-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:46px;
}

.image-overview-card{
  background:#fff;
  border:1px solid rgba(15,76,129,.10);
  border-radius:18px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  height:100%;
  transition:transform .3s ease, box-shadow .3s ease;
}

.image-overview-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.image-overview-card img{
  display:block;
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:cover;
}

.image-overview-content{
  padding:22px 22px 24px;
}

.image-overview-content h3{
  font-size:1.18rem;
  font-weight:850;
  color:#15314d;
  margin:0 0 .65rem;
  line-height:1.3;
}

.image-overview-content p{
  color:var(--muted);
  line-height:1.75;
  margin:0;
}

/* Call-to-Action-Block vor dem Kontaktbereich */
.cta-box{
  background:linear-gradient(135deg, #ffffff, #f7f8fc 60%, #eef3f9);
  border:1px solid rgba(15,76,129,.12);
  border-radius:34px;
  box-shadow:var(--shadow);
  padding:48px 34px;
  color:var(--text);
  position:relative;
  overflow:hidden;
}

.cta-box::before{
  content:"";
  position:absolute;
  right:-110px;
  top:-110px;
  width:260px;
  height:260px;
  background:radial-gradient(circle, rgba(15,76,129,.08), transparent 70%);
}

.cta-box h2{
  font-weight:900;
  margin-bottom:1rem;
  font-size:clamp(2rem, 4vw, 3rem);
  position:relative;
  z-index:2;
  color:var(--text);
}

.cta-box p{
  color:var(--muted);
  line-height:1.9;
  position:relative;
  z-index:2;
}

/* Kontaktkarten und Formular-UI */
.contact-card{
  background:#fff;
  border-radius:30px;
  padding:34px;
  box-shadow:var(--shadow);
  height:100%;
}

.contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom:18px;
}

.contact-item i{
  width:50px;
  height:50px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--primary-soft);
  color:var(--primary);
  flex-shrink:0;
}

.contact-item h6{
  margin:0 0 4px;
  font-weight:800;
  color:#15314d;
}

.contact-item p,
.contact-item a{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.contact-form .form-control{
  border-radius:16px;
  min-height:54px;
  border:1px solid rgba(15,76,129,.12);
  padding:14px 16px;
  box-shadow:none;
}

.contact-form .form-control:focus{
  border-color:rgba(29,140,248,.55);
  box-shadow:0 0 0 .25rem rgba(29,140,248,.12);
}

.contact-form textarea.form-control{
  min-height:150px;
  resize:vertical;
}

/* Footer-Abschlussbereich */
footer{
  padding:28px 0 40px;
  color:var(--muted);
}

.footer-box{
  background:#fff;
  border-radius:24px;
  padding:20px 24px;
  box-shadow:var(--shadow-soft);
}

/* Breakpoint: große Tablets / kleine Laptops */
@media (max-width: 1199.98px){
  .layout{
    height:860px;
  }

  .line-left,
  .line-right{
    width:255px;
  }

  .line-top,
  .line-bottom{
    height:190px;
  }

  .node-1{
    left:8px;
  }

  .node-3{
    right:8px;
  }

  .info-box{
    width:270px;
  }
}

/* Breakpoint: Tablets (Layout wird vertikaler) */
@media (max-width: 991.98px){
  .section-padding{
    padding:82px 0;
  }

  .hero{
    padding:145px 0 88px;
    text-align:center;
  }

  .hero p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center !important;
  }

  .hero-card{
    margin-top:28px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .image-overview-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .leistungen-wrapper{
    padding:38px 22px;
  }

  .layout{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    gap:24px;
    height:auto;
    width:100%;
  }

  .center-box{
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    width:170px;
    height:170px;
    margin-bottom:6px;
  }

  .line,
  .line-vertical{
    display:none;
  }

  .node{
    position:relative;
    top:auto;
    left:auto;
    right:auto;
    bottom:auto;
    transform:none !important;
    width:100%;
    align-items:center;
    gap:14px;
  }

  .node:hover .service,
  .node-1:hover .service,
  .node-2:hover .service,
  .node-3:hover .service,
  .node-4:hover .service{
    transform:none;
  }

  .service{
    width:132px;
    height:132px;
  }

  .service i{
    font-size:1.75rem;
  }

  .service-title{
    font-size:.96rem;
  }

  .info-box{
    width:min(100%, 520px);
    opacity:1;
    visibility:visible;
    position:relative;
    top:auto;
    left:auto;
    transform:none;
    text-align:center;
  }
}

/* Breakpoint: Smartphones */
@media (max-width: 767.98px){
  .section-padding{
    padding:72px 0;
  }

  .hero{
    padding:132px 0 72px;
  }

  .navbar-brand-logo{
    width:40px;
    height:40px;
  }

  .navbar-brand-text{
    font-size:1.25rem;
  }

  .hero-badge{
    font-size:.92rem;
  }

  .hero p{
    font-size:1rem;
    line-height:1.8;
  }

  .btn-main,
  .btn-soft{
    width:100%;
    justify-content:center;
    text-align:center;
    padding:15px 22px;
  }

  .hero-actions{
    flex-direction:column;
    gap:12px !important;
  }

  .info-strip{
    margin-top:0;
  }

  .info-strip-card,
  .about-card,
  .about-visual,
  .leistungen-wrapper,
  .contact-card,
  .cta-box{
    border-radius:24px;
  }

  .about-card,
  .about-visual,
  .contact-card{
    padding:24px;
  }

  .about-image{
    min-height:290px;
    padding:22px;
  }

  .lines{
    margin-top:14px;
    padding:14px 10px 10px;
    grid-template-columns:auto auto 1fr auto;
    grid-template-rows:auto auto;
    column-gap:8px;
    row-gap:6px;
    min-height:102px;
  }

  .lines-icon{
    width:36px;
    height:36px;
    border-radius:10px;
    font-size:1rem;
  }

  .lines-server-line{
    height:18px;
  }

  .center-box{
    width:150px;
    height:150px;
  }

  .center-logo-img{
    width:62px;
    height:62px;
    border-radius:16px;
  }

  .center-box h4{
    font-size:1rem;
  }

  .service{
    width:118px;
    height:118px;
    padding:12px;
  }

  .service i{
    font-size:1.55rem;
    margin-bottom:8px;
  }

  .service-title{
    font-size:.9rem;
  }

  .info-box{
    padding:18px;
    border-radius:20px;
  }

  .info-box h5{
    font-size:1.08rem;
  }

  .info-box p{
    font-size:.97rem;
    line-height:1.75;
  }

  .mini-stat{
    padding:10px;
  }

  .mini-stat i,
  .contact-item i{
    width:44px;
    height:44px;
    border-radius:14px;
  }
}

/* Touch-Geräte: Hover-Transformationen entschärfen */
@media (hover: none){
  .node:hover .service,
  .node-1:hover .service,
  .node-2:hover .service,
  .node-3:hover .service,
  .node-4:hover .service{
    transform:none;
  }

  .service{
    cursor:default;
  }

  .about-card:hover,
  .about-visual:hover{
    transform:none;
  }
}
/* Utility classes moved from inline style attributes */
.text-comfort{
  line-height:1.8;
}

.text-relaxed{
  line-height:1.9;
}

.eyebrow-accent{
  letter-spacing:.14em;
  color:var(--accent);
}

.service-icon-img{
  width:42px;
  height:42px;
  object-fit:contain;
  margin-bottom:10px;
}

.cta-copy{
  max-width:760px;
}
