/* ==========================================================================
   Zeitraum - DESIGN SYSTEM & STYLESHEET
   Typography: Headings -> Plus Jakarta Sans | Text, Nav, Buttons -> Inter
   Colors: Top Bar #C2DCD0, Top Bar Text #4F7661,
           Warm White (60%) #FAF8F5, Olive Green #535c35 & Muted Sage #a0aea1 (30%),
           Accent Teal/Petrol #105554, Dark Gray #2B2D2F (Text)
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --topbar-bg: #C2DCD0;
  --topbar-text: #4F7661;
  
  --bg-warm-white: #FAF8F5;
  --bg-surface-white: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-solutions-section: #F0F0F0;
  
  --color-olive: #535C35;
  --color-sage: #A0AEA1;
  --color-sage-light: #E8EFE9;
  --color-gold-brown: #105554;
  
  --color-petrol: #075453;
  --color-petrol-hover: #0A6B6A;
  --color-petrol-light: #E6F0F0;
  --color-usp-icon: #C2DCD0;

  --color-text-main: #2B2D2F;
  --color-text-muted: #575B5E;
  --color-border: #E5E1D8;
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 112px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(43, 45, 47, 0.04);
  --shadow-md: 0 12px 32px rgba(43, 45, 47, 0.08);
  --shadow-lg: 0 20px 48px rgba(7, 84, 83, 0.15);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm-white);
  color: var(--color-text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Defaults */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-olive);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: var(--color-petrol);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-petrol-hover);
}

img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.text-center {
  text-align: center;
}

/* TOP BAR (No phone number) */
.top-bar {
  background-color: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(79, 118, 97, 0.2);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: min(90vw, 1600px);
}

.top-bar-left {
  display: flex;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--topbar-text);
}

.top-bar-icon {
  width: 16px;
  height: 16px;
  stroke: var(--topbar-text);
  flex-shrink: 0;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 225, 216, 0.6);
  transition: background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
  max-width: min(90vw, 1600px);
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  width: 140px !important;
  height: auto !important;
  max-height: 100% !important;
  object-fit: contain !important;
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: scale(1.02);
}

/* Centered Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  padding: 8px 4px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-petrol);
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-petrol);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Header Right Side: Ultra Modern Phone Consultation Pill Badge */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* --- UNIFIED HEADER CTA GROUP --- */
.header-cta-group {
  display: flex;
  align-items: center;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1.5px solid #105554;
  box-shadow: 0 4px 15px rgba(7, 84, 83, 0.08);
  background-color: #FFFFFF;
}

.header-cta-segment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  text-decoration: none;
  transition: all var(--transition-smooth);
  height: 48px;
}

/* Booking Segment (Left) */
.cta-segment-booking {
  background-color: #105554;
  color: #FFFFFF;
}

.cta-segment-booking:hover {
  background-color: #075453;
}

.cta-segment-booking .header-cta-icon {
  color: #B88E3E; /* Gold icon */
}

/* Phone Segment (Right) */
.cta-segment-phone {
  background-color: #FFFFFF;
  color: #105554;
  border-left: 1.5px solid #105554;
}

.cta-segment-phone:hover {
  background-color: #FAF8F5;
}

.cta-segment-phone .header-cta-icon {
  color: #105554;
}

.header-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2.2px;
}

.header-cta-text-wrapper {
  display: flex;
  flex-direction: column;
}

.header-cta-sub {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.cta-segment-booking .header-cta-sub {
  color: rgba(255, 255, 255, 0.85);
}

.cta-segment-phone .header-cta-sub {
  color: #4F7661;
}

.header-cta-main {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.cta-segment-booking .header-cta-main {
  color: #FFFFFF;
}

.cta-segment-phone .header-cta-main {
  color: #105554;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-main);
  border-radius: var(--radius-sm);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-text-main);
  stroke-width: 2;
  stroke-linecap: round;
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* HERO SECTION - PURE HERO BACKGROUND IMAGE (1:1 DIRECT COVER, NO OVERLAY) */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 140px; /* Space for absolute positioned Google reviews ticker */
  overflow: hidden;
  color: #FFFFFF;
}

.hero.hero-small {
  min-height: 48vh;
  padding-top: 80px;
  padding-bottom: 80px;
}


.hero-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-small .hero-bg-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Black, low transparency (high opacity) overlay for superior text contrast */
  z-index: 2;
}

.hero-bg-media picture,
.hero-bg-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-full {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow H1 */
.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  display: inline-block;
}

