﻿/* ============================================================
   HRTIME LÖSUNGSSEITEN - LÖSUNGSSEITE CSS
   Version: 1.0
   Datum: Februar 2026
   Prefix: hrt-ls- (Lösungsseiten-Global)
   Selektionen: 1–9 (Komplett)
   
   Farben:
   - Primary Dark: #0B1933
   - Primary Blue: #5272C5
   - Accent Orange: #E65100
   - Light BG: #f0f0ef
   - Light Blue: #D4E3F0
   - Warm Accent: #FFD2A9
   
   Breakpoints: 1024px, 768px, 480px, 360px
   ============================================================ */

/* ===========================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   =========================================== */
:root {
  --hrt-ls-blue: #5272C5;
  --hrt-ls-blue-light: rgba(82, 114, 197, 0.1);
  --hrt-ls-blue-medium: rgba(82, 114, 197, 0.15);
  --hrt-ls-orange: #E65100;
  --hrt-ls-orange-light: rgba(230, 81, 0, 0.1);
  --hrt-ls-orange-pale: #FFD2A9;
  --hrt-ls-dark: #0B1933;
  --hrt-ls-dark-mid: #1A2B44;
  --hrt-ls-gray: #666666;
  --hrt-ls-gray-light: #f0f0ef;
  --hrt-ls-white: #ffffff;
  --hrt-ls-gradient-bg: linear-gradient(180deg, #f0f0ef 0%, #D4E3F0 100%);
  --hrt-ls-gradient-dark: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%);
  --hrt-ls-gradient-blue: linear-gradient(135deg, #5272C5 0%, #0B1933 100%);
  --hrt-ls-gradient-orange: linear-gradient(135deg, #E65100, #D84315);
  --hrt-ls-shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
  --hrt-ls-shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
  --hrt-ls-shadow-orange: 0 8px 25px rgba(230, 81, 0, 0.35);
  --hrt-ls-radius: 20px;
  --hrt-ls-radius-sm: 12px;
  --hrt-ls-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --hrt-ls-font: 'Montserrat', sans-serif;
}


/* ===========================================
   SHARED COMPONENTS
   =========================================== */

/* Section Header Pattern */
.hrt-ls-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.hrt-ls-section-header h2 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--hrt-ls-dark);
  line-height: 1.25;
  margin-bottom: 15px;
}

.hrt-ls-section-header h2 .hrt-ls-text-orange {
  color: var(--hrt-ls-orange);
}

.hrt-ls-section-header h2 .hrt-ls-text-white {
  color: var(--hrt-ls-white);
}

.hrt-ls-section-intro {
  font-family: var(--hrt-ls-font);
  font-size: 1.05rem;
  color: var(--hrt-ls-gray);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Badge Pattern */
.hrt-ls-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hrt-ls-font);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hrt-ls-blue);
  margin-bottom: 18px;
  background: var(--hrt-ls-blue-light);
  padding: 8px 18px;
  border-radius: 30px;
}

.hrt-ls-badge--dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--hrt-ls-orange-pale);
}

/* Green dot for dark backgrounds */
.hrt-ls-badge-dot--green {
  background-color: #22c55e;
  /* Hero Green */
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.3);
}

.hrt-ls-badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--hrt-ls-orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(230, 81, 0, 0.2);
  animation: hrt-ls-dot-pulse 2s ease-in-out infinite;
}

/* Section Divider (Animated – HRTime Standard) */
.hrt-ls-divider {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, #E65100 0%, #FF8A50 50%, #E65100 100%);
  border-radius: 2px;
  margin: 0 auto 25px;
  position: relative;
  overflow: hidden;
  animation: hrt-ls-dividerPulse 2s ease-in-out infinite;
}

.hrt-ls-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: hrt-ls-dividerShine 3s ease-in-out infinite;
}

@keyframes hrt-ls-dividerPulse {

  0%,
  100% {
    transform: scaleX(1);
    opacity: 1;
  }

  50% {
    transform: scaleX(1.05);
    opacity: 0.9;
  }
}

@keyframes hrt-ls-dividerShine {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.hrt-ls-divider--light {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
}

.hrt-ls-divider--light::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.hrt-ls-divider--left {
  margin: 0 0 25px;
}

/* Animate on Scroll */
.hrt-ls-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hrt-ls-animate.hrt-ls-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Orange CTA Button */
.hrt-ls-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--hrt-ls-gradient-orange);
  color: #ffffff !important;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--hrt-ls-shadow-orange);
  transition: var(--hrt-ls-transition);
  position: relative;
  overflow: hidden;
}

.hrt-ls-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.5s ease;
}

.hrt-ls-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 35px rgba(230, 81, 0, 0.45);
  color: #ffffff !important;
  text-decoration: none !important;
}

.hrt-ls-cta-btn:hover::before {
  left: 100%;
}

/* Ghost Button */
.hrt-ls-cta-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--hrt-ls-white);
  box-shadow: none;
}

.hrt-ls-cta-ghost:hover {
  border-color: var(--hrt-ls-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}


/* ============================================================
   SELEKTION 1: HERO (Orange Gradient – HRTime Standard)
   Badge, H1, Divider, Subtitle, Benefit Pills
   ============================================================ */
.hrt-ls-hero {
  position: relative;
  background: var(--hrt-ls-gradient-orange);
  padding: 120px 20px 100px;
  overflow: hidden;
  min-height: 550px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Geschwungene Trennlinie unten */
.hrt-ls-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

/* Radial Glow Effekt */
.hrt-ls-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Shapes */
.hrt-ls-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 8;
}

.hrt-ls-hero-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: hrt-ls-heroFloat 15s ease-in-out infinite;
}

.hrt-ls-hero-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -100px;
  animation-delay: 0s;
}

.hrt-ls-hero-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -50px;
  animation-delay: -5s;
}

.hrt-ls-hero-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: -10s;
}

.hrt-ls-hero-shape:nth-child(4) {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 20%;
  animation-delay: -7s;
}

@keyframes hrt-ls-heroFloat {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(40px, -40px) rotate(5deg);
  }

  50% {
    transform: translate(-30px, 30px) rotate(-5deg);
  }

  75% {
    transform: translate(20px, 20px) rotate(3deg);
  }
}

/* Hero Content */
.hrt-ls-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Hero Badge (Glassmorphism) */
.hrt-ls-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  font-family: var(--hrt-ls-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hrt-ls-hero-badge-dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: hrt-ls-dot-pulse 2s infinite;
  box-shadow: 0 0 10px #22c55e;
}

/* Hero H1 */
.hrt-ls-hero h1 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  line-height: 1.2;
}

/* Hero Divider (Weiß auf Orange) */
.hrt-ls-hero-divider {
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
  margin: 0 auto 30px auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  animation: hrt-ls-dividerPulse 2s ease-in-out infinite;
}

.hrt-ls-hero-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: hrt-ls-dividerShine 3s ease-in-out infinite;
}

/* Hero Subtitle */
.hrt-ls-hero-subtitle {
  font-family: var(--hrt-ls-font);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 25px auto;
}

/* Benefit Pills */
.hrt-ls-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 0;
}

.hrt-ls-benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: white;
  font-family: var(--hrt-ls-font);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hrt-ls-benefit-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.hrt-ls-benefit-pill i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Benefit Pills: 3 oben + 2 unten (max-width erzwingt Umbruch) */
.hrt-ls-hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 750px;
  margin: 25px auto 25px auto;
}


/* ============================================================
   SELEKTION 2: STATISTICS BAR (Floating Card)
   4er Grid mit animierten Zahlen-Countern
   ============================================================ */
.hrt-ls-stats-bar {
  max-width: 1100px;
  margin: -80px auto 80px;
  padding: 50px 40px;
  background: white;
  border-radius: var(--hrt-ls-radius);
  box-shadow: var(--hrt-ls-shadow-medium);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 20;
}

