#contact{
  padding: 60px 0 40px;
}

/* Header (Kontakt & Support) */
.contact-header{
  text-align: center;
  margin: 90px auto 0;
  width: min(1100px, 92%);
}
.contact-header h1{
  color: var(--primary);
  font-size: 36px;
  margin: 0 0 6px;
}
.contact-header h2{
  color: rgba(246, 210, 122, 0.95);
  font-size: 24px;
  margin: 0 0 10px;
}
.contact-header p{
  color: rgba(246, 210, 122, 0.85);
  max-width: 700px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}
#contact .content{
  width: min(1100px, 92%);
  margin: 0 auto;
}
#contact .cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
#contact .card{
  background: rgba(17, 26, 44, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(10px);
}
#contact .card h2{
  margin: 0 0 8px;
  font-size: 20px;
  color: rgba(246, 210, 122, 0.95);
}
#contact .card p{
  color: rgba(246,241,226,0.85);
  line-height: 1.55;
}
#contact .card .small{
  margin-top: 10px;
  color: rgba(246,241,226,0.65);
  font-size: 12px;
}
#contact .list{
  margin: 10px 0 0 18px;
  color: rgba(246,241,226,0.85);
  line-height: 1.55;
}
#contact .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.12);
  background: #ffffff;
  color: #0b0f16;
}
#contact .btn.secondary{
  background: #ffffff;
  color: #0b0f16;
  border-color: rgba(255,255,255,0.12);
}
#contact .btn.ghost{
  background: transparent;
  color: rgba(246,241,226,0.95);
}
#contact .btn:hover{ background: var(--primary); }
#contact .note{
  margin-top: 18px;
  background: rgba(13, 20, 36, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 18px 20px;
}
#contact .note h3{ 
  margin: 0 0 8px;
  color: rgba(246, 210, 122, 0.95);
}
#contact .note p{ color: rgba(246,241,226,0.85); line-height: 1.55; }

@media (max-width: 980px){
  #contact .cards{ grid-template-columns: 1fr; }
}