/* Subclaim display text with sequential fade-in animation */
.hero-subclaim {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subclaim span {
  display: block;
  opacity: 0;
  transform: translateY(16px);
  animation: heroSubclaimFadeIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subclaim span:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-subclaim span:nth-child(2) {
  animation-delay: 0.75s;
}

.hero-subclaim span:nth-child(3) {
  animation-delay: 1.3s;
}

@keyframes heroSubclaimFadeIn {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-subclaim span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Descriptive Copy */
.hero-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #FFFFFF;
  max-width: 560px;
  margin-bottom: 32px;
}

/* Hero Action Buttons (Side by Side) */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.btn-hero-primary {
  background-color: var(--color-petrol);
  color: #FFFFFF;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid var(--color-petrol);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-hero-primary:hover {
  background-color: var(--color-petrol-hover);
  border-color: var(--color-petrol-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  background-color: rgba(255, 255, 255, 0.32);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* HERO USPs (Direkt unter den Buttons) */
.hero-usp-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-usp-icon {
  width: 38px;
  height: 38px;
  stroke: var(--color-usp-icon);
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.hero-usp-text {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.25;
}

/* --- SOLUTIONS USPs --- */
.solutions-usp-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 28px auto 8px auto;
  flex-wrap: wrap;
  max-width: 900px;
}

.solutions-usp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid #EAE6DE;
}

.solutions-usp-icon {
  width: 20px;
  height: 20px;
  stroke: #B88E3E; /* Gold icon */
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
}

.solutions-usp-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #075453; /* Petrol text */
  line-height: 1.2;
}

@media (max-width: 767px) {
  .solutions-usp-row {
    gap: 12px;
    margin: 20px auto 4px auto;
  }
  .solutions-usp-item {
    width: 100%;
    justify-content: center;
  }
}

/* EGYM Wellpass Partner Badge */
.hero-egym-badge {
  position: absolute;
  bottom: 0;
  right: max(24px, calc((100% - 1200px) / 2 + 24px));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.hero-egym-badge img {
  width: 328px;
  height: 174px;
  display: block;
}

@media (max-width: 991px) {
  .hero-egym-badge {
    right: 24px;
    bottom: 0;
  }
  .hero-egym-badge img {
    width: 240px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-egym-badge {
    left: 50%;
    right: auto;
    bottom: 0;
    transform: translateX(-50%);
  }
}



/* ==========================================================================
   SOLUTIONS SECTION (Background #f0f0f0, No Borders around Cards, Compact Gap)
   ========================================================================== */
.solutions-section {
  padding: 90px 0 40px;
  background-color: var(--bg-solutions-section);
}

.section-header {
  margin-bottom: 56px;
}

h2.section-eyebrow,
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold-brown);
  display: block;
  margin-bottom: 12px;
  margin-top: 0;
}

p.section-title,
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.2;
  margin: 0;
}

/* Solutions Carousel Wrapper */
.solutions-carousel-wrapper {
  position: relative;
  width: 100%;
}

/* Glassy Navigation Arrows: Hidden on Desktop */
.glassy-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 24px rgba(43, 45, 47, 0.14);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  transition: all var(--transition-fast);
}

.glassy-arrow:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) scale(1.08);
  color: var(--color-petrol);
  box-shadow: 0 12px 28px rgba(7, 84, 83, 0.2);
}

.glassy-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.glassy-arrow-left {
  left: -16px;
}

.glassy-arrow-right {
  right: -16px;
}

/* DESKTOP GRID: FORCED 6 COLUMNS WITH COMPACT GAP */
.solutions-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 8px;
  width: 100%;
}

/* =============================================
   SOLUTION CARDS – NEW STYLE
   White body with icon + title,
   petrol footer bar always visible
   ============================================= */
.solution-card {
  background-color: var(--bg-surface-white);
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  box-shadow: 0 4px 18px rgba(43, 45, 47, 0.06);
  cursor: pointer;
  padding: 0;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(43, 45, 47, 0.12);
}

/* Body: icon + title area */
.solution-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px 20px;
  gap: 14px;
}

.solution-icon-box {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.solution-card-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.35;
  margin: 0;
}

/* Footer bar: petrol strip with 'Lösung finden →' */
.solution-card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-petrol);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 11px 16px;
  border-radius: 0 0 20px 20px;
  transition: background-color var(--transition-fast);
}

.solution-card:hover .solution-card-footer {
  background-color: var(--color-petrol-hover, #0a6b6a);
}

.solution-card-footer svg {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.solution-card:hover .solution-card-footer svg {
  transform: translateX(3px);
}

/* Solutions Footer */
.solutions-footer {
  margin-top: 24px;
  padding-top: 0;
  border-top: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.solutions-footer-note {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.solutions-footer-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.solutions-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-gold-brown);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.solutions-cta-link:hover {
  color: var(--color-petrol);
}

.solutions-cta-link svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform var(--transition-fast);
}

.solutions-cta-link:hover svg {
  transform: translateX(4px);
}

.solutions-cta-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ==========================================================================
   REUSABLE GLOBAL CTA BANNER COMPONENT
   ========================================================================== */
.global-cta-section {
  padding: 32px 0 80px;
  background-color: var(--bg-solutions-section);
}

.global-cta-card {
  background: linear-gradient(135deg, #105554 0%, #075453 100%);
  border-radius: 28px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 16px 40px rgba(7, 84, 83, 0.15);
  position: relative;
  overflow: hidden;
}

.global-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(194, 220, 208, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.global-cta-content {
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.global-cta-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #105554;
  background-color: #C2DCD0;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 18px;
}

.global-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 14px;
}

.global-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.global-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  min-width: 340px;
  position: relative;
  z-index: 2;
}

.btn-cta-primary {
  background-color: #C2DCD0;
  color: #105554;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 12px;
  border: 1px solid #C2DCD0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-fast);
}

.btn-cta-primary:hover {
  background-color: #FFFFFF;
  color: #105554;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-icon-left {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ==========================================================================
   CUSTOMER HIGHLIGHT TESTIMONIAL SECTION (Rosel Kargel)
   ========================================================================== */
.highlight-story-section {
  padding: 80px 0;
  background-color: #FAF8F5; /* Warm light-cream background */
  border-top: 1px solid #E5E1D8;
  border-bottom: 1px solid #E5E1D8;
  position: relative;
  overflow: hidden;
}

.highlight-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.highlight-story-media {
  position: relative;
}

.highlight-story-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(7, 84, 83, 0.12);
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* Frame the face nicely */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Glassy Video Badge on Image */
.highlight-story-media-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: #075453;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.highlight-story-media-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.highlight-story-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.highlight-story-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B88E3E; /* Gold eyebrow */
  margin-bottom: 12px;
}

.highlight-story-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #075453; /* Petrol title */
  line-height: 1.25;
  margin-bottom: 24px;
}

.highlight-story-quote-box {
  position: relative;
  margin-bottom: 24px;
  padding-left: 28px;
  border-left: 4px solid #B88E3E; /* Gold quote accent line */
}

.highlight-story-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  font-style: italic;
  color: #2B2D2F;
  line-height: 1.45;
  margin: 0;
}

.highlight-story-text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.highlight-story-actions {
  display: flex;
  gap: 16px;
}

/* Primary play-action button */
.btn-play-action {
  background-color: #075453;
  color: #FFFFFF;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 12px;
  border: 1px solid #075453;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all var(--transition-fast);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(7, 84, 83, 0.2);
}

