* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #172033;
}

/* =========================================================
HEADER
========================================================= */

.header {
  height: 82px;
  padding: 0 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,0.35);

  position: sticky;
  top: 0;
  z-index: 1000;

  transition: 0.3s ease;
}

.logo img {
  height: 52px;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a,
.dropdown-button {
  color: #172033;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  background: none;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.nav a:hover,
.dropdown-button:hover {
  color: #d62828;
}

.dropdown {
  position: relative;
  padding: 20px 0;
}

.dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  background: white;
  border-radius: 18px;
  border: 1px solid #edf0f4;
  padding: 12px;
  min-width: 270px;
  display: none;
  box-shadow: 0 18px 45px rgba(16,24,40,0.08);
}

.dropdown:hover .dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  background: white;
  border-radius: 18px;
  border: 1px solid #edf0f4;
  padding: 12px;
  min-width: 270px;
  display: none;
  box-shadow: 0 18px 45px rgba(16,24,40,0.08);
}

.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
}

.dropdown-menu a:hover {
  background: #fff3f3;
}

.menu-button {
  display: none;
}

/* =========================================================
HOME HERO
========================================================= */

.hero {
  position: relative;
  padding: 100px 7%;
  background: url("../images/erste-hilfe-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.82);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.72fr;
  gap: 60px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: #d62828;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  color: #101828;
  max-width: 760px;
}

.subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #344054;
  margin-bottom: 24px;
}

.intro {
  font-size: 18px;
  line-height: 1.85;
  color: #667085;
  max-width: 760px;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: 0.25s;
}

.primary-button {
  background: #d62828;
  color: white;
  box-shadow: 0 12px 24px rgba(214,40,40,0.24);
}

.primary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  background: white;
  color: #172033;
  border: 1px solid #d8dee7;
}

.secondary-button:hover {
  background: #f8fafc;
}

/* =========================================================
KERNBEREICHE
========================================================= */

.hero-services {
  background: rgba(255,255,255,0.88);
  border-radius: 30px;
  padding: 30px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.08);
}

.hero-services h2 {
  margin: 10px 0 24px;
  font-size: 19px;
  line-height: 1.15;
  color: #101828;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px;
  border-radius: 18px;
  background: white;
  border: 1px solid #edf0f4;
  transition: 0.2s;
}

.service-item:hover {
  transform: translateX(4px);
  border-color: #f2c8c8;
}

.service-icon {
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.service-item strong {
  display: block;
  color: #101828;
  font-size: 15px;
}

.service-item small {
  display: block;
  margin-top: 4px;
  color: #667085;
  font-size: 13px;
  line-height: 1.5;
}

.concept-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: #fff5f5;
  color: #475467;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================================================
STANDORTE / KONTAKT
========================================================= */

.locations {
  padding: 90px 7%;
}

.locations h2,
.contact h2 {
  font-size: clamp(34px,4vw,52px);
  line-height: 1.1;
  color: #101828;
}

.locations p,
.contact p {
  color: #667085;
  line-height: 1.8;
  font-size: 18px;
}

.contact {
  margin: 0 7% 90px;
  padding: 50px;
  border-radius: 34px;
  background: #f8fafc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* =========================================================
ÜBER UNS HERO
========================================================= */

.about-page {
  position: relative;
  padding: 40px 7% 70px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  overflow: hidden;
}

.about-hero {
  background-image: url("../images/ueber-uns-bg.png");
  background-size: cover;
  background-position: center;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.84);
  z-index: 1;
}

.about-page-content,
.about-page-image {
  position: relative;
  z-index: 2;
}

.about-page h1 {
  margin: 14px 0 20px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  color: #101828;
  max-width: 620px;
}

.about-intro {
  color: #667085;
  font-size: 18px;
  line-height: 1.8;
  max-width: 680px;
}

.about-page-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-page-image img {
  width: 100%;
  max-width: 760px;
  object-fit: contain;
  margin-top: 10px;
}

/* =========================================================
GRÜNDER
========================================================= */

.founders-wide {
  margin: 20px 7% 50px;
  padding: 38px;
  border-radius: 34px;
  background: #f8fafc;
  border: 1px solid #edf0f4;
}

.founders-wide-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.founders-wide-header h2 {
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
  color: #101828;
}

.founders-wide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.founder-wide-card {
  padding: 28px;
  border-radius: 24px;
  background: white;
  border: 1px solid #edf0f4;
  transition: 0.25s;
}

.founder-wide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16,24,40,0.08);
}

.founder-role {
  margin: 0 0 10px;
  color: #d62828;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  line-height: 1.45;
}

.founder-wide-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.12;
  color: #101828;
}

.founder-wide-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

/* =========================================================
UNSER ANSPRUCH
========================================================= */

.claim-section {
  padding: 0 7% 90px;
}

.claim-box {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  border: 1px solid #ffe1e1;
}

.claim-icon {
  min-width: 62px;
  height: 62px;
  border-radius: 18px;
  background: #d62828;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.claim-content h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  color: #101828;
}

.claim-content p {
  max-width: 900px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================================
FOOTER
========================================================= */

.footer {
  padding: 22px 7%;
  background: white;
  border-top: 1px solid #edf0f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-content img {
  height: 42px;
}

.footer-content p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}

.footer-links a {
  color: #667085;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #d62828;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

  .hero-grid,
  .about-page,
  .founders-wide-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 950px) {

  .menu-button {
    display: block;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
  }

  .nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 7%;
    gap: 20px;
    display: none;
    border-bottom: 1px solid rgba(255,255,255,0.35);
  }

  .nav.open {
    display: flex;
  }

  .dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 18px;
}

