:root{
  --accent:#1ea6cf;
  --accent-dark:#177f9d;
  --dark:#353535;
  --text:#575757;
  --muted:#7a7a7a;
  --bg:#f4f6f8;
  --white:#ffffff;
  --line:#e5eaee;
  --max:1180px;
  --shadow:0 18px 44px rgba(13,38,59,.08);
  --radius:24px;
  --page-x:32px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(calc(100% - var(--page-x)), var(--max));
  margin:0 auto;
}

.topbar .container,
.hero .container,
.services .container,
.contact .container,
.cta .container,
.footer .container{
  width:min(calc(100% - var(--page-x)), var(--max));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand img{
  width:190px;
  height:auto;
}

.nav{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.nav a{
  text-transform:uppercase;
  font-size:15px;
  font-weight:700;
  color:var(--dark);
  letter-spacing:.02em;
}

.nav a:hover{
  color:var(--accent-dark);
}

.quick-float{
  position:fixed;
  right:22px;
  top:150px;
  display:grid;
  gap:14px;
  z-index:40;
}

.quick-float a{
  width:62px;
  height:62px;
  border-radius:50%;
  background:var(--accent);
  display:grid;
  place-items:center;
  box-shadow:0 14px 28px rgba(30,166,207,.22);
  transition:.2s ease;
}

.quick-float a:hover{
  transform:translateY(-2px);
  background:var(--accent-dark);
}

.quick-float img{
  width:28px;
  height:28px;
  filter:brightness(0) invert(1);
}

.hero{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#cfd7de;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(12,18,24,.62) 0%, rgba(12,18,24,.52) 38%, rgba(12,18,24,.20) 68%, rgba(12,18,24,.08) 100%),
    linear-gradient(180deg, rgba(12,18,24,.18), rgba(12,18,24,.18));
  z-index:1;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:38px;
  align-items:center;
  width:100%;
  padding:110px 0 90px;
}

.hero-copy{
  width:100%;
}

.hero-copy-inner{
  width:100%;
  max-width:760px;
  padding-left:0;
}

.pretitle{
  color:rgba(255,255,255,.92);
  text-transform:uppercase;
  font-size:15px;
  letter-spacing:.08em;
  margin-bottom:16px;
}

.hero-copy h1{
  margin:0 0 18px;
  line-height:1.04;
  color:#fff;
  font-size:clamp(2rem,4vw,3.8rem);
  text-transform:uppercase;
  font-weight:800;
  max-width:10.5ch;
}

.hero-copy p{
  margin:0 0 14px;
  color:rgba(255,255,255,.92);
  font-size:clamp(1rem,1.35vw,1.16rem);
  max-width:36rem;
}

.info-box{
  background:rgba(30,166,207,.95);
  color:#fff;
  padding:28px 26px;
  border-radius:18px;
  box-shadow:var(--shadow);
  align-self:center;
  max-width:360px;
  justify-self:end;
}

.info-box h3{
  margin:0 0 12px;
  color:#fff;
  font-size:1.35rem;
  text-transform:uppercase;
}

.info-box p{
  margin:0 0 10px;
  color:#fff;
  font-size:.98rem;
}

section{
  padding:86px 0;
}

.section-head{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
}

.section-head h2{
  margin:0 0 12px;
  color:var(--dark);
  font-size:clamp(1.9rem,3vw,2.9rem);
  text-transform:uppercase;
  line-height:1.08;
}

.section-head p{
  margin:0;
  font-size:1.05rem;
  color:var(--muted);
}

.services{
  background:var(--white);
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:26px;
  align-items:stretch;
}

.service-card{
  background:linear-gradient(180deg, #ffffff, #f8fbfd);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 28px;
  box-shadow:var(--shadow);
}

.service-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:rgba(30,166,207,.08);
  display:grid;
  place-items:center;
  margin-bottom:18px;
}

.service-icon img{
  width:28px;
  height:28px;
}

.service-card h3{
  margin:0 0 10px;
  color:var(--dark);
  font-size:1.45rem;
  text-transform:uppercase;
}

.service-card p{
  margin:0;
  color:var(--text);
}

.contact{
  background:var(--bg);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:stretch;
}

.contact-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px 22px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:.2s ease;
}

.contact-card:hover{
  transform:translateY(-2px);
}

.contact-icon{
  width:62px;
  height:62px;
  border-radius:20px;
  background:rgba(30,166,207,.08);
  display:grid;
  place-items:center;
  margin:0 auto 16px;
}

.contact-icon img{
  width:26px;
  height:26px;
}

.contact-card strong{
  display:block;
  color:var(--dark);
  margin-bottom:6px;
  text-transform:uppercase;
  font-size:1rem;
}

.contact-card span{
  font-size:1rem;
  color:var(--text);
}

.cta{
  background:var(--accent);
  padding:38px 0;
}

.cta-inner{
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
}

.cta-inner--center{
  grid-template-columns:1fr;
}

.cta small{
  display:block;
  margin-bottom:8px;
  font-size:1rem;
  font-weight:700;
  text-transform:uppercase;
  color:#d7f3fb;
}

.cta strong{
  display:block;
  font-size:clamp(1.9rem,3vw,2.8rem);
  line-height:1.12;
  color:#fff;
  text-transform:uppercase;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:56px;
  padding:0 24px;
  background:#fff;
  color:var(--accent);
  font-weight:700;
  border-radius:999px;
  box-shadow:var(--shadow);
}

.btn img{
  width:18px;
  height:18px;
}

.footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding:26px 0 34px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:var(--accent-dark);
  font-weight:700;
}

