/* ============================================
   PrylewskiSHK - Warm Light Theme Design
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #f8f6f1;
  --bg-secondary: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #fdfcfa;
  --border: rgba(176, 170, 154, 0.4);
  --border-hover: rgba(142, 59, 69, 0.35);
  --text-primary: #1a2b3d;
  --text-secondary: #3a5068;
  --text-muted: #6b6459;
  --navy: #2e4056;
  --red: #8e3b45;
  --beige: #b0aa9a;
  --light-beige: #edebe3;
  --accent-primary: #8e3b45;
  --accent-secondary: #2e4056;
  --accent-cyan: #8e3b45;
  --gradient: linear-gradient(135deg, #2e4056 0%, #8e3b45 100%);
  --gradient-rev: linear-gradient(135deg, #8e3b45 0%, #2e4056 100%);
  --shadow-sm: 0 2px 8px rgba(46,64,86,0.06);
  --shadow: 0 4px 20px rgba(46,64,86,0.09);
  --shadow-lg: 0 8px 40px rgba(46,64,86,0.13);
  --shadow-hover: 0 16px 50px rgba(46,64,86,0.15);
  --glow-red: 0 0 25px rgba(142,59,69,0.3);
  --glow-cyan: 0 0 25px rgba(142,59,69,0.3);
  --glow-violet: 0 0 25px rgba(46,64,86,0.25);
  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --nav-height: 88px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8f6f1;
  color: #1a2b3d;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f8f6f1; }
::-webkit-scrollbar-thumb { background: rgba(176,170,154,0.6); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(142,59,69,0.5); }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--text-secondary); }

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, #2e4056, #8e3b45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #8e3b45, #b04e5a);
  color: #fff;
  box-shadow: 0 4px 20px rgba(142,59,69,0.3);
  animation: glow-pulse 3s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(142,59,69,0.45), 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}
.btn-secondary:hover {
  background: rgba(142,59,69,0.05);
  border-color: #8e3b45;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(46,64,86,0.2);
}
.btn-ghost:hover {
  background: rgba(46,64,86,0.06);
  border-color: rgba(46,64,86,0.3);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
  background: rgba(26, 38, 58, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Logo */
.nav-logo {
  position: relative;
}

.nav-logo-img {
  transition: filter 0.4s ease, opacity 0.4s ease;
  filter: brightness(0) invert(1);
  opacity: 0.93;
}

/* Transparent on dark hero (index.html) */
.nav.hero-transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.nav.hero-transparent .nav-link {
  color: rgba(255,255,255,0.8);
}

.nav.hero-transparent .nav-link:hover,
.nav.hero-transparent .nav-link.active {
  color: #fff;
}

.nav.hero-transparent .logo-text {
  color: #fff;
}

.nav.hero-transparent .logo-accent {
  color: #e8a0a8;
}

.nav.hero-transparent .hamburger span {
  background: #fff;
}

.nav.scrolled {
  background: rgba(26, 38, 58, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-red);
  overflow: hidden;
}

.logo-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.logo-icon svg { width: 20px; height: 20px; color: #fff; }

.logo-text { color: var(--text-primary); }
.logo-accent { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #e8909a, #8e3b45);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 70%;
}

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
  display: flex;
}
.nav-mobile .nav-link {
  font-size: 1.5rem;
  padding: 12px 24px;
  color: var(--text-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--nav-height) 24px 60px;
  background: #2e4056;
}

/* Canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

/* Aurora Blobs */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  animation: blobFloat 10s ease-in-out infinite;
  transition: opacity 2s ease;
}

.blob.visible { opacity: 0.25; }

.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #8e3b45 0%, transparent 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #3d5a7a 0%, transparent 70%);
  top: 50px; right: -200px;
  animation-delay: -4s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #b0aa9a 0%, transparent 70%);
  bottom: -100px; left: 30%;
  animation-delay: -7s;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(40px, -60px) scale(1.08); }
  50%       { transform: translate(-30px, 40px) scale(0.95); }
  75%       { transform: translate(60px, 20px) scale(1.05); }
}

/* Hero Content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 28px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(142,59,69,0.15);
  border: 1px solid rgba(142,59,69,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #e8a0a8;
  width: fit-content;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
}

.hero-badge.visible { opacity: 1; transform: translateY(0); }

.badge-dot {
  width: 8px; height: 8px;
  background: #8e3b45;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* Hero Title */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
  transition-delay: 0.15s;
}

.hero-title.visible { opacity: 1; transform: translateY(0); }

.hero-title-main {
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  background: linear-gradient(135deg, #ffffff 0%, #edebe3 50%, #e8a0a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.hero-title-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
  transition-delay: 0.3s;
}

.hero-subtitle.visible { opacity: 1; transform: translateY(0); }

/* Hero CTA - ghost on dark hero */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
  transition-delay: 0.45s;
}

.hero-cta.visible { opacity: 1; transform: translateY(0); }

.hero .btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition-slow);
  transition-delay: 0.6s;
}

.hero-stats.visible { opacity: 1; transform: translateY(0); }

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ============================================
   HERO PORTRAIT
   ============================================ */
.hero-portrait {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.5s;
  height: 100%;
  min-height: 520px;
}
.hero-portrait.visible { opacity: 1; transform: translateX(0); }

/* Decorative rings behind portrait */
.portrait-accents { position: absolute; top: -30px; right: -30px; pointer-events: none; z-index: 0; }
.portrait-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--accent-primary);
}
.portrait-ring-1 { width: 100px; height: 100px; top: 0; right: 0; opacity: 0.35; }
.portrait-ring-2 { width: 145px; height: 145px; top: -22px; right: -22px; opacity: 0.15; }

/* Dot grid pattern */
.portrait-dot-grid {
  position: absolute;
  top: 60px;
  right: -10px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(142,59,69,0.45) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
}