.dropdown-menu {
  position: absolute;
  top: 58px;
  left: 0;
  background: white;
  border-radius: 18px;
  border: 1px solid #edf0f4;
  padding: 12px;
  min-width: 270px;
  display: none;
  box-shadow: 0 18px 45px rgba(16,24,40,0.08);
}

  .claim-box {
    flex-direction: column;
  }

  .contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .header {
    height: 76px;
  }

  .logo img {
    height: 46px;
  }

  .nav {
    top: 76px;
  }

  .hero,
  .about-page {
    padding: 30px 6% 60px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .about-page h1 {
    font-size: 34px;
  }

  .subtitle {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .founders-wide {
    margin: 20px 6% 40px;
    padding: 28px;
  }

  .claim-section {
    padding: 0 6% 70px;
  }

  .claim-box {
    padding: 28px;
  }

  .contact {
    margin: 0 6% 70px;
    padding: 34px;
  }

}

@media (max-width: 700px) {

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

}

@media (max-width: 700px) {

  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .footer-center {
    flex-direction: column;
    gap: 10px;
  }

}

@media (max-width: 700px) {

  .footer {
    flex-direction: column;
    gap: 14px;
    padding: 24px 6%;
  }

  .footer-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links {
    gap: 16px;
  }

}



/* =========================================================
SIDE BOOKING BUTTON
========================================================= */

.booking-side-button {
  position: fixed;
  right: -62px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  background: #d62828;
  color: white;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 18px 18px 0 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2000;
  box-shadow: 0 12px 30px rgba(214,40,40,0.28);
  transition: all 0.3s ease;
}

.booking-side-button:hover {
  right: -38px;
  background: #b71f1f;
}



/* DROPDOWN FIX FINAL */

.header {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 951px) {
  .dropdown {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 18px;
    border: 1px solid #edf0f4;
    padding: 12px;
    min-width: 270px;
    display: none;
    box-shadow: 0 18px 45px rgba(16,24,40,0.08);
    z-index: 3000;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu a {
    padding: 12px 14px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .dropdown-menu a:hover {
    background: #fff3f3;
  }
}

@media (max-width: 950px) {
  .dropdown-menu {
    position: static;
    display: flex;
    flex-direction: column;
    border: none;
    box-shadow: none;
    padding-left: 10px;
  }
}

.contact-card {
  background: white;
  border: 1px solid #edf0f4;
  border-radius: 24px;
  padding: 26px;
  min-width: 280px;
  box-shadow: 0 18px 45px rgba(16,24,40,0.06);
}

.contact-card p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card strong {
  color: #101828;
}

.contact-card a {
  color: #d62828;
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* =========================================================
KINDERNOTFALL HERO
========================================================= */

.kindernotfall-hero{
  position:relative;
  overflow:hidden;

  padding:70px 7%;

  display:grid;
  grid-template-columns:1fr 520px;
  gap:60px;
  align-items:center;

  background:
    linear-gradient(
      rgba(255,255,255,0.92),
      rgba(255,255,255,0.92)
    ),
    url("../images/kindernotfall-bg.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.kindernotfall-content,
.kindernotfall-poster{
  position:relative;
  z-index:2;
}

.kindernotfall-content h1{
  margin:16px 0 22px;
  font-size:clamp(40px,4vw,62px);
  line-height:1.05;
  color:#101828;
}

.kindernotfall-poster{
  display:flex;
  justify-content:flex-end;
}

.kindernotfall-poster img{
  width:100%;
  max-width:520px;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(16,24,40,0.12);
}

/* =========================================================
POPUP FORMULAR
========================================================= */

.inquiry-popup{
  position:fixed;
  inset:0;
  z-index:5000;
  display:none;
}

.inquiry-popup.active{
  display:block;
}

.inquiry-popup-overlay{
  position:absolute;
  inset:0;
  background:rgba(16,24,40,0.62);
  backdrop-filter:blur(6px);
}

.inquiry-popup-box{
  position:relative;
  z-index:2;

  width:min(720px, calc(100% - 32px));
  max-height:calc(100vh - 40px);
  overflow-y:auto;

  margin:20px auto;
  padding:34px;

  background:white;
  border-radius:28px;
  box-shadow:0 28px 80px rgba(16,24,40,0.28);
}

.inquiry-popup-close{
  position:absolute;
  top:18px;
  right:20px;

  width:38px;
  height:38px;

  border:none;
  border-radius:999px;
  background:#f8fafc;

  font-size:28px;
  line-height:1;
  cursor:pointer;
  color:#172033;
}

.inquiry-popup-close:hover{
  background:#fff3f3;
  color:#d62828;
}

.inquiry-popup-box h2{
  margin:10px 0 10px;
  font-size:clamp(28px,3vw,40px);
  color:#101828;
  line-height:1.1;
}

.inquiry-popup-intro{
  margin:0 0 24px;
  color:#667085;
  line-height:1.7;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.form-field{
  margin-bottom:16px;
}

.form-field label{
  display:block;
  margin-bottom:7px;
  color:#101828;
  font-size:14px;
  font-weight:800;
}

.form-field input,
.form-field textarea{
  width:100%;
  padding:13px 14px;

  border:1px solid #d8dee7;
  border-radius:14px;

  font:inherit;
  color:#172033;
  background:#ffffff;

  outline:none;
  transition:0.2s;
}

.form-field input:focus,
.form-field textarea:focus{
  border-color:#d62828;
  box-shadow:0 0 0 4px rgba(214,40,40,0.08);
}

.form-field textarea{
  resize:vertical;
}

.popup-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
}

/* =========================================================
RESPONSIVE KINDERNOTFALL + POPUP
========================================================= */

@media (max-width:1100px){

  .kindernotfall-hero{
    grid-template-columns:1fr;
    gap:40px;
  }

  .kindernotfall-poster{
    justify-content:center;
  }

}

@media (max-width:700px){

  .kindernotfall-hero{
    padding:40px 6% 60px;
  }

  .kindernotfall-content h1{
    font-size:42px;
  }

  .form-grid{
    grid-template-columns:1fr;
    gap:0;
  }

  .inquiry-popup-box{
    padding:28px 22px;
  }

  .popup-actions{
    flex-direction:column-reverse;
  }

  .popup-actions .primary-button,
  .popup-actions .secondary-button{
    width:100%;
    text-align:center;
    justify-content:center;
  }

}

/* =========================================================
STANDORTE HERO
========================================================= */

.locations-page-hero{
  padding:80px 7%;

  display:grid;
  grid-template-columns:1fr 720px;
  gap:70px;
  align-items:center;

  overflow:hidden;

  background:
    radial-gradient(circle at top left, rgba(255,241,241,0.95), transparent 38%),
    radial-gradient(circle at bottom right, rgba(248,250,252,1), transparent 42%),
    #ffffff;
}

.locations-page-content h1{
  margin:16px 0 22px;

  font-size:clamp(42px,4vw,68px);
  line-height:1.02;

  color:#101828;

  max-width:760px;
}

.locations-page-content p{
  max-width:720px;

  color:#667085;
  font-size:18px;
  line-height:1.8;
}

.locations-page-list{
  margin-top:30px;

  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.locations-page-list span{
  padding:11px 15px;

  border-radius:999px;

  background:#ffffff;
  border:1px solid #edf0f4;

  color:#344054;
  font-size:14px;
  font-weight:800;

  box-shadow:0 10px 24px rgba(16,24,40,0.05);
}

/* =========================================================
DEUTSCHLANDKARTE
========================================================= */

.germany-map{
  position:relative;
  min-height:760px;
}

.map-title{
  position:absolute;

  top:28px;
  left:28px;

  z-index:5;

  padding:9px 14px;

  border-radius:999px;

  background:#fff;
  border:1px solid #edf0f4;

  color:#d62828;
  font-size:13px;
  font-weight:900;

  text-transform:uppercase;
  letter-spacing:1px;

  box-shadow:0 10px 24px rgba(16,24,40,0.06);
}

.map-outline{
  position:absolute;
  inset:-40px;

  background:
    url("../images/deutschlandkarte.png");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* =========================================================
PINS
========================================================= */

.map-pin{
  position:absolute;

  display:flex;
  align-items:center;
  gap:10px;

  transform:translate(-50%, -50%);

  z-index:10;
}

.pin-dot{
  width:20px;
  height:20px;

  border-radius:999px;

  background:#d62828;
  border:4px solid white;

  box-shadow:
    0 0 0 8px rgba(214,40,40,0.16),
    0 10px 24px rgba(16,24,40,0.22);

  animation:pinPulse 1.8s infinite;
}

.pin-label{
  padding:8px 12px;

  border-radius:999px;

  background:#ffffff;
  border:1px solid #edf0f4;

  color:#172033;
  font-size:14px;
  font-weight:900;

  white-space:nowrap;

  box-shadow:0 10px 22px rgba(16,24,40,0.08);
}

/* =========================================================
PIN POSITIONEN
========================================================= */

.pin-nuernberg{
  left:58%;
  top:63%;
}

.pin-erlangen{
  left:54%;
  top:56%;
}

.pin-simmelsdorf{
  left:63%;
  top:51%;
}

/* =========================================================
PIN ANIMATION
========================================================= */

@keyframes pinPulse{

  0%{
    box-shadow:
      0 0 0 0 rgba(214,40,40,0.28),
      0 10px 24px rgba(16,24,40,0.22);
  }

  70%{
    box-shadow:
      0 0 0 14px rgba(214,40,40,0),
      0 10px 24px rgba(16,24,40,0.22);
  }

  100%{
    box-shadow:
      0 0 0 0 rgba(214,40,40,0),
      0 10px 24px rgba(16,24,40,0.22);
  }

}

/* =========================================================
STANDORTKARTEN
========================================================= */

.location-cards-section{
  margin:20px 7% 50px;

  padding:38px;

  border-radius:34px;

  background:#f8fafc;
  border:1px solid #edf0f4;
}

.location-cards-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.location-card{
  padding:28px;

  border-radius:24px;

  background:white;
  border:1px solid #edf0f4;

  transition:0.25s;
}

.location-card:hover{
  transform:translateY(-4px);

  box-shadow:0 16px 35px rgba(16,24,40,0.08);
}

.location-icon{
  width:54px;
  height:54px;

  border-radius:18px;

  background:#fff1f1;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:24px;

  margin-bottom:18px;
}

.location-card h3{
  margin:0 0 12px;

  font-size:26px;
  color:#101828;
}

.location-card p{
  margin:0;

  color:#667085;
  font-size:16px;
  line-height:1.7;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media (max-width:1200px){

  .locations-page-hero{
    grid-template-columns:1fr;
    gap:50px;
  }

  .germany-map{
    min-height:640px;
  }

}

@media (max-width:900px){

  .location-cards-grid{
    grid-template-columns:1fr;
  }

}

@media (max-width:700px){

  .locations-page-hero{
    padding:40px 6% 60px;
  }

  .locations-page-content h1{
    font-size:42px;
  }

  .germany-map{
    min-height:500px;
  }

  .map-outline{
    inset:0;
  }

  .pin-label{
    font-size:12px;
  }

  .location-cards-section{
    margin:20px 6% 40px;
    padding:28px;
  }

}

/* =========================================================
KURSORT WÄHLEN
========================================================= */

.location-select-section{
  margin:20px 7% 70px;
}

.location-select-box{
  padding:38px;
  border-radius:34px;
  background:#f8fafc;
  border:1px solid #edf0f4;

  display:grid;
  grid-template-columns:1fr 360px;
  gap:40px;
  align-items:center;
}

.location-select-box h2{
  margin:10px 0 14px;
  font-size:clamp(28px,3vw,42px);
  line-height:1.12;
  color:#101828;
}

.location-select-box p{
  margin:0;
  max-width:760px;
  color:#667085;
  font-size:17px;
  line-height:1.75;
}

.location-select-control label{
  display:block;
  margin-bottom:8px;
  color:#101828;
  font-size:14px;
  font-weight:900;
}

.location-select-control select{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid #d8dee7;
  background:white;
  color:#172033;
  font-size:16px;
  font-weight:700;
  outline:none;
  cursor:pointer;
}

.location-select-control select:focus{
  border-color:#d62828;
  box-shadow:0 0 0 4px rgba(214,40,40,0.08);
}

/* =========================================================
INHOUSE POPUP PLACEHOLDER
========================================================= */

.inhouse-popup {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 24px;

  z-index: 1000;
}

.inhouse-popup.active {
  display: flex;
}

.inhouse-popup-overlay {
  position: absolute;
  inset: 0;

  background: rgba(15,23,42,0.55);

  backdrop-filter: blur(5px);
}

.inhouse-popup-box {
  position: relative;

  width: min(760px, 92vw);

  max-height: 88vh;

  overflow-y: auto;

  background: #ffffff;

  border-radius: 32px;

  padding: 42px;

  box-shadow:
    0 25px 80px rgba(0,0,0,0.18);

  z-index: 1002;
}

.inhouse-popup-box::-webkit-scrollbar {
  width: 8px;
}

.inhouse-popup-box::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
}

.inhouse-popup-close {
  position: absolute;

  top: 22px;
  right: 22px;

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  background: #f3f4f6;

  font-size: 2rem;
  cursor: pointer;
}

.inhouse-popup-close:hover{
  background:#fff3f3;
  color:#d62828;
}

@media(max-width:900px){

  .location-select-box{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .location-select-section{
    margin:20px 6% 50px;
  }

  .location-select-box{
    padding:28px;
  }

}

/* =========================================================
STANDORT DETAILSEITE
========================================================= */

.location-detail-hero{
  position:relative;
  overflow:hidden;

  min-height:78vh;

  padding:100px 7%;

  display:flex;
  align-items:center;

  background:
    linear-gradient(
      rgba(255,255,255,0.72),
      rgba(255,255,255,0.72)
    ),
    url("../images/standorte/nuernberg-1.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.location-detail-content h1{
  margin:14px 0 20px;

  font-size:clamp(44px,4vw,68px);
  line-height:1.02;

  color:#101828;
}

.location-title{
  margin:14px 0 20px;

  font-size:clamp(58px,6vw,92px);
  line-height:0.95;
  font-weight:900;

  color:#101828;

  letter-spacing:-3px;
  text-transform:uppercase;
}

.location-address{
  margin:0 0 24px;

  color:#344054;
  font-size:18px;
  line-height:1.9;
  font-weight:700;
}

.location-detail-image{
  display:flex;
  justify-content:flex-end;
}

.location-image-placeholder{
  width:100%;
  max-width:520px;
  aspect-ratio:1/1;

  border-radius:32px;

  background:
    linear-gradient(
      135deg,
      #fff1f1,
      #f8fafc
    );

  border:2px dashed #d0d5dd;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#667085;
  font-size:18px;
  font-weight:800;

  box-shadow:0 20px 50px rgba(16,24,40,0.08);
}

.location-detail-image-bg{
  width:100%;
  max-width:420px;
  aspect-ratio:4/5;

  border-radius:32px;

  background:
    linear-gradient(
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04)
    ),
    url("../images/standorte/nuernberg-1.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  box-shadow:0 20px 50px rgba(16,24,40,0.12);
}

.simmelsdorf-location-bg{
  background-image:
    linear-gradient(
      rgba(255,255,255,0.04),
      rgba(255,255,255,0.04)
    ),
    url("../images/standorte/simmelsdorf-1.jpg");
}



/* =========================================================
STANDORT INFOS
========================================================= */

.location-info-section{
  margin:20px 7% 50px;
}

.location-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.location-info-card{
  padding:30px;

  border-radius:28px;

  background:white;
  border:1px solid #edf0f4;

  transition:0.25s;

  box-shadow:0 16px 35px rgba(16,24,40,0.04);
}

.location-info-card:hover{
  transform:translateY(-4px);

  box-shadow:0 18px 45px rgba(16,24,40,0.08);
}

.location-info-icon{
  width:58px;
  height:58px;

  border-radius:18px;

  background:#fff1f1;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;

  margin-bottom:18px;
}

.location-info-card h3{
  margin:0 0 12px;

  font-size:24px;
  color:#101828;
}

.location-info-card p{
  margin:0;

  color:#667085;
  font-size:16px;
  line-height:1.8;
}

/* =========================================================
ANFAHRT
========================================================= */

.location-route-section{
  margin:20px 7% 50px;
}

.location-route-box{
  padding:40px;

  border-radius:34px;

  background:#f8fafc;
  border:1px solid #edf0f4;

  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
}

.location-route-box h2{
  margin:10px 0 14px;

  font-size:clamp(30px,3vw,46px);
  line-height:1.1;

  color:#101828;
}

.location-route-box p{
  margin:0;

  max-width:780px;

  color:#667085;
  font-size:17px;
  line-height:1.8;
}

/* =========================================================
BILDERGALERIE
========================================================= */

.location-gallery-section{
  margin:20px 7% 70px;
}

.location-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.gallery-placeholder{
  aspect-ratio:1/1;

  border-radius:28px;

  background:
    linear-gradient(
      135deg,
      #fff1f1,
      #f8fafc
    );

  border:2px dashed #d0d5dd;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#667085;
  font-size:17px;
  font-weight:800;

  box-shadow:0 16px 35px rgba(16,24,40,0.05);
}

/* =========================================================
RESPONSIVE STANDORTDETAILS
========================================================= */

@media(max-width:1100px){

  .location-detail-hero{
    grid-template-columns:1fr;
    gap:50px;
  }

  .location-detail-image{
    justify-content:center;
  }

  .location-route-box{
    grid-template-columns:1fr;
  }

}

@media(max-width:900px){

  .location-info-grid{
    grid-template-columns:1fr;
  }

  .location-gallery-grid{
    grid-template-columns:1fr;
  }

}

@media(max-width:700px){

  .location-detail-hero{
    padding:40px 6% 60px;
  }

  .location-detail-content h1{
    font-size:42px;
  }

  .location-info-section,
  .location-route-section,
  .location-gallery-section{
    margin-left:6%;
    margin-right:6%;
  }

  .location-route-box{
    padding:28px;
  }

}

.simmelsdorf-hero{
  background:
    linear-gradient(
      rgba(255,255,255,0.72),
      rgba(255,255,255,0.72)
    ),
    url("../images/standorte/simmelsdorf-1.jpg");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.erlangen-hero {
  background:
    linear-gradient(
      rgba(0,0,0,0.08),
      rgba(0,0,0,0.08)
    ),
    url("../images/standorte/erlangen-1.jpeg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news-header-button {
  background: #e5252a;
  color: #ffffff;

  padding: 9px 16px;
  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 900;

  text-decoration: none;
  letter-spacing: 0.08em;

  margin-left: 24px;
  margin-right: auto;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.news-header-button.active-news {
  animation: newsPulse 1.8s infinite;
}

.news-header-button:hover {
  background: #b91c1c;
}

@keyframes newsPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(229, 37, 42, 0.65);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(229, 37, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 37, 42, 0);
  }

}

.news-header-button:hover {
  background: #b91c1c;
}

@keyframes newsPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 37, 42, 0.65);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(229, 37, 42, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(229, 37, 42, 0);
  }
}

.news-page {
  background: #f8fafc;
  min-height: 100vh;
}

.news-hero {
  position: relative;

  padding: 90px 8% 140px;

  background:
    linear-gradient(
      rgba(255,255,255,0.72),
      rgba(255,255,255,0.72)
    ),
    url("../images/neuigkeiten-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.news-hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  height: 120px;

  background: linear-gradient(
    to bottom,
    rgba(248,250,252,0) 0%,
    rgba(248,250,252,1) 100%
  );

  pointer-events: none;
}

.news-hero h1 {
  position: relative;
  z-index: 1;

  font-size: clamp(2.6rem, 6vw, 5rem);
  color: #111827;

  margin-bottom: 18px;
  max-width: 760px;
}

.news-hero p {
  position: relative;
  z-index: 1;

  max-width: 720px;

  font-size: 1.15rem;
  line-height: 1.7;

  color: #374151;
}

.news-categories {
  max-width: 1200px;
  margin: 0 auto;

  padding: 45px 8% 100px;
}

.red-label {
  color: #e5252a;
  margin-bottom: 28px;
}

.news-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

  gap: 22px;
}

.news-category-card {
  background: #ffffff;

  border-radius: 26px;

  padding: 30px;

  box-shadow: 0 18px 45px rgba(0,0,0,0.06);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.news-category-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 24px 60px rgba(0,0,0,0.09);
}

.news-category-icon {
  font-size: 2rem;

  margin-bottom: 18px;
}

.news-category-card h2 {
  font-size: 1.35rem;

  margin-bottom: 12px;

  color: #111827;
}

.news-category-card p {
  color: #6b7280;

  line-height: 1.7;
}

@media (max-width: 700px) {
  .news-hero {
    padding: 70px 6% 110px;
  }

  .news-categories {
    padding: 35px 6% 80px;
  }
}

.news-item {
  margin-top: 18px;
  padding-top: 18px;

  border-top: 1px solid #eeeeee;
}

.news-item strong {
  display: block;

  margin-bottom: 8px;

  color: #111827;
}

.news-item p {
  margin-bottom: 12px;

  font-size: 0.95rem;
}

.news-item a {
  color: #e5252a;

  font-weight: 700;

  text-decoration: none;
}

.news-item a:hover {
  text-decoration: underline;
}

.inhouse-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  background: #ffffff;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #e5252a;
  box-shadow: 0 0 0 3px rgba(229,37,42,0.12);
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.5;
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
}

.form-actions {
  justify-content: flex-end;
  margin-top: 22px;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Kontaktseite */

.contact-intro {
  padding-bottom: 28px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.direct-contact-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(16,24,40,0.06);
}

.contact-form-card h2,
.direct-contact-card h2 {
  margin: 6px 0 18px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #101828;
}

.contact-form label span {
  font-weight: 500;
  color: #667085;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dee7;
  border-radius: 14px;
  font-size: 15px;
  color: #172033;
  background: #fff;
  outline: none;
  transition: .2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #d62828;
  box-shadow: 0 0 0 4px rgba(214,40,40,.08);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: "Courier New", Courier, monospace;
}

.contact-form button {
  margin-top: 8px;
  border: none;
  cursor: pointer;
  width: fit-content;
}

.form-note {
  margin-top: 8px;
  font-size: 12.5px !important;
  line-height: 1.55 !important;
  color: #667085;
}

.direct-contact-card p {
  margin: 0 0 16px;
}

.direct-contact-card p:last-child {
  margin-bottom: 0;
}

.direct-contact-card a {
  color: #d62828;
  font-weight: 700;
  text-decoration: none;
}

.direct-contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 950px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
ERSTE HILFE & NOTFALLTRAINING
========================================================= */

.eh-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 7%;
  background:
    linear-gradient(rgba(255,255,255,0.86), rgba(255,255,255,0.9)),
    url("../images/erste-hilfe-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.eh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.eh-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  color: #101828;
}

.eh-subtitle {
  margin: 0 0 24px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  color: #344054;
}

.eh-courses {
  margin: 20px 7% 50px;
  padding: 38px;
  border-radius: 34px;
  background: #f8fafc;
  border: 1px solid #edf0f4;
}

.eh-courses .founders-wide-header p:last-child {
  margin-top: 14px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
  max-width: 820px;
}

.eh-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.eh-course-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  transition: 0.25s;
}

.eh-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16,24,40,0.08);
}

.eh-course-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
  color: #101828;
}

.eh-course-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.eh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 14px;
}

.eh-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3f3;
  color: #d62828;
  font-size: 13px;
  font-weight: 900;
}

.eh-card-note {
  color: #344054 !important;
  font-weight: 700;
}

.eh-process-benefits {
  margin: 0 7% 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.eh-process,
.eh-benefits {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 18px 45px rgba(16,24,40,0.06);
}

.eh-process h2 {
  margin: 10px 0 22px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  color: #101828;
}

.eh-process ol {
  margin: 0;
  padding-left: 22px;
}

.eh-process li {
  margin-bottom: 14px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.eh-process li strong {
  color: #101828;
}

.eh-benefits {
  text-align: right;
  background: #101828;
}

.eh-benefits .section-label {
  color: #ffffff;
}

.eh-benefits ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.eh-benefits li {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.eh-benefits li::after {
  content: " ✓";
  color: #d62828;
  font-weight: 900;
}

@media (max-width: 900px) {
  .eh-course-grid,
  .eh-process-benefits {
    grid-template-columns: 1fr;
  }

  .eh-benefits {
    text-align: left;
  }

  .eh-benefits li::after {
    content: "";
  }

  .eh-benefits li::before {
    content: "✓ ";
    color: #d62828;
    font-weight: 900;
  }
}

@media (max-width: 700px) {
  .eh-hero {
    padding: 70px 6%;
  }

  .eh-courses,
  .eh-process-benefits {
    margin-left: 6%;
    margin-right: 6%;
  }

  .eh-courses,
  .eh-process,
  .eh-benefits {
    padding: 24px;
  }
}

.eh-benefits-slim {
  padding: 34px;
  border-radius: 26px;
  background: #101828;
  border-left: 6px solid #d62828;
}

.eh-benefits-slim .section-label {
  color: #ffffff;
}

.eh-benefits-slim h2 {
  margin: 10px 0 22px;
  color: #ffffff;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.eh-benefits-slim ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eh-benefits-slim li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.eh-benefits-slim li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d62828;
  font-weight: 900;
}

/* =========================================================
BRANDSCHUTZ
========================================================= */

.bs-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 7%;
  background:
    linear-gradient(rgba(255,255,255,0.84), rgba(255,255,255,0.92)),
    url("../images/brandschutz-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.bs-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  color: #101828;
}

.bs-subtitle {
  margin: 0 0 24px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  color: #344054;
}

.bs-targets {
  margin: 40px 7% 20px;
}

.bs-target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bs-target-card {
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 16px 35px rgba(16,24,40,0.06);
  transition: 0.25s;
}

.bs-target-card:nth-child(3) {
  grid-column: 1 / 2;
}

.bs-target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(16,24,40,0.09);
}

.bs-target-card h3 {
  margin: 0 0 14px;
  color: #101828;
  font-size: 25px;
  line-height: 1.16;
}

.bs-target-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.bs-courses {
  margin: 30px 7% 50px;
  padding: 38px;
  border-radius: 34px;
  background: #fff7f2;
  border: 1px solid #ffe0ce;
}

.bs-courses .founders-wide-header p:last-child {
  margin-top: 14px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
  max-width: 850px;
}

.bs-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.bs-course-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #ffe4d3;
  transition: 0.25s;
}

.bs-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16,24,40,0.08);
}

.bs-course-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
  color: #101828;
}

.bs-course-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.bs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 14px;
}

