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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #06102c;
  --color-bg-tertiary: #0a0f1e;
  --color-bg-dark-accent: #1e293b;
  --color-bg-card: #0a0f1e;
  --color-text-primary: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-primary-light: #fff;
  --color-text-secondary-dark: #cbd5e1;
  --color-text-secondary-light: #dfe4eb;
  --color-text-muted-dark: #d9dee4;
  --color-text-muted-light: #e2e8f0;

  --color-primary: #06b6d4;
  --color-primary-hover: #0891b2;
  --color-primary-light: #cffafe;
  --color-secondary: #8b5cf6;
  --color-secondary-hover: #7c3aed;

  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Playfair Display', serif;

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

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

  --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.15);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.2);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --breakpoint-xs: 320px;
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1440px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-primary-light);
  background: var(--color-bg-secondary);
  overflow-x: hidden;
}

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-sm);
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

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

button,
[role="button"] {
  font-family: var(--font-primary);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: 1rem;
}

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

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

.btn-secondary {
  background: var(--color-secondary);
  color: white;
}

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

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

.btn-outline:hover,
.btn-outline:focus {
  background: var(--color-primary-light);
  color: var(--color-bg-primary);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  padding: var(--space-sm) var(--space-md);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: all var(--transition-base);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: var(--color-text-primary-dark);
}

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

.section-dark a {
  color: var(--color-primary);
}

.section-dark a:hover {
  color: #0891b2;
}

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary-light);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 {
  color: var(--color-text-primary-light);
}

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

.section-light a {
  color: var(--color-primary);
}

.section-light a:hover {
  color: var(--color-primary-hover);
}

.section-light-secondary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary-light);
}

.section-light-secondary h1,
.section-light-secondary h2,
.section-light-secondary h3,
.section-light-secondary h4,
.section-light-secondary h5,
.section-light-secondary h6 {
  color: var(--color-text-primary-light);
}

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

.section-accent {
  background: var(--color-bg-dark-accent);
  color: var(--color-text-primary-dark);
}

.section-accent h1,
.section-accent h2,
.section-accent h3,
.section-accent h4,
.section-accent h5,
.section-accent h6 {
  color: var(--color-text-primary-dark);
}

.section-accent p {
  color: var(--color-text-secondary-dark);
}

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

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

.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(250px, 1fr));
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

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

.flex-start {
  justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
}

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

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

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

.gap-xl {
  gap: var(--space-xl);
}

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

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

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

.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-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);
}

.px-sm {
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.px-md {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

.px-lg {
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

.py-sm {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}

.py-md {
  padding-top: var(--space-md);
  padding-bottom: var(--space-md);
}

.py-lg {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.py-xl {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.py-2xl {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.py-3xl {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .hidden-desktop {
    display: none;
  }
}

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

@media (max-width: 768px) {
  .nav-responsive {
    flex-direction: column;
    align-items: stretch;
  }
}

.touch-target {
  min-height: 48px;
  min-width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) {
  a:hover {
    color: var(--color-primary-hover);
  }
}

@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
}

.aspect-ratio-1 {
  aspect-ratio: 1;
}

.aspect-ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16 / 9;
}

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

picture {
  display: block;
}

picture img {
  width: 100%;
  height: auto;
}

.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@supports (object-fit: cover) {
  .img-responsive {
    object-fit: cover;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-primary);
}

.badge-secondary {
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-secondary);
}

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

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

.hero {
  padding: var(--space-4xl) 0;
}

@media (max-width: 768px) {
  .hero {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: var(--space-2xl) 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

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

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-base) ease-out;
}

.animate-slide-up {
  animation: slideUp var(--transition-base) ease-out;
}

.animate-slide-in-right {
  animation: slideInRight var(--transition-base) ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft var(--transition-base) ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.focus-visible:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.header-fluid-core {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 100;
  padding: clamp(0.75rem, 2vw, 1.25rem) 0;
}

.header-fluid-core-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 2rem);
}

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

.header-fluid-core-brand:hover {
  opacity: 0.8;
}

.header-fluid-core-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.header-fluid-core-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  letter-spacing: -0.5px;
}

.header-fluid-core-desktop-nav {
  display: none;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  flex: 1;
  justify-content: center;
}

.header-fluid-core-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header-fluid-core-nav-link:hover {
  color: var(--color-primary);
}

.header-fluid-core-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-fast);
}

.header-fluid-core-nav-link:hover::after {
  width: 100%;
}

.header-fluid-core-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.header-fluid-core-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.header-fluid-core-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.header-fluid-core-mobile-toggle:hover {
  opacity: 0.7;
}

.header-fluid-core-mobile-toggle-line {
  width: 24px;
  height: 3px;
  background: var(--color-text-primary-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header-fluid-core-mobile-toggle.active .header-fluid-core-mobile-toggle-line:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.header-fluid-core-mobile-toggle.active .header-fluid-core-mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-fluid-core-mobile-toggle.active .header-fluid-core-mobile-toggle-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.header-fluid-core-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-secondary);
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  overflow-y: auto;
}

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

.header-fluid-core-mobile-header {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.header-fluid-core-mobile-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-primary-light);
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.header-fluid-core-mobile-close:hover {
  color: var(--color-primary);
}

.header-fluid-core-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.header-fluid-core-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-secondary-light);
  text-decoration: none;
  padding: 0.75rem 0;
  transition: color var(--transition-fast);
}

.header-fluid-core-mobile-link:hover {
  color: var(--color-primary);
}

.header-fluid-core-mobile-cta {
  display: block;
  padding: 1rem;
  background: var(--color-primary);
  color: var(--color-text-primary-dark);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  text-align: center;
  transition: all var(--transition-fast);
  margin-top: auto;
}

.header-fluid-core-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

  .header-fluid-core-cta-button {
    display: block;
  }

  .header-fluid-core-mobile-toggle {
    display: none;
  }

  .header-fluid-core-mobile-menu {
    display: none;
  }
}

    

* {
  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-dark);
  line-height: 1.6;
}

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-2xl);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  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);
}

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

.btn-secondary-index:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
}

.section-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-2xl);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

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

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

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

.hero-text-index {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  .hero-text-index {
    flex: 1 1 50%;
  }
}

.hero-title-index {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.hero-buttons-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons-index {
    flex-direction: row;
    width: auto;
  }
}

.hero-image-index {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-index {
    flex: 1 1 50%;
  }
}

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

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

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-primary);
}

.stat-label-index {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.features-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
}

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