.hrt-ls-stat {
  text-align: center;
  padding: 10px;
  position: relative;
}

.hrt-ls-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(82, 114, 197, 0.3), transparent);
}

.hrt-ls-stat-number {
  font-family: var(--hrt-ls-font);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--hrt-ls-blue);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.hrt-ls-stat-number .hrt-ls-suffix {
  font-size: 2rem;
  color: var(--hrt-ls-orange);
}

.hrt-ls-stat-label {
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 500;
  color: var(--hrt-ls-gray);
  margin: 0;
}


/* ============================================================
   SELEKTION 3: WARUM ZEITERFASSUNG UNVERZICHTBAR
   Image + Text + Benefits Checklist
   ============================================================ */
.hrt-ls-why {
  background: var(--hrt-ls-white);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle Background Pattern */
.hrt-ls-why::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 114, 197, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hrt-ls-why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hrt-ls-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  margin-top: 10px;
}

/* Image Side */
.hrt-ls-why-image {
  position: relative;
}

.hrt-ls-why-image img {
  width: 100%;
  height: auto;
  border-radius: var(--hrt-ls-radius);
  box-shadow: var(--hrt-ls-shadow-medium);
  transition: var(--hrt-ls-transition);
  transform: scale(0.82);
  transform-origin: top center;
}

.hrt-ls-why-image img:hover {
  transform: scale(0.82) translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Floating Badge on Image */
.hrt-ls-why-image-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  bottom: auto;
  right: auto;
  background: var(--hrt-ls-gradient-orange);
  color: white;
  padding: 12px 20px;
  border-radius: var(--hrt-ls-radius-sm);
  font-family: var(--hrt-ls-font);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--hrt-ls-shadow-orange);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hrt-ls-why-image-badge i {
  font-size: 1.1rem;
}

/* Text Side */
.hrt-ls-why-text h2 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--hrt-ls-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.hrt-ls-why-text h2 .hrt-ls-text-orange {
  color: var(--hrt-ls-orange);
}

/* ============================================================
   WHY SECTION - MODERNISIERTE TEXT-STYLES
   ============================================================ */

/* H3 Subheadline - Dezent als Einleitung */
.hrt-ls-why-text h3 {
  font-family: var(--hrt-ls-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hrt-ls-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* Intro-Textbereich - Zusammengefasst */
.hrt-ls-why-text p {
  font-family: var(--hrt-ls-font);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin-bottom: 0 !important;
}

.hrt-ls-why-text p+p {
  margin-top: 16px !important;
}

.hrt-ls-why-text p:last-of-type {
  margin-bottom: 28px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(82, 114, 197, 0.1);
}

/* ============================================================
   BENEFITS LIST - ELEGANTE VARIANTE (Icon-Quadrate)
   ============================================================ */
.hrt-ls-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hrt-ls-benefits-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--hrt-ls-font);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--hrt-ls-dark);
  padding: 4px 0;
  transition: all 0.3s ease;
}

.hrt-ls-benefits-list li:hover {
  transform: translateX(6px);
}

.hrt-ls-benefits-list li i {
  width: 28px;
  height: 28px;
  background: var(--hrt-ls-orange-light);
  color: var(--hrt-ls-orange);
  font-size: 0.85rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.hrt-ls-benefits-list li:hover i {
  background: var(--hrt-ls-orange);
  color: white;
  transform: scale(1.1);
}


/* ============================================================
   SELEKTION 4: FUNKTIONEN & VORTEILE
   Alternating Image/Text Feature Showcase
   ============================================================ */
.hrt-ls-features {
  background: var(--hrt-ls-gradient-bg);
  padding: 100px 20px;
  position: relative;
}

.hrt-ls-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Feature Row - Alternating Layout */
.hrt-ls-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.hrt-ls-feature-row:last-child {
  margin-bottom: 0;
}

/* Reverse every other row */
.hrt-ls-feature-row--reverse {
  direction: rtl;
}

.hrt-ls-feature-row--reverse>* {
  direction: ltr;
}

/* Feature Image */
.hrt-ls-feature-img {
  position: relative;
}

.hrt-ls-feature-img img {
  width: 100%;
  height: auto;
  border-radius: var(--hrt-ls-radius);
  box-shadow: var(--hrt-ls-shadow-soft);
  transition: var(--hrt-ls-transition);
}

.hrt-ls-feature-img img:hover {
  transform: translateY(-5px);
  box-shadow: var(--hrt-ls-shadow-medium);
}

/* Feature Number Indicator */
.hrt-ls-feature-num {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 48px;
  height: 48px;
  background: var(--hrt-ls-gradient-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hrt-ls-font);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--hrt-ls-shadow-orange);
  z-index: 2;
}

/* Feature Text */
.hrt-ls-feature-text {
  padding: 10px 0;
}

.hrt-ls-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--hrt-ls-font);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--hrt-ls-blue);
  margin-bottom: 12px;
}

.hrt-ls-feature-tag i {
  font-size: 14px;
  color: var(--hrt-ls-orange);
}

.hrt-ls-feature-text h3 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--hrt-ls-dark);
  line-height: 1.3;
  margin-bottom: 18px;
}

.hrt-ls-feature-text p {
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin-bottom: 25px;
}

/* Feature Inline Link */
.hrt-ls-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hrt-ls-font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hrt-ls-orange);
  text-decoration: none;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-feature-link:hover {
  gap: 12px;
  color: #D84315;
}

.hrt-ls-feature-link i {
  transition: var(--hrt-ls-transition);
}


/* ============================================================
   SELEKTION 5: 3 HIGHLIGHT-BOXEN
   "Einfache Zeiterfassung | Lückenlose Doku | Live-Ansicht"
   ============================================================ */
.hrt-ls-highlights {
  background: var(--hrt-ls-dark);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

/* Subtle Glow */
.hrt-ls-highlights::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(82, 114, 197, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hrt-ls-highlights-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hrt-ls-highlights .hrt-ls-section-header h2 {
  color: var(--hrt-ls-white);
}

.hrt-ls-highlights .hrt-ls-section-intro {
  color: rgba(255, 255, 255, 0.75);
}

.hrt-ls-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* Highlight Card */
.hrt-ls-highlight-card {
  background: linear-gradient(135deg, rgba(82, 114, 197, 0.12) 0%, rgba(11, 25, 51, 0.6) 100%);
  border: 1px solid rgba(82, 114, 197, 0.2);
  border-radius: var(--hrt-ls-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--hrt-ls-transition);
  position: relative;
  overflow: hidden;
}

.hrt-ls-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hrt-ls-gradient-orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.hrt-ls-highlight-card:hover::before {
  transform: scaleX(1);
}

.hrt-ls-highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(230, 81, 0, 0.3);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

/* Icon Circle */
.hrt-ls-highlight-icon {
  width: 70px;
  height: 70px;
  background: var(--hrt-ls-gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.3);
}

.hrt-ls-highlight-icon i {
  font-size: 1.6rem;
  color: white;
}

.hrt-ls-highlight-card h3 {
  font-family: var(--hrt-ls-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hrt-ls-white);
  margin-bottom: 15px;
}

.hrt-ls-highlight-card p {
  font-family: var(--hrt-ls-font);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}


/* ============================================================
   SELEKTION 6: GESETZLICHER RAHMEN
   "Wieso ist die digitale Zeiterfassung wichtig?" + 4 Gesetze
   ============================================================ */
.hrt-ls-legal {
  background: var(--hrt-ls-white);
  padding: 100px 20px;
  position: relative;
}

.hrt-ls-legal-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Intro mit Bild */
.hrt-ls-legal-intro {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}

.hrt-ls-legal-intro-text h2 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--hrt-ls-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}

.hrt-ls-text-orange {
  color: var(--hrt-ls-orange);
}

.hrt-ls-legal-intro-text p {
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin-bottom: 1.2em !important;
  /* Reduced to 1x br equivalent */
  display: block;
}

.hrt-ls-legal-intro-text p:last-of-type {
  margin-bottom: 25px !important;
  /* Specific distance to button */
}

.hrt-ls-legal-intro-text h3 {
  font-family: var(--hrt-ls-font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--hrt-ls-dark);
  margin-bottom: 15px;
}

.hrt-ls-legal-img img {
  width: 100%;
  height: auto;
  border-radius: var(--hrt-ls-radius);
  box-shadow: var(--hrt-ls-shadow-soft);
}

/* 6 Gesetzes-Karten (3x2 Grid) */
.hrt-ls-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.hrt-ls-legal-card {
  background: var(--hrt-ls-gradient-dark);
  border-radius: var(--hrt-ls-radius);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--hrt-ls-gradient-orange);
  border-radius: 2px;
}

