/* =============================================
   NordSchein Reinigung & Service
   Haupt-Stylesheet
   nordschein-service.de
   ============================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --color-primary: #1B2D7A;
  --color-blue-mid: #1A7DC4;
  --color-accent: #00BADC;
  --color-gold: #F5C200;
  --color-gold-dark: #D4A800;
  --color-light: #EEF6FB;
  --color-white: #FFFFFF;
  --color-muted: #5A6E8A;
  --color-border: #D0E4F0;
  --color-text: #1B2D7A;
  --color-text-body: #2C3E5A;
  --gradient-hero: linear-gradient(135deg, #1B2D7A 0%, #1A7DC4 55%, #00BADC 100%);
  --gradient-accent: linear-gradient(90deg, #1A7DC4, #00BADC);
  --gradient-gold: linear-gradient(135deg, #F5C200, #D4A800);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(27, 45, 122, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 45, 122, 0.12);
  --shadow-lg: 0 20px 60px rgba(27, 45, 122, 0.18);
  --shadow-gold: 0 4px 20px rgba(245, 194, 0, 0.35);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s ease;

  --container: 1200px;
  --nav-height: 90px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

.text-muted {
  color: var(--color-muted);
}

.text-center {
  text-align: center;
}

.lead {
  font-size: 1.125rem;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.8;
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(0, 186, 220, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ── Sections ── */
section {
  padding: 90px 0;
}

.section-alt {
  background: var(--color-light);
}

.section-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.section-header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 14px;
}

/* ── Divider Wave ── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-primary);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 194, 0, 0.5);
  color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.btn-secondary {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background: #152265;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(8, 16, 56, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 20, 70, 0.99);
  box-shadow: 0 4px 24px rgba(10, 20, 70, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

/* Nav icon – small wellen-icon, hidden on homepage until scrolled past hero */
.nav-icon-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* when scrolled past hero OR on inner pages → show icon */
.navbar-logo.nav-icon-visible .nav-icon-img {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* On inner pages always show immediately */
.navbar-logo.nav-icon-always .nav-icon-img {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.navbar-logo:hover .nav-icon-img {
  filter: drop-shadow(0 2px 8px rgba(0, 186, 220, 0.5));
  transform: scale(1.05);
}

/* ── Hero full logo ── */
.hero-logo-wrap {
  margin-bottom: 36px;
}

.hero-logo-wrap img {
  height: 120px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  transition: var(--transition);
}

.hero-logo-wrap img:hover {
  filter: drop-shadow(0 6px 28px rgba(0, 186, 220, 0.4));
  transform: scale(1.02);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.navbar-cta {
  background: var(--gradient-gold) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-md) !important;
}

.navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
  background: var(--gradient-gold) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ── Hero (Startseite) ── */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

/* Subtle overlay shimmer */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(245, 194, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* 2-column hero inner */
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - var(--nav-height));
  padding-top: 60px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-logo-wrap {
  margin-bottom: 24px;
}

.hero-logo-wrap img {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

/* Right column: photo */
.hero-photo-wrap {
  position: relative;
  height: 540px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay so photo blends into left gradient */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27, 45, 122, 0.3) 0%, transparent 50%);
  z-index: 1;
}

/* Floating stats card bottom-left of photo */
.hero-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10, 20, 60, 0.82);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 24px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-photo-stat {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.hero-photo-stat-number {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
}

.hero-photo-stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  line-height: 1.4;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.hero-trust-item i {
  color: var(--color-gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.hero-badge {

  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 194, 0, 0.15);
  border: 1px solid rgba(245, 194, 0, 0.4);
  color: var(--color-gold);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.05em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 0.85rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero h1 span {
  color: var(--color-gold);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
  margin-bottom: 32px;
}



/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--gradient-hero);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(0, 186, 220, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ── Intro Section ── */
.intro-section {
  padding: 80px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
  transition: var(--transition);
}

.intro-feature:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.intro-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gradient-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.95rem;
}

.intro-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.intro-feature-text p {
  font-size: 0.87rem;
  color: var(--color-muted);
  margin: 0;
}

/* Visual side for intro */
.intro-visual {
  position: relative;
}

.intro-visual-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.intro-visual-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--color-light);
  border-radius: var(--radius-md);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.4;
}

.stat-item.accent-stat {
  background: var(--gradient-hero);
}

.stat-item.accent-stat .stat-number,
.stat-item.accent-stat .stat-label {
  color: var(--color-white);
}