.feature-card-index {
  flex: 1 1 clamp(280px, 30vw, 380px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.feature-card-index:hover {
  transform: translateY(-6px);
  background: rgba(59, 130, 246, 0.1);
}

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

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

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

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

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

.process-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.process-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
}

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

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

.step-number-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: clamp(60px, 10vw, 120px);
  line-height: 1;
}

.step-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

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

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

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

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

.blog-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.blog-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.blog-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
}

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

.blog-card-index {
  flex: 1 1 clamp(300px, 30vw, 400px);
  display: flex;
  flex-direction: column;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card-index:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.1);
}

.card-image-wrapper-index {
  width: 100%;
  height: clamp(200px, 25vw, 280px);
  overflow: hidden;
}

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

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

.card-content-index {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-title-index {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

.card-text-index {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  flex: 1;
}

.card-link-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  margin-top: auto;
}

.card-link-index:hover {
  color: var(--color-primary-hover);
}

.card-link-index i {
  transition: transform var(--transition-fast);
}

.card-link-index:hover i {
  transform: translateX(4px);
}

.blog-cta-index {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

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

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

.testimonials-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.testimonials-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
}

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

.testimonial-card-index {
  flex: 1 1 clamp(280px, 30vw, 380px);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.testimonial-card-index:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.08);
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
  font-style: italic;
  line-height: 1.7;
}

.quote-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.author-name-index {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

.author-role-index {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-muted-dark);
}

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

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

@media (min-width: 1024px) {
  .about-content-index {
    flex-direction: row;
    align-items: center;
  }
}

.about-text-index {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 1024px) {
  .about-text-index {
    flex: 1 1 50%;
  }
}

.about-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

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

.about-features-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.feature-item-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary-dark);
}

.feature-item-index i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.about-image-index {
  flex: 1 1 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-image-index {
    flex: 1 1 50%;
  }
}

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

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

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

.values-header-index {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.values-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
  margin: clamp(0.5rem, 1vw, 1rem) 0;
}

.values-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
}

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

.value-card-index {
  flex: 1 1 clamp(260px, 25vw, 350px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  text-align: center;
}

.value-card-index:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.08);
}

.value-icon-index {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-primary);
  margin: 0 auto;
}

.value-title-index {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
}

.value-text-index {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

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

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

.cta-box-index {
  width: 100%;
  max-width: 800px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-title-index {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-text-primary-dark);
  font-weight: 800;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
}

.cta-buttons-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  justify-content: center;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

@media (min-width: 640px) {
  .cta-buttons-index {
    flex-direction: row;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

.cookie-banner-text-index {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: var(--radius-2xl);
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  white-space: nowrap;
}

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

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline-index {
  background: transparent;
  color: var(--color-text-secondary-dark);
  border: 1px solid var(--color-text-muted-dark);
}

.cookie-btn-decline-index:hover {
  background: rgba(148, 163, 184, 0.1);
  border-color: var(--color-text-secondary-dark);
}

@media (max-width: 767px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner-text-index {
    order: 1;
    min-width: 100%;
  }

  .cookie-banner-buttons-index {
    order: 2;
    width: 100%;
    gap: 0.75rem;
  }

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

@media (max-width: 640px) {
  .hero-buttons-index {
    flex-direction: column;
  }

  .cta-buttons-index {
    flex-direction: column;
  }

  .about-content-index,
  .hero-content-index {
    flex-direction: column;
  }

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

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

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

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

.footer-about,
.footer-nav,
.footer-contact,
.footer-legal {
  display: block;
}

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

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

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

.footer-about p {
  max-width: 400px;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.footer a {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--color-text-secondary-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-block;
}

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

.footer-copyright {
  border-top: 1px solid var(--color-border);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright p {
  color: var(--color-text-muted-light);
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .footer-about {
    flex: 1 1 280px;
    min-width: 280px;
  }

  .footer-nav {
    flex: 0 1 140px;
  }

  .footer-contact {
    flex: 1 1 240px;
    min-width: 240px;
  }

  .footer-legal {
    flex: 0 1 150px;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: left;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 5vw, 5rem);
  }

  .footer-about {
    flex: 1 1 320px;
  }

  .footer-nav {
    flex: 0 1 160px;
  }

  .footer-contact {
    flex: 1 1 280px;
  }

  .footer-legal {
    flex: 0 1 170px;
  }
}
    

.category-page-responsive-layout {
  background: var(--color-bg-primary);
  color: var(--color-text-primary-dark);
}

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

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

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

@media (min-width: 1024px) {
  .hero-content-responsive-layout {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
}

.hero-header-responsive-layout {
  flex: 1 1 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-header-responsive-layout {
    text-align: left;
    flex: 1 1 50%;
  }
}

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

.hero-subtitle-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-image-responsive-layout {
  flex: 1 1 100%;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-image-responsive-layout {
    flex: 1 1 50%;
    min-height: 350px;
  }
}

.image-responsive-layout {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.posts-header-responsive-layout {
  text-align: center;
}

.posts-title-responsive-layout {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  font-family: var(--font-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-grid-responsive-layout {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

@media (min-width: 768px) {
  .posts-grid-responsive-layout {
    flex-direction: row;
  }
}

.card-responsive-layout {
  flex: 1 1 100%;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.card-responsive-layout:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.15);
}

.card-image-responsive-layout {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-body-responsive-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.card-title-responsive-layout {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.35rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-responsive-layout {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.75rem, 0.9vw + 0.4rem, 0.85rem);
  color: var(--color-text-muted-dark);
}

.card-reading-time-responsive-layout,
.card-level-responsive-layout,
.card-date-responsive-layout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted-dark);
}

.card-reading-time-responsive-layout i,
.card-level-responsive-layout i,
.card-date-responsive-layout i {
  color: var(--color-primary);
  font-size: 0.9em;
}

.card-link-responsive-layout {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  align-self: flex-start;
}

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

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

.principles-content-responsive-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.principles-header-responsive-layout {
  text-align: center;
}

.principles-title-responsive-layout {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-subtitle-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  font-family: var(--font-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-list-responsive-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .principles-list-responsive-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.principle-item-responsive-layout {
  flex: 1 1 100%;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

@media (min-width: 768px) {
  .principle-item-responsive-layout {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .principle-item-responsive-layout {
    flex: 1 1 calc(50% - 1rem);
  }
}

.principle-number-responsive-layout {
  color: var(--color-primary);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1;
}

.principle-heading-responsive-layout {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-text-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.techniques-content-responsive-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.techniques-header-responsive-layout {
  text-align: center;
}

.techniques-title-responsive-layout {
  color: var(--color-text-primary-dark);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.techniques-text-responsive-layout {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.techniques-paragraph-responsive-layout {
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.9rem, 1.2vw + 0.5rem, 1.05rem);
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-content-responsive-layout {
    flex-direction: column;
  }

  .posts-grid-responsive-layout {
    flex-direction: column;
    align-items: center;
  }

  .card-responsive-layout {
    width: 100%;
    max-width: 100%;
  }

  .principle-item-responsive-layout {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-responsive-layout {
    flex-direction: row;
    justify-content: center;
  }

  .card-responsive-layout {
    flex: 1 1 calc(50% - 1rem);
    max-width: 420px;
  }

  .principle-item-responsive-layout {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .posts-grid-responsive-layout {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .card-responsive-layout {
    flex: 1 1 calc(25% - 1.5rem);
    max-width: 380px;
  }

  .principle-item-responsive-layout {
    flex: 1 1 calc(50% - 1rem);
  }
}

.main-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  overflow-x: hidden;
}

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

.breadcrumbs-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-mobile-first-ansatz-richtig-umsetzen a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  transition: color var(--transition-base);
}

.breadcrumbs-mobile-first-ansatz-richtig-umsetzen a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumbs-mobile-first-ansatz-richtig-umsetzen span {
  color: var(--color-text-secondary-light);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

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

.hero-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.hero-text-block-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  text-align: center;
}

.hero-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-dark);
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-meta-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
  flex-wrap: wrap;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary-dark);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.meta-item-mobile-first-ansatz-richtig-umsetzen i {
  color: var(--color-primary);
}

.hero-image-block-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  width: 100%;
  max-width: 600px;
}

.hero-image-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .hero-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: row;
    align-items: center;
  }

  .hero-text-block-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    text-align: left;
  }

  .hero-image-block-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: none;
  }
}

.intro-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.intro-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
}

.intro-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-image-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  width: 100%;
  max-width: 500px;
}

.intro-image-img-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .intro-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: row;
    align-items: center;
  }

  .intro-text-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-image-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.principles-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principles-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.principles-header-mobile-first-ansatz-richtig-umsetzen {
  text-align: center;
}

.principles-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-subtitle-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principles-cards-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.principle-card-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.principle-card-mobile-first-ansatz-richtig-umsetzen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  display: flex;
  align-items: center;
}

.card-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .principle-card-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 calc(50% - 1rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .principle-card-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 calc(25% - 1.875rem);
  }
}

.workflow-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.workflow-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.workflow-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
}

.workflow-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.workflow-paragraph-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.workflow-highlight-mobile-first-ansatz-richtig-umsetzen {
  background: rgba(var(--color-primary-rgb, 59, 130, 246), 0.1);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.highlight-text-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.code-inline-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-primary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  color: var(--color-primary);
  font-size: 0.9em;
}

.workflow-image-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  width: 100%;
  max-width: 500px;
}

.workflow-image-img-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .workflow-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: row;
    align-items: center;
  }

  .workflow-text-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .workflow-image-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.breakpoints-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.breakpoints-image-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  width: 100%;
  max-width: 550px;
}