.hrt-ls-legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(11, 25, 51, 0.4);
}

/* Card Number */
.hrt-ls-legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--hrt-ls-gradient-orange);
  color: white;
  border-radius: 50%;
  font-family: var(--hrt-ls-font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hrt-ls-legal-card h4 {
  font-family: var(--hrt-ls-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hrt-ls-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hrt-ls-legal-card p {
  font-family: var(--hrt-ls-font);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Legal Summary Box */
.hrt-ls-legal-summary {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(82, 114, 197, 0.08) 0%, rgba(212, 227, 240, 0.3) 100%);
  border: 1px solid rgba(82, 114, 197, 0.15);
  border-radius: var(--hrt-ls-radius);
  padding: 30px 35px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.hrt-ls-legal-summary i {
  color: var(--hrt-ls-blue);
  font-size: 1.4rem;
  margin-top: 3px;
  min-width: 24px;
}

.hrt-ls-legal-summary p {
  font-family: var(--hrt-ls-font);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hrt-ls-dark);
}

.hrt-ls-legal-summary strong {
  color: var(--hrt-ls-orange);
}

/* "Für wen ist HRTime geeignet?" Mini-Section */
.hrt-ls-target-audience {
  margin-top: 60px;
  text-align: center;
}

.hrt-ls-target-audience h3 {
  font-family: var(--hrt-ls-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hrt-ls-dark);
  margin-bottom: 25px;
}

.hrt-ls-audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hrt-ls-audience-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hrt-ls-gradient-blue);
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-audience-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 114, 197, 0.3);
}

.hrt-ls-audience-pill i {
  color: var(--hrt-ls-orange-pale);
  font-size: 0.95rem;
}


/* ============================================================
   SELEKTION 7: BRANCHEN
   (Nutzt bestehende .grid-container-branchen aus Style_1.css)
   Wrapper-Sektion für Kontext auf der Lösungsseite
   ============================================================ */
.hrt-ls-branchen {
  background: var(--hrt-ls-gradient-bg);
  padding: 100px 20px;
  position: relative;
}

.hrt-ls-branchen-container {
  max-width: 1340px;
  margin: 0 auto;
}

/* Branchen-Grid Plugin Reset (shortcode output) */
.hrt-ls-branchen .branchen-hero-section-v7 {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Shortcode-Wrapper innerhalb der Branchen-Sektion */
.hrt-ls-branchen .hrtime2-shortcode-wrapper {
  max-width: 100%;
  padding: 0;
}


/* ============================================================
   SELEKTION 6c: PREISE CTA
   Einfacher Textblock mit Buttons – keine Pricing-Karten
   ============================================================ */
.hrt-ls-pricing-cta {
  background: var(--hrt-ls-gradient-bg);
  padding: 80px 20px;
  position: relative;
}

.hrt-ls-pricing-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hrt-ls-pricing-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin: 0 0 25px 0 !important;
}

.hrt-ls-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #E65100;
  border: 2px solid #E65100;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-cta-secondary i {
  color: #E65100;
  transition: color 0.3s ease;
}

.hrt-ls-cta-secondary:hover {
  background: #E65100;
  border-color: #E65100;
  color: white;
  text-decoration: none;
}

.hrt-ls-cta-secondary:hover i {
  color: white;
}

.hrt-ls-pricing-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Neuer Preis-Button (spezifisch für Selektion 6c) */
.hrt-ls-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000 !important;
  border: 2px solid var(--hrt-ls-orange);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
  position: relative;
  overflow: hidden;
}

.hrt-ls-price-btn i {
  color: var(--hrt-ls-orange);
  transition: color 0.3s ease;
}

.hrt-ls-price-btn:hover {
  background: var(--hrt-ls-orange);
  border-color: #ffffff;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.hrt-ls-price-btn:hover i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .hrt-ls-pricing-cta {
    padding: 60px 15px;
  }

  .hrt-ls-pricing-cta-text {
    font-size: 1rem;
  }

  .hrt-ls-pricing-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   SELEKTION 8: FAQ AKKORDEON MIT SCHEMA-MARKUP
   Dunkelblau-Theme, eigene Klassen
   ============================================================ */
.hrt-ls-faq {
  background: var(--hrt-ls-dark);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hrt-ls-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(11, 25, 51, 0.95) 0%, transparent 100%);
  pointer-events: none;
}

.hrt-ls-faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hrt-ls-faq .hrt-ls-section-header h2 {
  color: var(--hrt-ls-white);
}

.hrt-ls-faq .hrt-ls-section-intro {
  color: rgba(255, 255, 255, 0.75);
}

/* FAQ List */
.hrt-ls-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.hrt-ls-faq-item {
  position: relative;
  background: linear-gradient(135deg, #0B1933 0%, #1A2B44 100%) !important;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(11, 25, 51, 0.3);
  z-index: 1;
  overflow: hidden;
  border: none !important;
}

/* Top Gradient Border */
.hrt-ls-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #5272C5 0%, #E65100 50%, #5272C5 100%) !important;
  z-index: 10;
}

.hrt-ls-faq-item:hover {
  box-shadow: 0 12px 40px rgba(11, 25, 51, 0.5);
}

.hrt-ls-faq-item::after {
  display: none !important;
}

/* FAQ Trigger */
.hrt-ls-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.hrt-ls-faq-trigger:hover {
  background: rgba(82, 114, 197, 0.15) !important;
}

.hrt-ls-faq-trigger:focus-visible {
  outline: 3px solid var(--hrt-ls-orange);
  outline-offset: -3px;
}