.btn-play-action:hover {
  background-color: #105554;
  border-color: #105554;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 84, 83, 0.3);
}

.btn-play-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive adjustment */
@media (max-width: 991px) {
  .highlight-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .highlight-story-img-wrapper {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 576px) {
  .highlight-story-section {
    padding: 60px 0;
  }
  .highlight-story-img-wrapper {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }
  .highlight-story-media-badge {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    font-size: 0.72rem;
  }
}

/* ==========================================================================
   APPLICATIONS / TECHNOLOGIES SECTION
   ========================================================================== */
.applications-section {
  padding: 100px 0 80px;
  background-color: var(--bg-warm-white);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tech-card {
  background-color: var(--bg-surface-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(43, 45, 47, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
}

.tech-card:hover {
  transform: none;
  box-shadow: 0 4px 16px rgba(43, 45, 47, 0.03);
  border-color: var(--color-border);
}

.tech-card-image-box {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-color: var(--color-sage-light);
}

.tech-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
}

.tech-card:hover .tech-card-img {
  transform: none;
}

.tech-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tech-card-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-petrol);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  z-index: 2;
}

.tech-card-banner .tech-badge {
  position: static;
  background: #FFFFFF;
  color: var(--color-text-main);
  padding: 4px 12px;
  font-size: 0.72rem;
  border-radius: var(--radius-full);
  box-shadow: none;
}

.tech-card-banner .tech-banner-text {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tech-card-body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tech-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 10px;
  line-height: 1.25;
}

.tech-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

.tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.tech-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-main);
  line-height: 1.45;
}

.tech-check-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold-brown);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.tech-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-gold-brown);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.tech-link:hover {
  color: var(--color-petrol);
}

.tech-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ==========================================================================
   BOOKING & PROCESS SECTION
   ========================================================================== */
.booking-process-section {
  padding: 40px 0 60px;
  background-color: var(--bg-warm-white);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.booking-card {
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  box-sizing: border-box;
}

.cta-box-card {
  background-color: #C2DCD0;
  color: var(--color-text-main);
}

.booking-eyebrow-badge {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #105554;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 20px;
}

.booking-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #105554;
  line-height: 1.25;
  margin-bottom: 24px;
}

.booking-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.booking-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.92rem;
  color: var(--color-text-main);
  font-weight: 600;
}

.booking-check-icon {
  width: 28px;
  height: 28px;
  stroke: #105554;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  margin-top: 1px;
}

.booking-check-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-check-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: #105554;
  margin: 0;
  line-height: 1.2;
}

.booking-check-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: #105554;
  opacity: 0.85;
  margin: 0;
  line-height: 1.45;
}

.booking-action-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.btn-booking-submit {
  background-color: #105554;
  color: #FFFFFF;
  padding: 16px 24px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 10px;
  border: none;
  text-align: center;
  width: 100%;
}

.btn-booking-submit:hover {
  background-color: #0A403F;
  color: #FFFFFF;
}

.booking-phone-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4F7661;
  letter-spacing: 0.05em;
  text-align: center;
}



.video-box-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background-color: #1E2022;
  border-radius: 24px;
}

.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #105554;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.video-placeholder-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

#erfahrungen-video {
  scroll-margin-top: 140px; /* Offset for fixed header + padding */
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15); /* Subtly dim the poster for contrast */
  cursor: pointer;
  z-index: 8;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Premium Glassy Play Button */
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              background-color 0.3s ease, 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 6px; /* Offset to center play triangle visually */
  fill: currentColor;
  transition: transform 0.3s ease;
}

/* Hover micro-animations */
.video-play-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.video-play-overlay:hover .video-play-btn svg {
  transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
  .video-play-btn {
    width: 64px;
    height: 64px;
  }
  .video-play-btn svg {
    width: 22px;
    height: 22px;
    margin-left: 4px;
  }
}



.video-controls-bar {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
}

.video-ctrl-btn {
  background: none;
  border: none;
  color: #FFFFFF;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-ctrl-btn svg {
  width: 16px;
  height: 16px;
}

.video-progress-bar {
  flex-grow: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.video-progress-fill {
  width: 35%;
  height: 100%;
  background: #FFFFFF;
}

.video-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FFFFFF;
}

/* ==========================================================================
   TRUST / PROOF BAR SECTION
   ========================================================================== */
.trust-bar-section {
  padding: 0 0 70px;
  background-color: var(--bg-warm-white);
}

.trust-bar-card {
  background-color: #F4F1EA;
  border-radius: 24px;
  padding: 44px 40px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.trust-bar-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #105554;
  display: block;
  margin-bottom: 36px;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: center;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
}

.trust-icon-box {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #105554;
}

.trust-icon {
  width: 44px;
  height: 44px;
  stroke: #105554;
  stroke-width: 1.75;
  fill: none;
}

.trust-content {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.15;
}

.trust-subtext {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.3;
  margin-top: 2px;
}



.tech-card.is-recommended {
  overflow: visible !important;
  border: 4px solid #105554 !important; /* Thick brand petrol border */
  box-shadow: 0 16px 48px rgba(7, 84, 83, 0.25) !important; /* Premium brand shadow */
  transform: translateY(-8px) scale(1.02) !important; /* Float up and scale slightly */
}

.tech-card.is-recommended:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 16px 48px rgba(7, 84, 83, 0.3) !important;
  border-color: #105554 !important;
}

/* Style for the dynamic recommendation badge */
.tech-recommendation-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #105554; /* Brand petrol */
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  z-index: 100;
  white-space: nowrap;
}