.breakpoints-image-img-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breakpoints-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
}

.breakpoints-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breakpoints-subtitle-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breakpoints-paragraph-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.breakpoints-list-mobile-first-ansatz-richtig-umsetzen {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.list-item-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  padding-left: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-item-mobile-first-ansatz-richtig-umsetzen::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.breakpoints-note-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin-top: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  font-style: italic;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .breakpoints-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: row;
    align-items: center;
  }

  .breakpoints-image-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
    order: 2;
  }

  .breakpoints-text-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
    order: 1;
  }
}

.images-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.images-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.images-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
}

.images-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.images-paragraph-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.images-image-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  width: 100%;
  max-width: 500px;
}

.images-image-img-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .images-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: row;
    align-items: center;
  }

  .images-text-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .images-image-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.conclusion-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-list-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefit-item-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.benefit-number-mobile-first-ansatz-richtig-umsetzen {
  flex-shrink: 0;
  width: clamp(2.5rem, 5vw, 3rem);
  height: clamp(2.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.benefit-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1;
}

.benefit-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefit-description-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-quote-mobile-first-ansatz-richtig-umsetzen {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.quote-block-mobile-first-ansatz-richtig-umsetzen {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  font-style: italic;
  margin: 0;
}

.quote-text-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary-light);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-final-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  text-align: center;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-icon-mobile-first-ansatz-richtig-umsetzen {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-text-mobile-first-ansatz-richtig-umsetzen {
  flex: 1;
}

.disclaimer-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-body-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-section-mobile-first-ansatz-richtig-umsetzen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary-dark);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-mobile-first-ansatz-richtig-umsetzen {
  flex: 1 1 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-bg-secondary);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.related-card-mobile-first-ansatz-richtig-umsetzen:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.related-card-image-mobile-first-ansatz-richtig-umsetzen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-mobile-first-ansatz-richtig-umsetzen {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-mobile-first-ansatz-richtig-umsetzen {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-link-mobile-first-ansatz-richtig-umsetzen {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  transition: color var(--transition-base);
}

.related-link-mobile-first-ansatz-richtig-umsetzen:hover {
  color: var(--color-primary-hover);
}

@media (min-width: 768px) {
  .related-card-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .related-card-mobile-first-ansatz-richtig-umsetzen {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

@media (max-width: 480px) {
  .hero-meta-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-mobile-first-ansatz-richtig-umsetzen {
    gap: 0.25rem;
  }

  .benefit-item-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .disclaimer-content-mobile-first-ansatz-richtig-umsetzen {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.main-fluid-grid-systeme-verstehen {
    width: 100%;
    overflow: hidden;
  }

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

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

  .breadcrumbs-fluid-grid-systeme-verstehen {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    font-size: clamp(0.75rem, 1vw, 0.875rem);
  }

  .breadcrumbs-fluid-grid-systeme-verstehen a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
  }

  .breadcrumbs-fluid-grid-systeme-verstehen a:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
  }

  .breadcrumbs-fluid-grid-systeme-verstehen span {
    color: var(--color-text-muted-dark);
  }

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

  .hero-text-wrapper-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-image-wrapper-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    color: var(--color-text-primary-dark);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-dark);
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.6;
  }

  .hero-meta-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
  }

  .meta-item-fluid-grid-systeme-verstehen {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    color: var(--color-text-secondary-dark);
  }

  .meta-item-fluid-grid-systeme-verstehen i {
    color: var(--color-primary);
  }

  .hero-image-fluid-grid-systeme-verstehen {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    display: block;
  }

  @media (max-width: 768px) {
    .hero-content-fluid-grid-systeme-verstehen {
      flex-direction: column;
    }

    .hero-text-wrapper-fluid-grid-systeme-verstehen,
    .hero-image-wrapper-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .hero-meta-fluid-grid-systeme-verstehen {
      gap: 1rem;
    }
  }

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

  .intro-content-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .intro-text-fluid-grid-systeme-verstehen {
    flex: 1 1 60%;
    max-width: 60%;
  }

  .intro-highlight-fluid-grid-systeme-verstehen {
    flex: 1 1 40%;
    max-width: 40%;
  }

  .intro-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro-paragraph-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.7;
  }

  .highlight-box-fluid-grid-systeme-verstehen {
    background: var(--color-bg-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .highlight-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-bottom: 1rem;
  }

  .highlight-list-fluid-grid-systeme-verstehen {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .highlight-item-fluid-grid-systeme-verstehen {
    color: var(--color-text-secondary-light);
    padding: 0.5rem 0;
    font-size: clamp(0.875rem, 1vw, 1rem);
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .highlight-item-fluid-grid-systeme-verstehen::before {
    content: "";
    color: var(--color-primary);
    font-weight: bold;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {
    .intro-content-fluid-grid-systeme-verstehen {
      flex-direction: column;
    }

    .intro-text-fluid-grid-systeme-verstehen,
    .intro-highlight-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .fundamentals-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .fundamentals-wrapper-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .fundamentals-text-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .fundamentals-image-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .fundamentals-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-dark);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .fundamentals-paragraph-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-dark);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.7;
  }

  .code-inline-fluid-grid-systeme-verstehen {
    background: rgba(var(--color-primary-rgb), 0.1);
    color: var(--color-primary);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
  }

  .fundamentals-image-element-fluid-grid-systeme-verstehen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .fundamentals-wrapper-fluid-grid-systeme-verstehen {
      flex-direction: column;
    }

    .fundamentals-text-fluid-grid-systeme-verstehen,
    .fundamentals-image-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .breakpoints-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .breakpoints-wrapper-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .breakpoints-image-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .breakpoints-text-fluid-grid-systeme-verstehen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .breakpoints-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .breakpoints-paragraph-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.7;
  }

  .breakpoints-list-fluid-grid-systeme-verstehen {
    list-style: none;
    padding: 0;
    margin: clamp(1rem, 2vw, 1.5rem) 0;
  }

  .breakpoints-item-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
  }

  .breakpoints-item-fluid-grid-systeme-verstehen::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .breakpoints-image-element-fluid-grid-systeme-verstehen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .breakpoints-wrapper-fluid-grid-systeme-verstehen {
      flex-direction: column-reverse;
    }

    .breakpoints-image-fluid-grid-systeme-verstehen,
    .breakpoints-text-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .practical-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .practical-content-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .practical-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-dark);
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .practical-intro-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-dark);
    text-align: center;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
  }

  .practical-steps-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
    margin: clamp(2rem, 4vw, 3rem) 0;
  }

  .step-card-fluid-grid-systeme-verstehen {
    flex: 1 1 calc(50% - 1rem);
    max-width: 400px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-fluid-grid-systeme-verstehen {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--color-primary);
  }

  .step-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .step-text-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-light);
    line-height: 1.6;
  }

  .practical-image-wrapper-fluid-grid-systeme-verstehen {
    margin-top: clamp(1rem, 2vw, 2rem);
  }

  .practical-image-element-fluid-grid-systeme-verstehen {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
    margin: 0 auto;
  }

  @media (max-width: 768px) {
    .step-card-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
    }
  }

  .advanced-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .advanced-wrapper-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .advanced-text-fluid-grid-systeme-verstehen {
    flex: 1 1 55%;
    max-width: 55%;
  }

  .advanced-image-fluid-grid-systeme-verstehen {
    flex: 1 1 45%;
    max-width: 45%;
  }

  .advanced-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .advanced-paragraph-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.7;
  }

  .advanced-subtitle-fluid-grid-systeme-verstehen {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-top: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .advanced-text-item-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    line-height: 1.7;
  }

  .advanced-image-element-fluid-grid-systeme-verstehen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  @media (max-width: 768px) {
    .advanced-wrapper-fluid-grid-systeme-verstehen {
      flex-direction: column;
    }

    .advanced-text-fluid-grid-systeme-verstehen,
    .advanced-image-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
      max-width: 100%;
    }
  }

  .tips-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .tips-content-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .tips-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-dark);
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tips-cards-wrapper-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .tip-card-fluid-grid-systeme-verstehen {
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 280px;
    max-width: 380px;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all var(--transition-base);
  }

  .tip-card-fluid-grid-systeme-verstehen:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .tip-icon-fluid-grid-systeme-verstehen {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--color-primary);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tip-card-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary-dark);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .tip-card-text-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.6;
  }

  @media (max-width: 1024px) {
    .tip-card-fluid-grid-systeme-verstehen {
      flex: 1 1 calc(50% - 0.75rem);
    }
  }

  @media (max-width: 768px) {
    .tip-card-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
    }
  }

  .conclusion-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .conclusion-content-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 900px;
    margin: 0 auto;
  }

  .conclusion-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-text-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    text-align: center;
  }

  .conclusion-quote-fluid-grid-systeme-verstehen {
    margin: clamp(1rem, 2vw, 2rem) 0;
  }

  .quote-block-fluid-grid-systeme-verstehen {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.05);
    border-radius: var(--radius-md);
  }

  .quote-text-fluid-grid-systeme-verstehen {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-primary-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .quote-author-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-light);
    display: block;
  }

  .conclusion-closing-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
    text-align: center;
  }

  .conclusion-cta-fluid-grid-systeme-verstehen {
    text-align: center;
    margin-top: clamp(1rem, 2vw, 2rem);
  }

  .cta-button-fluid-grid-systeme-verstehen {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    transition: all var(--transition-base);
  }

  .cta-button-fluid-grid-systeme-verstehen:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .disclaimer-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-fluid-grid-systeme-verstehen {
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-box-fluid-grid-systeme-verstehen {
    background: var(--color-bg-secondary);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
  }

  .disclaimer-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-title-fluid-grid-systeme-verstehen i {
    color: var(--color-primary);
  }

  .disclaimer-text-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-light);
    line-height: 1.7;
  }

  .related-section-fluid-grid-systeme-verstehen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-content-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-primary-light);
    text-align: center;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-cards-wrapper-fluid-grid-systeme-verstehen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .related-card-fluid-grid-systeme-verstehen {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
  }

  .related-card-fluid-grid-systeme-verstehen:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .related-card-image-fluid-grid-systeme-verstehen {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .related-card-img-fluid-grid-systeme-verstehen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
  }

  .related-card-fluid-grid-systeme-verstehen:hover .related-card-img-fluid-grid-systeme-verstehen {
    transform: scale(1.05);
  }

  .related-card-body-fluid-grid-systeme-verstehen {
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .related-card-title-fluid-grid-systeme-verstehen {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-primary-dark);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-text-fluid-grid-systeme-verstehen {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary-dark);
    line-height: 1.6;
  }

  .related-card-link-fluid-grid-systeme-verstehen {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    transition: all var(--transition-base);
    margin-top: 0.5rem;
  }

  .related-card-link-fluid-grid-systeme-verstehen:hover {
    color: var(--color-primary-hover);
    gap: 0.75rem;
  }

  @media (max-width: 1024px) {
    .related-card-fluid-grid-systeme-verstehen {
      flex: 1 1 calc(50% - 0.75rem);
    }
  }

  @media (max-width: 768px) {
    .related-card-fluid-grid-systeme-verstehen {
      flex: 1 1 100%;
    }
  }

  @media (max-width: 480px) {
    .hero-meta-fluid-grid-systeme-verstehen {
      flex-direction: column;
      gap: 0.75rem;
    }

    .breadcrumbs-fluid-grid-systeme-verstehen {
      font-size: 0.7rem;
    }
  }

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

