/* Kontakt page extras (keeps the same visual language as index.html) */

body.contact-page main{overflow: hidden;}

.contact-hero{
  /* padding: 120px 0 34px; */
}

.contact-hero .hero__grid{align-items: center;grid-template-columns: 1.25fr .75fr;}

.contact-hero .hero__proof{ margin-top: 18px; }

/* Map section */
.map-section{
  padding: 70px 0 110px;
}

.map-shell{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

@media (max-width: 980px){
  .map-shell{ grid-template-columns: 1fr; }
}

.map-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transform: perspective(1100px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  transition: transform .22s cubic-bezier(.2,.8,.2,1), border-color .22s ease, background .22s ease;
  background: rgb(255 255 255 / 3%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.map-card:hover{
  border-color: rgba(155,93,229,.35);
  background: rgba(255,255,255,.045);
}

.map-embed{
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  min-height: 360px;
}

.map-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.04) brightness(.92);
}

.map-overlay{
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.map-overlay::before{
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(155,93,229,.30), transparent 60%),
    radial-gradient(55% 50% at 90% 80%, rgba(229,46,113,.22), transparent 62%),
    linear-gradient(to bottom, rgba(0,0,0,.22), rgba(0,0,0,.08));
}

.map-pin{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgb(255 255 255 / 59%);
  box-shadow: 0 0 0 8px rgba(155,93,229,.18), 0 0 0 18px rgba(229,46,113,.10);
  transform: translate(-50%,-50%);
  animation: iwPulse 1.75s ease-in-out infinite;
}

@keyframes iwPulse{
  0%,100%{ box-shadow: 0 0 0 8px rgba(155,93,229,.14), 0 0 0 18px rgba(229,46,113,.08); }
  50%{ box-shadow: 0 0 0 10px rgba(155,93,229,.22), 0 0 0 24px rgba(229,46,113,.12); }
}

.map-badge{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.28);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 13px;
}

.map-badge .dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(155,93,229,1), rgba(229,46,113,1));
  box-shadow: 0 0 0 6px rgba(155,93,229,.14);
}

.map-info{
  display: grid;
  gap: 14px;
}

.map-info .section-title{ margin: 0; }

.map-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px){
  .map-points{ grid-template-columns: 1fr; }
}

.map-point{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgb(255 255 255 / 3%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.map-point .t{
  font-weight: 800;
  color: rgba(255,255,255,.95);
  margin-bottom: 4px;
}

.map-point .p{
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

/* Small anchor offset (sticky header comfort) */
:where(html){ scroll-padding-top: 120px; }

.section-head.reveal.is-in.inview {
    margin: auto;
}

.kicker {
    margin-bottom: 20px;
}

.offer-stack.start-stack {
    display: flex;
    justify-content: center;
	margin-bottom: 100px;
}

.offer-tile {
    min-width: 425px;
}

.offer-stack.contact-stack {
    margin-top: 12.9px;
    padding: 50px 0px;
}

.offer-tile {
    cursor: pointer;
}

.offer-tile svg {width:25px;}

@media (max-width:767px){
.offer-tile {width: 100%;} 
.offer-stack.start-stack {display: flex; flex-wrap: wrap;}
.offer-stack.contact-stack {
    padding: 0px 0px;
    margin-top: 0px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}




}