.rec-badge-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Glassy Recommendation Modal Overlay */
.rec-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 30, 26, 0.45); /* Soft dark-greenish overlay */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999; /* Highest priority overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: backdropFadeIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes backdropFadeIn {
  to {
    opacity: 1;
  }
}

.rec-modal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  width: 90%;
  max-width: 680px;
  box-shadow: 0 32px 80px rgba(16, 85, 84, 0.18);
  display: flex;
  gap: 28px;
  padding: 28px;
  animation: modalSlideIn 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  box-sizing: border-box;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rec-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  font-size: 1.25rem;
  line-height: 1;
  transition: all var(--transition-fast);
}

.rec-modal-close-btn:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  transform: rotate(90deg);
}

/* Image container */
.rec-modal-image-box {
  width: 42%;
  flex-shrink: 0;
}

.rec-modal-img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(16, 85, 84, 0.08);
}

/* Content Area */
.rec-modal-content-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
}

.rec-modal-badge {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #27ae60; /* Emerald Green recommendation badge */
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.rec-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-petrol);
  margin: 0 0 12px;
  font-weight: 700;
  line-height: 1.2;
}

.rec-modal-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text-main);
  margin: 0 0 20px;
  font-weight: 500;
}

.rec-modal-text strong {
  color: var(--color-petrol);
}

/* Action button */
.btn-rec-modal-more {
  align-self: flex-start;
  background-color: var(--color-petrol);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(16, 85, 84, 0.2);
  transition: all var(--transition-fast);
}

.btn-rec-modal-more:hover {
  background-color: #0c4241;
  box-shadow: 0 8px 24px rgba(16, 85, 84, 0.3);
  transform: translateY(-2px);
}

.btn-rec-modal-more svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Responsive stack on tablet / mobile */
@media (max-width: 768px) {
  .rec-modal-card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    max-width: 440px;
  }
  .rec-modal-image-box {
    width: 100%;
  }
  .rec-modal-img {
    height: 180px;
    min-height: 180px;
  }
  .rec-modal-title {
    font-size: 1.35rem;
  }
}

@keyframes explainerPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Semantic Grid & Base Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background-color: var(--bg-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
}