/* Portrait frame */
.portrait-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 1;
}

.portrait-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.96) contrast(1.04);
}

/* Fallback when no image is loaded yet */
.portrait-img[src="assets/owner.jpg"]:not([complete]),
.portrait-img[src="assets/owner.jpg"][naturalHeight="0"] {
  background: linear-gradient(160deg, #2e4056 0%, #1a2a3a 100%);
  min-height: 540px;
}

/* Gradient overlay at bottom so person blends into dark hero */
.portrait-gradient {
  display: none;
}

/* Name label at bottom of portrait */
.portrait-label {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 12px 16px;
}
.portrait-label-name {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.portrait-label-role {
  display: block;
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.portrait-label-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

/* Guarantee pill below portrait */
.portrait-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 16px;
  z-index: 1;
}
.guarantee-icon {
  color: #5ed08a;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Hero Cards (right side) - glassmorphism on dark */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateX(40px);
  transition: var(--transition-slow);
  transition-delay: 0.4s;
}

.hero-cards.visible { opacity: 1; transform: translateX(0); }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.hero-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.25);
  transform: translateX(6px);
}

.hero-card:hover::before { opacity: 1; }

.hero-card:nth-child(1) { animation: floatCard 5s ease-in-out infinite; }
.hero-card:nth-child(2) { animation: floatCard 5s ease-in-out infinite 1.5s; }
.hero-card:nth-child(3) { animation: floatCard 5s ease-in-out infinite 3s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%       { transform: translateY(-6px) translateX(0); }
}
.hero-card:hover { animation: none; }

.hero-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.hero-card-icon.cyan { background: rgba(142,59,69,0.2); box-shadow: 0 0 20px rgba(142,59,69,0.15); }
.hero-card-icon.violet { background: rgba(46,64,86,0.3); box-shadow: 0 0 20px rgba(46,64,86,0.2); }
.hero-card-icon.blue { background: rgba(176,170,154,0.2); box-shadow: 0 0 20px rgba(176,170,154,0.15); }

.hero-card-info { display: flex; flex-direction: column; gap: 4px; }
.hero-card-title { font-size: 1.05rem; font-weight: 700; color: white; }
.hero-card-desc { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

.hero-card-badge {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-card-badge.green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.hero-card-badge.cyan { background: rgba(142,59,69,0.2); color: #e8a0a8; border: 1px solid rgba(142,59,69,0.3); }

/* Hero Illustration */
.hero-illustration {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(40px) scale(0.95);
  transition: var(--transition-slow);
  transition-delay: 0.5s;
}
.hero-illustration.visible { opacity: 1; transform: translateX(0) scale(1); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  transition: var(--transition-slow);
  transition-delay: 1s;
}

.scroll-indicator.visible { opacity: 1; }

/* ============================================
   TICKER BAR (zwischen Hero & Services)
   ============================================ */
.ticker-bar {
  background: #1a2639;
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(142,59,69,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: #8e3b45;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(142,59,69,0.9);
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Typewriter cycling word in title */
#hero-cycle-word {
  display: inline-block;
}

#hero-cycle-word::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  color: #8e3b45;
  animation: cursorBlink 0.7s step-end infinite;
  font-weight: 300;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(142,59,69,0.35), 0 4px 15px rgba(0,0,0,0.1); }
  50% { box-shadow: 0 0 38px rgba(142,59,69,0.6), 0 4px 20px rgba(0,0,0,0.15); }
}
@keyframes gradshift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes float-particle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-120px) translateX(40px) scale(0.5); opacity: 0; }
}
@keyframes ring-fill {
  from { stroke-dashoffset: var(--dash-total); }
  to { stroke-dashoffset: var(--dash-offset); }
}
@keyframes glow-line {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */
section { padding: 100px 0; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(142,59,69,0.08);
  border: 1px solid rgba(142,59,69,0.2);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #8e3b45;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 16px; }

.services-section .section-header h2,
.whyus-section h2,
.infographic-section h2 {
  text-shadow: 0 0 40px rgba(142,59,69,0.12);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================
   SERVICES SECTION (Homepage)
   ============================================ */
.services-section {
  background: linear-gradient(-45deg, #181e2c, #2e4056, #3a1e28, #1e2840);
  background-size: 400% 400%;
  animation: gradshift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/slider/Verteiler.png');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  mix-blend-mode: luminosity;
  pointer-events: none;
  z-index: 0;
}

.services-section .container { position: relative; z-index: 1; }
.services-section .section-header h2 { color: white; }
.services-section .section-header p { color: rgba(255,255,255,0.65); }
.services-section .section-badge { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.85); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Shimmer-Sweep beim Hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.04) 40%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 60%,
    transparent 100%
  );
  transform: skewX(-15deg);
  z-index: 1;
  pointer-events: none;
  transition: none;
}

.service-card:hover::before {
  animation: shimmerSweep 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes shimmerSweep {
  0%   { left: -120%; }
  100% { left: 160%; }
}

/* Spotlight (per JS gesetzt) */
.card-spotlight {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
  transition: background 0.1s ease;
}

/* Untere Leiste */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8e3b45, #5a8abf, transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}

.service-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(142,59,69,0.6);
  box-shadow: 0 0 40px rgba(142,59,69,0.25), 0 30px 80px rgba(0,0,0,0.4);
}

.service-card:hover::after { transform: scaleX(1); }

/* Icon */
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, background 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-icon, .service-icon.cyan, .service-icon.violet, .service-icon.blue {
  background: rgba(142,59,69,0.15);
  color: #e8909a;
  border: 1px solid rgba(142,59,69,0.3);
}

.service-card:hover .service-icon {
  transform: scale(1.18) rotate(-6deg);
  background: rgba(142,59,69,0.28);
  box-shadow: 0 0 24px rgba(142,59,69,0.5), 0 0 48px rgba(142,59,69,0.2);
}

/* --- Icon Animationen --- */

/* Sanitär: Schraubenschlüssel wackelt */
.service-card:nth-child(1) .service-icon svg {
  animation: wrenchWiggle 2.5s ease-in-out infinite;
  transform-origin: bottom left;
}
@keyframes wrenchWiggle {
  0%, 100% { transform: rotate(0deg); }
  20%       { transform: rotate(-18deg); }
  40%       { transform: rotate(14deg); }
  60%       { transform: rotate(-10deg); }
  80%       { transform: rotate(6deg); }
}

/* Heizung: Flamme flackert + pulsiert */
.service-card:nth-child(2) .service-icon svg {
  animation: flameFlicker 1.8s ease-in-out infinite;
  transform-origin: bottom center;
}
@keyframes flameFlicker {
  0%, 100% { transform: scaleY(1)   scaleX(1)    translateY(0); opacity: 1; }
  25%       { transform: scaleY(1.1) scaleX(0.93) translateY(-1px); opacity: 0.9; }
  50%       { transform: scaleY(0.95) scaleX(1.05) translateY(1px); opacity: 1; }
  75%       { transform: scaleY(1.08) scaleX(0.96) translateY(-2px); opacity: 0.85; }
}

/* Klima: Schneeflocke dreht sich langsam */
.service-card:nth-child(3) .service-icon svg {
  animation: snowSpin 6s linear infinite;
  transform-origin: center center;
}
@keyframes snowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Alle Icons: subtiles Float-Glühen im Ruhezustand */
.service-icon {
  animation: iconGlow 3s ease-in-out infinite;
}
@keyframes iconGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(142,59,69,0.2); }
  50%       { box-shadow: 0 0 18px rgba(142,59,69,0.45), 0 0 32px rgba(142,59,69,0.15); }
}