.hrt-ls-faq-question {
  font-family: var(--hrt-ls-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: white !important;
  line-height: 1.4;
  padding-right: 20px;
  flex: 1;
  max-width: calc(100% - 56px);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* FAQ Icon Circle */
.hrt-ls-faq-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E65100 0%, #D84315 100%) !important;
  border-radius: 50% !important;
  color: white !important;
  font-size: 1.4rem;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hrt-ls-faq-trigger[aria-expanded="true"] .hrt-ls-faq-icon {
  transform: rotate(45deg);
}

/* FAQ Content (Collapsible) */
.hrt-ls-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.hrt-ls-faq-content.hrt-ls-open {
  max-height: 500px;
}

.hrt-ls-faq-content p {
  padding: 0 28px 25px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}

.hrt-ls-faq-content a {
  color: var(--hrt-ls-orange-pale);
  text-decoration: underline;
}

.hrt-ls-faq-content a:hover {
  color: var(--hrt-ls-orange);
}


/* ============================================================
   SELEKTION 9: CTA - ORANGE MIT FLOATING SHAPES
   (Eigene Klassen, gleiches Pattern wie hrsf-cta)
   ============================================================ */
.hrt-ls-cta,
.hrt-kb-cta {
  background: var(--hrt-ls-gradient-orange);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Floating Shapes */
.hrt-ls-cta-shapes,
.hrt-kb-cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hrt-ls-cta-shape,
.hrt-kb-cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hrt-ls-cta-shape:nth-child(1),
.hrt-kb-cta-shape:nth-child(1) {
  width: 400px;
  height: 400px;
  background: white;
  top: -200px;
  right: -100px;
  animation: hrt-ls-float 8s ease-in-out infinite;
}

.hrt-ls-cta-shape:nth-child(2),
.hrt-kb-cta-shape:nth-child(2) {
  width: 250px;
  height: 250px;
  background: white;
  bottom: -100px;
  left: -50px;
  animation: hrt-ls-float 10s ease-in-out infinite reverse;
}

.hrt-ls-cta-shape:nth-child(3),
.hrt-kb-cta-shape:nth-child(3) {
  width: 150px;
  height: 150px;
  background: rgba(255, 210, 169, 0.5);
  top: 40%;
  left: 20%;
  animation: hrt-ls-float 6s ease-in-out infinite;
}

.hrt-ls-cta-container,
.hrt-kb-cta-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hrt-ls-cta .hrt-ls-badge,
.hrt-kb-cta .hrt-kb-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.hrt-ls-cta h2,
.hrt-kb-cta h2 {
  font-family: var(--hrt-ls-font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--hrt-ls-white);
  line-height: 1.25;
  margin-bottom: 15px;
}

.hrt-ls-cta p,
.hrt-kb-cta p {
  font-family: var(--hrt-ls-font);
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px !important;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons */
.hrt-ls-cta-buttons,
.hrt-kb-cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hrt-ls-cta-primary,
.hrt-kb-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--hrt-ls-orange);
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: var(--hrt-ls-transition);
}

.hrt-ls-cta-primary i,
.hrt-kb-cta-primary i {
  color: var(--hrt-ls-orange);
}

.hrt-ls-cta-primary:hover,
.hrt-kb-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  color: var(--hrt-ls-orange);
  text-decoration: none;
}

.hrt-ls-cta-secondary,
.hrt-kb-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-cta-secondary i,
.hrt-kb-cta-secondary i {
  color: white;
}

.hrt-ls-cta-secondary:hover,
.hrt-kb-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  text-decoration: none;
}

.hrt-ls-cta-secondary:hover i,
.hrt-kb-cta-secondary:hover i {
  color: white;
}

/* Preise-Sektion: Eigener Secondary-Button */
.hrt-kb-pricing-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #E65100 !important;
  border: 2px solid #E65100;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
}

.hrt-kb-pricing-cta-btn-secondary i {
  color: #E65100;
  transition: color 0.3s ease;
}

.hrt-kb-pricing-cta-btn-secondary:hover {
  background: #E65100;
  border-color: #E65100;
  color: white !important;
  text-decoration: none;
}

.hrt-kb-pricing-cta-btn-secondary:hover i {
  color: white;
}

/* Trust Badges in CTA */
.hrt-ls-cta-trust,
.hrt-kb-cta-trust {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.hrt-ls-cta-trust-item,
.hrt-kb-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--hrt-ls-font);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.hrt-ls-cta-trust-item i,
.hrt-kb-cta-trust-item i {
  font-size: 1rem;
  color: white;
}


/* ============================================================
   FEATURES GRID V2 - CTA & CONTEXT LINKS
   Synchronisiert mit kleinbetriebe-styles.css
   ============================================================ */

/* CTA Center */
.hrt-ze-cta-center {
  text-align: center;
  margin-bottom: 25px;
}

/* Kontextuelle Links */
.hrt-ze-features__context-links {
  text-align: center !important;
  margin-top: 30px !important;
  font-family: var(--hrt-ls-font, 'Montserrat', sans-serif);
  font-size: 1rem;
  color: #666;
}

