/* ==========================================================================
   Polster-Putzer.at - Modern Urban Cleaning Lab CSS
   Zero-JS, Ultra-Lightweight, Mobile-First, Accessible
   ========================================================================== */

:root {
  /* Color System */
  --color-bg: #FAFAF7;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F5F6F7;
  --color-surface-blue: #E8FFFD;
  --color-surface-yellow: #FFFDE0;
  
  --color-text: #10213D;
  --color-text-muted: #536174;
  
  /* Primary Informational Turquoise Token (#0CECDD) */
  --color-primary: #0CECDD;
  --color-primary-accent: #0CECDD;
  --color-primary-accent-hover: #08D4C7;
  --color-blue: #08857D;
  --color-blue-hover: #066962;
  --color-blue-light: #E8FFFD;
  
  /* Booking / Price Yellow Token (#FFF338) */
  --color-yellow: #FFF338;
  --color-yellow-hover: #EFE218;
  --color-yellow-soft: #FFFDE0;
  
  /* Secondary Accent Pink Token (#FF67E7) */
  --color-accent: #FF67E7;
  --color-pink: #FF67E7;
  --color-pink-light: #FDF0FA;
  --color-pink-border: #F8B4EE;
  
  /* Borders */
  --color-border: #E5E9EF;
  --color-border-subtle: #F0F3F7;
  --color-border-blue: #B8F6F2;
  
  /* Warnings */
  --color-warning-bg: #FFF8E6;
  --color-warning-border: #F3C96A;
  --color-warning-text: #664600;
  
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  --max-width: 1240px;
  --max-width-narrow: 840px;
  
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 36px;
  --space-2xl: 56px;
  --space-3xl: 80px;
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  color: var(--color-text);
  padding-bottom: 76px; /* Space for mobile sticky CTA bar */
  max-width: 100%;
  overflow-x: hidden;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4 {
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}

h2 {
  font-size: 1.85rem;
  margin-bottom: var(--space-md);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

h4 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}

p {
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

p.lead {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  max-width: 600px;
}

.text-muted {
  color: var(--color-text-muted);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background-color: var(--color-blue-light);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.eyebrow-accent {
  background-color: var(--color-yellow-soft);
  color: var(--color-text);
}

/* Containers & Sections */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.section-alt {
  background-color: var(--color-surface);
}

.section-blue {
  background-color: var(--color-surface-blue);
}

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.text-center {
  text-align: center;
}

.section-header.text-center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons & CTAs */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

/* Primary Yellow CTA */
.btn-yellow,
.btn-primary {
  background-color: var(--color-yellow);
  color: var(--color-text);
  font-weight: 800;
}

.btn-yellow:hover,
.btn-primary:hover {
  background-color: var(--color-yellow-hover);
  transform: translateY(-1px);
  color: var(--color-text);
}

.btn-secondary {
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-weight: 700;
}

.btn-secondary:hover {
  background-color: var(--color-surface-subtle);
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.btn-info {
  background-color: var(--color-primary-accent, #0CECDD);
  color: #10213D;
  font-weight: 700;
}

.btn-info:hover {
  background-color: var(--color-primary-accent-hover, #08D4C7);
  color: #10213D;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 15px 26px;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* Header & Nav */
.site-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E9EF;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 72px;
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: var(--space-md);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #10213D;
  text-transform: uppercase;
}

.brand-top {
  font-size: 1.05rem;
  color: #10213D;
}

.brand-bottom {
  font-size: 1.25rem;
  color: #10213D;
}

.brand-dot {
  color: #0CECDD;
  font-weight: 900;
}

.site-nav {
  display: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #10213D;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--color-blue, #08857D);
}

.header-actions {
  display: flex;
  align-items: center;
}

.btn-header-cta {
  background-color: var(--color-yellow, #FFF338);
  color: #10213D;
  font-weight: 800;
  border: 0;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-header-cta:hover {
  background-color: var(--color-yellow-hover, #EFE218);
  color: #10213D;
}

@media (min-width: 860px) {
  .site-nav {
    display: block;
  }
}

/* ==========================================================================
   Opening Area (Hero + Price Overview Shared Block)
   ========================================================================== */
.opening-area {
  background-color: #FAFAF7;
  padding-top: 16px;
  padding-bottom: 28px;
}

@media (min-width: 900px) {
  .opening-area {
    padding-top: 20px;
    padding-bottom: 32px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section,
#hero {
  padding-top: 0;
  padding-bottom: 8px;
  background-color: transparent;
  overflow: hidden;
}

.hero-grid {
  display: block;
}

@media (min-width: 900px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 32px;
    align-items: stretch;
    position: relative;
    min-height: 390px;
    height: auto;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-content .eyebrow {
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #10213D;
  margin-bottom: 14px;
}

@media (min-width: 900px) {
  .hero-title {
    font-size: clamp(34px, 3.6vw, 48px);
    line-height: 1.02;
    margin-bottom: 14px;
  }
}

/* Headline Yellow Price Highlight */
.hero-price-tag {
  display: inline-block;
  background: var(--color-yellow, #FFF338);
  color: #10213D;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  padding: 2px 10px 5px;
  border-radius: 6px;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero-lead {
  font-size: 15px;
  line-height: 1.45;
  color: #536174;
  max-width: 580px;
  margin-bottom: 18px;
}

/* Benefit Row */
.hero-benefit-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  .hero-benefit-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
}

.hero-benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background-color: var(--color-blue-light, #E6FDFB);
  color: var(--color-blue, #08857D);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-benefit-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hero-benefit-bold {
  font-size: 0.85rem;
  font-weight: 800;
  color: #10213D;
}

.hero-benefit-sub {
  font-size: 0.72rem;
  color: #536174;
  font-weight: 500;
}

/* Main Hero CTA & Partner Note */
.hero-cta-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.btn-hero-cta {
  background-color: var(--color-yellow, #FFF338);
  color: #10213D;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background-color: var(--color-yellow-hover, #EFE218);
  color: #10213D;
  transform: translateY(-1px);
}

.hero-provider-hint {
  font-size: 0.85rem;
  color: #536174;
}

.hero-provider-hint a {
  color: var(--color-blue, #08857D);
  font-weight: 700;
  text-decoration: underline;
}

/* Hero Media Showcase */
.hero-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 18px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-media-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: linear-gradient(
    to bottom,
    #FAFAF7 0%,
    rgba(250, 250, 247, 0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-media-wrap {
    margin-top: 0;
    position: relative;
    height: 100%;
    min-height: 390px;
    max-height: 420px;
    aspect-ratio: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
    margin-right: calc((100vw - min(100vw, var(--max-width, 1240px))) / -2 - 24px);
    width: calc(100% + max(0px, (100vw - var(--max-width, 1240px)) / 2) + 24px);
  }

  .hero-media-wrap::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
    inset: 0 auto 0 0;
    width: 22%;
    max-width: 140px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(
      to right,
      #FAFAF7 0%,
      rgba(250, 250, 247, 0.95) 18%,
      rgba(250, 250, 247, 0.70) 42%,
      rgba(250, 250, 247, 0.30) 70%,
      rgba(250, 250, 247, 0) 100%
    );
  }
}

.hero-media-wrap img,
.hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  border-radius: 0;
}

/* ==========================================================================
   Horizontal Product Overview (Reinigungsgeräte ab 5 € / Tag)
   ========================================================================== */
.price-overview-section,
#geraete-uebersicht {
  padding-top: 8px;
  padding-bottom: 0;
  background-color: transparent;
}

#geraete-uebersicht .section-header {
  text-align: left;
  margin-bottom: 14px;
  max-width: none;
}

#geraete-uebersicht .section-header .eyebrow {
  margin-bottom: 4px;
}

#geraete-uebersicht .section-header h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  margin-bottom: 4px;
  text-align: left;
}

#geraete-uebersicht .section-header .lead {
  font-size: 0.9rem;
  margin-top: 4px;
  margin-bottom: 0;
  max-width: none;
  text-align: left;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 560px) {
  .product-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .product-overview-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

.product-overview-card {
  background-color: #FFFFFF;
  border: 1px solid #E5E9EF;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.product-overview-card.featured {
  border: 1px solid #E5E9EF;
  background-color: #FFFFFF;
}

.card-badge-top {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background-color: #FF67E7;
  color: #0B1B33;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card-img-link {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
  margin-bottom: 10px;
  border-radius: 8px;
}

.product-card-img-link img,
.product-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.product-photo-placeholder {
  width: 100%;
  height: 100%;
  background-color: #F5F6F7;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 0.75rem;
  font-weight: 600;
  color: #536174;
  text-align: center;
  padding: 6px;
}

.product-card-title-link {
  display: block;
  color: #10213D;
  margin-bottom: 2px;
}

.product-card-title-link h3 {
  font-size: 1rem;
  line-height: 1.25;
  color: #10213D;
  margin-bottom: 2px;
}

.product-card-title-link:hover h3 {
  color: var(--color-blue, #08857D);
}

.product-type-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-blue, #08857D);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.product-short-desc {
  font-size: 0.78rem;
  color: #536174;
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

/* Yellow Price CTA Button */
.product-price-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  background: var(--color-yellow, #FFF338);
  color: #10213D;
  font-size: 16px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 8px;
}

.product-price-cta:hover {
  background: var(--color-yellow-hover, #EFE218);
  color: #10213D;
}

.btn-link-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  color: var(--color-blue, #08857D);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.btn-link-blue:hover {
  text-decoration: underline;
  color: var(--color-blue-hover, #066962);
}

/* ==========================================================================
   Side-by-Side Locations & Process Panels
   ========================================================================== */
.section-compact-panels {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
  background-color: var(--color-bg);
}

.dual-panels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 960px) {
  .dual-panels-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.compact-panel {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(16, 33, 61, 0.03);
}

.panel-locations {
  background-color: var(--color-surface-blue);
  border-color: var(--color-border-blue);
}

.compact-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.panel-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.compact-panel-title {
  font-size: 1.15rem;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 2px;
}

.compact-panel-subtitle {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  display: block;
}

/* Locations List */
.compact-locations-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.compact-loc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-blue);
  border-radius: 8px;
  padding: 12px 14px;
}

.compact-loc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary-accent, #0CECDD);
  margin-top: 5px;
  flex-shrink: 0;
}

.compact-loc-content {
  flex-grow: 1;
}

.compact-loc-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 3px;
}

.compact-loc-heading strong {
  font-size: 0.95rem;
  color: var(--color-text);
}

.compact-loc-link {
  font-size: 0.8rem;
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.compact-loc-link:hover {
  text-decoration: underline;
}

.compact-loc-text {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Process Steps */
.compact-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.compact-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.compact-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.compact-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.25;
}

.compact-step-arrow {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 6px;
  display: none;
}

.compact-process-cta {
  text-align: right;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.compact-process-link {
  font-size: 0.85rem;
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.compact-process-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Use Cases Grid (Was willst du reinigen?)
   ========================================================================== */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.use-case-card:hover {
  border-color: var(--color-primary-accent, #0CECDD);
}

.use-case-head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.use-case-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--color-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-blue);
  flex-shrink: 0;
}

.use-case-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.use-case-card p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.use-case-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.use-case-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Full Product Detail Cards (#geraete)
   ========================================================================== */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 960px) {
  .products-grid {
    grid-template-columns: 1.3fr 1fr;
  }
  .product-featured {
    grid-row: span 3;
  }
}

.product-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card.product-featured {
  border: 2px solid var(--color-primary-accent, #0CECDD);
  background-color: #FFFFFF;
  padding: var(--space-xl);
}

.product-tag-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  background-color: var(--color-blue-light);
  color: var(--color-blue);
}

.product-tag-top {
  background-color: var(--color-yellow);
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.price-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-text);
}

.product-featured .price-num {
  font-size: 3.25rem;
  color: var(--color-text);
}

.price-unit {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.product-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-sm);
}

.product-featured h3 {
  font-size: 1.75rem;
}

.product-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.product-how-it-works {
  background-color: var(--color-surface-blue);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border-left: 3px solid var(--color-primary-accent, #0CECDD);
  font-size: 0.9rem;
}

.product-how-it-works strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-text);
}

.product-checklist {
  list-style: none;
  margin-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.product-checklist li {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 8px;
  background-color: var(--color-surface-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-sm);
}

.product-warning {
  background-color: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
  color: var(--color-warning-text);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

.product-actions {
  margin-top: auto;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.table-responsive-wrapper {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  min-width: 600px;
}

.comparison-table th {
  background-color: var(--color-surface-subtle);
  padding: 14px 18px;
  font-weight: 800;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-text);
}

.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background-color: var(--color-surface-subtle);
}

.table-problem {
  font-weight: 700;
  color: var(--color-text);
}

.table-product-link {
  font-weight: 700;
  color: var(--color-blue);
}

.table-product-link:hover {
  text-decoration: underline;
}

.table-price {
  font-weight: 800;
  white-space: nowrap;
}

/* ==========================================================================
   Simplified Gerätekunde Section (#geraetekunde)
   ========================================================================== */
.section-geraetekunde,
#geraetekunde {
  background-color: var(--color-bg);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .section-geraetekunde,
  #geraetekunde {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

.geraetekunde-header {
  margin-bottom: var(--space-xl);
}

.geraetekunde-panels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .geraetekunde-panels-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.gk-panel {
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gk-panel-turquoise {
  background-color: #E8FFFD;
  border: 1.5px solid #0CECDD;
}

.gk-panel-neutral {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
}

.gk-panel-top {
  margin-bottom: 18px;
}

.gk-panel-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #08857D;
  display: block;
  margin-bottom: 6px;
}

.gk-panel-neutral .gk-panel-label {
  color: var(--color-text-muted);
}

.gk-panel-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #10213D;
  margin-bottom: 8px;
  line-height: 1.2;
}

.gk-panel-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #10213D;
  margin-bottom: 0;
}

.gk-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gk-chip {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
}

.gk-chip-turquoise {
  background-color: #FFFFFF;
  color: #10213D;
  border: 1px solid #0CECDD;
}

.gk-chip-neutral {
  background-color: var(--color-surface-subtle);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* Horizontal Puzzi Product Bar */
.gk-product-bar {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(16, 33, 61, 0.03);
}

@media (min-width: 768px) {
  .gk-product-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.gk-product-bar-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 600px) {
  .gk-product-bar-info {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}

.gk-badge-pink {
  background-color: #FF67E7;
  color: #0B1B33;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.gk-product-bar-heading {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gk-product-bar-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #10213D;
  line-height: 1.2;
}

.gk-product-bar-sub {
  font-size: 0.875rem;
  color: #536174;
}

.gk-product-bar-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.gk-product-bar-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #10213D;
  white-space: nowrap;
}

/* ==========================================================================
   Workflow & Accessories
   ========================================================================== */
.workflow-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .workflow-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .workflow-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.workflow-step {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  position: relative;
}

.workflow-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  font-weight: 900;
  font-size: 0.875rem;
  line-height: 28px;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.workflow-step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.workflow-step p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.accessory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 600px) {
  .accessory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .accessory-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.accessory-card {
  background: #FFFFFF;
  border: 1px solid #E5E9EF;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accessory-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}

.accessory-img-wrap img,
.accessory-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.accessory-img-wrap .product-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100px;
  background-color: #F5F6F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #536174;
  text-align: center;
  padding: 8px;
}

.accessory-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: var(--color-blue-light);
  padding: 3px 7px;
  border-radius: 4px;
  margin-bottom: 8px;
  width: fit-content;
}

.accessory-card h4 {
  font-size: 1.05rem;
  line-height: 1.25;
  color: #10213D;
  margin-bottom: 4px;
}

.accessory-card h4 a {
  color: #10213D;
  text-decoration: none;
}

.accessory-card h4 a:hover {
  color: var(--color-blue);
}

.accessory-card p {
  font-size: 0.85rem;
  color: #536174;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 1;
}

.accessory-meta {
  font-size: 0.85rem;
  color: #536174;
  margin-bottom: 12px;
  min-height: 22px;
  display: flex;
  align-items: center;
}

.accessory-meta.has-price {
  font-weight: 800;
  font-size: 1.05rem;
  color: #10213D;
}

.accessory-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-yellow);
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: background-color 0.15s ease;
  margin-top: auto;
}

.accessory-cta:hover {
  background: var(--color-yellow-hover);
  color: var(--color-text);
}

.care-warning-box {
  margin-top: var(--space-lg);
  padding: 12px 18px;
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.care-warning-box p {
  margin-bottom: 0;
}

/* ==========================================================================
   Transparent Daily Prices Grid (#preise)
   ========================================================================== */
.price-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .price-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .price-overview-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.price-card-large {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card-large.highlight {
  border: 2px solid var(--color-primary-accent, #0CECDD);
  background-color: #FFFFFF;
}

.price-card-large .item-name {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: var(--space-sm);
}

.price-card-large .big-price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-text);
  margin-bottom: 2px;
}

.price-card-large.highlight .big-price {
  color: var(--color-text);
}

.price-card-large .price-sub {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.price-card-large .price-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ==========================================================================
   24/7 Process Section (#ablauf)
   ========================================================================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}

.process-step-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-blue);
  margin-bottom: var(--space-xs);
  line-height: 1;
}

.process-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-xs);
}

.process-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Locations Section (#standorte)
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-blue);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(12, 236, 221, 0.06);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  align-self: flex-start;
}

.location-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.location-address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-lg);
}