.footer-copy{
  color:#8a8f96;
  font-size:.95rem;
}

@media (max-width:980px){
  :root{
    --page-x:24px;
  }

  .hero{
    min-height:auto;
  }

  .hero-grid,
  .service-grid,
  .contact-grid,
  .cta-inner{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .hero-grid{
    padding:86px 0 42px;
    gap:20px;
    align-items:start;
  }

  .hero-copy-inner{
    max-width:100%;
    padding-left:0;
  }

  .hero-copy h1{
    max-width:11ch;
    font-size:clamp(2rem,8vw,3rem);
  }

  .hero-copy p{
    max-width:100%;
    font-size:1rem;
  }

  .info-box{
    width:100%;
    max-width:420px;
    justify-self:start;
    margin-top:4px;
  }

  /* Mobile: runde Kontakt-Icons bleiben sichtbar */
  .quick-float{
    right:16px;
    bottom:20px;
    top:auto;
    gap:10px;
  }

  .quick-float a{
    width:52px;
    height:52px;
  }

  .quick-float img{
    width:22px;
    height:22px;
  }

  .contact-grid{
    gap:14px;
  }

  .service-grid{
    gap:18px;
  }
}

@media (max-width:640px){
  :root{
    --page-x:20px;
  }

  .topbar-inner{
    min-height:72px;
  }

  .brand img{
    width:165px;
  }

  .hero::before{
    background:
      linear-gradient(180deg, rgba(12,18,24,.62) 0%, rgba(12,18,24,.48) 42%, rgba(12,18,24,.34) 100%);
  }

  .hero-grid{
    padding:72px 0 36px;
    gap:18px;
  }

  .pretitle{
    font-size:13px;
    margin-bottom:12px;
  }

  .hero-copy h1{
    font-size:clamp(1.8rem,10vw,2.5rem);
    line-height:1.02;
    max-width:10ch;
    margin-bottom:14px;
  }

  .hero-copy p{
    font-size:.98rem;
    line-height:1.55;
  }

  .info-box{
    max-width:100%;
    padding:20px 18px;
    border-radius:16px;
  }

  .info-box h3{
    font-size:1.15rem;
    margin-bottom:10px;
  }

  .info-box p{
    font-size:.95rem;
    line-height:1.55;
  }

  .service-card,
  .contact-card{
    padding:24px 20px;
    border-radius:18px;
  }

  .section-head{
    margin-bottom:28px;
  }

  .section-head h2{
    font-size:1.8rem;
  }

  .section-head p{
    font-size:.98rem;
  }

  section{
    padding:64px 0;
  }

  .btn{
    width:100%;
  }

  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
}