/* Text über Spotlight */
.service-card h3,
.service-card > p,
.service-list,
.service-card-link { position: relative; z-index: 2; }

/* List items slide in */
.service-list li {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(0);
}
.service-card:hover .service-list li:nth-child(1) { transform: translateX(4px); transition-delay: 0s; }
.service-card:hover .service-list li:nth-child(2) { transform: translateX(4px); transition-delay: 0.05s; }
.service-card:hover .service-list li:nth-child(3) { transform: translateX(4px); transition-delay: 0.10s; }
.service-card:hover .service-list li:nth-child(4) { transform: translateX(4px); transition-delay: 0.15s; }

/* Link Glow on hover */
.service-card:hover .service-card-link {
  color: #e8909a;
  text-shadow: 0 0 12px rgba(142,59,69,0.6);
}

.service-card h3 { margin-bottom: 12px; color: white; }
.service-card > p { color: rgba(255,255,255,0.85); }
.service-card p { font-size: 0.9rem; line-height: 1.7; }

.service-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.service-card-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-card-link:hover svg { transform: translateX(4px); }

/* ============================================
   WHY US SECTION
   ============================================ */
.whyus-section {
  position: relative;
  background: linear-gradient(135deg, #f0ede6 0%, #ebe6dd 50%, #ede8e0 100%);
  overflow: hidden;
}

/* Schwebende Hintergrund-Orbs */
.whyus-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,59,69,0.1) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: orbFloat 12s ease-in-out infinite;
  pointer-events: none;
}
.whyus-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,64,86,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 16s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.whyus-content { display: flex; flex-direction: column; gap: 32px; }
.whyus-content h2 { margin-bottom: 4px; color: var(--text-primary); }
.whyus-content > p { color: var(--text-secondary); }
.whyus-section .section-badge {
  background: rgba(142,59,69,0.08);
  border-color: rgba(142,59,69,0.2);
  color: #8e3b45;
}

.feature-list { display: flex; flex-direction: column; gap: 16px; }

.feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(176,170,154,0.35);
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, box-shadow 0.35s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(46,64,86,0.06);
}

/* Linker Akzentstreifen */
.feature-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #8e3b45, #2e4056);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

/* Shimmer auf hover */
.feature-item::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(142,59,69,0.04), transparent);
  transform: skewX(-15deg);
  transition: none;
}

.feature-item:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.95);
  border-color: rgba(142,59,69,0.3);
  box-shadow: -4px 4px 24px rgba(142,59,69,0.1), 0 8px 32px rgba(46,64,86,0.1);
}
.feature-item:hover::before { transform: scaleY(1); }
.feature-item:hover::after {
  animation: featureShimmer 0.6s ease forwards;
}
@keyframes featureShimmer {
  to { left: 140%; }
}

.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(142,59,69,0.1);
  color: #8e3b45;
  border: 1px solid rgba(142,59,69,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(142,59,69,0.18);
  box-shadow: 0 0 16px rgba(142,59,69,0.3);
}

/* ---- Feature Icon Animationen ---- */

/* Blitz: zuckt */
.feature-item:nth-child(1) .feature-icon svg {
  animation: boltZap 2.5s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes boltZap {
  0%, 80%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  85%            { transform: scale(1.25) rotate(-8deg); opacity: 0.7; }
  90%            { transform: scale(0.9) rotate(6deg); opacity: 1; }
  95%            { transform: scale(1.15) rotate(-4deg); }
}

/* Medaille: dreht sich langsam */
.feature-item:nth-child(2) .feature-icon svg {
  animation: medalSpin 4s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes medalSpin {
  0%, 100% { transform: rotateY(0deg); }
  50%       { transform: rotateY(180deg); }
}

/* Preisschild: wippt */
.feature-item:nth-child(3) .feature-icon svg {
  animation: tagSwing 3s ease-in-out infinite;
  transform-origin: top right;
}
@keyframes tagSwing {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-12deg); }
  75%       { transform: rotate(10deg); }
}