html, body {
  font-family: 'Sora', sans-serif;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

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

.hero-text-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-breakpoint-strategie-planen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
}

.meta-divider-breakpoint-strategie-planen {
  color: var(--color-border);
}

.hero-image-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-breakpoint-strategie-planen {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
  object-fit: cover;
  max-height: 450px;
}

.breadcrumbs-breakpoint-strategie-planen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.breadcrumbs-breakpoint-strategie-planen a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumbs-breakpoint-strategie-planen a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-breakpoint-strategie-planen span {
  color: var(--color-text-secondary);
}

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

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

.intro-text-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.intro-paragraph-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-breakpoint-strategie-planen {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.content-section-one-breakpoint-strategie-planen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-one-breakpoint-strategie-planen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.content-paragraph-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.content-image-one-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-one-breakpoint-strategie-planen {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.content-section-two-breakpoint-strategie-planen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.content-wrapper-two-breakpoint-strategie-planen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-img-two-breakpoint-strategie-planen {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

.content-text-two-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.3;
}

.strategy-section-breakpoint-strategie-planen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.strategy-content-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.strategy-header-breakpoint-strategie-planen {
  text-align: center;
}

.strategy-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.3;
}

.strategy-subtitle-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.6;
}

.strategy-cards-breakpoint-strategie-planen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.strategy-card-breakpoint-strategie-planen {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.strategy-card-breakpoint-strategie-planen:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.card-label-breakpoint-strategie-planen {
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-heading-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

.card-text-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.practices-section-breakpoint-strategie-planen {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.practices-content-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.practices-header-breakpoint-strategie-planen {
  text-align: center;
}

.practices-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.practices-grid-breakpoint-strategie-planen {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-item-breakpoint-strategie-planen {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.practice-icon-breakpoint-strategie-planen {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-accent);
  line-height: 1;
}

.practice-heading-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.practice-text-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.quote-section-breakpoint-strategie-planen {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.quote-content-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.featured-quote-breakpoint-strategie-planen {
  border-left: 4px solid var(--color-accent);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-primary);
  border-radius: clamp(0.75rem, 1.5vw, 1rem);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-style: normal;
  display: block;
}

.tools-section-breakpoint-strategie-planen {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.tools-content-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.tools-header-breakpoint-strategie-planen {
  text-align: center;
}

.tools-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.tools-wrapper-breakpoint-strategie-planen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tools-text-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-paragraph-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.tools-image-breakpoint-strategie-planen {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-breakpoint-strategie-planen {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.25rem);
  display: block;
  object-fit: cover;
  max-height: 400px;
}

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

.conclusion-content-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-header-breakpoint-strategie-planen {
  text-align: center;
}

.conclusion-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

.conclusion-list-breakpoint-strategie-planen {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.list-item-breakpoint-strategie-planen {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.list-number-breakpoint-strategie-planen {
  flex-shrink: 0;
  width: clamp(2rem, 5vw, 3rem);
  height: clamp(2rem, 5vw, 3rem);
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
}

.list-text-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
  padding-top: clamp(0.25rem, 1vw, 0.5rem);
}

.conclusion-text-breakpoint-strategie-planen {
  text-align: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.conclusion-paragraph-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  line-height: 1.7;
}

.disclaimer-section-breakpoint-strategie-planen {
  background: var(--color-bg-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-breakpoint-strategie-planen {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.7;
}

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

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

.related-header-breakpoint-strategie-planen {
  text-align: center;
}

.related-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
}

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

.related-card-breakpoint-strategie-planen {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-primary);
  border-radius: clamp(0.75rem, 1.5vw, 1.25rem);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.related-card-breakpoint-strategie-planen:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.related-image-breakpoint-strategie-planen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-img-breakpoint-strategie-planen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-breakpoint-strategie-planen {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-breakpoint-strategie-planen {
  color: var(--color-text-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
}

.related-card-text-breakpoint-strategie-planen {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.related-link-breakpoint-strategie-planen {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-breakpoint-strategie-planen:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-breakpoint-strategie-planen,
  .intro-content-breakpoint-strategie-planen,
  .content-wrapper-one-breakpoint-strategie-planen,
  .content-wrapper-two-breakpoint-strategie-planen,
  .tools-wrapper-breakpoint-strategie-planen {
    flex-direction: column;
  }

  .hero-text-breakpoint-strategie-planen,
  .hero-image-breakpoint-strategie-planen,
  .intro-text-breakpoint-strategie-planen,
  .intro-image-breakpoint-strategie-planen,
  .content-text-one-breakpoint-strategie-planen,
  .content-image-one-breakpoint-strategie-planen,
  .content-text-two-breakpoint-strategie-planen,
  .content-image-two-breakpoint-strategie-planen,
  .tools-text-breakpoint-strategie-planen,
  .tools-image-breakpoint-strategie-planen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-two-breakpoint-strategie-planen {
    order: 0;
  }

  .content-image-two-breakpoint-strategie-planen {
    order: 0;
  }

  .hero-img-breakpoint-strategie-planen,
  .intro-img-breakpoint-strategie-planen,
  .content-img-one-breakpoint-strategie-planen,
  .content-img-two-breakpoint-strategie-planen,
  .tools-img-breakpoint-strategie-planen {
    max-height: 300px;
  }
}

@media (max-width: 640px) {
  .strategy-cards-breakpoint-strategie-planen,
  .practices-grid-breakpoint-strategie-planen,
  .related-cards-breakpoint-strategie-planen {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .strategy-card-breakpoint-strategie-planen,
  .practice-item-breakpoint-strategie-planen,
  .related-card-breakpoint-strategie-planen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-touch-freundliche-navigation-design {
  background: var(--color-bg-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--color-text-primary);
  overflow-x: hidden;
}

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

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.breadcrumbs-touch-freundliche-navigation-design a {
  color: var(--color-accent);
}

.breadcrumbs-touch-freundliche-navigation-design a:hover {
  color: var(--color-accent-hover);
}

.breadcrumbs-touch-freundliche-navigation-design span {
  color: var(--color-text-muted);
}

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

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

.hero-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.hero-tag-touch-freundliche-navigation-design {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-description-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.7;
}

.hero-meta-touch-freundliche-navigation-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-touch-freundliche-navigation-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item-touch-freundliche-navigation-design i {
  color: var(--color-accent);
}

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

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

.intro-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.intro-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-paragraph-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.sizes-section-touch-freundliche-navigation-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.sizes-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.sizes-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.sizes-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.sizes-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.sizes-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.sizes-paragraph-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.sizes-highlight-touch-freundliche-navigation-design {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 0.5rem;
}

.highlight-text-touch-freundliche-navigation-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.spacing-section-touch-freundliche-navigation-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.spacing-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.spacing-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.spacing-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.spacing-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.spacing-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.spacing-paragraph-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.interaction-section-touch-freundliche-navigation-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.interaction-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.interaction-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.interaction-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.interaction-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.interaction-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.interaction-paragraph-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.implementation-section-touch-freundliche-navigation-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.implementation-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.implementation-steps-touch-freundliche-navigation-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-card-touch-freundliche-navigation-design {
  flex: 1 1 calc(50% - 1rem);
  min-width: 250px;
  max-width: 400px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-touch-freundliche-navigation-design:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.step-number-touch-freundliche-navigation-design {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.step-title-touch-freundliche-navigation-design {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.step-text-touch-freundliche-navigation-design {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.best-practices-section-touch-freundliche-navigation-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.best-practices-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

.practices-grid-touch-freundliche-navigation-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-item-touch-freundliche-navigation-design {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 200px;
  max-width: 350px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.practice-item-touch-freundliche-navigation-design:hover {
  transform: translateY(-3px);
}

.practice-icon-touch-freundliche-navigation-design {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-accent);
}

.practice-heading-touch-freundliche-navigation-design {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.practice-text-touch-freundliche-navigation-design {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.testing-section-touch-freundliche-navigation-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.testing-text-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-image-touch-freundliche-navigation-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.testing-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: auto;
  border-radius: clamp(0.75rem, 2vw, 1.5rem);
  display: block;
}

.testing-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.testing-paragraph-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.7;
}

.testing-quote-touch-freundliche-navigation-design {
  background: rgba(139, 92, 246, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 2vw, 2rem);
  margin: clamp(1.5rem, 2vw, 2rem) 0;
  border-radius: 0.5rem;
  font-style: italic;
}

.quote-text-touch-freundliche-navigation-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

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

.conclusion-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.conclusion-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-boxes-touch-freundliche-navigation-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.conclusion-box-touch-freundliche-navigation-design {
  flex: 1 1 calc(50% - 1rem);
  min-width: 200px;
  max-width: 350px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
}

.box-title-touch-freundliche-navigation-design {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.box-text-touch-freundliche-navigation-design {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.conclusion-closing-touch-freundliche-navigation-design {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  text-align: center;
}

.disclaimer-section-touch-freundliche-navigation-design {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-touch-freundliche-navigation-design {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid var(--color-border);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 1rem;
}

.disclaimer-title-touch-freundliche-navigation-design {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-text-touch-freundliche-navigation-design {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.related-content-touch-freundliche-navigation-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-touch-freundliche-navigation-design {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 700;
}

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

.related-card-touch-freundliche-navigation-design {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 250px;
  max-width: 400px;
  background: var(--color-bg-secondary);
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-touch-freundliche-navigation-design:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.card-image-touch-freundliche-navigation-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-image-touch-freundliche-navigation-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body-touch-freundliche-navigation-design {
  padding: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.card-title-touch-freundliche-navigation-design {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.card-text-touch-freundliche-navigation-design {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.card-link-touch-freundliche-navigation-design {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.card-link-touch-freundliche-navigation-design:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 768px) {
  .hero-content-touch-freundliche-navigation-design,
  .intro-content-touch-freundliche-navigation-design,
  .sizes-content-touch-freundliche-navigation-design,
  .spacing-content-touch-freundliche-navigation-design,
  .interaction-content-touch-freundliche-navigation-design,
  .testing-content-touch-freundliche-navigation-design {
    flex-direction: column;
  }

  .hero-text-touch-freundliche-navigation-design,
  .hero-image-touch-freundliche-navigation-design,
  .intro-text-touch-freundliche-navigation-design,
  .intro-image-touch-freundliche-navigation-design,
  .sizes-text-touch-freundliche-navigation-design,
  .sizes-image-touch-freundliche-navigation-design,
  .spacing-image-touch-freundliche-navigation-design,
  .spacing-text-touch-freundliche-navigation-design,
  .interaction-text-touch-freundliche-navigation-design,
  .interaction-image-touch-freundliche-navigation-design,
  .testing-text-touch-freundliche-navigation-design,
  .testing-image-touch-freundliche-navigation-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step-card-touch-freundliche-navigation-design {
    flex: 1 1 100%;
  }

  .practice-item-touch-freundliche-navigation-design {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-touch-freundliche-navigation-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .step-card-touch-freundliche-navigation-design {
    flex: 1 1 calc(50% - 1rem);
  }

  .practice-item-touch-freundliche-navigation-design {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }

  .related-card-touch-freundliche-navigation-design {
    flex: 1 1 calc(50% - 1rem);
    max-width: 100%;
  }
}

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

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

.responsive-design-about {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.hero-section-about {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

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

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

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

.foundation-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.foundation-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.foundation-subtitle-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-text-about {
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  max-width: 900px;
  margin: var(--space-xl) auto;
}

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

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

.expertise-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.expertise-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.expertise-cards-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-top: var(--space-lg);
}

.expertise-card-about {
  flex: 1 1 clamp(250px, 45vw, 380px);
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-accent);
  transition: var(--transition-base);
}

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

.card-icon-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

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

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

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

.approach-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.approach-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.approach-intro-about {
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
}

.principles-grid-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: var(--space-2xl);
}

.principle-item-about {
  flex: 1 1 clamp(200px, 40vw, 320px);
  text-align: center;
}

.principle-number-about {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  font-family: var(--font-heading);
}

.principle-label-about {
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-weight: 600;
}

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

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

.philosophy-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.philosophy-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.philosophy-text-about {
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.8;
}

.featured-quote-about {
  margin-top: var(--space-2xl);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-bg-primary);
  border-left: 5px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.quote-author-about {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
  font-weight: 600;
}

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

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

.vision-header-about {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.vision-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.vision-description-about {
  font-size: clamp(0.9375rem, 1.2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

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

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
}

.disclaimer-text-about {
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

@media (min-width: 768px) {
  .hero-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .foundation-section-about,
  .expertise-section-about,
  .approach-section-about,
  .philosophy-section-about,
  .vision-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

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

  .expertise-card-about {
    flex: 1 1 clamp(280px, 30vw, 380px);
  }

  .principles-grid-about {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .hero-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .foundation-section-about,
  .expertise-section-about,
  .approach-section-about,
  .philosophy-section-about,
  .vision-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

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

  .expertise-cards-about {
    gap: 2.5rem;
  }
}

.portfolio-page {
  width: 100%;
  overflow-x: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
  border-bottom: 1px solid var(--color-text-muted-light);
}

.portfolio-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.portfolio-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.3rem, 1.2rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .portfolio-hero__title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 5rem var(--space-2xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.portfolio-projects__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card__image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card__content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card__tag {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.portfolio-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw + 0.3rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
  flex-grow: 1;
}

.portfolio-card__detail {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  color: var(--color-text-muted-dark);
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3xl);
  }

  .portfolio-card__image-wrapper {
    height: 260px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: 5rem var(--space-2xl);
  }

  .portfolio-projects__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-card__image-wrapper {
    height: 300px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-lg);
  overflow: hidden;
}

.portfolio-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.2rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-md) 0;
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  margin: 0 0 var(--space-2xl) 0;
}

.portfolio-cta__button {
  display: inline-block;
  background-color: var(--color-bg-dark-accent);
  color: var(--color-text-primary-light);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-base);
  border: none;
  cursor: pointer;
}

.portfolio-cta__button:hover {
  background-color: var(--color-primary-hover);
}

.portfolio-cta__button:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .portfolio-cta__title {
    margin-bottom: var(--space-lg);
  }

  .portfolio-cta__text {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 5rem var(--space-2xl);
  }
}

.services-page {
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem var(--space-md);
  overflow: hidden;
  border-bottom: 1px solid var(--color-primary-light);
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.2;
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  margin: 0;
  line-height: 1.5;
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: 4rem var(--space-md);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-primary-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
}

.service-card__description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.service-card__features li {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  color: var(--color-text-muted-dark);
  padding-left: var(--space-md);
  position: relative;
}

.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.services-cta {
  background-color: var(--color-bg-secondary);
  padding: 3.5rem var(--space-md);
  overflow: hidden;
  border-top: 1px solid var(--color-primary-light);
}

.services-cta__container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.services-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  color: var(--color-text-primary-dark);
  margin: 0 0 var(--space-sm) 0;
  font-weight: 700;
  line-height: 1.3;
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.0625rem);
  color: var(--color-text-secondary-dark);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.5;
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-primary-light);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.services-cta__button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }

  .services-content {
    padding: 5rem var(--space-lg);
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .service-card {
    padding: var(--space-xl);
  }

  .services-cta {
    padding: 4.5rem var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 5rem var(--space-2xl);
  }

  .services-content {
    padding: 6rem var(--space-2xl);
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .services-cta {
    padding: 5.5rem var(--space-2xl);
  }

  .services-cta__button {
    font-size: 1rem;
    padding: var(--space-lg) var(--space-2xl);
  }
}

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

.legal-portal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary-light);
  font-family: var(--font-primary);
}

.legal-portal .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-portal .legal-portal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) 0;
}

.legal-portal h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.legal-portal .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary-light);
  margin-bottom: var(--space-3xl);
  font-style: italic;
}

.legal-portal h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary-light);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.legal-portal p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.legal-portal ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-portal li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
}

.legal-portal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.legal-portal .contact-section h2 {
  color: var(--color-text-primary-light);
  margin-top: 0;
}

.legal-portal .contact-section p {
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-md);
}

.legal-portal .contact-section strong {
  font-weight: 600;
  color: var(--color-text-primary-light);
}

@media (min-width: 768px) {
  .legal-portal .container {
    padding: 0 var(--space-lg);
  }

  .legal-portal .legal-portal-content {
    padding: var(--space-4xl) 0;
  }
}

@media (min-width: 1024px) {
  .legal-portal .container {
    padding: 0 var(--space-xl);
  }

  .legal-portal .legal-portal-content {
    padding: var(--space-4xl) 0;
  }
}

.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) var(--space-md);
  background-color: var(--color-bg-primary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-section .content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.thank-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background-color: var(--color-bg-secondary);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  stroke: var(--color-primary);
}

.thank-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}

.thank-lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-primary);
  font-weight: 600;
  margin: var(--space-sm) 0 var(--space-md);
  line-height: 1.5;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary-light);
  line-height: 1.8;
  margin: var(--space-lg) 0;
  opacity: 0.95;
}

.thank-next-steps {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  margin: var(--space-2xl) 0;
  text-align: left;
}

.thank-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--color-text-primary-light);
  font-weight: 600;
  margin: 0 0 var(--space-md);
  text-align: center;
}

.thank-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.thank-step {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary-light);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.thank-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2em;
}

.thank-btn {
  margin-top: var(--space-xl);
  min-width: 200px;
  font-size: clamp(0.95rem, 1vw, 1.1rem);
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
}

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

.btn-primary:active {
  transform: translateY(0);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .thank-icon-wrapper {
    width: 100px;
    height: 100px;
  }

  .thank-icon {
    width: 56px;
    height: 56px;
  }

  .thank-next-steps {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-lg);
    min-height: 100vh;
  }

  .thank-wrapper {
    gap: var(--space-xl);
  }

  .thank-icon-wrapper {
    margin-bottom: var(--space-lg);
  }

  .thank-next-steps {
    padding: var(--space-2xl) var(--space-xl);
  }

  .thank-step {
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
    padding: var(--space-md) 0 var(--space-md) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-2xl);
  }

  .thank-description {
    font-size: clamp(1rem, 1vw + 0.5rem, 1.15rem);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .thank-next-steps {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem var(--space-2xl);
  }
}

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

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-md) var(--space-md);
  overflow: hidden;
}

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

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-2xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: var(--space-lg);
  animation: floatError 3s ease-in-out infinite;
}

@keyframes floatError {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-secondary), transparent);
  border-radius: var(--radius-xl);
  margin-top: var(--space-lg);
  animation: slideDecoration 2.5s ease-in-out infinite;
}