.bs-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1e8;
  color: #d85a00;
  font-size: 13px;
  font-weight: 900;
}

.bs-card-note {
  color: #344054 !important;
  font-weight: 700;
}

.bs-process-value {
  margin: 0 7% 70px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.bs-process,
.bs-value {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 18px 45px rgba(16,24,40,0.06);
}

.bs-process h2,
.bs-value h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  color: #101828;
}

.bs-process p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.bs-process ol {
  margin: 0;
  padding-left: 22px;
}

.bs-process li {
  margin-bottom: 14px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.bs-process li strong {
  color: #101828;
}

.bs-value {
  background: #101828;
  border-left: 6px solid #d85a00;
}

.bs-value .section-label,
.bs-value h2 {
  color: #ffffff;
}

.bs-value ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bs-value li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.bs-value li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d85a00;
  font-weight: 900;
}

@media (max-width: 900px) {
  .bs-target-grid,
  .bs-course-grid,
  .bs-process-value {
    grid-template-columns: 1fr;
  }

  .bs-target-card:nth-child(3) {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .bs-hero {
    padding: 70px 6%;
  }

  .bs-targets,
  .bs-courses,
  .bs-process-value {
    margin-left: 6%;
    margin-right: 6%;
  }

  .bs-courses,
  .bs-process,
  .bs-value,
  .bs-target-card {
    padding: 24px;
  }
}

/* =========================================================
TAKTISCHE ERSTE HILFE / TEH / TECC
========================================================= */

.teh-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 7%;
  background:
    linear-gradient(
      rgba(16,24,40,0.76),
      rgba(16,24,40,0.82)
    ),
    url("../images/taktische-erste-hilfe-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.teh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.teh-hero h1 {
  margin: 14px 0 16px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  color: #ffffff;
}

.teh-subtitle {
  margin: 0 0 24px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  color: rgba(255,255,255,0.94);
}

.teh-hero .about-intro {
  color: rgba(255,255,255,0.82);
  max-width: 820px;
}

.teh-hero .section-label {
  color: #d62828;
}

.teh-info {
  margin: 40px 7% 20px;
}

.teh-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.teh-info-card {
  padding: 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 16px 35px rgba(16,24,40,0.06);
  transition: 0.25s;
}

.teh-info-card:nth-child(3) {
  grid-column: 1 / 2;
}

.teh-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(16,24,40,0.09);
}