/* --- PREMIUM FOOTER STYLING --- */
.site-footer {
  margin-top: auto;
  background-color: #0c3332; /* Rich dark petrol/olive color */
  color: #FFFFFF;
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.col-info {
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  background: #B88E3E; /* Gold on hover */
  border-color: #B88E3E;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: #B88E3E; /* Gold accent line */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #B88E3E;
  transform: translateX(4px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #B88E3E; /* Gold label */
  letter-spacing: 0.5px;
}

.contact-value {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.link-hover {
  transition: color 0.2s ease;
}

.link-hover:hover {
  color: #B88E3E;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* RESPONSIVE DESIGN */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .site-footer {
    padding: 60px 0 30px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .footer-title {
    margin-bottom: 20px;
  }
}

/* RESPONSIVE DESIGN & MOBILE SWIPE CAROUSEL WITH GLASSY ARROWS */
@media (max-width: 1100px) {
  .nav-list {
    gap: 20px;
  }
}

@media (max-width: 991px) {


  .global-cta-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
    gap: 28px;
  }

  .global-cta-actions {
    width: 100%;
    min-width: auto;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    white-space: normal;
  }

  .tech-grid,
  .booking-grid,
  .trust-bar-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-bar-card {
    padding: 32px 16px;
  }

  .trust-bar-eyebrow {
    margin-bottom: 24px;
    font-size: 0.8rem;
  }

  .trust-bar-item {
    justify-content: flex-start;
    padding-left: 12px;
  }

  .glassy-arrow {
    display: flex;
  }

  .solutions-grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
    padding-top: 8px;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .solutions-grid::-webkit-scrollbar {
    display: none;
  }
  
  .solution-card {
    min-width: 160px;
    width: 160px;
    flex: 0 0 auto;
    scroll-snap-align: start;
    padding: 0;
  }

  .solution-card-body {
    padding: 22px 12px 16px;
    gap: 10px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
  }

  .solution-icon-box {
    width: 54px;
    height: 54px;
  }

  .solution-card-footer {
    font-size: 0.75rem;
    padding: 9px 12px;
  }

  .top-bar-right {
    gap: 16px;
  }
  .phone-pill-sub {
    font-size: 0.62rem;
  }
  .phone-pill-number {
    font-size: 0.92rem;
  }
  .solutions-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .solutions-footer-action {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .hero-actions {
    flex-wrap: wrap;
  }
  .btn-hero-primary, .btn-hero-secondary {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 130px;
  }

  .header-container {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100%;
    padding-top: 52px; /* Push logo and burger menu below the absolute top bar */
    box-sizing: border-box;
  }

  .header-actions {
    display: flex;
    align-items: center;
  }

  .header-cta-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    display: flex;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    background-color: #105554;
    overflow: hidden;
  }

  .header-cta-segment {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100% !important;
    padding: 0 12px !important;
    border-radius: 0 !important;
    text-align: left;
    width: auto !important; /* Override the collapsing 38px width under 1200px query */
  }

  .header-cta-icon {
    width: 20px !important;
    height: 20px !important;
  }

  /* Swapping the order: Phone segment on the left, Booking on the right */
  .cta-segment-phone {
    order: 1;
    background-color: #B88E3E !important; /* Gold background */
    color: #FFFFFF !important;
    border: none !important;
  }

  .cta-segment-phone .header-cta-icon {
    color: #FFFFFF !important;
  }

  .cta-segment-booking {
    order: 2;
    background-color: #105554 !important; /* Petrol background */
    color: #FFFFFF !important;
    border: none !important;
  }

  .cta-segment-booking .header-cta-icon {
    color: #B88E3E !important; /* Gold icon */
  }

  .header-cta-text-wrapper {
    display: flex !important; /* Override display: none !important under 1200px query */
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta-sub,
  .header-cta-main {
    display: none !important;
  }

  .cta-segment-phone .header-cta-text-wrapper::before {
    content: "Wir beraten dich";
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2px;
  }

  .cta-segment-phone .header-cta-text-wrapper::after {
    content: "Anrufen";
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFFFFF;
  }

  .cta-segment-booking .header-cta-text-wrapper::before {
    content: "Online buchen";
    font-family: var(--font-heading);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2px;
  }

  .cta-segment-booking .header-cta-text-wrapper::after {
    content: "Termin buchen";
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #FFFFFF;
  }

  .brand-logo {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-logo img {
    width: 110px !important;
  }

  .top-bar {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-warm-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 24px;
    transform: translateY(-150%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    display: block;
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
  }

  .hero.hero-small {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: auto;
  }


  .hero-subclaim {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-hero-primary, .btn-hero-secondary {
    width: 100%;
  }

  .hero-usp-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* ==========================================================================
   SERVICE PAGES (e.g. Kaeltetherapie) SPECIFIC STYLES
   ========================================================================== */

/* =============================================
       SERVICE PAGE – SECTION STYLES
       ============================================= */

    /* --- Generic Service Section Spacing --- */
    .svc-section {
      padding: 80px 0;
    }
    .svc-section.bg-white {
      background-color: var(--bg-surface-white);
    }
    .svc-section.bg-warm {
      background-color: var(--bg-warm-white);
    }
    .svc-section.bg-light {
      background-color: var(--bg-solutions-section);
    }

    /* --- Section Headers (reused pattern) --- */
    .svc-section-header {
      text-align: center;
      margin-bottom: 56px;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
    }
    .svc-section-header .svc-eyebrow {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--color-petrol);
      background-color: var(--color-petrol-light);
      padding: 6px 18px;
      border-radius: var(--radius-full);
      margin-bottom: 18px;
    }
    .svc-section-header .svc-title {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--color-text-main);
      line-height: 1.2;
      margin-bottom: 16px;
      position: relative;
      padding-bottom: 18px;
    }
    .svc-section-header .svc-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 3px;
      background-color: var(--color-petrol);
      border-radius: 2px;
    }
    .svc-section-header .svc-subtitle {
      font-family: var(--font-body);
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--color-text-muted);
      max-width: 650px;
      margin: 20px auto 0;
    }

    /* --- Hero Intro Content (below hero-small) --- */
    .svc-intro {
      padding: 80px 0 60px;
      background-color: var(--bg-warm-white);
    }
    .svc-intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .svc-intro-text h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 2.6vw, 1.95rem);
      font-weight: 800;
      color: var(--color-text-main);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .svc-intro-text h2 span {
      color: var(--color-petrol);
    }
    .svc-intro-text p {
      font-family: var(--font-body);
      font-size: 1.02rem;
      line-height: 1.75;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }
    .svc-intro-text p:last-of-type {
      margin-bottom: 28px;
    }
    .svc-intro-media {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }
    .svc-intro-media img {
      width: 100%;
      height: auto;
      display: block;
    }
    .svc-intro-media .svc-media-badge {
      position: absolute;
      bottom: 16px;
      left: 16px;
      background: rgba(7, 84, 83, 0.88);
      color: #FFF;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      backdrop-filter: blur(8px);
    }

    .svc-buttons-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }

    /* --- CTA Button (reusable) --- */
    .btn-svc-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: var(--color-petrol);
      color: #FFF;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: background-color var(--transition-fast), transform var(--transition-fast);
      border: none;
      cursor: pointer;
    }
    .btn-svc-primary:hover {
      background-color: var(--color-petrol-hover);
      color: #FFF;
      transform: translateY(-1px);
    }
    .btn-svc-primary svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .btn-svc-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: transparent;
      color: var(--color-petrol);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: var(--radius-md);
      text-decoration: none;
      border: 2px solid var(--color-petrol);
      transition: background-color var(--transition-fast), color var(--transition-fast);
      cursor: pointer;
    }
    .btn-svc-secondary:hover {
      background-color: var(--color-petrol);
      color: #FFF;
    }
    .btn-svc-secondary svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- Target Group / Use-Cases Cards --- */
    .svc-usecases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .svc-usecase-card {
      background: var(--bg-surface-white);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-border);
      transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
    }
    .svc-usecase-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .svc-usecase-icon {
      width: 52px;
      height: 52px;
      background: var(--color-petrol-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }
    .svc-usecase-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--color-petrol);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .svc-usecase-card h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 12px;
    }
    .svc-usecase-card p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-text-muted);
      margin-bottom: 14px;
    }
    .svc-usecase-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .svc-usecase-list li {
      font-family: var(--font-body);
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--color-text-muted);
      padding: 5px 0 5px 28px;
      position: relative;
    }
    .svc-usecase-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 18px;
      height: 18px;
      background: var(--color-petrol-light);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23075453' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 12 11 14 15 10'%3E%3C/polyline%3E%3C/svg%3E");
      background-size: 14px;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* --- How It Works (Two Column: Text + Visual) --- */
    .svc-howit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .svc-howit-text h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 2.6vw, 1.95rem);
      font-weight: 800;
      color: var(--color-text-main);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .svc-howit-text h2 span {
      color: var(--color-petrol);
    }
    .svc-howit-text h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 10px;
      margin-top: 28px;
    }
    .svc-howit-text h3:first-of-type {
      margin-top: 0;
    }
    .svc-howit-text p {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.75;
      color: var(--color-text-muted);
      margin-bottom: 14px;
    }
    .svc-howit-sidebar {
      background: var(--bg-surface-white);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-border);
      position: sticky;
      top: 120px;
    }
    .svc-howit-sidebar h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 20px;
    }
    .svc-benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--color-border);
    }
    .svc-benefit-item:last-child {
      border-bottom: none;
    }
    .svc-benefit-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      background: var(--color-petrol-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .svc-benefit-icon svg {
      width: 18px;
      height: 18px;
      stroke: var(--color-petrol);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .svc-benefit-text {
      font-family: var(--font-body);
      font-size: 0.92rem;
      line-height: 1.5;
      color: var(--color-text-muted);
    }
    .svc-benefit-text strong {
      color: var(--color-text-main);
      font-weight: 600;
    }

    /* --- Process Steps --- */
    .svc-process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      counter-reset: process;
    }
    .svc-process-card {
      background: var(--bg-surface-white);
      border-radius: var(--radius-lg);
      padding: 36px 28px 32px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-border);
      position: relative;
      overflow: hidden;
      transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
    }
    .svc-process-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .svc-process-card::before {
      counter-increment: process;
      content: counter(process);
      position: absolute;
      top: -8px;
      right: 16px;
      font-family: var(--font-heading);
      font-size: 5rem;
      font-weight: 800;
      color: var(--color-petrol-light);
      line-height: 1;
      pointer-events: none;
    }
    .svc-process-card h3 {
      font-family: var(--font-heading);
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 10px;
      position: relative;
    }
    .svc-process-card p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-text-muted);
      position: relative;
    }

    /* --- Trust / Why Zeitraum --- */
    .svc-why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .svc-why-item {
      display: flex;
      gap: 18px;
      align-items: flex-start;
      background: var(--bg-surface-white);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-border);
      transition: box-shadow var(--transition-smooth);
    }
    .svc-why-item:hover {
      box-shadow: var(--shadow-md);
    }
    .svc-why-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--topbar-bg);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .svc-why-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--color-petrol);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .svc-why-content h3 {
      font-family: var(--font-heading);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 6px;
    }
    .svc-why-content p {
      font-family: var(--font-body);
      font-size: 0.92rem;
      line-height: 1.65;
      color: var(--color-text-muted);
    }

    /* --- FAQ Accordion --- */
    .svc-faq-list {
      max-width: 820px;
      margin: 0 auto;
    }
    .svc-faq-item {
      background: var(--bg-surface-white);
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      margin-bottom: 12px;
      overflow: hidden;
      transition: box-shadow var(--transition-smooth);
    }
    .svc-faq-item:hover {
      box-shadow: var(--shadow-sm);
    }
    .svc-faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
      padding: 20px 24px;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-text-main);
      text-align: left;
      line-height: 1.4;
      transition: color var(--transition-fast);
    }
    .svc-faq-question:hover {
      color: var(--color-petrol);
    }
    .svc-faq-chevron {
      width: 20px;
      height: 20px;
      min-width: 20px;
      stroke: var(--color-text-muted);
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform var(--transition-smooth);
      margin-left: auto;
    }
    .svc-faq-q-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      min-width: 28px;
      background-color: var(--color-petrol-light);
      color: var(--color-petrol);
      border-radius: 50%;
      font-family: var(--font-heading);
      font-size: 0.85rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .svc-faq-item.open .svc-faq-chevron {
      transform: rotate(180deg);
    }
    .svc-faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
      padding: 0 24px;
    }
    .svc-faq-item.open .svc-faq-answer {
      max-height: 600px;
      padding: 0 24px 22px;
    }
    .svc-faq-answer p {
      font-family: var(--font-body);
      font-size: 0.95rem;
      line-height: 1.75;
      color: var(--color-text-muted);
    }

    /* --- Inline CTA Banner (page-specific, reusable) --- */
    .svc-cta-banner {
      background: linear-gradient(135deg, var(--color-petrol) 0%, #0a6b6a 100%);
      border-radius: var(--radius-lg);
      padding: 56px 48px;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }
    .svc-cta-banner h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      font-weight: 700;
      color: #FFF;
      margin-bottom: 14px;
    }
    .svc-cta-banner p {
      font-family: var(--font-body);
      font-size: 1.02rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.82);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .svc-cta-banner .svc-cta-actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #FFF;
      color: var(--color-petrol);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: var(--radius-md);
      text-decoration: none;
      transition: background-color var(--transition-fast), transform var(--transition-fast);
    }
    .btn-cta-white:hover {
      background-color: #F0FAF9;
      color: var(--color-petrol);
      transform: translateY(-1px);
    }
    .btn-cta-white svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .btn-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: transparent;
      color: #FFF;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      padding: 12px 26px;
      border-radius: var(--radius-md);
      text-decoration: none;
      border: 2px solid rgba(255, 255, 255, 0.4);
      transition: border-color var(--transition-fast), background-color var(--transition-fast);
    }
    .btn-cta-ghost:hover {
      border-color: #FFF;
      background-color: rgba(255, 255, 255, 0.1);
      color: #FFF;
    }
    .btn-cta-ghost svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* --- Prose Text Blocks --- */
    .svc-prose {
      max-width: 780px;
      margin: 0 auto;
    }
    .svc-prose h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.5rem, 2.6vw, 1.95rem);
      font-weight: 800;
      color: var(--color-text-main);
      margin-bottom: 20px;
      line-height: 1.25;
    }
    .svc-prose h2 span {
      color: var(--color-petrol);
    }
    .svc-prose h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 10px;
      margin-top: 32px;
    }
    .svc-prose p {
      font-family: var(--font-body);
      font-size: 1.02rem;
      line-height: 1.78;
      color: var(--color-text-muted);
      margin-bottom: 16px;
    }
    .svc-prose ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }
    .svc-prose ul li {
      font-family: var(--font-body);
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--color-text-muted);
      padding: 6px 0 6px 30px;
      position: relative;
    }
    .svc-prose ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 11px;
      width: 18px;
      height: 18px;
      background: var(--color-petrol-light);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23075453' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 12 11 14 15 10'%3E%3C/polyline%3E%3C/svg%3E");
      background-size: 14px;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* --- Responsive --- */
    @media (max-width: 991px) {
      .svc-intro-grid,
      .svc-howit-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .svc-usecases-grid,
      .svc-process-grid {
        grid-template-columns: 1fr 1fr;
      }
      .svc-why-grid {
        grid-template-columns: 1fr;
      }
      .svc-howit-sidebar {
        position: static;
      }
      .svc-intro-media {
        order: -1;
      }
    }
    @media (max-width: 640px) {
      .svc-section {
        padding: 56px 0;
      }
      .svc-usecases-grid,
      .svc-process-grid {
        grid-template-columns: 1fr;
      }
      .svc-cta-banner {
        padding: 40px 24px;
      }
      .svc-cta-banner .svc-cta-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .btn-cta-white,
      .btn-cta-ghost {
        justify-content: center;
      }
    }