@keyframes slideDecoration {
  0%, 100% {
    opacity: 0.5;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.error-message {
  position: relative;
  z-index: 2;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.error-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.error-description {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-features {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-primary-light);
  transition: all var(--transition-base);
}

.feature-item:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  display: inline-block;
}

.feature-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

.feature-item:hover .feature-text {
  color: var(--color-text-primary-dark);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-base);
  cursor: pointer;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-primary-dark);
  border-color: var(--color-primary);
}

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

.btn-primary:active {
  transform: translateY(-1px);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-lg) var(--space-lg);
  }
  
  .container {
    padding: 0 var(--space-lg);
  }
  
  .error-features {
    gap: var(--space-md);
  }
  
  .feature-item {
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-xl) var(--space-lg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .error-visual {
    margin-bottom: var(--space-3xl);
  }
  
  .error-message {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
  
  .container {
    padding: 0 var(--space-xl);
  }
  
  .error-features {
    gap: var(--space-lg);
  }
  
  .feature-item {
    padding: var(--space-md) var(--space-xl);
    border: 2px solid var(--color-primary-light);
  }
  
  .feature-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .error-code {
    animation: none;
  }
  
  .error-features {
    flex-direction: column;
  }
  
  .feature-item {
    width: 100%;
    justify-content: center;
  }
}

.contact-say-hello {
  width: 100%;
  overflow: hidden;
}

.contact-say-hello-hero {
  background-color: var(--color-bg-primary);
  padding: 4rem 0 3rem 0;
  overflow: hidden;
}

.contact-say-hello-hero-content {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-say-hello-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-say-hello-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-say-hello-hero {
    padding: 6rem 0 4rem 0;
  }

  .contact-say-hello-hero-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-hero {
    padding: 8rem 0 5rem 0;
  }
}

.contact-say-hello-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-say-hello-main-content {
  padding: 0 var(--space-md);
}

.contact-say-hello-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}