.loc-pill {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  background-color: var(--color-surface-subtle);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

/* ==========================================================================
   Educational Guide Section (#sofa-reinigen)
   ========================================================================== */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.guide-step-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.guide-step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-blue);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-step-body h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.guide-step-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.guide-info-box {
  background-color: var(--color-surface-blue);
  border-left: 4px solid var(--color-blue);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.guide-info-box p {
  margin-bottom: 0;
  font-size: 0.925rem;
}

/* ==========================================================================
   AI / Answer Engine Optimization (AEO / GEO) Fast Facts
   ========================================================================== */
.aeo-facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .aeo-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.aeo-fact-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.aeo-fact-card h3 {
  font-size: 1.05rem;
  color: var(--color-blue);
  margin-bottom: var(--space-xs);
}

.aeo-fact-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.faq-item p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */
.final-cta-section {
  background-color: var(--color-text);
  color: #FFFFFF;
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  text-align: center;
}

.final-cta-section h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .final-cta-section h2 {
    font-size: 2.85rem;
  }
}

.final-cta-section p.lead {
  color: #C5CDD9;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}

.final-price-badge {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.final-locations-line {
  margin-top: var(--space-xl);
  font-size: 0.9rem;
  color: #8C9BAE;
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom a {
  text-decoration: underline;
}

/* ==========================================================================
   Mobile Sticky Bottom CTA Bar
   ========================================================================== */
.sticky-mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 99;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 10px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 14px rgba(16, 33, 61, 0.08);
}

.sticky-mobile-info {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}

.sticky-mobile-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-mobile-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--color-blue);
  line-height: 1.2;
}