/* ==========================================================================
   DROPDOWN MENU FOR NAVIGATION
   ========================================================================== */

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .dropdown-caret {
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-smooth);
}

.nav-item-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

/* Dropdown Menu Box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(10px);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 225, 216, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 280px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10000;
  margin: 0;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.dropdown-menu li {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Dropdown link item */
.dropdown-menu .nav-link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-main) !important;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.dropdown-menu .nav-link::after {
  display: none !important;
}

.dropdown-menu .nav-link:hover {
  background-color: var(--color-petrol-light);
  color: var(--color-petrol) !important;
}

/* Mobile Dropdown Responsive Styles */
@media (max-width: 767px) {
  .nav-item-dropdown {
    width: 100%;
  }

  .nav-item-dropdown .dropdown-caret {
    display: none !important; /* Hide caret on mobile */
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 6px 0 0 16px;
    opacity: 1;
    visibility: visible;
    display: block; /* Show dropdown menu expanded by default on mobile for easy navigation */
    min-width: auto;
  }

  .dropdown-menu li {
    margin-bottom: 8px;
  }

  .dropdown-menu .nav-link {
    padding: 6px 12px;
    font-size: 0.98rem;
    color: var(--color-text-muted) !important;
  }
  
  .dropdown-menu .nav-link:hover,
  .dropdown-menu .nav-link.active {
    color: var(--color-petrol) !important;
    background: transparent;
  }
}