.hrt-ze-features__context-links a {
  color: var(--hrt-ls-orange, #E65100);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hrt-ze-features__context-links a:hover {
  color: #D84315;
  text-decoration: underline;
}


/* ============================================================
   TABS RESPONSIVE (Mobile Fix)
   Synchronisiert mit kleinbetriebe-styles.css
   ============================================================ */
@media (max-width: 600px) {
  .hrtime5-tabs-nav {
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-content: center;
    padding: 0;
    max-width: 100%;
  }

  .hrtime5-tab-content-wrapper {
    border-radius: 0 0 25px 25px !important;
    max-width: 100%;
  }

  .hrtime5-tab-button {
    font-size: 12px;
    padding: 10px 12px;
    gap: 6px;
    flex: 1 1 0;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
  }

  .hrtime5-tab-button i {
    font-size: 14px;
  }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes hrt-ls-dot-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@keyframes hrt-ls-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes hrt-ls-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* --------- Tablet (1024px) --------- */
@media (max-width: 1024px) {

  /* Selektion 2: Stats */
  .hrt-ls-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -60px;
    padding: 40px 30px;
  }

  .hrt-ls-stat:nth-child(2)::after {
    display: none;
  }

  /* Selektion 3: Why */
  .hrt-ls-why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hrt-ls-why-image {
    order: -1;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Selektion 4: Features */
  .hrt-ls-feature-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .hrt-ls-feature-row--reverse {
    direction: ltr;
  }

  .hrt-ls-feature-img {
    max-width: 600px;
    margin: 0 auto;
  }

  /* Selektion 5: Highlights */
  .hrt-ls-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Selektion 6: Legal */
  .hrt-ls-legal-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hrt-ls-legal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --------- Mobile (768px) --------- */
@media (max-width: 768px) {

  /* Selektion 1: Hero */
  .hrt-ls-hero {
    padding: 80px 15px 70px;
    min-height: auto;
  }

  .hrt-ls-hero-benefits {
    flex-direction: column;
    align-items: center;
  }

  /* Selektion 2: Stats */
  .hrt-ls-stats-bar {
    grid-template-columns: 1fr 1fr;
    margin: -50px 15px 60px;
    padding: 30px 20px;
    gap: 20px;
  }

  .hrt-ls-stat-number .hrt-ls-suffix {
    font-size: 1.4rem;
  }

  .hrt-ls-stat-label {
    font-size: 0.85rem;
  }

  /* Selektion 3 */
  .hrt-ls-why {
    padding: 70px 15px;
  }

  .hrt-ls-why-image-badge {
    top: 10px;
    left: 10px;
    bottom: auto;
    right: auto;
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hrt-ls-why-image img {
    transform: none;
    width: 100%;
  }

  .hrt-ls-why-image img:hover {
    transform: translateY(-4px);
    box-shadow: var(--hrt-ls-shadow-medium);
  }

  .hrt-ls-why-text h3 {
    font-size: 1rem;
  }

  .hrt-ls-why-text p:last-of-type {
    padding-bottom: 20px;
    margin-bottom: 24px !important;
  }

  .hrt-ls-benefits-list li {
    font-size: 0.9rem;
  }

  .hrt-ls-benefits-list li:hover {
    transform: translateX(4px);
  }

  /* Selektion 4 */
  .hrt-ls-features {
    padding: 70px 15px;
  }

  .hrt-ls-feature-row {
    margin-bottom: 50px;
  }

  /* Selektion 5 */
  .hrt-ls-highlights {
    padding: 70px 15px;
  }

  .hrt-ls-highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hrt-ls-highlight-card {
    padding: 30px 25px;
  }

  /* Selektion 6 */
  .hrt-ls-legal {
    padding: 70px 15px;
  }

  .hrt-ls-legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hrt-ls-legal-card {
    padding: 28px 25px;
  }

  .hrt-ls-legal-summary {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .hrt-ls-audience-pills {
    gap: 10px;
  }

  .hrt-ls-audience-pill {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  /* Selektion 7 */
  .hrt-ls-branchen {
    padding: 70px 15px;
  }

  /* Selektion 8 */
  .hrt-ls-faq {
    padding: 70px 15px;
  }

  .hrt-ls-faq-trigger {
    padding: 18px 20px;
  }

  .hrt-ls-faq-question {
    font-size: 0.95rem !important;
    padding-right: 10px !important;
    max-width: calc(100% - 42px) !important;
  }

  .hrt-ls-faq-content p {
    padding: 0 20px 20px;
    font-size: 0.92rem;
  }

  /* Selektion 9 */
  .hrt-ls-cta {
    padding: 70px 15px;
  }

  .hrt-ls-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hrt-ls-cta-primary,
  .hrt-ls-cta-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hrt-ls-cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* --------- Small Mobile (480px) --------- */
@media (max-width: 480px) {

  /* Selektion 1: Hero */
  .hrt-ls-hero h1 {
    font-size: 1.6rem;
  }

  .hrt-ls-hero-subtitle {
    font-size: 1rem;
  }

  .hrt-ls-hero-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  /* Selektion 2: Stats */
  .hrt-ls-stats-bar {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hrt-ls-stat:not(:last-child)::after {
    display: none;
  }

  .hrt-ls-stat-number {
    font-size: 2.5rem;
  }

  .hrt-ls-stat-number .hrt-ls-suffix {
    font-size: 1.1rem;
  }

  .hrt-ls-stat-label {
    font-size: 0.75rem;
  }

  .hrt-ls-section-header h2 {
    font-size: 1.5rem;
  }

  .hrt-ls-section-intro {
    font-size: 0.95rem;
  }

  .hrt-ls-why-text h2,
  .hrt-ls-legal-intro-text h2 {
    font-size: 1.4rem;
  }

  .hrt-ls-feature-text h3 {
    font-size: 1.2rem;
  }

  .hrt-ls-highlight-card {
    padding: 25px 20px;
  }

  .hrt-ls-highlight-icon {
    width: 58px;
    height: 58px;
  }

  .hrt-ls-highlight-icon i {
    font-size: 1.3rem;
  }

  .hrt-ls-legal-card {
    padding: 22px 20px;
  }

  .hrt-ls-faq-trigger {
    padding: 15px 12px !important;
  }

  .hrt-ls-faq-question {
    font-size: 0.9rem !important;
    max-width: calc(100% - 38px) !important;
  }

  .hrt-ls-faq-icon {
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    font-size: 1.2rem;
  }

  .hrt-ls-cta h2 {
    font-size: 1.6rem;
  }
}

/* --------- Extra Small (360px) --------- */
@media (max-width: 360px) {

  .hrt-ls-hero {
    padding: 60px 12px 50px;
  }

  .hrt-ls-why {
    padding: 50px 12px;
  }

  .hrt-ls-features {
    padding: 50px 12px;
  }

  .hrt-ls-highlights {
    padding: 50px 12px;
  }

  .hrt-ls-legal {
    padding: 50px 12px;
  }

  .hrt-ls-faq {
    padding: 50px 12px;
  }

  .hrt-ls-cta {
    padding: 50px 12px;
  }

  .hrt-ls-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hrt-ls-section-header h2 {
    font-size: 1.3rem;
  }

  .hrt-ls-feature-num {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .hrt-ls-cta-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}


/* ============================================================
   ACCESSIBILITY (WCAG 2.1 AA)
   ============================================================ */

/* Skip Navigation */
.hrt-ls-skip-nav {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--hrt-ls-orange);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  z-index: 100000;
  font-family: var(--hrt-ls-font);
  font-weight: 600;
}

.hrt-ls-skip-nav:focus {
  top: 0;
}

/* Focus Visible */
.hrt-ls-faq-trigger:focus-visible,
.hrt-ls-cta-primary:focus-visible,
.hrt-ls-cta-secondary:focus-visible,
.hrt-ls-cta-btn:focus-visible,
.hrt-ls-feature-link:focus-visible {
  outline: 3px solid var(--hrt-ls-orange);
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

  .hrt-ls-animate,
  .hrt-ls-cta-shape,
  .hrt-ls-highlight-card::before,
  .hrt-ls-cta-btn::before {
    animation: none !important;
    transition: none !important;
  }

  .hrt-ls-faq-content {
    transition: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hrt-ls-highlight-card {
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .hrt-ls-legal-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hrt-ls-faq-item {
    border: 1px solid rgba(82, 114, 197, 0.5);
  }
}

/* ============================================================
   SELEKTION 4: HRTIME5 TABS (Stempelmethoden)
   Aus zeiterfassung-styles.css
   ============================================================ */
.hrtime5-tabs-section {
  background: linear-gradient(180deg, #f0f0ef 0%, #D4E3F0 100%);
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
}

.hrtime5-tabs-container {
  max-width: 1300px;
  margin: 0 auto;
}

.hrtime5-tabs-header {
  text-align: center;
  margin-bottom: 50px;
}

.hrtime5-process-label {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5272C5;
  font-weight: 700;
  margin-bottom: 10px;
}

.hrtime5-tabs-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0B1933;
  margin: 0 0 15px 0;
}

.hrtime5-solutions-divider {
  width: 60px;
  height: 4px;
  background: #E65100;
  margin: 0 auto 25px;
}

.hrtime5-tabs-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #4a5568;
  max-width: 900px;
  margin: 0 auto;
}

/* Tab Navigation */
.hrtime5-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.hrtime5-tab-button {
  background: #E65100;
  color: #ffffff;
  border: 2px solid #E65100;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 700;
  padding: 14px 28px;
  cursor: pointer;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.hrtime5-tab-button i {
  color: #ffffff !important;
  font-size: 18px;
}

.hrtime5-tab-button.active {
  background: #ffffff;
  color: #0B1933;
  border-top: 4px solid #E65100;
  padding-top: 10px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.hrtime5-tab-button.active i {
  color: #E65100 !important;
}

/* Tab Content */
.hrtime5-tab-content-wrapper {
  background: white;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(11, 25, 51, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.hrtime5-tab-item {
  display: none;
  animation: hrtime5-fadeIn 0.5s ease-out;
}

.hrtime5-tab-item.active {
  display: flex;
}

/* Image Column */
.hrtime5-tab-image-col {
  width: 40%;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hrtime5-shine-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: 100%;
}

.hrtime5-tab-image-col img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.hrtime5-shine-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  z-index: 2;
}

.hrtime5-tab-item:hover .hrtime5-shine-wrapper img {
  transform: scale(1.05);
}

.hrtime5-tab-item:hover .hrtime5-shine-wrapper::before {
  animation: hrtime5-shineMove 0.8s ease;
}

/* Text Column */
.hrtime5-tab-content-col {
  width: 60%;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.hrtime5-tab-content-col h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0B1933;
  margin-bottom: 5px;
}

.text-orange {
  color: #E65100;
}

.semibold {
  font-weight: 600;
}

.hrtime5-ideal-para {
  font-size: 14px;
  color: #E65100;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hrtime5-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.hrtime5-feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: #4a5568;
  font-size: 16px;
  line-height: 1.5;
}

.hrtime5-feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #E65100;
  font-weight: 900;
  font-size: 20px;
}

.hrtime5-cta-button {
  background: #E65100;
  color: white !important;
  padding: 18px 35px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  max-width: fit-content;
  transition: transform 0.3s ease;
}

.hrtime5-cta-button:hover {
  transform: translateX(5px);
}

/* Tabs Responsive */
@media (max-width: 991px) {
  .hrtime5-tab-item.active {
    display: block !important;
  }

  .hrtime5-tab-image-col,
  .hrtime5-tab-content-col {
    width: 100% !important;
    padding: 25px !important;
  }

  .hrtime5-tab-image-col img {
    max-width: 300px;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 600px) {
  .hrtime5-tabs-header h2 {
    font-size: 24px;
  }

  .hrtime5-tabs-intro {
    font-size: 15px;
  }

  .hrtime5-tabs-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-content: center;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    z-index: 20;
    position: relative;
  }

  .hrtime5-tab-content-wrapper {
    border-radius: 0 0 25px 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    /* Pull content up slightly to ensure overlap */
    margin-top: -2px !important;
    z-index: 5;
    background: white !important;
    position: relative;
  }

  .hrtime5-tab-button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 12px;
    padding: 12px 6px !important;
    /* Slightly reduced horizontal padding */
    gap: 5px;
    flex: 1 1 0;
    white-space: nowrap;
    border-radius: 8px 8px 0 0 !important;
    border: 2px solid #E65100;
    /* Ensure base border exists */
    box-sizing: border-box !important;
    background: #E65100;
    color: white;
  }

  .hrtime5-tab-button.active {
    background: #ffffff !important;
    color: #0B1933 !important;
    border-top: 4px solid #E65100 !important;
    border-left: 2px solid #E65100 !important;
    border-right: 2px solid #E65100 !important;
    /* Hide bottom border by making it white and thick */
    border-bottom: 5px solid #ffffff !important;
    /* Overlap the content wrapper */
    margin-bottom: -2px !important;
    z-index: 30 !important;
    position: relative;
    box-shadow: none !important;
    /* Remove shadow to prevent gaps */
  }

  .hrtime5-tab-button i {
    font-size: 14px;
  }

  .hrtime5-tab-content-col h3 {
    font-size: 20px;
  }

  .hrtime5-feature-list li {
    font-size: 14px;
  }

  .hrtime5-cta-button {
    padding: 14px 25px;
    font-size: 14px;
  }
}

@keyframes hrtime5-shineMove {
  100% {
    left: 150%;
  }
}

@keyframes hrtime5-fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   SELEKTION 5: FEATURES GRID V2 (12 Icons)
   Aus zeiterfassung-styles.css
   ============================================================ */
.hrt-ze-features-v2 {
  position: relative;
  background: linear-gradient(180deg, #D4E3F0 0%, #dce4ef 40%, #e8ecf2 70%, #f0f0ef 100%) !important;
  padding: 80px 20px 100px;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  z-index: 5;
}

/* Blobs */
.hrtime-benefits-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.benefits-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.benefits-blob.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #E65100, #FF8A50);
  bottom: -100px;
  left: -100px;
}

.benefits-blob.blob-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #5272C5, #3B5BA5);
  top: 10%;
  right: -100px;
}

.benefits-blob.blob-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #D4E3F0, #a8c5e8);
  top: 40%;
  left: -50px;
}

/* Container */
.hrt-ze-features__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Header */
.hrt-ze-features__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.hrt-ze-features__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #0B1933;
  margin-bottom: 15px;
  line-height: 1.3;
}

.hrt-ze-features__intro {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
}

/* Grid */
.hrt-ze-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

/* Items */
.hrt-ze-features__item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border: 1px solid rgba(82, 114, 197, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hrt-ze-features__item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(82, 114, 197, 0.15);
}

.hrt-ze-features__icon i {
  font-size: 28px;
  color: #E65100;
  margin-bottom: 15px;
}

.hrt-ze-features__item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0B1933;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hrt-ze-features__item p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* CTA Center */
.hrt-ze-cta-center {
  text-align: center;
  margin-bottom: 25px;
}

/* Kontextuelle Links */
.hrt-ze-features__context-links {
  text-align: center !important;
  margin-top: 30px !important;
  font-family: var(--hrt-kb-font);
  font-size: 1rem;
  color: #666;
}

.hrt-ze-features__context-links a {
  color: var(--hrt-kb-orange);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hrt-ze-features__context-links a:hover {
  color: #D84315;
  text-decoration: underline;
}

/* Features Responsive */
@media (max-width: 1024px) {
  .hrt-ze-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .hrt-ze-features-v2 {
    padding: 50px 15px 60px !important;
    overflow-x: hidden;
  }

  .hrt-ze-features__header {
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .hrt-ze-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }

  .hrt-ze-features__item {
    padding: 15px 10px;
    min-height: 140px;
    border-radius: 12px;
  }

  .hrt-ze-features__icon i {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .hrt-ze-features__item h4 {
    font-size: 0.85rem;
    margin-bottom: 5px;
    hyphens: auto;
  }

  .hrt-ze-features__item p {
    font-size: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hrt-ze-features__context-links {
    font-size: 0.9rem;
    margin-top: 20px;
  }
}

@media (max-width: 360px) {
  .hrt-ze-features__grid {
    gap: 8px;
  }

  .hrt-ze-features__item p {
    display: none;
  }
}


/* ============================================================
   SELEKTION 6b: TESTIMONIALS (Kundenstimmen)
   Aus zeiterfassung-styles.css
   ============================================================ */
.hrtime4-testimonials-section {
  --ht4-dark-blue: #0B1933;
  --ht4-light-blue: #5272C5;
  --ht4-orange: #E65100;
  --ht4-white: #ffffff;
  --ht4-text: #333;
  --ht4-text-mute: #555;
  --ht4-padding-y: 120px;
  --ht4-padding-x: 20px;
  --ht4-gap: 30px;
  --ht4-radius: 20px;
  --ht4-font: 'Montserrat', sans-serif;
}

.hrtime4-testimonials-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  padding: var(--ht4-padding-y) var(--ht4-padding-x);
  font-family: var(--ht4-font);
  container-type: inline-size;
  container-name: testimonials4;
  position: relative;
  z-index: 5;
  margin: 0;
}

.hrtime4-testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Header */
.hrtime4-testimonials-header {
  text-align: center;
  margin-bottom: 120px;
}

.hrtime4-testimonials-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ht4-dark-blue);
  margin-bottom: 15px;
  line-height: 1.3;
}

.hrtime4-solutions-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--ht4-light-blue), var(--ht4-orange));
  margin: 0 auto 20px auto;
  border-radius: 2px;
}

.hrtime4-testimonials-intro {
  font-size: 1.05rem;
  color: var(--ht4-text-mute);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.hrtime4-process-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5272C5;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
}

/* Grid */
.hrtime4-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ht4-gap);
  margin-bottom: 50px;
}

/* Card */
.hrtime4-testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(82, 114, 197, 0.15);
  border-radius: var(--ht4-radius);
  padding: 35px 30px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.hrtime4-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(82, 114, 197, 0.15);
}

.hrtime4-testimonial-content {
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hrtime4-testimonial-quote i {
  font-size: 24px;
  color: var(--ht4-orange);
  opacity: 0.5;
  margin-bottom: 15px;
}

.hrtime4-testimonial-stars {
  margin-bottom: 20px;
  color: #FFB400;
  font-size: 14px;
}

.hrtime4-testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ht4-text);
  margin-bottom: 25px;
  flex-grow: 1;
}