/* Monitor: pulsiert */
.feature-item:nth-child(4) .feature-icon svg {
  animation: monitorPulse 2s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes monitorPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.8; }
}

.feature-text { flex: 1; }
.feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.feature-item:hover .feature-text h4 { color: #8e3b45; }
.feature-text p { font-size: 0.84rem; line-height: 1.6; color: var(--text-secondary); }

/* ---- Stats Card ---- */
.whyus-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats-card-big {
  background: linear-gradient(135deg, #2e4056 0%, #1e2d42 50%, #3a1e28 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(46,64,86,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.stats-card-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(46,64,86,0.4), 0 0 40px rgba(142,59,69,0.15);
}

/* Leuchtende Kugel oben rechts */
.stats-card-big::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,59,69,0.35) 0%, transparent 70%);
  top: -80px; right: -80px;
  animation: statsBlobPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.stats-card-big::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,138,191,0.2) 0%, transparent 70%);
  bottom: -40px; left: -40px;
  animation: statsBlobPulse 6s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes statsBlobPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.stats-card-big .section-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  position: relative; z-index: 1;
}
.stats-card-big h3 {
  font-size: 4rem;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
}
.stats-card-big > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; position: relative; z-index: 1; }

.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  position: relative; z-index: 1;
}

.mini-stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.mini-stat:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(142,59,69,0.4);
  transform: scale(1.04);
}

.mini-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mini-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Cert Badges */
.cert-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(176,170,154,0.35);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  flex: 1;
  min-width: 140px;
  transition: var(--transition);
  color: #2e4056;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(46,64,86,0.06);
}
.cert-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(142,59,69,0.06), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cert-badge:hover {
  border-color: rgba(142,59,69,0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142,59,69,0.12);
  color: #8e3b45;
}
.cert-badge:hover::before { opacity: 1; }
.cert-badge svg { flex-shrink: 0; color: #8e3b45; position: relative; z-index: 1; }
.cert-badge span { position: relative; z-index: 1; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: linear-gradient(-45deg, #0d1520, #1a2639, #2a1218, #0f1a2e);
  background-size: 400% 400%;
  animation: gradshift 20s ease infinite;
  position: relative;
  overflow: hidden;
}

#testimonials-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.testimonials-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.testimonials-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(142,59,69,0.12) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: orbFloat 14s ease-in-out infinite;
}
.testimonials-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,64,86,0.2) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}

.testimonials-section .section-header { position: relative; z-index: 1; }
.testimonials-section .section-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.testimonials-section h2 { color: white; }

/* Google Rating Block */
.google-rating-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.google-rating-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.google-rating-score {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.google-rating-stars {
  display: flex;
  gap: 6px;
  color: #f59e0b;
}
.google-rating-stars svg { width: 28px; height: 28px; }

.google-rating-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* Marquee Karussell */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 32s linear infinite;
  width: max-content;
}

.testimonial-marquee-track:hover {
  animation-play-state: paused;
}

.testimonial-marquee .testimonial-card {
  width: 420px;
  flex-shrink: 0;
}

@keyframes testimonialScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Großes Anführungszeichen */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 9rem;
  line-height: 1;
  color: rgba(142,59,69,0.22);
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
  z-index: 0;
}

/* Subtiler Glanz oben */
.testimonial-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(142,59,69,0.45);
  box-shadow: 0 0 60px rgba(142,59,69,0.2), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-6px) scale(1.01);
}

.stars { display: flex; gap: 3px; color: #f59e0b; position: relative; z-index: 1; }
.stars svg { width: 16px; height: 16px; }

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8e3b45, #2e4056);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--glow-red);
}

.author-name { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.author-city { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ============================================
   CTA BANNER – DARK PREMIUM
   ============================================ */
@keyframes ctaGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ctaOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(60px, -40px) scale(1.15); }
  66%  { transform: translate(-40px, 50px) scale(0.9); }
}
@keyframes ctaOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-70px, 40px) scale(1.2); }
  70%  { transform: translate(50px, -30px) scale(0.85); }
}
@keyframes ctaOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, 60px) scale(1.1); }
}
@keyframes liveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.4; transform: scale(0.7); }
}
@keyframes badgeRingPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes ctaBtnShine {
  0%   { left: -80%; }
  100% { left: 130%; }
}
@keyframes phoneDotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  50%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f0ede6 0%, #ebe6dd 40%, #f5f2ec 70%, #ede8e0 100%);
  background-size: 300% 300%;
  animation: ctaGradientShift 14s ease infinite;
}

/* Canvas */
.cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Grid overlay */
.cta-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(46,64,86,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,64,86,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,64,86,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: ctaOrb1 14s ease-in-out infinite;
}
.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(142,59,69,0.1) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: ctaOrb2 18s ease-in-out infinite;
}
.cta-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(176,170,154,0.18) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  animation: ctaOrb3 10s ease-in-out infinite;
}