/* ==========================================================================
   EXTERNAL LINKS WITH MICRO-ANIMATION
   ========================================================================== */

.external-link {
  color: var(--color-petrol);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition-fast);
  display: inline-block;
}

.external-link:hover {
  color: var(--color-petrol-hover);
}

.external-link-icon {
  margin-left: 2px;
  stroke: currentColor;
  display: inline-block;
  vertical-align: middle;
  transition: transform var(--transition-fast);
}

.external-link:hover .external-link-icon {
  transform: translate(1.5px, -1.5px);
}

/* ==========================================================================
   KRANKENKASSEN & MAGAZINE PRESSE BLOCK
   ========================================================================== */

.svc-press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.svc-press-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.svc-press-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin-bottom: 14px;
}

.svc-press-card {
  position: relative;
  background-color: var(--bg-surface-white);
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-petrol);
  border-radius: 4px 12px 12px 4px;
  padding: 36px 24px;
  min-height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.svc-press-card-wrapper:hover .svc-press-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-press-quote-bg {
  position: absolute;
  top: 16px;
  left: 24px;
  width: 48px;
  height: 48px;
  color: rgba(7, 84, 83, 0.05);
  pointer-events: none;
  z-index: 1;
}

.svc-press-quote {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-main);
  position: relative;
  z-index: 2;
  margin: 0;
}

.svc-press-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-petrol);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.svc-press-link:hover {
  color: var(--color-petrol-hover);
  text-decoration: underline;
}

.svc-press-link .external-link-icon {
  margin-left: 4px;
  transition: transform var(--transition-fast);
}

.svc-press-link:hover .external-link-icon {
  transform: translate(1px, -1px);
}

/* Responsive Press Grid */
@media (max-width: 991px) {
  .svc-press-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .svc-press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* ==========================================================================
   GLOSSY / GLASSMORPHISM SECTION & CARDS
   ========================================================================== */

.svc-section-glossy {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.svc-section-glossy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 43, 38, 0.92); /* Dark petrol overlay to make white text highly readable */
  z-index: 1;
}

.svc-section-glossy .container {
  position: relative;
  z-index: 2;
}

.svc-section-glossy .svc-section-header .svc-title {
  color: #FFF;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

.svc-section-glossy .svc-section-header .svc-title::after {
  background-color: rgba(255, 255, 255, 0.45);
}

.svc-section-glossy .svc-section-header .svc-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.svc-section-glossy .svc-section-header .svc-eyebrow {
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.svc-glossy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.svc-glossy-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), background-color var(--transition-smooth);
}


.svc-glossy-icon {
  width: 56px;
  height: 56px;
  background: rgba(194, 220, 208, 0.22);
  border: 1px solid rgba(194, 220, 208, 0.32);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #FFF;
}

.svc-glossy-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-glossy-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 14px;
}

.svc-glossy-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.svc-glossy-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-glossy-list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 0 6px 28px;
  position: relative;
}

.svc-glossy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 18px;
  background: rgba(194, 220, 208, 0.25);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='9 12 11 14 15 10'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive Glossy Grid */
@media (max-width: 991px) {
  .svc-glossy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .svc-glossy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .svc-section-glossy {
    padding: 60px 0;
  }
}

/* Hero USP Vertical List Style */
.hero-usp-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0 0;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.hero-usp-list li {
  position: relative;
  padding-left: 36px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-usp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Google Trust Badge Style */
.hero-google-badge {
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 16px;
  padding: 16px 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  align-self: flex-start;
}

.badge-row-stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-logo-svg {
  display: block;
  flex-shrink: 0;
}

.google-stars {
  color: #ffb400; /* Rich gold/yellow stars */
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  gap: 2px;
}

.badge-score {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.badge-headline {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.badge-verification {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.2;
}

/* Tooltip implementation */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.info-icon-svg {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition-fast);
}

.tooltip-wrapper:hover .info-icon-svg {
  color: #FFFFFF;
}

.tooltip-bubble {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 260px;
  background-color: #1a2b26; /* match dark petrol theme */
  color: #ffffff;
  text-align: left;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 100;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
  pointer-events: none;
}

/* Tooltip arrow */
.tooltip-bubble::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #1a2b26 transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-bubble {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Split Why Us Section */
.svc-why-split-section {
  background-color: #C2DCD0 !important;
  padding: 100px 0;
}

.svc-why-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 80px;
  align-items: flex-start;
}

.svc-why-split-left {
  position: sticky;
  top: 120px;
}

.svc-why-split-left .svc-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-petrol);
  margin-bottom: 16px;
}

