body {
  margin: 0;
  font-family: system-ui;
  background: #0b0f17;
  color: #e6e6e6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);

  padding-top: 20px;
  padding-bottom: 20px;

  position: sticky;
  top: 0;

  background: rgba(15, 22, 36, 0.75);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-left: 0;

  text-decoration: none;
  color: #ffffff;

  transition:
    filter .35s ease;
}

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

.logo img {
  width: clamp(48px, 4vw, 60px);
  height: auto;
}

.logo:hover img {
  filter:
    drop-shadow(0 0 10px rgba(0,212,255,.75));
}

.logo-text {
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 700;
  white-space: nowrap;
}

.logo-text span {
  color:#00d4ff;
}

nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 1vw, 16px);

  color: #cfd6e6;
  text-decoration: none;

  padding: 8px 12px;
  border-radius: 10px;

  transition: 0.3s ease;
  line-height: 1;
}

nav a:hover {
  color: #00d4ff;
  background: rgba(0,212,255,0.08);
  transform: translateY(-1px);
}

.burger {
    width:36px;
    height:28px;
    position:relative;
    cursor:pointer;

    background:transparent;
    border:none;
    padding:0;
    margin:0;
    appearance:none;
}

.burger span{
    position:absolute;
    left:0;

    width:100%;
    height:3px;

    background:#fff;
    border-radius:100px;

    transition:.35s cubic-bezier(.4,0,.2,1);
}

.burger span:nth-child(1){
    top:2px;
}

.burger span:nth-child(2){
    top:12px;
}

.burger span:nth-child(3){
    top:22px;
}

.burger.active span:nth-child(1){
    top:12px;
    transform:rotate(45deg);
}

.burger.active span:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.burger.active span:nth-child(3){
    top:12px;
    transform:rotate(-45deg);
}

.burger:focus-visible {
    outline:2px solid #00d4ff;
    outline-offset:4px;
}

:focus-visible {
    outline: 3px solid #005fcc;
    outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
 outline:3px solid #00d4ff;
 outline-offset:4px;
}

.skip-link{
    position:absolute;
    left:-9999px;
    top:0;
    background:#fff;
    color:#000;
    padding:12px 18px;
    z-index:9999;
}

.skip-link:focus{
    left:20px;
}