.contact-say-hello-form-wrapper {
  width: 100%;
}

.contact-say-hello-info-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .contact-say-hello-main {
    padding: 5rem 0;
  }

  .contact-say-hello-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .contact-say-hello-form-wrapper {
    width: 100%;
  }

  .contact-say-hello-info-wrapper {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-main {
    padding: 6rem 0;
  }

  .contact-say-hello-grid {
    gap: 5rem;
  }
}

.contact-say-hello-form-header {
  margin-bottom: var(--space-lg);
}

.contact-say-hello-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-say-hello-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-say-hello-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-say-hello-form-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-say-hello-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-primary-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.contact-say-hello-input,
.contact-say-hello-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-primary-dark);
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: var(--transition-fast);
  box-sizing: border-box;
}

.contact-say-hello-input::placeholder,
.contact-say-hello-textarea::placeholder {
  color: var(--color-text-muted-light);
}

.contact-say-hello-input:focus,
.contact-say-hello-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-secondary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.contact-say-hello-input:hover,
.contact-say-hello-textarea:hover {
  border-color: var(--color-primary-light);
}

.contact-say-hello-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-say-hello-form-consent {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.contact-say-hello-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.contact-say-hello-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  cursor: pointer;
}

.contact-say-hello-consent-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-say-hello-consent-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-say-hello-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-base);
  letter-spacing: 0.3px;
  margin-top: var(--space-md);
}