.teh-info-card h3 {
  margin: 0 0 14px;
  color: #101828;
  font-size: 25px;
  line-height: 1.16;
}

.teh-info-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.teh-targets,
.teh-trainings {
  margin: 30px 7% 50px;
  padding: 38px;
  border-radius: 34px;
  background: #f8fafc;
  border: 1px solid #edf0f4;
}

.teh-trainings {
  background: #fff7f7;
  border-color: #ffe0e0;
}

.teh-targets .founders-wide-header p:last-child,
.teh-trainings .founders-wide-header p:last-child {
  margin-top: 14px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
  max-width: 900px;
}

.teh-target-grid,
.teh-training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.teh-target-card,
.teh-training-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  transition: 0.25s;
}

.teh-training-card {
  border-color: #ffe0e0;
}

.teh-target-card:hover,
.teh-training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16,24,40,0.08);
}

.teh-target-card h3,
.teh-training-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
  color: #101828;
}

.teh-target-card p,
.teh-training-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.teh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

.teh-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1f1;
  color: #d62828;
  font-size: 13px;
  font-weight: 900;
}

.teh-card-note {
  margin-top: 14px !important;
  color: #344054 !important;
  font-weight: 700;
}

.teh-training-wide {
  grid-column: 1 / -1;
  background: #101828;
}