.svc-why-split-left .svc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-petrol);
  margin-bottom: 24px;
}

.svc-why-split-left .svc-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.65;
  color: #3b5a4b; /* elegant darker sage-forest color */
}

.svc-why-split-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 30px;
}

.svc-why-split-right .svc-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.45) !important; /* subtle glassmorphism look on light green */
  padding: 24px !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 4px 15px rgba(7, 84, 83, 0.04) !important;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth) !important;
}

.svc-why-split-right .svc-why-item:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(7, 84, 83, 0.08) !important;
  background: rgba(255, 255, 255, 0.6) !important;
}

.svc-why-split-right .svc-why-icon {
  flex-shrink: 0;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 50% !important;
  background-color: rgba(7, 84, 83, 0.08) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-why-split-right .svc-why-icon svg {
  width: 22px !important;
  height: 22px !important;
  stroke: var(--color-petrol) !important;
  stroke-width: 2 !important;
  fill: none !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.svc-why-split-right .svc-why-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-petrol);
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-why-split-right .svc-why-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-main);
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .svc-why-split-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .svc-why-split-left {
    position: static;
  }
}

@media (max-width: 768px) {
  .svc-why-split-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .svc-why-split-section {
    padding: 60px 0;
  }
}

/* Absolute Positioned Google Badge for Homepage Hero */
.hero-google-badge-absolute {
  position: absolute;
  bottom: 40px;
  left: max(24px, calc((100% - 1200px) / 2 + 24px));
  z-index: 10;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  max-width: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all var(--transition-smooth);
}

@media (max-width: 991px) {
  .hero-google-badge-absolute {
    left: 24px;
    bottom: 30px;
  }
}

@media (max-width: 480px) {
  .hero-google-badge-absolute {
    left: 50%;
    bottom: 170px; /* position it above EGYM badge */
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL SECTION (Social Proof)
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, #075453 0%, #043837 100%);
  padding: 100px 0 80px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
}

.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 28px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

.testimonial-card-wrapper {
  flex-shrink: 0;
  width: 33.3333%;
  padding: 40px 12px 16px 12px;
  box-sizing: border-box;
}

.testimonial-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 42px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  height: 270px;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-avatar-circle {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

/* Color palettes for avatars */
.avatar-c1 { background: linear-gradient(135deg, #105554 0%, #0a3635 100%); border: 3px solid #075453; }
.avatar-c2 { background: linear-gradient(135deg, #535C35 0%, #353b21 100%); border: 3px solid #075453; }
.avatar-c3 { background: linear-gradient(135deg, #A0AEA1 0%, #768377 100%); border: 3px solid #075453; color: #105554 !important; }
.avatar-c4 { background: linear-gradient(135deg, #075453 0%, #043534 100%); border: 3px solid #075453; }
.avatar-c5 { background: linear-gradient(135deg, #0A6B6A 0%, #064342 100%); border: 3px solid #075453; }

.quote-symbol {
  position: absolute;
  right: 28px;
  top: 10px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
  pointer-events: none;
}

.testimonial-info {
  text-align: center;
  margin-bottom: 10px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.testimonial-category {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  color: #A0AEA1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-text-container {
  flex: 1;
  overflow-y: auto;
  padding-right: 8px;
  margin-bottom: 10px;
}

/* Styled scrollbar for the review text box */
.testimonial-text-container::-webkit-scrollbar {
  width: 4px;
}

.testimonial-text-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
}

.testimonial-text-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.testimonial-text-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.testimonial-footer-stars {
  text-align: center;
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-top: auto;
  user-select: none;
}

/* Nav Buttons (Glossy Circular Arrows) */
.carousel-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  z-index: 10;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:active {
  transform: scale(0.96);
}

.carousel-nav-btn svg {
  width: 22px;
  height: 22px;
}

/* Pagination Dots */
.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: #A0AEA1;
  transform: scale(1.3);
}

/* Responsive Rules for Testimonials Carousel */
@media (max-width: 991px) {
  .testimonial-card-wrapper {
    width: 50%;
  }
  .testimonials-carousel-wrapper {
    gap: 12px;
  }
  .carousel-nav-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 767px) {
  .testimonial-card-wrapper {
    width: 100%;
  }
  .testimonials-carousel-wrapper {
    padding: 0 8px;
  }
  .carousel-nav-btn {
    display: none;
  }
}

/* Responsive collapsing for header actions (both phone and booking segments collapse to icons under 1200px) */
@media (max-width: 1199px) and (min-width: 768px) {
  .header-cta-text-wrapper {
    display: none !important;
  }
  .header-cta-segment {
    padding: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    width: 38px !important;
    height: 38px !important;
  }
  .header-cta-icon {
    width: 16px !important;
    height: 16px !important;
  }
}
/* Responsive adjustments for contact page grid */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* --- Warum-Section Split-Layout --- */
.svc-why-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.svc-why-left {
  position: sticky;
  top: 150px;
}

.svc-why-left .svc-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-petrol);
  background-color: var(--color-petrol-light);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.svc-why-left .svc-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  color: var(--color-text-main);
  line-height: 1.25;
  margin-bottom: 20px;
}

.svc-why-left .svc-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.svc-why-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-why-card-new {
  background: var(--bg-surface-white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(7, 84, 83, 0.04);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.svc-why-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 85, 84, 0.15);
}

.svc-why-icon-new {
  width: 48px;
  height: 48px;
  background: var(--color-petrol-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-petrol);
}

.svc-why-icon-new svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-why-card-new h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-why-card-new p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .svc-why-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .svc-why-left {
    position: static;
  }
  
  .svc-why-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-why-grid-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