.btn-sticky-yellow {
  flex: 0 1 auto;
  max-width: 52%;
  background-color: var(--color-yellow);
  color: var(--color-text);
  font-weight: 800;
  font-size: 0.875rem;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sticky-yellow:hover {
  background-color: var(--color-yellow-hover);
}

@media (min-width: 769px) {
  .sticky-mobile-cta {
    display: none;
  }
}

/* ==========================================================================
   Comprehensive Mobile Viewport Reflow Rules (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  /* 1. Containers */
  .container,
  .container-narrow {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* 2. Header */
  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .brand-logo {
    flex-shrink: 1;
    min-width: 0;
  }

  .brand-top {
    font-size: 0.95rem;
  }

  .brand-bottom {
    font-size: 1.1rem;
  }

  .header-actions {
    flex-shrink: 0;
    max-width: 55%;
  }

  .btn-header-cta {
    max-width: 100%;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.825rem;
    box-sizing: border-box;
  }

  /* 3. Comparison Table (Stacked Card Layout) */
  .table-responsive-wrapper {
    overflow-x: visible;
    border: none;
    background: transparent;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .comparison-table {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .comparison-table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(16, 33, 61, 0.03);
  }

  .comparison-table tr:hover td {
    background-color: transparent;
  }

  .comparison-table td {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    font-size: 0.95rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .comparison-table td.table-problem {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-border-subtle);
  }

  .comparison-table td:nth-child(2)::before {
    content: "Bestes Gerät:";
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  .comparison-table td:nth-child(3)::before {
    content: "Preis:";
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }

  .comparison-table td:nth-child(4) {
    margin-top: 4px;
  }

  .comparison-table td:nth-child(4) .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    padding: 11px 16px;
    font-size: 0.95rem;
  }

  /* 4. Location Section */
  .locations-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 16px;
    box-sizing: border-box;
  }

  .location-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 20px 16px;
    min-width: 0;
  }

  .location-card .location-address {
    font-size: 1rem;
    word-break: break-word;
  }

  .location-card .location-desc {
    font-size: 0.875rem;
    word-break: break-word;
  }

  .location-card .btn,
  .location-card .btn-block {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.35;
    padding: 12px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* 5. Buttons & Section CTAs on Mobile */
  .btn-lg {
    font-size: 1rem;
    padding: 13px 18px;
    white-space: normal;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .cta-group {
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }

  .hero-cta-wrap .btn-hero-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .hero-price-tag {
    white-space: normal;
    display: inline-block;
  }

  .gk-product-bar {
    padding: 16px;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .gk-product-bar-action {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .gk-product-bar-action .btn {
    flex: 1;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    padding: 10px 14px;
  }

  .compact-panel {
    padding: 18px 14px;
    box-sizing: border-box;
  }

  .compact-process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
  }

  .compact-step-label {
    font-size: 0.65rem;
    line-height: 1.15;
  }

  .compact-step-num {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
  }

  .final-cta-section .btn-lg {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    word-break: break-word;
  }
}

/* 404 Page Specific */
.page-404 {
  padding-bottom: 0;
}

.error-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h1-error {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.text-center {
  text-align: center;
}

.justify-center {
  justify-content: center;
}

/* Accessibility & Print */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  a, button {
    transition: none;
  }
}

@media print {
  .site-header, .sticky-mobile-cta, .btn, .btn-price-cta {
    display: none !important;
  }
  body {
    padding-bottom: 0;
    background: #FFFFFF;
    color: #000000;
  }
}