.teh-training-wide .founder-role,
.teh-training-wide h3 {
  color: #ffffff;
}

.teh-training-wide p {
  color: rgba(255,255,255,0.78);
}

.teh-structure,
.teh-organisation {
  margin: 0 7% 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.teh-organisation {
  margin-bottom: 70px;
}

.teh-phases,
.teh-scenario-box,
.teh-process,
.teh-recommendations {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 18px 45px rgba(16,24,40,0.06);
}

.teh-phases h2,
.teh-scenario-box h2,
.teh-process h2,
.teh-recommendations h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  color: #101828;
}

.teh-phases p,
.teh-process p,
.teh-scenario-box p {
  margin: 0 0 22px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.teh-phases ol,
.teh-process ol {
  margin: 0;
  padding-left: 22px;
}

.teh-phases li,
.teh-process li {
  margin-bottom: 14px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.teh-phases li strong,
.teh-process li strong {
  color: #101828;
}

.teh-scenario-box,
.teh-recommendations {
  background: #101828;
  border-left: 6px solid #d62828;
}

.teh-scenario-box .section-label,
.teh-scenario-box h2,
.teh-recommendations .section-label,
.teh-recommendations h2 {
  color: #ffffff;
}

.teh-scenario-box p {
  color: rgba(255,255,255,0.82);
}

.teh-recommendations ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.teh-recommendations li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 600;
}

.teh-recommendations li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d62828;
  font-weight: 900;
}