.hrtime4-testimonial-text strong {
  color: var(--ht4-dark-blue);
  font-weight: 600;
}

/* Author */
.hrtime4-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(82, 114, 197, 0.1);
}

.hrtime4-author-figure {
  margin: 0;
}

.hrtime4-author-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(82, 114, 197, 0.2);
}

.hrtime4-author-info {
  display: flex;
  flex-direction: column;
}

.hrtime4-author-name {
  display: block;
  font-weight: 600;
  color: var(--ht4-dark-blue);
  font-size: 15px;
}

.hrtime4-author-role {
  display: block;
  font-size: 13px;
  color: #666;
}

/* Trust Bar */
.hrtime4-trust-bar {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(11, 25, 51, 0.03), rgba(82, 114, 197, 0.08));
  border-radius: var(--ht4-radius);
  border: 1px solid rgba(82, 114, 197, 0.1);
}

.hrtime4-trust-item {
  text-align: center;
  position: relative;
  min-width: 120px;
}

.hrtime4-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(82, 114, 197, 0.2);
}

.hrtime4-trust-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ht4-orange);
  line-height: 1;
  margin-bottom: 5px;
}

.hrtime4-trust-label {
  font-size: 0.85rem;
  color: var(--ht4-dark-blue);
  font-weight: 500;
}