.hero {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: linear-gradient(rgba(11,15,23,.55), rgba(11,15,23,.55)), url("./bilder/kreativ.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-systemhaus {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: /*linear-gradient(rgba(11,15,23,.65), rgba(11,15,23,.75)),*/ url("./systemhaus/bilder/systemhaus.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-web {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: linear-gradient(rgba(11,15,23,.65), rgba(11,15,23,.55)), url("./webentwicklung/bilder/entwicklung.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-datenschutz {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: /*linear-gradient(rgba(11,15,23,.65), rgba(11,15,23,.75)),*/ url("./datenschutz/bilder/datenschutz.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-itsicherheit {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: /*linear-gradient(rgba(11,15,23,.65), rgba(11,15,23,.75)),*/ url("./itsicherheit/bilder/itsicherheit.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-contact {
  background-image: url("./kontakt/bilder/Kontakt_BearbRGB.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-impressum {
  padding: clamp(60px, 8vh, 120px) 60px;
  background-image: url("./impressum/bilder/cic_gebaeude.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .hero-web .hero-systemhaus .hero-datenschutz .hero-contact .hero-impressum .hero-grid {
  position: relative;
  z-index: 1;
}

.badge {
  font-size: clamp(14px, 1.1vw, 18px);
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background-color: #2a2a2a;
  color: #00d4ff;
  margin-bottom: 20px;
}

.hero-grid > div:first-child{
    width:100%;
    min-width:0;

    display:flex;
    flex-direction:column;

    padding:clamp(25px,4vw,60px);
    gap:24px;

    background:rgba(11,15,23,.68);
    backdrop-filter:blur(2px);

    border:1px solid rgba(255,255,255,.10);
    border-radius:24px;

    box-sizing:border-box;

    box-shadow:
        0 20px 60px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.05);
}

.hero-grid > div:first-child,
.hero-grid > aside {
    min-width: 0;
}

.hero-grid h1,
.hero-grid h2,
.hero-grid h3 {
    hyphens: auto;
    -webkit-hyphens: auto;
    overflow-wrap: break-word;
}

  .hero-grid > div:first-child h1,
  .hero-grid > div:first-child p,
  .hero-grid > div:first-child .buttons{
      margin:0;
}

.hero-contact h1 {
    color: #fff;
    margin: 18px 0;
}

.hero-contact p {
    color: #d7e1ec;
    line-height: 1.7;
}

.hero-contact .primary{
    background: #00d4ff;
    color: #08111d;
    border: none;
    box-shadow: 0 10px 30px rgba(0,212,255,.35);
}

.hero-contact .secondary{
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}

.hero-contact .secondary:hover{
    background: rgba(255,255,255,.14);
}

h1 {
  font-size: 54px;
  line-height: 1.1;
}

h1 span {
  color: #00d4ff;
}

p {
  color: #d7e1ec;
  margin-top: 20px;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

.buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 14px;
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .2px;
  overflow: hidden;
  transition:
      transform .3s ease,
      box-shadow .35s ease,
      background .35s ease,
      border-color .35s ease,
      color .35s ease;
}

.btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        transparent 25%,
        rgba(255,255,255,.25) 50%,
        transparent 75%);
    transform:translateX(-150%);
    transition:transform .7s ease;
}

.btn:hover::before{
    transform:translateX(150%);
}

.btn:hover{
    transform:translateY(-3px);
}

.btn:active{
    transform:translateY(0);
}

.primary {
  background: linear-gradient(135deg,#00d4ff,#00a8ff);
  color: #08111d;
  border: 1px solid transparent;

  box-shadow:
      0 10px 30px rgba(0,212,255,.30),
      0 0 0 rgba(0,212,255,0);
}

.primary:hover{
    box-shadow:
        0 18px 45px rgba(0,212,255,.45),
        0 0 30px rgba(0,212,255,.18);
}

.secondary{
    background:rgba(255,255,255,.04);
    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(8px);
}

.secondary:hover{
    background:rgba(0,212,255,.08);
    border-color:#00d4ff;
    color:#00d4ff;

    box-shadow:
        0 12px 30px rgba(0,212,255,.12);
}

.checks-home {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.15;
}

.checks-home span {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: inherit;
}

.checks-home strong {
  display: block;
  margin-top: 18px;
  color: #00d4ff !important;
  font-size: inherit;
  font-weight: 700;
}

.checks-home span::before {
  content: "✔";
  color: #fff;
  font-size: 0.7em;
  font-weight: 700;
  flex-shrink: 0;

  text-shadow: 0 0 12px rgba(0,212,255,.45);
}

.checks {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: #d7e1ec;
  font-size: clamp(14px, 1vw, 16px);
}

.checks span {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.checks span::before {
  content: "✔";
  color: #00d4ff;
  flex-shrink: 0;
}

.panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(11, 15, 23, 0.68);
  backdrop-filter: blur(2px);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid #1f2a3a;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
}

.small { color: #777; }
.title { font-weight: bold; }

.card {
  background: #121b2c;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #1e2a3a;
  margin: 0;
}

.card h2 {
    font-size: 1.2rem;
}

.section {
  padding-top: clamp(10px, 4vh, 120px);
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: 0;
}

.section:last-of-type {
    padding-bottom: clamp(10px, 4vh, 120px);
}

h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.info-box {
  background: #121b2c;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #1e2a3a;
  box-shadow: none;
}

.info-box:hover {
  border-color: rgba(0, 212, 255, 0.35);
  transition: 0.25s ease;
}

.info-box h2 {
  margin-top: 20px;
  color: #00d4ff;
}

.info-box h3 {
  margin-top: 10px;
  color: #ffffff;
}

.info-box p {
  line-height: 1.7;
  color: #d7e1ec;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  position: relative;
  padding-left: 22px;

  color: #d7e1ec;
  line-height: 1.6;
  font-size: clamp(16px, 1.2vw, 18px);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;

  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #00d4ff;
  box-shadow: 0 0 10px rgba(0,212,255,0.5);
}

.box {
  background: #121b2c;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #1e2a3a;
  text-decoration: none;
  color: inherit;
}

.box:focus-visible {
    outline: 2px solid #00d4ff;
    outline-offset: 4px;
}

.clickable {
  cursor: pointer;
  position: relative;
  transition: all .35s ease;
  overflow: hidden;
  border: 1px solid #1e2a3a;
  border-radius: 16px;
  background: #121b2c;
}

.clickable::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(0, 212, 255, 0.08),
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform .8s ease;
  pointer-events: none;
}

.clickable:hover::after {
  transform: translateX(120%);
}

.clickable:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(0, 212, 255, 0.12);
}

.clickable p {
  min-height: 60px;
}

.link-hint {
  position: relative;
  display: inline-block;
  width: fit-content;

  margin-top: 12px;

  color: #cfd6e6;
  font-weight: 500;

  transition: color 0.25s ease;
}

.link-hint::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  height: 2px;
  width: 100%;

  background: #00d4ff;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .35s ease;
}

.clickable:hover .link-hint {
  color: #00d4ff;
}

.clickable:hover .link-hint::after {
  transform: scaleX(1);
}

.box,
.clickable{
    display: flex;
    flex-direction: column;

    padding: 24px;
    gap: 18px;

    box-sizing: border-box;
}

.box h3,
.clickable h3{
    margin: 0;
}

.box p,
.clickable p{
    margin: 0;
}

.box .link-hint,
.clickable .link-hint{
    margin: 0;
}

.section + .why {
  margin-top: clamp(10px, 4vh, 120px);
}

.why {
  padding-top: clamp(10px, 4vh, 120px);
  padding-right: 60px;
  padding-left: 60px;
  padding-bottom: clamp(10px, 4vh, 120px);
  background: #121b2c;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.why-grid > div{
    margin:0;
    padding:0;
}

.why-grid h2,
.why-grid h3{
    margin:0;
}

.why-grid p:first-of-type{
    margin-top:24px;
}

.why-list{
    padding-top:0;
}

.why-list h3 {
  margin-bottom: 25px;
  font-size: clamp(30px, 3vw, 40px);
  color: #00d4ff;
  font-weight: 700;
}

.why-list div {
  padding: 12px 14px;
  margin-bottom: 10px;

  background: rgba(18, 27, 44, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;

  color: #cfd6e6;
  line-height: 1.4;

  transition: 0.25s ease;
}

.why-list div:hover {
  transform: translateX(4px);
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 212, 255, 0.06);
}

.philosophy-title {
  display: inline-block;
  margin: 20px 0 14px;
  padding-bottom: 8px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
  border-bottom: 3px solid #00d4ff;
}

.white-title {
  display: inline-block;
    margin: 20px 0 14px;
  padding-bottom: 8px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  color: #fff !important;
  border-bottom: 3px solid #00d4ff;
}

.contact {
  padding: 100px 60px;
}

.info div {
  margin-top: 20px;
}

.info span {
  color: #00d4ff;
  display: block;
}

.full-image {
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

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

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

#karte-title {
  margin-bottom: 28px;
}

#google-map-container p:first-child {
  margin-top: 0;
}

#google-map-container iframe {
  width:100%;
  height:550px;
  border:0;
  display:block;
}

.map-consent {
  position:relative;
  width:100%;
  min-height:550px;
  overflow:hidden;
  border-radius:16px;
}

.map-placeholder {
  position:absolute;
  inset:-20px;
  background:url("./bilder/map-placeholder.png")
  center/cover no-repeat;
  filter:blur(8px);
  transform:scale(1.08);
}

.map-overlay {
  position:absolute;
  inset:0;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:40px;
  color:white;
  background:rgba(11,15,23,.70);
  backdrop-filter:blur(2px);
}

.map-overlay h3 {
  color:#00d4ff;

  font-size:2rem;
  font-weight:700;

  margin:0 0 18px;

  line-height:1.2;

  text-shadow:
  0 0 12px rgba(0,212,255,.35);
}


.map-overlay p {
  max-width:720px;

  font-size:1.05rem;

  line-height:1.7;

  margin:0 0 30px;
}

.box h3 {
  color: #00d4ff;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfd6e6;
  text-decoration: none;
  position: relative;
  transition:
    color .3s ease,
    transform .3s ease;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width .35s ease;
}


.contact-link:hover {
  color: #00d4ff;
  transform: translateY(-2px);
}

.contact-link:hover::after {
  width: 100%;
}

.privacy-link {
  color: #00d4ff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.privacy-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: width 0.3s ease;
}

.privacy-link:hover {
  color: #ffffff;
}

.privacy-link:hover::after,
.privacy-link:focus-visible::after {
  width: 100%;
}

.privacy-link:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 4px;
}