@media (max-width: 900px) {
  .teh-info-grid,
  .teh-target-grid,
  .teh-training-grid,
  .teh-structure,
  .teh-organisation {
    grid-template-columns: 1fr;
  }

  .teh-info-card:nth-child(3),
  .teh-training-wide {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .teh-hero {
    padding: 80px 6%;
  }

  .teh-info,
  .teh-targets,
  .teh-trainings,
  .teh-structure,
  .teh-organisation {
    margin-left: 6%;
    margin-right: 6%;
  }

  .teh-targets,
  .teh-trainings,
  .teh-info-card,
  .teh-target-card,
  .teh-training-card,
  .teh-phases,
  .teh-scenario-box,
  .teh-process,
  .teh-recommendations {
    padding: 24px;
  }
}

/* =========================================================
RESQ NOW ACADEMY
========================================================= */

.academy-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 7%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(rgba(154, 166, 189, 0.78), rgba(16,24,40,0.84)),
    url("../images/academy-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.academy-hero-content {
  max-width: 860px;
  position: relative;
  z-index: 2;
}

.academy-hero h1 {
  margin: 14px 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: #ffffff;
}

.academy-subtitle {
  margin: 0 0 24px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.25;
  font-weight: 800;
  color: rgba(255,255,255,0.94);
}

.academy-hero .about-intro {
  color: rgba(255,255,255,0.82);
}

.academy-hero .section-label {
  color: #d62828;
}

.academy-login-box {
  position: relative;
  z-index: 2;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

.academy-login-box h3 {
  margin: 10px 0 12px;
  color: #101828;
  font-size: 28px;
}

.academy-login-box p {
  margin: 0 0 22px;
  color: #667085;
  line-height: 1.6;
}

.academy-login-button,
.academy-highlight-button {
  display: inline-flex;
  padding: 13px 20px;
  border-radius: 999px;
  background: #101828;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

.academy-benefits {
  margin: 40px 7% 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.academy-benefit-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 16px 35px rgba(16,24,40,0.06);
}

.academy-benefit-card span {
  color: #d62828;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.academy-benefit-card h3 {
  margin: 16px 0 10px;
  color: #101828;
  font-size: 23px;
}

.academy-benefit-card p {
  margin: 0;
  color: #667085;
  line-height: 1.65;
}

.academy-courses {
  margin: 30px 7% 50px;
  padding: 38px;
  border-radius: 34px;
  background: #f8fafc;
  border: 1px solid #edf0f4;
}

.academy-courses .founders-wide-header p:last-child {
  margin-top: 14px;
  color: #667085;
  font-size: 17px;
  line-height: 1.75;
  max-width: 850px;
}

.academy-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.academy-course-card {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  transition: 0.25s;
}

.academy-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(16,24,40,0.08);
}

.academy-course-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.15;
  color: #101828;
}

.academy-course-card p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.72;
}