/* Testimonials Responsive */
@container testimonials4 (max-width: 968px) {
  .hrtime4-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hrtime4-trust-bar {
    gap: 40px;
  }
}

@container testimonials4 (max-width: 600px) {
  .hrtime4-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hrtime4-testimonials-section {
    padding-top: 60px !important;
    padding-bottom: 40px !important;
  }

  .hrtime4-testimonials-header {
    margin-bottom: 50px !important;
  }

  .hrtime4-testimonials-grid {
    margin-bottom: 20px;
  }

  .hrtime4-trust-bar {
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
  }

  .hrtime4-trust-label {
    font-size: 0.7rem !important;
    line-height: 1.2;
  }
}

/* --- Shortcode Wrapper (Branchen) --- */
.hrtime2-shortcode-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Homeoffice Section (extracted inline styles) --- */
.hrtime5-homeoffice-section {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 12px;
}

.hrtime5-homeoffice-section h3 {
  color: var(--hrt-kb-dark);
  margin-bottom: 15px;
  font-family: var(--hrt-kb-font);
  font-size: 1.2rem;
  font-weight: 700;
}

.hrtime5-homeoffice-section i {
  color: var(--hrt-kb-orange);
  margin-right: 10px;
}

.hrtime5-homeoffice-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}


/* --- Legal Intro Text (Synchronized from kleinbetriebe) --- */
.hrt-kb-legal-intro-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2em;
  /* Increased to approx 2 br */
}

.hrt-kb-legal-intro-text p:last-of-type {
  margin-bottom: 25px;
  /* Specific distance to button */
}


/* FORCE SPACING FOR LEGAL INTRO */
.hrt-kb-legal-intro-text p {
  margin-bottom: 1.2em !important;
}

.hrt-kb-legal-intro-text p:last-of-type {
  margin-bottom: 25px !important;
}

/* --- Legal Section Image Badge (Top Right) - Global Sync --- */
.hrt-ls-legal-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.hrt-ls-legal-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 25, 51, 0.15);
  transition: all 0.4s ease;
  transform: scale(1);
}

.hrt-ls-legal-img:hover img {
  transform: scale(1.02) translateY(-6px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.hrt-ls-legal-image-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--hrt-ls-gradient-orange);
  color: white;
  padding: 12px 20px;
  border-radius: var(--hrt-ls-radius-sm);
  font-family: var(--hrt-ls-font);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--hrt-ls-shadow-orange);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.hrt-ls-legal-image-badge i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .hrt-ls-legal-image-badge {
    top: 15px;
    right: 15px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   SELEKTION 6c: PREISE CTA
   Einfacher Textblock mit Buttons – keine Pricing-Karten
   ============================================================ */
.hrt-kb-pricing-cta {
  background: var(--hrt-kb-gradient-bg);
  padding: 80px 20px;
  position: relative;
}

.hrt-kb-pricing-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hrt-kb-pricing-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--hrt-kb-gray);
  margin: 0 0 25px 0 !important;
}

.hrt-kb-pricing-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Neuer Preis-Button (spezifisch für Selektion 6c) */
.hrt-kb-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000 !important;
  border: 2px solid #E65100;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hrt-kb-price-btn i {
  color: #E65100;
  transition: color 0.3s ease;
}

.hrt-kb-price-btn:hover {
  background: #E65100;
  border-color: #ffffff;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.hrt-kb-price-btn:hover i {
  color: #ffffff;
}

@media (max-width: 768px) {
  .hrt-kb-pricing-cta {
    padding: 60px 15px;
  }

  .hrt-kb-pricing-cta-text {
    font-size: 1rem;
  }

  .hrt-kb-pricing-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   TRUST BADGES (E-E-A-T Signale)
   Synchronized from kleinbetriebe-styles.css
   ============================================================ */
.hrt-ls-trust-badges {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 35px 20px;
}

.hrt-ls-trust-badges-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hrt-ls-trust-badges-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.hrt-ls-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hrt-ls-trust-badge i {
  font-size: 2rem;
  color: var(--hrt-ls-orange);
  margin-bottom: 8px;
}

.hrt-ls-trust-badge p {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  color: #333;
  font-family: var(--hrt-ls-font);
}


/* ============================================================
   SELEKTION 6c: PREISE CTA
   Einfacher Textblock mit Buttons - keine Pricing-Karten
   ============================================================ */
.hrt-ls-pricing-cta {
  background: var(--hrt-ls-gradient-bg);
  padding: 80px 20px;
  position: relative;
}

.hrt-ls-pricing-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hrt-ls-pricing-cta-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin: 0 0 25px 0 !important;
}

.hrt-ls-pricing-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Preis-Button (spezifisch fuer Selektion 6c) */
.hrt-ls-price-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.9);
  color: #000000 !important;
  border: 2px solid var(--hrt-ls-orange);
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
  position: relative;
  overflow: hidden;
}

.hrt-ls-price-btn i {
  color: var(--hrt-ls-orange);
  transition: color 0.3s ease;
}

.hrt-ls-price-btn:hover {
  background: var(--hrt-ls-orange);
  border-color: #ffffff;
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.3);
}

.hrt-ls-price-btn:hover i {
  color: #ffffff;
}

.hrt-ls-pricing-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #E65100;
  border: 2px solid #E65100;
  padding: 16px 36px;
  border-radius: 30px;
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hrt-ls-transition);
}

.hrt-ls-pricing-cta-btn-secondary i {
  color: #E65100;
  transition: color 0.3s ease;
}

.hrt-ls-pricing-cta-btn-secondary:hover {
  background: #E65100;
  border-color: #E65100;
  color: white;
  text-decoration: none;
}

.hrt-ls-pricing-cta-btn-secondary:hover i {
  color: white;
}