/* Inner */
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #2e4056;
  line-height: 1.15;
}
.cta-inner p {
  color: var(--text-secondary);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Badge */
.cta-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cta-badge-ring {
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 1.5px solid rgba(46,64,86,0.25);
  animation: badgeRingPulse 2.5s ease-out infinite;
}
.cta-badge {
  background: rgba(255,255,255,0.7) !important;
  border-color: rgba(46,64,86,0.15) !important;
  color: var(--text-primary) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.cta-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: liveDot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Text gradient override for light bg */
.cta-inner .text-gradient {
  background: linear-gradient(135deg, #2e4056 0%, #8e3b45 50%, #2e4056 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaGradientShift 4s ease infinite;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #8e3b45, #c04f5c) !important;
  box-shadow: 0 4px 30px rgba(142,59,69,0.5), 0 0 0 1px rgba(142,59,69,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 40px rgba(142,59,69,0.7), 0 0 0 1px rgba(142,59,69,0.5) !important;
}
.cta-btn-shine {
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  animation: ctaBtnShine 3s ease-in-out infinite;
}
.cta-btn-glass {
  background: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(46,64,86,0.2) !important;
  color: #2e4056 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s !important;
}
.cta-btn-glass:hover {
  background: rgba(255,255,255,0.85) !important;
  border-color: rgba(46,64,86,0.4) !important;
  transform: translateY(-3px) !important;
}

/* Phone */
.cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 10px 20px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(46,64,86,0.12);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.cta-phone-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: phoneDotPulse 2s ease-in-out infinite;
}
.cta-phone a {
  color: #2e4056;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.cta-phone a:hover { color: #8e3b45; }
.cta-phone-sep { color: rgba(46,64,86,0.25); }

/* Trust row */
.cta-trust-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -4px;
}
.cta-trust-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #2e4056;
  color: white;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-accent { color: #e8a0a8; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.6); }

.social-links { display: flex; gap: 10px; margin-top: 8px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}

.social-link:hover {
  background: rgba(142,59,69,0.2);
  border-color: rgba(142,59,69,0.4);
  color: #e8a0a8;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover { color: white; transform: translateX(4px); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}

.contact-item .icon {
  font-size: 1rem;
  width: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   PAGE HERO (subpages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-bottom: 1px solid rgba(176,170,154,0.3);
  color: var(--text-primary);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(46,64,86,0.05), transparent 60%),
              radial-gradient(ellipse at 80% 40%, rgba(142,59,69,0.04), transparent 60%);
}

.page-hero h1 { color: #2e4056; margin-bottom: 16px; }
.page-hero p { color: var(--text-secondary); font-size: 1.1rem; max-width: 600px; }

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent-primary); }
.breadcrumb span { color: var(--text-muted); }

/* Page hero section badge */
.page-hero .section-badge {
  background: rgba(46,64,86,0.07);
  border-color: rgba(46,64,86,0.15);
  color: var(--text-primary);
}

/* Page hero text-gradient on dark bg */
.page-hero .text-gradient {
  background: linear-gradient(135deg, #edebe3, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   LEISTUNGEN PAGE – REDESIGN
   ============================================ */

/* --- Hero --- */
@keyframes leistHeroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.leist-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: linear-gradient(135deg, #0f1e30 0%, #1a2d42 40%, #1c1520 100%);
  overflow: hidden;
}
.leist-hero-orb-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,64,86,0.5) 0%, transparent 70%);
  top: -150px; left: -100px;
  filter: blur(70px);
  pointer-events: none;
}
.leist-hero-orb-2 {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,59,69,0.35) 0%, transparent 70%);
  bottom: -80px; right: 10%;
  filter: blur(70px);
  pointer-events: none;
}
.leist-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.leist-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.breadcrumb-light a { color: rgba(255,255,255,0.5); }
.breadcrumb-light span { color: rgba(255,255,255,0.3); }
.leist-hero-badge {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.85) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.leist-hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
  margin: 20px 0 16px;
}
.leist-hero-gradient {
  background: linear-gradient(135deg, #b0aa9a, #e8a0a8, #b0aa9a);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaGradientShift 4s ease infinite;
}
.leist-hero-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.leist-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}
.leist-hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.leist-hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.leist-hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
}
.leist-hero-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.leist-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  backdrop-filter: blur(6px);
}
.leist-tab-pill:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.leist-hero-visual { display: flex; justify-content: center; align-items: center; }
.leist-hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.leist-hero-img {
  width: 100%;
  animation: leistHeroFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}
