@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;

  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0ea5e9;
  --color-accent: #2563eb;
  --color-accent-light: #dbeafe;

  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Lora', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);

  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
}

h1 {
  font-size: var(--font-size-5xl);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--font-size-4xl);
  letter-spacing: -0.01em;
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

button, [role="button"] {
  font-family: var(--font-primary);
  cursor: pointer;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: all var(--transition-fast);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
}

button:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-bg-tertiary);
}

.btn-secondary:hover {
  background: var(--color-bg-tertiary);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-accent-light);
  border-color: var(--color-primary-hover);
}

input, textarea, select {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

input::placeholder {
  color: var(--color-text-muted);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-bg-tertiary);
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-light);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

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

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

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

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.badge-success {
  background: #dcfce7;
  color: var(--color-success);
}

.badge-warning {
  background: #fef3c7;
  color: var(--color-warning);
}

.badge-error {
  background: #fee2e2;
  color: var(--color-error);
}

.separator {
  height: 1px;
  background: var(--color-bg-tertiary);
  margin: var(--space-lg) 0;
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

  .container {
    padding: 0 var(--space-md);
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .section, .section-lg {
    padding: var(--space-2xl) 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  box-sizing: border-box;
}

.header-handels-navigator {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: static;
  z-index: 100;
  overflow: visible;
}

.header-handels-navigator-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  height: 70px;
}

.header-handels-navigator-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.header-handels-navigator-brand:hover {
  opacity: 0.8;
}

.header-handels-navigator-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-handels-navigator-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.header-handels-navigator-desktop-nav {
  display: none;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.header-handels-navigator-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
  white-space: nowrap;
}

.header-handels-navigator-nav-link:hover {
  color: var(--color-accent);
}

.header-handels-navigator-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.header-handels-navigator-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
}

.header-handels-navigator-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-handels-navigator-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 1px;
  transition: all var(--transition-base);
}

.header-handels-navigator-mobile-toggle:hover span {
  background: var(--color-accent);
}

.header-handels-navigator-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.header-handels-navigator-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.header-handels-navigator-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-border);
}

.header-handels-navigator-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-base);
}

.header-handels-navigator-mobile-close:hover {
  color: var(--color-accent);
}

.header-handels-navigator-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  padding: 0;
}

.header-handels-navigator-mobile-link {
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.header-handels-navigator-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-accent);
}

.header-handels-navigator-mobile-cta {
  margin: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  text-align: center;
  transition: all var(--transition-base);
}

.header-handels-navigator-mobile-cta:hover {
  background: var(--color-accent-hover);
}