@media (max-width: 768px) {
  .hrt-ls-pricing-cta {
    padding: 60px 15px;
  }

  .hrt-ls-pricing-cta-text {
    font-size: 1rem;
  }

  .hrt-ls-pricing-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   SELEKTION 3b: VERGLEICH (Alt vs. Neu)
   Prefix: hrt-ls-comparison-*
   ============================================================ */
.hrt-ls-comparison {
  background: linear-gradient(180deg, #f0f0ef 0%, #e8ecf2 100%);
  padding: 80px 20px;
  font-family: var(--hrt-ls-font);
}

.hrt-ls-comparison-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Table Grid */
.hrt-ls-comparison-table {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(11, 25, 51, 0.08);
  overflow: hidden;
}

.hrt-ls-comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(82, 114, 197, 0.08);
  transition: background 0.2s ease;
}

.hrt-ls-comparison-row:last-child {
  border-bottom: none;
}

.hrt-ls-comparison-row:not(.hrt-ls-comparison-header):hover {
  background: rgba(82, 114, 197, 0.03);
}

/* Alternating rows */
.hrt-ls-comparison-row:nth-child(even):not(.hrt-ls-comparison-header) {
  background: rgba(244, 247, 252, 0.5);
}

.hrt-ls-comparison-row:nth-child(even):not(.hrt-ls-comparison-header):hover {
  background: rgba(82, 114, 197, 0.06);
}

/* Header Row */
.hrt-ls-comparison-header {
  background: linear-gradient(135deg, #0B1933 0%, #1a2d52 100%);
  color: #ffffff;
}

.hrt-ls-comparison-header .hrt-ls-comparison-cell {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
  padding: 20px 25px;
}

.hrt-ls-comparison-header .hrt-ls-comparison-cell i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.hrt-ls-comparison-header .hrt-ls-comparison-new {
  background: rgba(82, 114, 197, 0.25);
}

/* Data Cells */
.hrt-ls-comparison-cell {
  padding: 16px 25px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hrt-ls-comparison-criterion {
  font-weight: 600;
  color: var(--hrt-ls-dark);
}

/* Status Indicators */
.hrt-ls-comparison-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(46, 125, 50, 0.1);
  border: 2px solid #2E7D32;
  border-radius: 50%;
  color: #2E7D32;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hrt-ls-comparison-no {
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* New column highlight */
.hrt-ls-comparison-row:not(.hrt-ls-comparison-header) .hrt-ls-comparison-new {
  color: #2E7D32;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .hrt-ls-comparison {
    padding: 50px 15px;
  }

  .hrt-ls-comparison-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(82, 114, 197, 0.1);
  }

  .hrt-ls-comparison-header {
    display: none;
  }

  .hrt-ls-comparison-cell {
    padding: 6px 0;
    font-size: 0.88rem;
  }

  .hrt-ls-comparison-criterion {
    font-size: 0.95rem;
    color: var(--hrt-ls-dark);
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(82, 114, 197, 0.08);
    padding-bottom: 8px;
  }

  .hrt-ls-comparison-old::before {
    content: "Manuell: ";
    font-weight: 600;
    color: #888;
    font-size: 0.8rem;
  }

  .hrt-ls-comparison-new::before {
    content: "HRTime: ";
    font-weight: 600;
    color: #2E7D32;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hrt-ls-comparison-cell {
    font-size: 0.82rem;
  }
}


/* ============================================================
   AUTORENBOX (E-E-A-T Signal)
   Prefix: hrt-ls-author-*
   ============================================================ */
.hrt-ls-author-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 25px 30px;
  background: #f8fafc;
  border: 1px solid rgba(82, 114, 197, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--hrt-ls-font);
}

.hrt-ls-author-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5272C5, #0B1933);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.hrt-ls-author-name {
  margin: 0 0 5px;
  font-weight: 700;
  color: #0B1933;
  font-size: 0.95rem;
}

.hrt-ls-author-name span {
  color: #E65100;
}

.hrt-ls-author-role {
  font-weight: 400;
  color: #888;
}

.hrt-ls-author-meta {
  margin: 8px 0 0;
  font-size: 0.8rem;
  color: #999;
}

.hrt-ls-author-meta i {
  margin-right: 5px;
}

.hrt-ls-author-meta .fa-check-circle {
  color: #2E7D32;
}

.hrt-ls-author-meta .hrt-ls-author-sep {
  margin: 0 8px;
}

@media (max-width: 600px) {
  .hrt-ls-author-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

/* ============================================================
   LEGAL CARDS SECTION (3×2 Grid)
   Imported from ueber-uns.css for consistent styling
   ============================================================ */

/* Grid Container - 3 Columns */
.hrt-ls-legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
}

/* Card Styling */
.hrt-ls-legal-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(82, 114, 197, 0.1);
  transition: all 0.4s ease;
}

.hrt-ls-legal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(230, 81, 0, 0.15);
  border-color: var(--hrt-ls-orange);
}

/* Icon Container */
.hrt-ls-legal-card-icon {
  width: 60px;
  height: 60px;
  background: var(--hrt-ls-gradient-blue);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: white;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.hrt-ls-legal-card:hover .hrt-ls-legal-card-icon {
  background: var(--hrt-ls-gradient-orange);
  transform: scale(1.1) rotate(5deg);
}

/* Card Title */
.hrt-ls-legal-card-title {
  display: block;
  font-family: var(--hrt-ls-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--hrt-ls-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Card Text */
.hrt-ls-legal-card p {
  font-family: var(--hrt-ls-font);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--hrt-ls-gray);
  margin: 0;
}

/* Highlight Box (Reform Notice) */
.hrt-ls-legal-highlight {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.05), rgba(230, 81, 0, 0.1));
  border: 2px solid var(--hrt-ls-orange);
  border-radius: 20px;
  padding: 40px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hrt-ls-legal-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 81, 0, 0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.hrt-ls-legal-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(230, 81, 0, 0.2);
}

/* Mobile Breakpoints */
@media (max-width: 1024px) {
  .hrt-ls-legal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .hrt-ls-legal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hrt-ls-legal-card {
    padding: 30px;
  }

  .hrt-ls-legal-highlight {
    flex-direction: column;
    padding: 30px;
  }

  .hrt-ls-legal-card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .hrt-ls-legal-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hrt-ls-legal-card {
    padding: 25px;
  }

  .hrt-ls-legal-highlight {
    padding: 25px;
  }
}


/* ============================================================
   4 GESETZES-KARTEN (hrt-kb-legal-*)
   Dunkles Karten-Design aus Kleinbetriebe, 2×2 Grid
   Verwendet in den 4 unteren Gesetzes-Karten (Selektion 6)
   ============================================================ */

/* 2×2 Grid */
.hrt-kb-legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* Dark Card */
.hrt-kb-legal-card {
  background: var(--hrt-ls-gradient-dark);
  border-radius: var(--hrt-ls-radius);
  padding: 35px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--hrt-ls-transition);
}

/* Orange Left Border */
.hrt-kb-legal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--hrt-ls-gradient-orange);
  border-radius: 2px;
}

.hrt-kb-legal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(11, 25, 51, 0.4);
}

/* Numbered Circle */
.hrt-kb-legal-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--hrt-ls-gradient-orange);
  color: white;
  border-radius: 50%;
  font-family: var(--hrt-ls-font);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Card Title */
.hrt-kb-legal-card h4 {
  font-family: var(--hrt-ls-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hrt-ls-white);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Card Text */
.hrt-kb-legal-card p {
  font-family: var(--hrt-ls-font);
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* Animate */
.hrt-kb-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hrt-kb-animate.hrt-kb-visible,
.hrt-kb-animate.hrt-ls-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hrt-kb-legal-grid {
    grid-template-columns: 1fr;
  }

  .hrt-kb-legal-card {
    padding: 25px 20px;
  }
}


/* ============================================================
   INTEGRATIONS GRID (hrt-ze-integrations__*)
   1:1 kopiert aus zeiterfassung-styles.css
   Verwendet in Selektion 2 (Warum-Sektion) als 3×2 Grid
   ============================================================ */

/* GRID – Standard: 4 Spalten */
.hrt-ze-integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 3-Spalten-Modifikator (für 6 Kacheln als 3×2, zentriert auf 900px) */
.hrt-ze-integrations__grid--3col {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 40px auto 30px;
}

/* CARD */
.hrt-ze-integrations__item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.hrt-ze-integrations__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(82, 114, 197, 0.15);
  background: #ffffff;
  border-color: rgba(82, 114, 197, 0.2);
}

/* LOGO / ICON */
.hrt-ze-integrations__logo {
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.hrt-ze-integrations__logo i {
  font-size: 35px;
  background: linear-gradient(135deg, #5272C5, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease;
  display: inline-block;
}

.hrt-ze-integrations__item:hover .hrt-ze-integrations__logo i {
  background: linear-gradient(135deg, #E65100, #FF9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 8px rgba(230, 81, 0, 0.4));
}

/* CARD TITLE */
.hrt-ze-integrations__item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #0B1933;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

/* CARD TEXT */
.hrt-ze-integrations__item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* CARD HIGHLIGHT (Swipe-Effekt beim Hover) */
.card-highlight {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: left 0.5s;
  z-index: 1;
}

.hrt-ze-integrations__item:hover .card-highlight {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

/* Responsive */
@media (max-width: 900px) {
  .hrt-ze-integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hrt-ze-integrations__grid--3col {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .hrt-ze-integrations__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}