.intro-visual-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(245, 194, 0, 0.08);
  border: 1px solid rgba(245, 194, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.intro-visual-note i {
  color: var(--color-gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.intro-visual-note p {
  font-size: 0.87rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

/* ── Services Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-blue-mid);
  margin-bottom: 22px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-hero);
  color: var(--color-white);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-blue-mid);
  font-family: var(--font-head);
  transition: var(--transition-fast);
}

.service-card-link:hover {
  gap: 10px;
  color: var(--color-accent);
}

/* ── USP Strip ── */
.usp-strip {
  background: var(--gradient-hero);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.usp-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 80% 50%, rgba(0, 186, 220, 0.15) 0%, transparent 70%);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.usp-item {
  text-align: center;
  color: var(--color-white);
}

.usp-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 18px;
  color: var(--color-gold);
  transition: var(--transition);
}

.usp-item:hover .usp-icon {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
  transform: scale(1.1);
}

.usp-item h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.usp-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  line-height: 1.6;
}

/* ── Einsatzgebiet ── */
.einsatz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.region-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-weight: 500;
  font-family: var(--font-head);
  color: var(--color-primary);
  transition: var(--transition);
}

.region-item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.region-item i {
  color: var(--color-accent);
  font-size: 1rem;
}

.map-visual {
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  padding: 50px;
  text-align: center;
  color: var(--color-white);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(0, 186, 220, 0.2) 0%, transparent 70%);
}

.map-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--color-gold);
  position: relative;
}

.map-visual h3 {
  color: var(--color-white);
  margin-bottom: 8px;
  position: relative;
}

.map-visual p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  position: relative;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--gradient-hero);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(245, 194, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(0, 186, 220, 0.15) 0%, transparent 60%);
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 18px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact Info Block ── */
.contact-info-bar {
  background: var(--color-light);
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.contact-info-bar .container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-info-item i {
  color: var(--color-accent);
}

/* ── Footer ── */
.footer {
  background: #0F1D50;
  color: rgba(255, 255, 255, 0.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 140px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
  color: var(--color-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal a:hover {
  color: var(--color-accent);
}

/* ── Leistungen Detail ── */
.leistungen-list {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.leistung-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: flex-start;
}

.leistung-icon-wrap {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--gradient-hero);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.leistung-content h3 {
  margin-bottom: 14px;
}

.leistung-content p {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.leistung-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), transparent);
  margin-top: 56px;
}

/* ── Über Uns ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}

.value-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-white);
  margin: 0 auto 18px;
}

.value-card h4 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.value-card p {
  font-size: 0.87rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 13%;
  right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-blue-mid));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--color-white);
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin: 0;
}

/* ── Kontakt ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: flex-start;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.kontakt-info-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.kontakt-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--gradient-hero);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
}

.kontakt-info-card h4 {
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 400;
  margin-bottom: 4px;
}

.kontakt-info-card p {
  font-size: 0.97rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0;
}

.kontakt-info-card a {
  color: var(--color-primary);
  font-weight: 600;
}

.kontakt-info-card a:hover {
  color: var(--color-accent);
}

/* ── Form ── */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-head);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--color-text-body);
  background: var(--color-white);
  transition: var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 186, 220, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 24px;
  text-align: right;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--color-muted);
  margin-top: 12px;
  text-align: right;
}

.form-privacy a {
  color: var(--color-blue-mid);
}

/* Success / Error messages */
.form-message {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.form-message.success {
  background: rgba(0, 186, 220, 0.1);
  border: 1px solid var(--color-accent);
  color: var(--color-primary);
  display: block;
}

.form-message.error {
  background: rgba(200, 40, 40, 0.08);
  border: 1px solid #c82828;
  color: #c82828;
  display: block;
}

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--color-gold);
}

.breadcrumb i {
  font-size: 0.6rem;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s;
}

.animate-delay-2 {
  transition-delay: 0.2s;
}

.animate-delay-3 {
  transition-delay: 0.3s;
}

.animate-delay-4 {
  transition-delay: 0.4s;
}

.animate-delay-5 {
  transition-delay: 0.5s;
}

/* ── Geschäftskunden Boxes ── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.target-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.target-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.target-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.target-card:hover::after {
  transform: scaleX(1);
}

.target-card-icon {
  font-size: 2.2rem;
  color: var(--color-blue-mid);
  margin-bottom: 20px;
}

.target-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.target-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.7;
}

/* guarantee / trust badges */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--color-primary);
}

.trust-badge i {
  color: var(--color-gold);
  font-size: 1.2rem;
}

/* ── Utility ── */
.mb-0 {
  margin-bottom: 0 !important;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.fw-bold {
  font-weight: 700;
}

/* ── Section Images ── */
.section-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.section-img-sm {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
}

.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.img-wrap:hover img {
  transform: scale(1.04);
}

/* Image badge overlay */
.img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(27, 45, 122, 0.9);
  backdrop-filter: blur(8px);
  color: var(--color-white);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.img-badge i {
  color: var(--color-gold);
}

/* Leistung page image alongside text */
.leistung-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--color-border);
}

.leistung-item:last-child {
  border-bottom: none;
}

.leistung-item.reverse {
  direction: rtl;
}

.leistung-item.reverse>* {
  direction: ltr;
}

.leistung-img {
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.leistung-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leistung-img:hover img {
  transform: scale(1.04);
}

/* About page image grid */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: block;
}

.about-img-grid img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

/* Service card with image */
.service-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: -36px -30px 24px;
  width: calc(100% + 60px);
}