footer {
  margin-top: clamp(10px, 4vh, 120px);
  padding: 30px 60px;
  border-top: 1px solid #1e2a3a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-shrink: 0;
}

.footer-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfd6e6;
  text-decoration: none;
  padding: 8px 4px;
  border-radius: 10px;
  transition: .3s ease;
  line-height: 1;
  white-space: nowrap;
}

.footer-right a:hover {
  color: #00d4ff;
  background: rgba(0,212,255,.08);
  transform: translateY(-1px);
}

@media (max-width: 380px) {
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

.hero,
.hero-systemhaus,
.hero-web,
.hero-datenschutz,
.hero-itsicherheit,
.hero-contact,
.hero-impressum,
.section,
.why,
footer{
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
}


@media (max-width: 480px) {

  .map-overlay {
    padding:15px;
  }

  .map-overlay h3 {
    line-height:1.3;
  }

  .map-overlay p {
    line-height:1.5;
  }

}

@media (max-width: 600px) {

  .logo-text {
    display: none;
  }

  .logo img {
    width: 60px;
  }

  .hero-grid > div:first-child h1 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.15;
  }

  .hero-grid > div:first-child p {
    font-size: 16px;
    line-height: 1.6;
  }

}

@media (max-width:768px){

  #google-map-container iframe {
  height:400px;
  }

  .map-overlay {
    padding:20px;
  }

  .map-overlay h3 {
    font-size:26px;
  }

  .map-overlay p {
    max-width:100%;
  }
}

@media (max-width: 900px) {

  header {
    padding: 20px 25px;
  }

  .burger {
    display:flex;
  }

  nav {
    display:none;
    position:absolute;
    top:80px;
    right:20px;
    left:20px;

    flex-direction:column;

    background:rgba(15,22,36,.96);
    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;

    padding:18px;

    opacity:0;
    visibility:hidden;
    transform:translateY(-15px) scale(.98);

    transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s;
  }

  nav.active {
    display: flex;
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
  }

  nav a {
    width:100%;
    justify-content:flex-end;
    padding:14px 0;
    font-size:17px;
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  nav a:last-child {
    border-bottom:none;
  }

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

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

}

@media (min-width:901px){

  .burger{
    display:none;
  }

  nav{
    display:flex;
    position:static;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
  }

}

@media (max-width:900px) {

  header {
    padding-left: clamp(20px, 5vw, 60px);
    padding-right: clamp(20px, 5vw, 60px);
  }

}

@media (max-width: 1150px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

}
