 
/* ── HERO ─────────────────────────────────────────────────── */
.k-hero {
  padding-top: var(--header-h);
  min-height: 82vh;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.k-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(ellipse at 50% 100%, rgba(232,119,34,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.k-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 24px 80px;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.k-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,119,34,0.15);
  border: 1px solid rgba(232,119,34,0.4);
  color: #f4a84a;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.k-hero-h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.k-hero-subtitle {
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.k-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 36px;
}

.k-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.k-hero-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.k-info-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 600;
}
.k-info-badge svg { color: var(--orange); flex-shrink: 0; }

/* ── SHARED SECTION STYLES ────────────────────────────────── */
.k-section { padding: 88px 0; }
.k-section-white { background: var(--white); }
.k-section-gray  { background: #f5f7fa; }
.k-section-navy  { background: var(--navy); }

.k-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.k-section-sub {
  color: var(--gray-500);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.k-badge-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232,119,34,0.1);
  border: 1px solid rgba(232,119,34,0.25);
  color: var(--orange);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.k-badge-pill-light {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

/* ── SERVICES SECTION ─────────────────────────────────────── */
.k-title-underline {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}
.k-title-underline::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin: 14px auto 0;
}

.k-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.k-service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.k-service-card:hover {
  box-shadow: 0 8px 28px rgba(11,29,81,0.12);
  transform: translateY(-4px);
  border-color: var(--navy);
}

.k-service-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.k-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.k-service-card:hover .k-service-img { transform: scale(1.04); }

.k-service-body {
  padding: 20px;
}
.k-service-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.k-service-body p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.k-mehr-link {
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}
.k-mehr-link:hover { color: #c45e0b; }

/* ── FEATURE PILLS ────────────────────────────────────────── */
.k-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.k-feature-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: var(--transition);
}
.k-feature-pill:hover {
  border-color: var(--orange);
  background: rgba(232,119,34,0.04);
}
.k-feature-icon {
  width: 42px; height: 42px;
  background: rgba(232,119,34,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.k-feature-icon svg { width: 20px; height: 20px; }
.k-feature-pill strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.k-feature-pill span {
  font-size: 12.5px;
  color: var(--gray-500);
}

/* ── MEISTGESUCHTE ────────────────────────────────────────── */
.k-title-meistgesuchte {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.k-title-meistgesuchte span:first-child { color: var(--navy); }

.k-title-rule {
  width: 52px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin: 0 auto 44px;
}

.k-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 24px;
  max-width: 1080px;
  margin: 0 auto 40px;
}
.k-loc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 0;
  transition: color var(--transition);
}
.k-loc-link:hover { color: var(--orange); }
.k-loc-arrow {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.k-locations-cta { text-align: center; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.btn-navy:hover { background: #0d2260; transform: translateY(-2px); }

/* ── MAP SECTION ──────────────────────────────────────────── */
.k-map-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.k-map-wrap { position: relative; }
.k-map {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  border: 2px solid var(--gray-200);
}
.k-map-credit {
  text-align: center;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 8px;
}

.k-map-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(232,119,34,0.1);
  border: 1px solid rgba(232,119,34,0.3);
  color: var(--orange);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.k-map-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.k-map-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.k-map-stats {
  display: flex;
  gap: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.k-stat {
  text-align: center;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  flex: 1;
  min-width: 80px;
}
.k-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}
.k-stat span {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
}

.k-map-cta { margin-top: 4px; }

/* ── FAQ ──────────────────────────────────────────────────── */
.k-faq-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.k-faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.k-faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.k-faq-item.open { border-color: var(--navy); }

.k-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: background var(--transition);
}
.k-faq-item.open .k-faq-question {
  color: var(--navy);
  background: rgba(11,29,81,0.04);
}
.k-faq-question:hover { background: var(--gray-50); }

.k-faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s ease;
}
.k-faq-item.open .k-faq-icon { transform: rotate(45deg); }

.k-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.k-faq-item.open .k-faq-answer { max-height: 400px; }
.k-faq-answer p {
  padding: 4px 24px 20px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
}
.k-faq-answer a { color: var(--orange); font-weight: 600; }
.k-faq-answer a:hover { text-decoration: underline; }

/* ── CONTACT SECTION ──────────────────────────────────────── */
.k-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.k-contact-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.k-contact-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 32px;
}

.k-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.k-contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.k-cc-icon {
  width: 44px; height: 44px;
  background: rgba(232,119,34,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.k-cc-icon svg { width: 20px; height: 20px; }

.k-contact-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}
.k-contact-card a {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
.k-contact-card a:hover { color: #f4a84a; }
.k-contact-card span {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

/* CTA box */
.k-contact-cta-box {
  display: flex;
  justify-content: center;
}

.k-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  width: 100%;
  max-width: 420px;
}

.k-cta-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(232,119,34,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange);
}
.k-cta-icon-wrap svg { width: 32px; height: 32px; }

.k-cta-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.k-cta-card p {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 24px;
}

.k-form-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.k-cta-or {
  font-size: 13px !important;
  color: var(--gray-400) !important;
  margin-bottom: 16px !important;
  font-weight: 500;
}

.k-call-btn {
  width: 100%;
  justify-content: center;
  background: rgba(11,29,81,0.07);
  color: var(--navy);
  border: 2px solid rgba(11,29,81,0.2);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}
.k-call-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .k-services-grid  { grid-template-columns: repeat(2, 1fr); }
  .k-features-row   { grid-template-columns: repeat(2, 1fr); }
  .k-locations-grid { grid-template-columns: repeat(3, 1fr); }
  .k-map-inner      { grid-template-columns: 1fr; gap: 40px; }
  .k-map            { height: 320px; }
}

@media (max-width: 900px) {
  .k-contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .k-cta-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .k-section { padding: 60px 0; }
  .k-hero { min-height: auto; }
  .k-hero-inner { padding: 60px 20px 60px; }
  .k-hero-buttons { flex-direction: column; align-items: center; }
  .k-hero-badges  { gap: 16px; }
  .k-services-grid { grid-template-columns: 1fr; }
  .k-features-row  { grid-template-columns: 1fr; }
  .k-locations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .k-locations-grid { grid-template-columns: 1fr; }
}