.contact-say-hello-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-say-hello-submit:active {
  transform: translateY(0);
}

.contact-say-hello-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-say-hello-info-header {
  margin-bottom: var(--space-xl);
}

.contact-say-hello-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.contact-say-hello-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
}

.contact-say-hello-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.contact-say-hello-info-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-say-hello-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-say-hello-info-content {
  flex: 1;
}

.contact-say-hello-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.contact-say-hello-info-value {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.6;
}

.contact-say-hello-info-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-say-hello-info-link:hover {
  color: var(--color-primary-hover);
  border-bottom-color: var(--color-primary-hover);
}

.contact-say-hello-info-time {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted-light);
  margin: 0;
}

.contact-say-hello-expertise-title {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary-dark);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-say-hello-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-say-hello-expertise-item {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary-dark);
  padding-left: var(--space-md);
  position: relative;
}

.contact-say-hello-expertise-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.35rem;
  height: 0.35rem;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.contact-say-hello-cta {
  background-color: var(--color-bg-secondary);
  padding: 4rem 0;
  overflow: hidden;
}

.contact-say-hello-cta-content {
  text-align: center;
  padding: 0 var(--space-md);
}

.contact-say-hello-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--color-text-primary-dark);
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.contact-say-hello-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-say-hello-cta {
    padding: 5rem 0;
  }

  .contact-say-hello-cta-title {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .contact-say-hello-cta {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .contact-say-hello-form,
  .contact-say-hello-info-list {
    gap: var(--space-md);
  }

  .contact-say-hello-submit {
    padding: 0.875rem 1.25rem;
  }

  .contact-say-hello-info-item {
    gap: var(--space-md);
  }

  .contact-say-hello-info-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.1rem;
  }
}
.header-fluid-core-mobile-close,.header-fluid-core-mobile-toggle{
  width: 34px;
}

.header-fluid-core-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}

.services-cards,.services-cards-container,.services-grid,.services-container{
  display: flex;
  flex-direction: column;
}

.content{
  display: block;
}