@media (min-width: 768px) {
  .header-handels-navigator-desktop-nav {
    display: flex;
  }

  .header-handels-navigator-cta-button {
    display: block;
  }

  .header-handels-navigator-mobile-toggle {
    display: none;
  }

  .header-handels-navigator-mobile-menu {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .header-handels-navigator-mobile-menu {
    max-height: calc(100vh - 70px);
    top: 70px;
  }
}

    

.retail-insights-hub {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
}

.retail-insights-hub h1,
.retail-insights-hub h2,
.retail-insights-hub h3,
.retail-insights-hub h4,
.retail-insights-hub h5,
.retail-insights-hub h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.retail-insights-hub p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.hero-text-block-index {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-title-index {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.btn-primary-index,
.btn-secondary-index {
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn-primary-index {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary-index {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary-index:hover {
  background: var(--color-accent-light);
  border-color: var(--color-primary-hover);
}

.hero-image-block-index {
  flex: 1 1 45%;
  min-width: 300px;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  min-width: 150px;
}

.stat-number-index {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.stat-label-index {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-align: center;
  font-weight: 600;
}

.faq-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.faq-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.faq-items-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.faq-question-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  cursor: pointer;
}

.faq-answer-index {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

.about-preview-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.about-content-index {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  flex-wrap: wrap;
}

.about-text-block-index {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.about-description-index,
.about-detail-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.about-feature-item-index {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
  align-items: center;
}

.about-feature-item-index i {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-feature-item-index span {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

.about-image-block-index {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.blog-preview-section-index {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.blog-header-index {
  text-align: center;
}

.blog-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.blog-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.blog-cards-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.blog-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.blog-card-index:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}

.blog-card-index:hover .card-image-index {
  transform: scale(1.05);
}

.blog-card-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.blog-card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  margin: 0;
}

.blog-card-text-index {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-card-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  transition: var(--transition-base);
}

.blog-card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.blog-footer-index {
  text-align: center;
  margin-top: var(--space-lg);
}

.benefits-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.benefits-header-index {
  text-align: center;
}

.benefits-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.benefits-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.benefits-cards-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 360px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon-index {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
}

.benefit-card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  margin: 0;
}

.benefit-card-text-index {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.process-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-header-index {
  text-align: center;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-index {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  font-family: var(--font-heading);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  color: var(--color-text-primary);
  margin: 0;
}

.step-text-index {
  font-size: clamp(0.9rem, 1.1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.cta-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin: 0;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.15rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: var(--color-primary);
  align-self: center;
}

.cta-box-index .btn-primary-index:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e293b;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -2px 10px rgba(15, 23, 42, 0.15);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  color: #ffffff;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  margin: 0;
  max-width: 400px;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  transition: var(--transition-base);
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
}

.cookie-btn-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .hero-content-index,
  .about-content-index {
    flex-direction: column;
  }

  .hero-text-block-index,
  .hero-image-block-index,
  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }

  .hero-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }

  .hero-image-index,
  .about-image-index {
    max-height: 350px;
  }

  .hero-stats-index {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-item-index {
    width: 100%;
  }

  .process-step-index {
    gap: var(--space-md);
  }

  .step-number-index {
    min-width: 60px;
  }

  .benefit-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .blog-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title-index,
  .about-title-index,
  .blog-title-index,
  .benefits-title-index,
  .process-title-index,
  .cta-title-index,
  .faq-title-index {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .stat-item-index {
    min-width: 120px;
    padding: var(--space-sm);
  }

  .hero-stats-index {
    gap: var(--space-sm);
  }

  .process-step-index {
    gap: var(--space-sm);
  }

  .step-number-index {
    font-size: 2rem;
  }

  .cta-box-index {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

    .footer {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer-about {
  display: block;
}

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-about p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav {
  display: block;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.875rem);
}

.footer-nav-list li {
  display: block;
}

.footer-nav-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-list a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact {
  display: block;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-contact p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-legal {
  display: block;
}

.footer-legal h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: -0.3px;
}

.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-legal-list li {
  display: block;
}

.footer-legal-list a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-list a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-border);
}

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw, 0.9375rem);
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: start;
  }

  .footer-copyright {
    grid-column: 1 / -1;
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.75rem, 1.5vw, 1rem);
  }
}

@media (max-width: 767px) {
  .footer-about,
  .footer-nav,
  .footer-contact,
  .footer-legal {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .footer-copyright {
    border-top: none;
    padding-top: 0;
  }
}
    

.category-page-retail-consumer-behaviour-germany {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.hero-section-category {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.hero-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.hero-header-category {
  text-align: center;
}

.hero-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-stats-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.stat-card-category {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  min-width: 140px;
  text-align: center;
}

.stat-number-category {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.stat-label-category {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.posts-section-category {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.posts-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.posts-header-category {
  text-align: center;
}

.posts-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-category {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-retail-consumer-behaviour-germany {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  flex: 1 1 280px;
  max-width: 380px;
  transition: all var(--transition-base) ease;
}

.card-retail-consumer-behaviour-germany:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-retail-consumer-behaviour-germany img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: var(--color-text-muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border);
}

.card-reading-time-category,
.card-level-category,
.card-date-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
}

.card-reading-time-category i,
.card-level-category i,
.card-date-category i {
  color: var(--color-accent);
  width: 16px;
  text-align: center;
}

.card-link-category {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base) ease;
  align-self: flex-start;
}

.card-link-category:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

.insights-section-category {
  background: var(--color-bg-primary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.insights-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.insights-header-category {
  text-align: center;
}

.insights-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insights-grid-category {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.insight-item-category {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  flex: 1 1 240px;
  max-width: 320px;
  position: relative;
  padding-left: clamp(3.5rem, 6vw, 4.5rem);
}

.insight-number-category {
  position: absolute;
  left: clamp(1rem, 2vw, 1.5rem);
  top: clamp(1rem, 2vw, 1.5rem);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.4;
  line-height: 1;
}

.insight-heading-category {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.insight-text-category {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.context-section-category {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.context-content-category {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.context-header-category {
  text-align: center;
}

.context-title-category {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.context-text-category {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 750px;
  margin: 0 auto;
}

.context-text-category p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block;
}

@media (max-width: 767px) {
  .hero-stats-category {
    flex-direction: column;
    align-items: stretch;
  }

  .stat-card-category {
    min-width: auto;
  }

  .posts-grid-category {
    flex-direction: column;
    align-items: stretch;
  }

  .card-retail-consumer-behaviour-germany {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-grid-category {
    flex-direction: column;
    align-items: stretch;
  }

  .insight-item-category {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-stats-category {
    flex-direction: row;
  }

  .posts-grid-category {
    flex-direction: row;
  }

  .card-retail-consumer-behaviour-germany {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }

  .insights-grid-category {
    flex-direction: row;
  }

  .insight-item-category {
    flex: 1 1 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .hero-stats-category {
    flex-direction: row;
  }

  .posts-grid-category {
    flex-direction: row;
  }

  .card-retail-consumer-behaviour-germany {
    flex: 1 1 280px;
    max-width: 380px;
  }

  .insights-grid-category {
    flex-direction: row;
  }

  .insight-item-category {
    flex: 1 1 240px;
    max-width: 320px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  line-height: var(--line-height-normal);
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.main-einzelhandel-transformation {
  width: 100%;
  overflow: hidden;
}

.hero-section-einzelhandel-transformation {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-content-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-tag-einzelhandel-transformation {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  width: fit-content;
}

.hero-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-einzelhandel-transformation {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.hero-meta-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.meta-item-einzelhandel-transformation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-einzelhandel-transformation i {
  color: var(--color-primary);
}

.hero-image-wrapper-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.hero-image-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.breadcrumbs-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

.breadcrumbs-einzelhandel-transformation a {
  color: var(--color-primary);
  transition: var(--transition-base);
}

.breadcrumbs-einzelhandel-transformation a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-einzelhandel-transformation span {
  color: var(--color-text-secondary);
}

.intro-section-einzelhandel-transformation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.intro-paragraph-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.intro-image-wrapper-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.intro-image-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.trends-section-einzelhandel-transformation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.trends-content-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.trends-text-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.trends-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.trends-paragraph-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.trends-list-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.trend-item-einzelhandel-transformation {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.trend-item-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.trend-item-text-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.trends-image-wrapper-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 350px;
}

.trends-image-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.examples-section-einzelhandel-transformation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.examples-content-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.examples-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  text-align: center;
}

.examples-cards-wrapper-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.example-card-einzelhandel-transformation {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.example-card-einzelhandel-transformation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.example-image-einzelhandel-transformation {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.example-card-img-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-card-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem) 0.75rem;
}

.example-card-text-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding: 0 clamp(1.25rem, 2vw, 1.75rem) clamp(1.25rem, 2vw, 1.75rem);
  line-height: var(--line-height-relaxed);
}

.challenges-section-einzelhandel-transformation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.challenges-content-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.challenges-text-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.challenges-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.challenges-paragraph-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.challenges-highlight-einzelhandel-transformation {
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.challenges-highlight-text-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-info);
  line-height: var(--line-height-relaxed);
}

.challenges-image-wrapper-einzelhandel-transformation {
  flex: 1 1 50%;
  max-width: 50%;
  min-height: 300px;
}

.challenges-image-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.future-section-einzelhandel-transformation {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.future-content-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.future-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  text-align: center;
}

.future-paragraph-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
}

.future-prediction-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.prediction-box-einzelhandel-transformation {
  flex: 1 1 260px;
  max-width: 360px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 3px solid var(--color-primary);
}

.prediction-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.prediction-text-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-section-einzelhandel-transformation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-text-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  text-align: center;
}

.conclusion-paragraph-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-einzelhandel-transformation {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-einzelhandel-transformation {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-warning);
  box-shadow: var(--shadow-sm);
}

.disclaimer-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.disclaimer-text-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-section-einzelhandel-transformation {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-einzelhandel-transformation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  text-align: center;
}

.related-cards-einzelhandel-transformation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-einzelhandel-transformation {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.related-card-einzelhandel-transformation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-einzelhandel-transformation {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-einzelhandel-transformation {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-text-einzelhandel-transformation {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-einzelhandel-transformation {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.related-card-description-einzelhandel-transformation {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-card-link-einzelhandel-transformation {
  display: inline-block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: auto;
  transition: var(--transition-base);
}

.related-card-link-einzelhandel-transformation:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-einzelhandel-transformation,
  .intro-content-einzelhandel-transformation,
  .trends-content-einzelhandel-transformation,
  .challenges-content-einzelhandel-transformation {
    flex-direction: column;
  }

  .hero-text-wrapper-einzelhandel-transformation,
  .hero-image-wrapper-einzelhandel-transformation,
  .intro-text-einzelhandel-transformation,
  .intro-image-wrapper-einzelhandel-transformation,
  .trends-text-einzelhandel-transformation,
  .trends-image-wrapper-einzelhandel-transformation,
  .challenges-text-einzelhandel-transformation,
  .challenges-image-wrapper-einzelhandel-transformation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-einzelhandel-transformation,
  .intro-image-wrapper-einzelhandel-transformation,
  .trends-image-wrapper-einzelhandel-transformation,
  .challenges-image-wrapper-einzelhandel-transformation {
    min-height: 250px;
  }
}

@media (max-width: 640px) {
  .breadcrumbs-einzelhandel-transformation {
    font-size: 0.75rem;
  }

  .hero-meta-einzelhandel-transformation {
    gap: 1rem;
  }

  .examples-cards-wrapper-einzelhandel-transformation,
  .future-prediction-einzelhandel-transformation,
  .related-cards-einzelhandel-transformation {
    flex-direction: column;
    align-items: center;
  }

  .example-card-einzelhandel-transformation,
  .prediction-box-einzelhandel-transformation,
  .related-card-einzelhandel-transformation {
    max-width: 100%;
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.main-e-commerce-wachstum-trends {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

.hero-section-e-commerce-wachstum-trends {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-e-commerce-wachstum-trends {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-e-commerce-wachstum-trends a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-e-commerce-wachstum-trends a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

.breadcrumbs-e-commerce-wachstum-trends span {
  color: var(--color-text-secondary);
}

.hero-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-e-commerce-wachstum-trends {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-lead-e-commerce-wachstum-trends {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-e-commerce-wachstum-trends {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-item-e-commerce-wachstum-trends {
  color: var(--color-text-secondary);
}

.meta-divider-e-commerce-wachstum-trends {
  color: var(--color-text-muted);
}

.hero-img-e-commerce-wachstum-trends {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-e-commerce-wachstum-trends {
    flex-direction: column;
  }

  .hero-text-e-commerce-wachstum-trends,
  .hero-image-e-commerce-wachstum-trends {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-e-commerce-wachstum-trends {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-img-e-commerce-wachstum-trends {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
}

@media (max-width: 768px) {
  .intro-content-e-commerce-wachstum-trends {
    flex-direction: column;
  }

  .intro-text-e-commerce-wachstum-trends,
  .intro-image-e-commerce-wachstum-trends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-img-e-commerce-wachstum-trends {
    max-height: 300px;
  }
}

.growth-section-e-commerce-wachstum-trends {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.growth-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.growth-text-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.growth-image-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.growth-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.growth-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.growth-highlight-e-commerce-wachstum-trends {
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.growth-img-e-commerce-wachstum-trends {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
}

@media (max-width: 768px) {
  .growth-content-e-commerce-wachstum-trends {
    flex-direction: column;
  }

  .growth-text-e-commerce-wachstum-trends,
  .growth-image-e-commerce-wachstum-trends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .growth-img-e-commerce-wachstum-trends {
    max-height: 300px;
  }
}

.challenges-section-e-commerce-wachstum-trends {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.challenges-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-text-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-image-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.challenges-img-e-commerce-wachstum-trends {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
}

@media (max-width: 768px) {
  .challenges-content-e-commerce-wachstum-trends {
    flex-direction: column-reverse;
  }

  .challenges-text-e-commerce-wachstum-trends,
  .challenges-image-e-commerce-wachstum-trends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-img-e-commerce-wachstum-trends {
    max-height: 300px;
  }
}

.forecast-section-e-commerce-wachstum-trends {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.forecast-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.forecast-text-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.forecast-image-e-commerce-wachstum-trends {
  flex: 1 1 50%;
  max-width: 50%;
}

.forecast-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.forecast-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.forecast-stats-e-commerce-wachstum-trends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.stat-box-e-commerce-wachstum-trends {
  flex: 1 1 calc(50% - 0.75rem);
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 0.5rem 0;
}

.stat-label-e-commerce-wachstum-trends {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
  margin: 0;
}

.forecast-img-e-commerce-wachstum-trends {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  max-height: 450px;
}

@media (max-width: 768px) {
  .forecast-content-e-commerce-wachstum-trends {
    flex-direction: column;
  }

  .forecast-text-e-commerce-wachstum-trends,
  .forecast-image-e-commerce-wachstum-trends {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .forecast-stats-e-commerce-wachstum-trends {
    flex-direction: column;
  }

  .stat-box-e-commerce-wachstum-trends {
    flex: 1 1 100%;
  }

  .forecast-img-e-commerce-wachstum-trends {
    max-height: 300px;
  }
}

.implications-section-e-commerce-wachstum-trends {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.implications-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.implications-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.implications-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
}

.implications-cards-e-commerce-wachstum-trends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.implication-card-e-commerce-wachstum-trends {
  flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
}

.implication-card-e-commerce-wachstum-trends:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-title-e-commerce-wachstum-trends {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.card-text-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (max-width: 768px) {
  .implication-card-e-commerce-wachstum-trends {
    flex: 1 1 100%;
  }
}

.conclusion-section-e-commerce-wachstum-trends {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.conclusion-paragraph-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-quote-e-commerce-wachstum-trends {
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.quote-text-e-commerce-wachstum-trends {
  font-size: clamp(1rem, 1.5vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.related-section-e-commerce-wachstum-trends {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-e-commerce-wachstum-trends {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  text-align: center;
}

.related-cards-e-commerce-wachstum-trends {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-e-commerce-wachstum-trends {
  flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.333rem));
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.related-card-e-commerce-wachstum-trends:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-img-e-commerce-wachstum-trends {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-text-e-commerce-wachstum-trends {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-e-commerce-wachstum-trends {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.related-card-desc-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.related-link-e-commerce-wachstum-trends {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  transition: all var(--transition-base);
}

.related-link-e-commerce-wachstum-trends:hover {
  color: var(--color-accent-light);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-e-commerce-wachstum-trends {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
  }
}

@media (max-width: 768px) {
  .related-card-e-commerce-wachstum-trends {
    flex: 1 1 100%;
  }
}

.disclaimer-section-e-commerce-wachstum-trends {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-e-commerce-wachstum-trends {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-info);
  border-radius: var(--radius-md);
}

.disclaimer-title-e-commerce-wachstum-trends {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  margin: 0;
}

.disclaimer-text-e-commerce-wachstum-trends {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 1024px) {
  .stat-box-e-commerce-wachstum-trends {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.main-handelsindex-erklaert {
  width: 100%;
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breadcrumbs-handelsindex-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-handelsindex-erklaert a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.breadcrumbs-handelsindex-erklaert a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-handelsindex-erklaert span {
  color: var(--color-text-secondary);
}

.hero-section-handelsindex-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-handelsindex-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-handelsindex-erklaert {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-subtitle-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

.hero-meta-handelsindex-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-handelsindex-erklaert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-secondary);
}

.meta-item-handelsindex-erklaert i {
  color: var(--color-primary);
}

.hero-image-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-handelsindex-erklaert img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.intro-section-handelsindex-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-handelsindex-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.intro-paragraph-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.intro-paragraph-handelsindex-erklaert:last-child {
  margin-bottom: 0;
}

.intro-image-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-handelsindex-erklaert img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.definition-section-handelsindex-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.definition-content-handelsindex-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-text-block-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.definition-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.definition-text-handelsindex-erklaert:last-of-type {
  margin-bottom: 0;
}

.definition-image-block-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-image-block-handelsindex-erklaert img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.factors-section-handelsindex-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.factors-content-handelsindex-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.factors-header-handelsindex-erklaert {
  text-align: center;
}

.factors-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
}

.factors-subtitle-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.factors-cards-handelsindex-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.factor-card-handelsindex-erklaert {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.factor-card-handelsindex-erklaert:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.factor-icon-handelsindex-erklaert {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  height: clamp(3rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
}

.factor-card-title-handelsindex-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

.factor-card-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.offline-online-section-handelsindex-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.offline-online-content-handelsindex-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.offline-online-text-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.offline-online-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.offline-online-paragraph-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.featured-quote-handelsindex-erklaert {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0 0 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
}

.quote-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.offline-online-image-handelsindex-erklaert {
  flex: 1 1 50%;
  max-width: 50%;
}

.offline-online-image-handelsindex-erklaert img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

.interpretation-section-handelsindex-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.interpretation-content-handelsindex-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.interpretation-header-handelsindex-erklaert {
  text-align: center;
}

.interpretation-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
}

.interpretation-subtitle-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.interpretation-steps-handelsindex-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.step-item-handelsindex-erklaert {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-handelsindex-erklaert {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: clamp(4rem, 6vw, 5rem);
  text-align: center;
  flex-shrink: 0;
}

.step-content-handelsindex-erklaert {
  flex: 1;
}

.step-title-handelsindex-erklaert {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: var(--line-height-normal);
}

.step-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.conclusion-section-handelsindex-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-handelsindex-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 850px;
  margin: 0 auto;
}

.conclusion-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.conclusion-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  text-align: center;
}

.cta-box-handelsindex-erklaert {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-handelsindex-erklaert {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  line-height: var(--line-height-normal);
}

.cta-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-handelsindex-erklaert {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.btn-primary-handelsindex-erklaert:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.disclaimer-section-handelsindex-erklaert {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-handelsindex-erklaert {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-info);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-icon-handelsindex-erklaert {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-info);
}

.disclaimer-title-handelsindex-erklaert {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.disclaimer-text-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.related-section-handelsindex-erklaert {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-handelsindex-erklaert {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-header-handelsindex-erklaert {
  text-align: center;
}

.related-title-handelsindex-erklaert {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
}

.related-subtitle-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.related-cards-handelsindex-erklaert {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-handelsindex-erklaert {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.related-card-handelsindex-erklaert:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-image-handelsindex-erklaert {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-image-handelsindex-erklaert img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-base);
  display: block;
}

.related-card-handelsindex-erklaert:hover .related-image-handelsindex-erklaert img {
  transform: scale(1.05);
}

.related-text-handelsindex-erklaert {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-article-title-handelsindex-erklaert {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.related-article-description-handelsindex-erklaert {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.related-link-handelsindex-erklaert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  align-self: flex-start;
}

.related-link-handelsindex-erklaert:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.related-link-handelsindex-erklaert i {
  transition: all var(--transition-base);
}

@media (max-width: 768px) {
  .hero-content-handelsindex-erklaert,
  .intro-content-handelsindex-erklaert,
  .definition-content-handelsindex-erklaert,
  .offline-online-content-handelsindex-erklaert {
    flex-direction: column;
  }

  .hero-text-handelsindex-erklaert,
  .hero-image-handelsindex-erklaert,
  .intro-text-handelsindex-erklaert,
  .intro-image-handelsindex-erklaert,
  .definition-text-block-handelsindex-erklaert,
  .definition-image-block-handelsindex-erklaert,
  .offline-online-text-handelsindex-erklaert,
  .offline-online-image-handelsindex-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-item-handelsindex-erklaert {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-handelsindex-erklaert {
    min-width: auto;
    text-align: left;
  }

  .factors-cards-handelsindex-erklaert {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .factor-card-handelsindex-erklaert {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .meta-item-handelsindex-erklaert {
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-handelsindex-erklaert {
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
  }

  .breadcrumbs-handelsindex-erklaert span {
    display: none;
  }

  .hero-meta-handelsindex-erklaert {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-box-handelsindex-erklaert {
    padding: clamp(1.5rem, 3vw, 2rem);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

p, span, li, cite {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.hero-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.hero-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.breadcrumbs-konsumverhalten-veraenderungen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-konsumverhalten-veraenderungen a {
  color: var(--color-accent);
  transition: var(--transition-base);
}

.breadcrumbs-konsumverhalten-veraenderungen a:hover {
  color: var(--color-accent-hover);
}

.hero-header-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: 1.2;
  font-weight: 700;
}

.hero-subtitle-konsumverhalten-veraenderungen {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  max-width: 90%;
}

.hero-meta-konsumverhalten-veraenderungen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-konsumverhalten-veraenderungen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-konsumverhalten-veraenderungen i {
  color: var(--color-accent);
}

.hero-image-konsumverhalten-veraenderungen {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero-content-konsumverhalten-veraenderungen {
    flex-direction: row;
    align-items: center;
  }

  .hero-header-konsumverhalten-veraenderungen {
    flex: 1 1 45%;
  }

  .hero-image-konsumverhalten-veraenderungen {
    flex: 1 1 55%;
    max-height: 450px;
  }
}

.intro-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.intro-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.intro-text-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.intro-paragraph-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.intro-image-konsumverhalten-veraenderungen {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.intro-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .intro-content-konsumverhalten-veraenderungen {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .intro-text-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
  }

  .intro-image-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 380px;
  }
}

.trends-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.trends-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.trends-text-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.trends-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.trends-paragraph-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.trends-highlight-konsumverhalten-veraenderungen {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.highlight-text-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.highlight-text-konsumverhalten-veraenderungen strong {
  color: var(--color-accent);
}

.trends-image-konsumverhalten-veraenderungen {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.trends-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .trends-content-konsumverhalten-veraenderungen {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .trends-text-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .trends-image-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 380px;
  }
}

.categories-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.categories-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.categories-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.categories-intro-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.categories-grid-konsumverhalten-veraenderungen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.category-card-konsumverhalten-veraenderungen {
  flex: 1 1 clamp(250px, 100%, 380px);
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  transition: var(--transition-base);
}

.category-card-konsumverhalten-veraenderungen:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(13, 21, 38, 0.9);
}

.card-icon-konsumverhalten-veraenderungen {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(50px, 8vw, 70px);
}

.card-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.card-text-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.behavior-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.behavior-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.behavior-text-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.behavior-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.behavior-paragraph-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.behavior-quote-konsumverhalten-veraenderungen {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
  font-style: italic;
}

.quote-text-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-accent);
  line-height: 1.7;
}

.behavior-image-konsumverhalten-veraenderungen {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.behavior-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .behavior-content-konsumverhalten-veraenderungen {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .behavior-text-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .behavior-image-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 380px;
  }
}

.channels-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.channels-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.channels-text-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.channels-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.channels-paragraph-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.channels-list-konsumverhalten-veraenderungen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding-left: clamp(1rem, 2vw, 1.5rem);
}

.list-item-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}

.list-item-konsumverhalten-veraenderungen::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.list-item-konsumverhalten-veraenderungen strong {
  color: var(--color-accent);
}

.channels-image-konsumverhalten-veraenderungen {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.channels-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .channels-content-konsumverhalten-veraenderungen {
    flex-direction: row-reverse;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }

  .channels-text-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .channels-image-konsumverhalten-veraenderungen {
    flex: 1 1 50%;
    max-width: 50%;
    max-height: 380px;
  }
}

.conclusion-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.conclusion-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-header-konsumverhalten-veraenderungen {
  text-align: center;
}

.conclusion-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.conclusion-text-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-paragraph-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.conclusion-cta-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.cta-text-konsumverhalten-veraenderungen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-accent);
  color: #0a0f1e;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-base);
  font-size: clamp(0.875rem, 1vw, 1rem);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

.btn-primary-konsumverhalten-veraenderungen {
  background: var(--color-accent);
  color: #0a0f1e;
}

.btn-primary-konsumverhalten-veraenderungen:hover {
  background: var(--color-accent-hover);
}

.related-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.related-content-konsumverhalten-veraenderungen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.related-title-konsumverhalten-veraenderungen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.related-cards-konsumverhalten-veraenderungen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-konsumverhalten-veraenderungen {
  flex: 1 1 clamp(280px, 100%, 380px);
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.related-card-konsumverhalten-veraenderungen:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  background: rgba(13, 21, 38, 0.9);
}

.related-image-konsumverhalten-veraenderungen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-konsumverhalten-veraenderungen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-base);
}

.related-card-konsumverhalten-veraenderungen:hover .related-image-konsumverhalten-veraenderungen img {
  transform: scale(1.05);
}

.related-text-konsumverhalten-veraenderungen {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-article-title-konsumverhalten-veraenderungen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.related-article-desc-konsumverhalten-veraenderungen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.related-link-konsumverhalten-veraenderungen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-link-konsumverhalten-veraenderungen:hover {
  color: var(--color-accent-hover);
}

.related-link-konsumverhalten-veraenderungen i {
  font-size: 0.75rem;
}

.disclaimer-section-konsumverhalten-veraenderungen {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
}

.disclaimer-content-konsumverhalten-veraenderungen {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-header-konsumverhalten-veraenderungen {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.disclaimer-header-konsumverhalten-veraenderungen i {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-accent);
  flex-shrink: 0;
}

.disclaimer-title-konsumverhalten-veraenderungen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.disclaimer-text-konsumverhalten-veraenderungen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .breadcrumbs-konsumverhalten-veraenderungen {
    font-size: 0.75rem;
  }

  .hero-subtitle-konsumverhalten-veraenderungen {
    max-width: 100%;
  }

  .categories-grid-konsumverhalten-veraenderungen {
    flex-direction: column;
  }

  .category-card-konsumverhalten-veraenderungen {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 clamp(2rem, 5vw, 3rem);
  }
}

* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.retail-insights-journey-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: var(--line-height-normal);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: block !important;
}

.hero-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-header-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-title-about {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  letter-spacing: -0.5px;
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.hero-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
}

.story-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.story-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.story-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(var(--color-primary-rgb, 37, 99, 235), 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.story-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.story-block-about {
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
}

.story-block-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.story-block-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.expertise-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.expertise-header-about {
  text-align: center;
}

.expertise-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.expertise-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon-about {
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.approach-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.approach-header-about {
  text-align: center;
}

.approach-visual-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.approach-text-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.approach-paragraph-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.process-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.process-header-about {
  text-align: center;
}

.process-steps-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.step-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.quote-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.featured-quote-about {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-md);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: var(--line-height-relaxed);
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(var(--color-text-primary-rgb, 30, 41, 59), 0.1);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--color-accent);
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .process-step-about {
    gap: clamp(2rem, 3vw, 3.5rem);
  }

  .step-number-about {
    min-width: 80px;
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .hero-content-about {
    gap: clamp(2.5rem, 4vw, 4rem);
  }

  .story-blocks-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .expertise-cards-about {
    gap: clamp(2rem, 3vw, 2.5rem);
  }

  .expertise-card-about {
    flex: 1 1 320px;
  }
}

@media (max-width: 767px) {
  .story-blocks-about {
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .process-step-about {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-about {
    text-align: left;
  }
}

.faq-page {
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.faq-hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 600px;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
}

.faq-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

.faq-accordion-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-accordion-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-primary);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: var(--space-lg);
  border: none;
  background-color: var(--color-bg-card);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
  transition: background-color var(--transition-base), color var(--transition-base);
}

.faq-question:hover {
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
}

.faq-question-text {
  text-align: left;
  flex: 1;
  line-height: var(--line-height-normal);
}

.faq-icon {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  color: var(--color-primary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  animation: slideDown var(--transition-base) ease-out forwards;
  border-top: 1px solid var(--color-primary);
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 500px;
    overflow: visible;
  }
}

.faq-cta-section {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.faq-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 600px;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin: 0;
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base);
  width: fit-content;
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.faq-cta-section img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .faq-hero {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-2xl);
  }

  .faq-hero img {
    order: 2;
  }

  .faq-accordion-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-question {
    padding: var(--space-xl);
    font-size: var(--font-size-base);
  }

  .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }

  .faq-answer p {
    font-size: var(--font-size-base);
  }

  .faq-cta-section {
    grid-template-columns: 1fr 1fr;
    padding: var(--space-3xl) var(--space-lg);
    gap: var(--space-2xl);
  }

  .faq-cta-content {
    gap: var(--space-lg);
  }

  .faq-cta-section img {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) 0;
  }

  .faq-hero-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--space-lg);
  }

  .faq-accordion-section {
    padding: var(--space-3xl) 0;
  }

  .faq-cta-section {
    padding: var(--space-3xl) 0;
  }

  .faq-cta-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    width: 100%;
    padding: 0 var(--space-lg);
  }

  .faq-cta-section img {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    width: 100%;
  }
}

.services-page {
  width: 100%;
  overflow: hidden;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-normal);
}

.service-card__topics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.service-card__topics li {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  background-color: var(--color-bg-tertiary);
  color: var(--color-text-secondary);
  padding: 0.375rem var(--space-sm);
  border-radius: var(--radius-sm);
  display: inline-block;
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .service-card {
    padding: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: 4rem var(--space-xl);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-cta__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--line-height-normal);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  padding: 0.875rem var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .services-cta__text {
    font-size: var(--font-size-base);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-xl);
  }

  .services-cta__title {
    font-size: 2.25rem;
  }
}

.legal-commerce {
  width: 100%;
}

.legal-commerce .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-commerce .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.legal-commerce h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-tight);
}

.legal-commerce .last-updated {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.legal-commerce h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-commerce p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-commerce ul {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  margin-left: var(--space-lg);
  list-style-type: disc;
}

.legal-commerce ul li {
  margin-bottom: var(--space-sm);
}

.legal-commerce .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-2xl);
}

.legal-commerce .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--space-md);
}

.legal-commerce .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.legal-commerce .contact-section strong {
  font-weight: 600;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .legal-commerce .content {
    padding: var(--space-3xl) var(--space-lg);
  }

  .legal-commerce h1 {
    margin-bottom: var(--space-xl);
  }

  .legal-commerce h2 {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .legal-commerce .container {
    padding: 0 var(--space-lg);
  }

  .legal-commerce .content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

.thank-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--color-success);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
  animation: fadeInUp 0.7s ease-out 0.1s backwards;
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-primary);
  font-weight: 600;
  line-height: var(--line-height-normal);
  animation: fadeInUp 0.7s ease-out 0.2s backwards;
  margin-top: var(--space-md);
}

.thank-content .description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.7s ease-out 0.3s backwards;
  max-width: 600px;
}

.thank-content .next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  animation: fadeInUp 0.7s ease-out 0.4s backwards;
  font-style: italic;
  max-width: 600px;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
  animation: fadeInUp 0.7s ease-out 0.5s backwards;
  margin-top: var(--space-md);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.btn-primary:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 140px;
    height: 140px;
    margin-bottom: var(--space-lg);
  }

  .btn {
    padding: 1rem 3rem;
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    margin-top: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-content {
    gap: var(--space-2xl);
  }

  .thank-icon {
    width: 160px;
    height: 160px;
    margin-bottom: var(--space-xl);
  }

  .btn {
    padding: 1.125rem 3.5rem;
    font-size: 1.05rem;
    margin-top: var(--space-xl);
  }

  .btn:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon,
  .thank-content h1,
  .thank-content .lead,
  .thank-content .description,
  .thank-content .next-steps,
  .btn {
    animation: none;
  }

  .btn:hover {
    transform: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-normal);
  overflow-x: hidden;
}

.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  width: 100%;
  padding: var(--space-lg);
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-md);
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.error-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-lg);
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-family: var(--font-heading);
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  width: 100%;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
  animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
  0%, 100% {
    width: 100%;
    opacity: 1;
  }
  50% {
    width: 80%;
    opacity: 0.6;
  }
}

.error-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-md);
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-submessage {
  font-size: clamp(0.9rem, 0.95vw + 0.5rem, 1.05rem);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
  margin-bottom: var(--space-xl);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.error-hints {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.hint-text {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
}

.hint-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.hint-list li {
  font-size: clamp(0.85rem, 0.9vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--line-height-normal);
}

.hint-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .error-wrapper {
    gap: var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .error-hints {
    padding: var(--space-2xl);
  }

  .hint-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hint-list li {
    flex: 0 1 calc(50% - var(--space-sm));
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl);
  }

  .container {
    padding: 0 var(--space-2xl);
  }

  .error-wrapper {
    gap: var(--space-3xl);
  }

  .error-visual {
    margin-bottom: var(--space-2xl);
  }

  .error-code {
    animation: float 4s ease-in-out infinite;
  }

  .error-decoration {
    animation: expand 2.5s ease-in-out infinite;
  }

  .btn {
    padding: var(--space-lg) var(--space-3xl);
    font-size: var(--font-size-lg);
  }

  .hint-list li {
    flex: 0 1 calc(33.333% - var(--space-sm));
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code {
    animation: none;
  }

  .error-decoration {
    animation: none;
  }

  .btn {
    transition: background-color var(--transition-fast);
  }

  .btn-primary:hover {
    transform: none;
  }
}

.contact-lets-talk-page {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-lets-talk-hero {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-hero-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-lets-talk-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.contact-lets-talk-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-lets-talk-hero {
    padding: 4.5rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-hero {
    padding: 6rem var(--space-md);
  }
}

.contact-lets-talk-main {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-main-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-lets-talk-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.contact-lets-talk-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-lets-talk-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 1024px) {
  .contact-lets-talk-form-wrapper {
    flex: 1 1 45%;
    max-width: 500px;
  }

  .contact-lets-talk-info-wrapper {
    flex: 1 1 45%;
    max-width: 450px;
  }
}

.contact-lets-talk-form-header {
  margin-bottom: var(--space-xl);
}

.contact-lets-talk-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.contact-lets-talk-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-lets-talk-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-lets-talk-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
}

.contact-lets-talk-input,
.contact-lets-talk-textarea {
  width: 100%;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
  box-sizing: border-box;
}

.contact-lets-talk-input::placeholder,
.contact-lets-talk-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-lets-talk-input:focus,
.contact-lets-talk-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-primary);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.contact-lets-talk-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--font-primary);
}

.contact-lets-talk-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.contact-lets-talk-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-lets-talk-consent-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-lets-talk-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.contact-lets-talk-consent-link:hover,
.contact-lets-talk-consent-link:focus {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-lets-talk-submit {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  cursor: pointer;
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-lets-talk-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-lets-talk-submit:active {
  transform: translateY(0);
}

.contact-lets-talk-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.contact-lets-talk-info-header {
  margin-bottom: var(--space-xl);
}

.contact-lets-talk-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.contact-lets-talk-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.contact-lets-talk-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.contact-lets-talk-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-lets-talk-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-lets-talk-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-lets-talk-info-content {
  flex: 1;
  min-width: 0;
}

.contact-lets-talk-info-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs) 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-lets-talk-info-value {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  display: inline-block;
}

.contact-lets-talk-info-value:hover {
  color: var(--color-primary);
}

.contact-lets-talk-info-box {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.contact-lets-talk-info-box-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
}

.contact-lets-talk-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-lets-talk-hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

.contact-lets-talk-hours-day {
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-lets-talk-hours-time {
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .contact-lets-talk-main {
    padding: 4.5rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-main {
    padding: 6rem var(--space-md);
  }
}

.contact-lets-talk-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem var(--space-md);
  overflow: hidden;
}

.contact-lets-talk-cta-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.contact-lets-talk-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--line-height-tight);
}

.contact-lets-talk-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-lets-talk-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.contact-lets-talk-cta-link {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
}

.contact-lets-talk-cta-link-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
}

.contact-lets-talk-cta-link-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-lets-talk-cta-link-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

@media (min-width: 768px) {
  .contact-lets-talk-cta {
    padding: 4.5rem var(--space-md);
  }
}

@media (min-width: 1024px) {
  .contact-lets-talk-cta {
    padding: 6rem var(--space-md);
  }
}