.leist-hero-float-badge {
  position: absolute;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,64,86,0.9);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.leist-hero-float-badge svg { color: #4ade80; }

/* --- Sticky Tabs --- */
.leist-sticky-tabs {
  position: sticky;
  top: var(--nav-height);
  z-index: 90;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.leist-sticky-tabs-inner {
  display: flex;
  gap: 0;
}
.leist-sticky-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.leist-sticky-tab:hover { color: var(--text-primary); }
.leist-sticky-tab.active {
  color: #2e4056;
  border-bottom-color: #2e4056;
  font-weight: 600;
}

/* --- Sections --- */
.leist-section {
  padding: 96px 0;
}
.leist-section--alt {
  background: linear-gradient(135deg, #f5f3ef 0%, #eeebe4 100%);
}
.leist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.leist-layout--reversed .leist-visual { order: 2; }
.leist-layout--reversed .leist-content { order: 1; }

/* Visual */
.leist-visual-wrap {
  position: relative;
}
.leist-illustration {
  width: 100%;
  max-width: 460px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(46,64,86,0.07);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.08));
}
.leist-area-tag {
  position: absolute;
  bottom: -12px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.leist-area-tag--navy { background: #2e4056; color: rgba(255,255,255,0.9); }
.leist-area-tag--red  { background: #8e3b45; color: rgba(255,255,255,0.9); }
.leist-area-tag--beige { background: #b0aa9a; color: #2e4056; }

/* Content */
.leist-area-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.leist-area-label--navy { color: #2e4056; }
.leist-area-label--red  { color: #8e3b45; }
.leist-area-label--beige { color: #8a8070; }

.leist-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.leist-lead {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

/* Cards */
.leist-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.leist-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.leist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  border-color: var(--border-hover);
}
.leist-section--alt .leist-card { background: #fff; }
.leist-section--alt .leist-illustration { border-color: rgba(142,59,69,0.1); }
.leist-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.leist-card-icon--navy { background: rgba(46,64,86,0.08); color: #2e4056; }
.leist-card-icon--red  { background: rgba(142,59,69,0.08); color: #8e3b45; }
.leist-card-icon--beige { background: rgba(176,170,154,0.2); color: #6b6356; }
.leist-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}
.leist-card p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* --- Process Section --- */
.leist-process {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #0f1e30 0%, #1a2d42 50%, #1c1a2e 100%);
  overflow: hidden;
}
.leist-process-orb-1 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,64,86,0.5) 0%, transparent 70%);
  top: -120px; left: -80px;
  filter: blur(60px);
  pointer-events: none;
}
.leist-process-orb-2 {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,59,69,0.3) 0%, transparent 70%);
  bottom: -80px; right: -60px;
  filter: blur(60px);
  pointer-events: none;
}
.leist-process-badge {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.85) !important;
}
.leist-process-gradient {
  background: linear-gradient(135deg, #b0aa9a, #e8a0a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.leist-process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.leist-process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.leist-process-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.leist-process-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  margin: 0 auto 16px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.leist-process-step:hover .leist-process-icon {
  background: rgba(142,59,69,0.25);
  border-color: rgba(142,59,69,0.4);
  transform: translateY(-4px);
}
.leist-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.leist-process-step p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}
.leist-process-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
  margin-top: 48px;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .leist-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .leist-hero-visual { display: none; }
  .leist-layout { grid-template-columns: 1fr; gap: 48px; }
  .leist-layout--reversed .leist-visual { order: 0; }
  .leist-layout--reversed .leist-content { order: 0; }
  .leist-process-steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .leist-process-connector { display: none; }
  .leist-process-step { flex: 0 1 200px; }
}
@media (max-width: 768px) {
  .leist-hero { padding: calc(var(--nav-height) + 48px) 0 56px; }
  .leist-hero-stats { gap: 16px; }
  .leist-section { padding: 64px 0; }
  .leist-cards { grid-template-columns: 1fr; }
  .leist-sticky-tab { padding: 13px 16px; font-size: 0.82rem; }
  .leist-process { padding: 64px 0; }
  .leist-process-steps { gap: 24px; }
  .leist-process-step { flex: 0 1 150px; }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(46,64,86,0.1), rgba(142,59,69,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46,64,86,0.05), rgba(142,59,69,0.05));
  opacity: 1;
}

.blog-card-content { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

.blog-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(142,59,69,0.08);
  color: #8e3b45;
  border: 1px solid rgba(142,59,69,0.2);
  width: fit-content;
}

.blog-card h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--text-primary); }
.blog-card p { font-size: 0.85rem; flex: 1; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================
   TERMIN PAGE
   ============================================ */
.termin-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.termin-info { display: flex; flex-direction: column; gap: 24px; }

.termin-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.termin-card h3 { margin-bottom: 16px; font-size: 1.1rem; color: var(--text-primary); }

.contact-list { display: flex; flex-direction: column; gap: 14px; }

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.contact-row .icon-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(142,59,69,0.07);
  border: 1px solid rgba(142,59,69,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-row-label { font-size: 0.78rem; color: var(--text-muted); }
.contact-row-value { font-weight: 500; color: var(--text-primary); }

.termin-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.termin-form-card h2 { font-size: 1.6rem; margin-bottom: 8px; color: var(--text-primary); }
.termin-form-card > p { margin-bottom: 32px; }

/* Form Styles */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #faf8f4;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #8e3b45;
  background: rgba(142,59,69,0.04);
  box-shadow: 0 0 0 3px rgba(142,59,69,0.1);
}

.form-group select option { background: #ffffff; color: var(--text-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }

.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 { font-size: 1.5rem; margin: 40px 0 14px; color: var(--text-primary); }
.legal-content h3 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--text-secondary); }
.legal-content p { margin-bottom: 14px; font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content li { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 6px; list-style: disc; }
.legal-content a { color: #8e3b45; }
.legal-content a:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.team-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.team-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  box-shadow: var(--glow-red);
}

.team-card h3 { font-size: 1rem; margin-bottom: 4px; color: var(--text-primary); }
.team-card .role { font-size: 0.82rem; color: #8e3b45; font-weight: 500; margin-bottom: 12px; }
.team-card p { font-size: 0.82rem; }

.timeline { position: relative; display: flex; flex-direction: column; gap: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #2e4056, #8e3b45);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding: 0 0 40px 60px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(142,59,69,0.4);
}

.timeline-year {
  font-size: 0.8rem;
  color: #8e3b45;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.timeline-item h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--text-primary); }
.timeline-item p { font-size: 0.84rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE – TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { min-height: 380px; }
  .portrait-frame { border-radius: 20px; max-width: 380px; margin: 0 auto; }
  .portrait-img { height: 380px; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .hero-card { flex: 1; min-width: 200px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .whyus-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .termin-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ============================================
   RESPONSIVE – MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* ---- Navigation ---- */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* ---- Allgemein ---- */
  section { padding: 56px 0; }
  .section-header { padding: 0 20px; margin-bottom: 40px; }
  .container { padding: 0 20px; }

  /* ---- Hero ---- */
  .hero { padding: calc(var(--nav-height) + 72px) 0 100px; min-height: 100svh; }
  .hero-inner {
    gap: 28px;
    text-align: center;
    padding: 0 20px;
  }
  .hero-content { align-items: center; gap: 20px; }
  .hero-badge { align-self: center; font-size: 0.78rem; }
  .hero-title-main { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-title-sub { font-size: 0.9rem; }
  .hero-subtitle { max-width: 100%; font-size: 0.95rem; }
  .hero-cta { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero-cta .btn-lg { padding: 14px 24px; font-size: 0.95rem; }
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 28px;
    padding-top: 16px;
  }
  .stat { align-items: center; }
  .stat-number { font-size: 1.8rem; }

  /* Portrait – zentriert, unten in der Hero Section */
  .hero-portrait {
    min-height: unset;
    order: 1;
    align-items: center;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .portrait-accents { display: none; }
  .portrait-frame {
    max-width: 300px;
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0 16px 50px rgba(0,0,0,0.4);
  }
  .portrait-img { height: 360px; object-position: top center; }
  .portrait-label { padding: 10px 12px; bottom: 12px; left: 12px; right: 12px; }
  .portrait-label-name { font-size: 0.88rem; }
  .portrait-label-role { font-size: 0.62rem; }
  .portrait-label-icon { width: 26px; height: 26px; }
  .portrait-guarantee {
    font-size: 0.72rem;
    padding: 6px 14px;
    margin-top: 10px;
  }

  /* Slider Controls & Caption – auf Mobile ausblenden */
  .slide-caption { display: none; }
  .slider-controls { display: none; }
  .scroll-indicator { display: none; }

  /* ---- Ticker ---- */
  .ticker-item { padding: 0 24px; font-size: 0.68rem; }

  /* ---- Services ---- */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  /* ---- Why Us ---- */
  .whyus-content { gap: 24px; }
  .whyus-content h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .feature-item { padding: 18px 20px; gap: 14px; }
  .feature-icon { width: 40px; height: 40px; flex-shrink: 0; }
  .stats-card-big { padding: 28px 24px; }
  .stats-card-big h3 { font-size: 3rem; }
  .mini-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mini-stat { padding: 14px 10px; }
  .mini-stat-num { font-size: 1.35rem; }
  .cert-badges { justify-content: center; }

  /* ---- Infographic ---- */
  .infographic-section { padding: 56px 0; }
  .infographic-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 36px;
  }
  .ring-wrap { width: 120px; height: 120px; }
  .ring-svg { width: 120px; height: 120px; }
  .ring-number { font-size: 1.7rem; }
  .ring-label { font-size: 0.75rem; }
  .ring-sublabel { font-size: 0.65rem; }

  /* ---- Testimonials ---- */
  .testimonials-section { padding: 56px 0; }
  .google-rating-score { font-size: 3.5rem; }
  .google-rating-stars svg { width: 22px; height: 22px; }
  .testimonial-marquee .testimonial-card { width: 290px; padding: 24px; }
  .testimonial-marquee { -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%); }

  /* ---- CTA Section ---- */
  .cta-section { padding: 72px 0; }
  .cta-inner h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-orb-1 { width: 280px; height: 280px; top: -80px; left: -80px; }
  .cta-orb-2 { width: 240px; height: 240px; bottom: -60px; right: -60px; }
  .cta-orb-3 { display: none; }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .cta-phone {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 6px;
    font-size: 0.9rem;
  }
  .cta-trust-row { gap: 14px; }
  .cta-trust-item { font-size: 0.8rem; }

  /* ---- Footer ---- */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* ---- Forms ---- */
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }

  /* ---- Chatbot ---- */
  .chatbot-widget { bottom: 16px; right: 16px; }
  .chatbot-window {
    width: min(320px, calc(100vw - 32px));
    right: 0;
    max-height: 460px;
  }
}

/* ============================================
   RESPONSIVE – KLEINES HANDY (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* ---- Hero ---- */
  .hero { padding: var(--nav-height) 0 90px; }
  .hero-inner { padding: 0 16px; gap: 22px; }
  .hero-title-main { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-lg { justify-content: center; text-align: center; }
  .hero-stats { gap: 12px 24px; }
  .stat-number { font-size: 1.6rem; }

  /* Portrait kleiner */
  .portrait-frame { max-width: 180px; }
  .portrait-img { height: 230px; }
  .portrait-label { padding: 8px 10px; bottom: 10px; left: 10px; right: 10px; }

  /* ---- Services ---- */
  .service-card { padding: 24px 18px; }

  /* ---- Infographic – 2 Spalten bleibt, aber Ring kleiner ---- */
  .infographic-grid { gap: 12px; }
  .ring-wrap { width: 100px; height: 100px; }
  .ring-svg { width: 100px; height: 100px; }
  .ring-number { font-size: 1.4rem; }
  .ring-label { font-size: 0.68rem; letter-spacing: 0.03em; }
  .ring-sublabel { display: none; }

  /* ---- WhyUs ---- */
  .stats-card-big { padding: 20px 16px; }
  .mini-stat { padding: 10px 8px; }
  .mini-stat-num { font-size: 1.2rem; }
  .mini-stat-label { font-size: 0.65rem; }
  .cert-badge { min-width: 120px; font-size: 0.76rem; padding: 10px 12px; }

  /* ---- Feature Items ---- */
  .feature-item { padding: 16px; gap: 12px; }
  .feature-icon { width: 36px; height: 36px; }
  .feature-text h4 { font-size: 0.88rem; }
  .feature-text p { font-size: 0.8rem; }

  /* ---- Testimonials ---- */
  .testimonial-marquee .testimonial-card { width: 260px; padding: 20px; }
  .testimonial-text { font-size: 0.85rem; }

  /* ---- CTA ---- */
  .cta-buttons .btn { max-width: 100%; }

  /* ---- Chatbot ---- */
  .chatbot-widget { bottom: 12px; right: 12px; }
  .chatbot-window {
    width: calc(100vw - 24px);
    right: -12px;
    max-height: 400px;
  }
  .chatbot-toggle { width: 50px; height: 50px; }
  .chatbot-quick-replies { gap: 6px; }
  .chatbot-quick-replies button { font-size: 0.78rem; padding: 6px 10px; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, #2e4056, #8e3b45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 0;
}

/* ============================================
   HERO IMAGE SLIDER
   ============================================ */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.slide.active { opacity: 1; }

.slide-1 { background-image: url('../assets/slider/bad-1.jpg.png'); }
.slide-2 { background-image: url('../assets/slider/bad-2.jpg.png'); }
.slide-3 { background-image: url('../assets/slider/bad-3.jpg.png'); }

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(46, 64, 86, 0.52) 0%,
    rgba(30, 46, 66, 0.42) 50%,
    rgba(46, 64, 86, 0.50) 100%
  );
}

/* Canvas & blobs above overlay */
#hero-canvas { z-index: 2; opacity: 0.25; }
.hero-blobs { z-index: 2; }
.blob.visible { opacity: 0.06; }

/* Hero content */
.hero-inner { z-index: 3; position: relative; }

/* Slide Caption */
.slide-caption {
  position: absolute;
  bottom: 138px;
  right: 60px;
  z-index: 4;
  text-align: right;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slide-caption.visible { opacity: 1; transform: translateY(0); }

.slide-caption-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
  font-weight: 500;
}

.slide-caption-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.slider-btn:hover {
  background: rgba(142, 59, 69, 0.45);
  border-color: rgba(142, 59, 69, 0.65);
  transform: scale(1.1);
  color: #fff;
}

.slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: #8e3b45;
  box-shadow: 0 0 12px rgba(142, 59, 69, 0.55);
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

/* Scroll indicator above controls */
.scroll-indicator { z-index: 6; bottom: 28px; }


/* Success message */
.success-message {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #16a34a;
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 10px;
}
.success-message.show { display: flex; }

/* ============================================
   INFOGRAPHIC SECTION
   ============================================ */
.infographic-section {
  background: linear-gradient(-45deg, #1a2030, #2e4056, #38202e, #1e2a40);
  background-size: 400% 400%;
  animation: gradshift 22s ease infinite;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.infographic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(142,59,69,0.12), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(46,64,86,0.15), transparent 60%);
  pointer-events: none;
}
.infographic-section .section-header h2 { color: white; }
.infographic-section .section-header p { color: rgba(255,255,255,0.65); }
.infographic-section .section-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
}
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.ring-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.ring-stat.visible { opacity: 1; transform: translateY(0); }
.ring-stat:nth-child(2) { transition-delay: 0.15s; }
.ring-stat:nth-child(3) { transition-delay: 0.3s; }
.ring-stat:nth-child(4) { transition-delay: 0.45s; }
.ring-wrap {
  position: relative;
  width: 140px;
  height: 140px;
}
.ring-svg {
  width: 140px;
  height: 140px;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: rgba(255,255,255,0.08);
  stroke-width: 8;
}
.ring-progress {
  fill: none;
  stroke: #8e3b45;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(142,59,69,0.7));
}
.ring-progress.active { stroke-dashoffset: var(--dash-offset); }
.ring-progress.accent2 { stroke: #5a8ab8; filter: drop-shadow(0 0 8px rgba(90,138,184,0.7)); }
.ring-progress.accent3 { stroke: #5ab878; filter: drop-shadow(0 0 8px rgba(90,184,120,0.7)); }
.ring-progress.accent4 { stroke: #b8a05a; filter: drop-shadow(0 0 8px rgba(184,160,90,0.7)); }
.ring-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.ring-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ring-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.ring-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.ring-sublabel {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}
/* Glowing divider line */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(142,59,69,0.6), rgba(46,64,86,0.4), rgba(142,59,69,0.6), transparent);
  margin: 0;
  animation: glow-line 3s ease-in-out infinite;
}

/* ============================================
   CHATBOT WIDGET
   ============================================ */
.chatbot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}
.chatbot-toggle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8e3b45, #b04e5a);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(142,59,69,0.45), 0 0 0 0 rgba(142,59,69,0.4);
  animation: glow-pulse 3s ease-in-out infinite;
  transition: transform 0.2s ease;
  position: relative;
  color: white;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: #5ed08a;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}
.chatbot-window {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 340px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(46,64,86,0.1);
  overflow: hidden;
  display: none;
  flex-direction: column;
  max-height: 520px;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: linear-gradient(135deg, #2e4056, #8e3b45);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.chatbot-name { color: white; font-weight: 600; font-size: 0.9rem; }
.chatbot-status { color: rgba(255,255,255,0.7); font-size: 0.72rem; }
.chatbot-status::before { content: '● '; color: #5ed08a; }
.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}
.chatbot-close:hover { color: white; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f8f6f1;
  max-height: 320px;
}
.chatbot-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.chatbot-msg.bot {
  background: white;
  color: #2e4056;
  border: 1px solid rgba(176,170,154,0.3);
  border-bottom-left-radius: 3px;
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.chatbot-msg.user {
  background: linear-gradient(135deg, #2e4056, #8e3b45);
  color: white;
  border-bottom-right-radius: 3px;
  align-self: flex-end;
}
.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chatbot-quick-replies button {
  background: white;
  border: 1.5px solid rgba(142,59,69,0.3);
  color: #8e3b45;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.chatbot-quick-replies button:hover {
  background: #8e3b45;
  color: white;
  border-color: #8e3b45;
}
.chatbot-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 10px 14px;
  background: white;
  border-radius: 12px;
  border-bottom-left-radius: 3px;
  border: 1px solid rgba(176,170,154,0.3);
  width: fit-content;
  align-self: flex-start;
}
.chatbot-typing span {
  width: 6px;
  height: 6px;
  background: #b0aa9a;
  border-radius: 50%;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.2s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}
.chatbot-input-area {
  display: flex;
  padding: 12px 14px;
  gap: 8px;
  background: white;
  border-top: 1px solid rgba(176,170,154,0.25);
}
.chatbot-input-area input {
  flex: 1;
  border: 1.5px solid rgba(176,170,154,0.4);
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.82rem;
  outline: none;
  color: #2e4056;
  font-family: 'Inter', sans-serif;
  background: #f8f6f1;
  transition: border-color 0.2s;
}
.chatbot-input-area input:focus { border-color: #8e3b45; }
.chatbot-input-area button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8e3b45, #b04e5a);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.chatbot-input-area button:hover { transform: scale(1.08); opacity: 0.9; }

@media (max-width: 480px) {
  .chatbot-window { width: calc(100vw - 40px); right: 0; }
  .chatbot-widget { bottom: 16px; right: 16px; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
}