.academy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.academy-tags span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3f3;
  color: #d62828;
  font-size: 13px;
  font-weight: 900;
}

.academy-path {
  margin: 0 7% 50px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}

.academy-path-content,
.academy-highlight {
  padding: 34px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid #edf0f4;
  box-shadow: 0 18px 45px rgba(16,24,40,0.06);
}

.academy-path-content h2,
.academy-highlight h2 {
  margin: 10px 0 18px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  color: #101828;
}

.academy-path-content ol {
  margin: 0;
  padding-left: 22px;
}

.academy-path-content li {
  margin-bottom: 14px;
  color: #667085;
  font-size: 16px;
  line-height: 1.7;
}

.academy-path-content li strong {
  color: #101828;
}

.academy-highlight {
  background: #101828;
  border-left: 6px solid #d62828;
}

.academy-highlight .section-label,
.academy-highlight h2 {
  color: #ffffff;
}

.academy-highlight p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.7;
}

.academy-highlight-button {
  background: #d62828;
}

.academy-cta {
  margin: 0 7% 80px;
  padding: 50px;
  border-radius: 34px;
  text-align: center;
  background: #f8fafc;
  border: 1px solid #edf0f4;
}

.academy-cta h2 {
  margin: 10px auto 18px;
  max-width: 760px;
  color: #101828;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.academy-cta p {
  margin: 0 auto 28px;
  max-width: 720px;
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 950px) {
  .academy-hero,
  .academy-benefits,
  .academy-course-grid,
  .academy-path {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .academy-hero {
    padding: 80px 6%;
  }

  .academy-benefits,
  .academy-courses,
  .academy-path,
  .academy-cta {
    margin-left: 6%;
    margin-right: 6%;
  }

  .academy-courses,
  .academy-path-content,
  .academy-highlight,
  .academy-login-box,
  .academy-cta {
    padding: 24px;
  }
}

.academy-login-box {
  max-width: 500px;
  margin: 4rem auto;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.academy-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.academy-login-form input {
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 1rem;
}

.academy-login-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.academy-login-note {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.course-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
}

.course-content {
  max-width: 1000px;
  margin: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.course-module {
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}

.course-module h2 {
  margin-bottom: 1rem;
}

.course-module ul,
.course-module ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.course-module li {
  margin-bottom: 0.5rem;
}

.course-topbar {
  width: 100%;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.course-logo {
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

.course-nav {
  display: flex;
  gap: 1.5rem;
}

.course-nav a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
}

.course-nav a:hover {
  color: #fff;
}

.course-page {
  min-height: 100vh;
  padding-bottom: 4rem;
}

.course-hero-new {
  min-height: 75vh;
  padding: 6rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.course-hero-new h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.course-hero-new p {
  max-width: 700px;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
}

.course-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.course-status-card {
  padding: 2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.course-status-card span {
  color: rgba(255,255,255,0.65);
}

.course-status-card h2 {
  font-size: 4rem;
  margin: 1rem 0;
}

.progress-bar {
  height: 12px;
  border-radius: 99px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar div {
  width: 0%;
  height: 100%;
  background: #ff3b3b;
  border-radius: 99px;
}

.course-overview {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.overview-card {
  padding: 1.5rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.overview-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
}

.overview-card span {
  color: rgba(255,255,255,0.65);
}

.course-grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.lesson-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.25s ease;
}

.lesson-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.lesson-card span {
  color: #ff3b3b;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.lesson-card h2 {
  margin: 0.8rem 0 1rem;
  font-size: 1.6rem;
}

.lesson-card p,
.lesson-card li {
  color: rgba(255,255,255,0.72);
}

.lesson-card ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.lesson-card li {
  margin-bottom: 0.5rem;
}

.lesson-card.highlight {
  background: linear-gradient(145deg, rgba(255,59,59,0.22), rgba(255,255,255,0.06));
  border-color: rgba(255,59,59,0.35);
}

.cpr-box {
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.25);
  text-align: center;
}

.cpr-box strong {
  font-size: 3rem;
  color: #fff;
}

.quiz-section {
  max-width: 900px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  text-align: center;
}

.quiz-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.quiz-card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.quiz-card p {
  font-size: 1.2rem;
}

.quiz-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.quiz-buttons button {
  padding: 1rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: #ff3b3b;
  color: #fff;
  transition: 0.2s ease;
}

.quiz-buttons button:hover {
  transform: scale(1.05);
}

.quiz-success {
  color: #6dff9c;
  font-weight: 700;
}

.quiz-error {
  color: #ff7777;
  font-weight: 700;
}

@media (max-width: 850px) {
  .course-hero-new {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .course-overview,
  .course-grid {
    grid-template-columns: 1fr;
  }

  .course-topbar {
    flex-direction: column;
    gap: 1rem;
  }

  .course-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.popup-actions button[type="submit"] {
  padding: 1rem 2rem;
  border: none;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    #ff3b3b,
    #d91f1f
  );
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(255,59,59,0.25);
}

.popup-actions button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255,59,59,0.35);
}

.popup-actions button[type="submit"]:active {
  transform: scale(0.98);
}

.legal-page {
  padding: 8rem 2rem 5rem;
  background: #050a14;
  min-height: 100vh;
}

.legal-container {
  max-width: 1000px;
  margin: 0 auto;
}

.legal-page h1 {
  color: #ffffff;
  margin-bottom: 3rem;
}

.legal-content {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-size: 1rem;
}

.legal-content h2 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p,
.legal-content li {
  color: rgba(255,255,255,0.82);
}

.legal-content strong {
  color: #ffffff;
}

.legal-content a {
  color: #ff3b3b;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
  }

}