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

:root {
  
  
  
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f8fafc;
  --color-bg-card-dark: rgba(255, 255, 255, 0.05);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #94a3b8;
  --color-text-dark-muted: #64748b;
  
  
  --color-text-light-primary: #0f172a;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #94a3b8;
  
  
  --color-primary: #ff6b35;
  --color-primary-hover: #ff5520;
  --color-primary-light: #ffede5;
  --color-secondary: #004e89;
  --color-secondary-hover: #003a66;
  --color-secondary-light: #e6f0ff;
  --color-accent-tertiary: #1bad7d;
  
  
  --font-primary: 'Inter', 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;
  
  
  --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);
  
  
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  
  
  --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);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  line-height: var(--leading-normal);
  color: var(--color-text-light-primary);
  background: var(--color-bg-secondary);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 6vw, 2.75rem);
}

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

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: var(--space-md);
  line-height: var(--leading-relaxed);
}

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

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

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

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

.section-dark {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-2xl) 0;
}

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

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

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

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

.section-light {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: var(--space-2xl) 0;
}

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

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

.section-light-gray {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: var(--space-2xl) 0;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  gap: var(--space-xs);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
  margin: 0 !important;
}

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

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-ghost {
  background: transparent;
  color: var(--color-text-light-primary);
  border: 1px solid var(--color-text-light-secondary);
}

.btn-ghost:hover {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-dark-ghost {
  background: transparent;
  color: var(--color-text-dark-primary);
  border: 1px solid var(--color-text-dark-secondary);
}

.btn-dark-ghost:hover {
  background: var(--color-bg-card-dark);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

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

.card-dark {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-dark-primary);
}

.card-dark h3,
.card-dark h4 {
  color: var(--color-text-dark-primary);
}

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

.card-accent {
  border-left: 4px solid var(--color-primary);
}

.card-accent-secondary {
  border-left: 4px solid var(--color-secondary);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-secondary {
  background: var(--color-secondary-light);
  color: var(--color-secondary);
}

.badge-success {
  background: rgba(26, 173, 125, 0.1);
  color: var(--color-accent-tertiary);
}

.badge-dark {
  background: rgba(255, 107, 53, 0.15);
  color: var(--color-primary);
}

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

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

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

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

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

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

.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

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

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: var(--space-xl);
}

.p-2xl {
  padding: var(--space-2xl);
}

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

.m-xs {
  margin: var(--space-xs);
}

.m-sm {
  margin: var(--space-sm);
}

.m-md {
  margin: var(--space-md);
}

.m-lg {
  margin: var(--space-lg);
}

.m-xl {
  margin: var(--space-xl);
}

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

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

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

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

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

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

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

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.text-normal {
  font-weight: 400;
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.capitalize {
  text-transform: capitalize;
}

.line-through {
  text-decoration: line-through;
}

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

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

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

ul,
ol {
  margin-left: var(--space-md);
  margin-bottom: var(--space-md);
}

li {
  margin-bottom: var(--space-sm);
  line-height: var(--leading-relaxed);
}

ul li {
  list-style-type: disc;
}

ol li {
  list-style-type: decimal;
}

blockquote {
  padding: var(--space-md);
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
  font-style: italic;
  margin: var(--space-md) 0;
  color: var(--color-text-light-secondary);
}

code {
  font-family: 'Courier New', monospace;
  background: var(--color-bg-tertiary);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-size: 0.9em;
  color: var(--color-primary);
}

pre {
  background: var(--color-bg-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--space-md) 0;
}

pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: var(--space-xl) 0;
}

.hr-light {
  background: rgba(255, 255, 255, 0.1);
}

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

.img-rounded {
  border-radius: var(--radius-lg);
}

.img-circle {
  border-radius: 50%;
  object-fit: cover;
}

.img-shadow {
  box-shadow: var(--shadow-md);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

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

.animate-slideDown {
  animation: slideDown var(--transition-base) ease-out;
}

.animate-slideLeft {
  animation: slideLeft var(--transition-base) ease-out;
}

.animate-slideRight {
  animation: slideRight var(--transition-base) ease-out;
}

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

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

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #ffffff;
  padding: var(--space-sm) var(--space-md);
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .section-dark,
  .section-light,
  .section-light-gray {
    padding: var(--space-xl) 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

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

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
  }

  .section-dark,
  .section-light,
  .section-light-gray {
    padding: var(--space-lg) 0;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }

  a {
    text-decoration: underline;
  }

  .no-print {
    display: none;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: var(--color-bg-primary);
    color: var(--color-text-dark-primary);
  }

  .section-light {
    background: #1e293b;
    color: var(--color-text-dark-primary);
  }

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

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

  .section-light-gray {
    background: #0f172a;
  }

  input,
  textarea,
  select {
    background: var(--color-bg-card-dark);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-dark-primary);
  }

  blockquote {
    background: var(--color-bg-card-dark);
    color: var(--color-text-dark-secondary);
  }

  hr {
    background: rgba(255, 255, 255, 0.1);
  }
}
.header-seo-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

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

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

.header-seo-forge-brand:hover {
  opacity: 0.85;
}

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

.header-seo-forge-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  letter-spacing: -0.5px;
}

.header-seo-forge-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  margin: 0 clamp(1rem, 3vw, 2rem);
}

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

.header-seo-forge-nav-link:hover {
  color: var(--color-primary);
}

.header-seo-forge-cta-button {
  display: none;
  padding: clamp(0.625rem, 1vw, 0.875rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-seo-forge-cta-button:hover {
  background: var(--color-primary-hover);
}

.header-seo-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
  flex-shrink: 0;
}

.header-seo-forge-mobile-toggle:hover {
  color: var(--color-primary);
}

.header-seo-forge-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  padding-top: clamp(4rem, 10vw, 5rem);
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

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

.header-seo-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2rem) clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.header-seo-forge-mobile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
}

.header-seo-forge-mobile-close {
  background: transparent;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-base);
}

.header-seo-forge-mobile-close:hover {
  color: var(--color-primary);
}

.header-seo-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(1rem, 4vw, 2rem);
  flex: 1;
}

.header-seo-forge-mobile-link {
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-base);
}

.header-seo-forge-mobile-link:hover {
  color: var(--color-primary);
}

.header-seo-forge-mobile-cta {
  margin: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem) 0;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  text-align: center;
  transition: background var(--transition-base);
}

.header-seo-forge-mobile-cta:hover {
  background: var(--color-primary-hover);
}

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

  .header-seo-forge-cta-button {
    display: inline-block;
  }

  .header-seo-forge-mobile-toggle {
    display: none;
  }

  .header-seo-forge-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-seo-forge-nav-link {
    font-size: 1rem;
  }

  .header-seo-forge-cta-button {
    padding: 0.875rem 1.75rem;
  }
}

    .seo-hub {
  width: 100%;
  background: #ffffff;
}

.hero-section-index {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-index {
  color: #ffffff;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-subtitle-index {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-ctas-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ff6b35;
  line-height: 1;
}

.stat-label-index {
  font-size: clamp(0.75rem, 1.5vw, 0.95rem);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.hero-img-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

  .hero-stats-index {
    justify-content: space-between;
  }

  .stat-item-index {
    flex: 0 1 auto;
  }
}

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

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

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

.about-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.about-intro-index {
  color: #475569;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
  font-weight: 500;
}

.about-description-index {
  color: #475569;
  font-size: clamp(0.95rem, 1.8vw, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 0;
}

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

.benefit-item-index {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #ffffff;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-title-index {
  color: #0f172a;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.benefit-text-index {
  color: #64748b;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin-bottom: 0;
}

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

.about-img-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

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

.principles-section-index {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.principles-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.principles-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.principles-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.principle-card-index {
  flex: 1 1 250px;
  max-width: 320px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.principle-card-index:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.principle-number-index {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ff6b35;
  line-height: 1;
}

.principle-name-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0;
}

.principle-text-index {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .principle-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

.featured-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.featured-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.featured-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.featured-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

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

.card-img-index {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.card-title-index {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.card-description-index {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.card-link-index {
  color: #ff6b35;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
}

.card-link-index:hover {
  color: #ff5520;
  text-decoration: underline;
}

.featured-cta-index {
  display: flex;
  justify-content: center;
  padding-top: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .featured-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.testimonials-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.testimonials-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.testimonials-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-index:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #ff6b35;
}

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

.testimonial-text-index {
  color: #475569;
  font-size: clamp(0.9rem, 1.8vw, 1.0625rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.author-name-index {
  color: #0f172a;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .testimonial-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.faq-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.faq-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.faq-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

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

.faq-item-index {
  flex: 1 1 320px;
  max-width: 420px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-question-index {
  color: #0f172a;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.faq-answer-index {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .faq-item-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

.benefits-header-index {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.benefits-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.benefits-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.benefits-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.benefit-row-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #ff6b35;
}

.benefit-number-index {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ff6b35;
  flex-shrink: 0;
  line-height: 1;
}

.benefit-description-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.benefit-heading-index {
  color: #0f172a;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}

.benefit-detail-index {
  color: #475569;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefit-row-index {
    flex-direction: column;
  }

  .benefit-number-index {
    flex-shrink: 0;
  }
}

.partners-section-index {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.partners-header-index {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
  max-width: 700px;
}

.partners-title-index {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.partners-subtitle-index {
  color: #475569;
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.partners-cta-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
}

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

.cta-content-index {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box-index {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8560 100%);
  color: #ffffff;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.cta-description-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-primary-large-index {
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #ff6b35;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary-large-index:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-banner-text {
  color: #ffffff;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: #ff6b35;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-btn-accept:hover {
  background: #ff5520;
}

.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-btn-decline:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }

  .cookie-banner-text {
    flex: 1 1 100%;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .hero-section-index {
    padding: 2rem 0;
  }

  .principles-grid-index,
  .featured-cards-index,
  .testimonials-grid-index,
  .faq-grid-index {
    gap: 1rem;
  }

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

  .partners-cta-index .btn {
    width: 100%;
  }

  .cta-box-index {
    padding: 2rem 1.5rem;
  }
}

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

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

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

.footer-about {
  max-width: 550px;
}

.footer-about h3,
.footer-nav-section h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  flex-direction: row;
}

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

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

.footer-contact p,
.footer-contact {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--leading-relaxed);
}

.footer-contact p {
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-direction: row;
}

.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(148, 163, 184, 0.15);
}

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

@media (min-width: 768px) {
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
    grid-auto-flow: row;
  }

  .footer-about {
    grid-column: 1;
    max-width: 100%;
  }

  .footer-nav-section {
    grid-column: 2;
  }

  .footer-contact {
    grid-column: 3;
  }

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

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

@media (max-width: 767px) {
  .footer-content {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-about,
  .footer-nav-section,
  .footer-contact,
  .footer-legal {
    width: 100%;
  }
}
    

.category-page-seo-web-design-netherlands {
  width: 100%;
  overflow: hidden;
}

.hero-section-seo-web-design-netherlands {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2847 100%);
  color: var(--color-text-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-content-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-header-seo-web-design-netherlands {
  text-align: center;
}

.hero-title-seo-web-design-netherlands {
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--leading-tight);
}

.hero-subtitle-seo-web-design-netherlands {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

.hero-highlight-seo-web-design-netherlands {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 750px;
  margin: 0 auto;
}

.hero-highlight-text-seo-web-design-netherlands {
  color: var(--color-text-dark-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.posts-section-seo-web-design-netherlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.posts-content-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.posts-header-seo-web-design-netherlands {
  text-align: center;
}

.posts-title-seo-web-design-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.posts-subtitle-seo-web-design-netherlands {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  flex: 1 1 clamp(280px, 45vw, 380px);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card-seo-web-design-netherlands:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-seo-web-design-netherlands img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-title-seo-web-design-netherlands {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-light-primary);
  margin: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 1rem);
  line-height: var(--leading-tight);
}

.card-description-seo-web-design-netherlands {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-text-light-secondary);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

.card-meta-seo-web-design-netherlands {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  padding: 0 clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
}

.card-reading-time-seo-web-design-netherlands,
.card-level-seo-web-design-netherlands,
.card-date-seo-web-design-netherlands {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-meta-seo-web-design-netherlands i {
  color: var(--color-primary);
  font-size: 0.85em;
}

.card-link-seo-web-design-netherlands {
  display: inline-block;
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
  padding: 0.7rem 1.2rem;
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: all var(--transition-fast);
}

.card-link-seo-web-design-netherlands:hover {
  background: var(--color-primary-hover);
  transform: translateX(4px);
}

.insights-section-seo-web-design-netherlands {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.insights-content-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.insights-header-seo-web-design-netherlands {
  text-align: center;
}

.insights-title-seo-web-design-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: 0;
}

.insights-text-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  max-width: 900px;
  margin: 0 auto;
}

.insights-paragraph-one-seo-web-design-netherlands,
.insights-paragraph-two-seo-web-design-netherlands,
.insights-paragraph-three-seo-web-design-netherlands {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.insights-highlight-seo-web-design-netherlands {
  background: #ffffff;
  border-left: 5px solid var(--color-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin: clamp(0.5rem, 1vw, 1rem) 0;
  box-shadow: var(--shadow-sm);
}

.insights-highlight-text-seo-web-design-netherlands {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-style: italic;
  margin: 0;
  line-height: var(--leading-relaxed);
}

.checklist-section-seo-web-design-netherlands {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.checklist-content-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.checklist-header-seo-web-design-netherlands {
  text-align: center;
}

.checklist-title-seo-web-design-netherlands {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
}

.checklist-subtitle-seo-web-design-netherlands {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
}

.checklist-items-seo-web-design-netherlands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.checklist-item-seo-web-design-netherlands {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-tertiary);
  transition: all var(--transition-fast);
}

.checklist-item-seo-web-design-netherlands:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.checklist-icon-seo-web-design-netherlands {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: var(--color-accent-tertiary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.checklist-text-seo-web-design-netherlands {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist-item-title-seo-web-design-netherlands {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-light-primary);
  margin: 0;
  font-weight: 600;
}

.checklist-item-description-seo-web-design-netherlands {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

@media (max-width: 768px) {
  .hero-title-seo-web-design-netherlands {
    font-size: 1.75rem;
  }

  .posts-title-seo-web-design-netherlands {
    font-size: 1.5rem;
  }

  .card-seo-web-design-netherlands {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .insights-title-seo-web-design-netherlands {
    font-size: 1.5rem;
  }

  .checklist-title-seo-web-design-netherlands {
    font-size: 1.5rem;
  }

  .checklist-items-seo-web-design-netherlands {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section-seo-web-design-netherlands {
    padding: 2rem 0;
  }

  .posts-section-seo-web-design-netherlands {
    padding: 2rem 0;
  }

  .insights-section-seo-web-design-netherlands {
    padding: 2rem 0;
  }

  .checklist-section-seo-web-design-netherlands {
    padding: 2rem 0;
  }

  .card-seo-web-design-netherlands {
    flex: 1 1 100%;
  }

  .checklist-item-seo-web-design-netherlands {
    flex-direction: column;
    align-items: flex-start;
  }

  .checklist-icon-seo-web-design-netherlands {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}

.main-website-performance-optimaliseren {
  width: 100%;
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  overflow: hidden;
}

.hero-section-website-performance-optimaliseren {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2332 100%);
  color: var(--color-text-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section-website-performance-optimaliseren .container {
  display: block;
}

.breadcrumbs-website-performance-optimaliseren {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
}

.breadcrumbs-website-performance-optimaliseren a {
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.breadcrumbs-website-performance-optimaliseren a:hover {
  color: #ff8560;
}

.breadcrumbs-website-performance-optimaliseren span {
  color: var(--color-text-dark-muted);
}

.hero-content-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

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

.hero-text-wrapper-website-performance-optimaliseren {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-text-wrapper-website-performance-optimaliseren {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

.hero-title-website-performance-optimaliseren {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 6vw + 1rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-website-performance-optimaliseren {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.hero-meta-website-performance-optimaliseren {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
}

.meta-item-website-performance-optimaliseren {
  color: var(--color-text-dark-secondary);
}

.meta-divider-website-performance-optimaliseren {
  color: var(--color-text-dark-muted);
}

.hero-image-wrapper-website-performance-optimaliseren {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
  .hero-image-wrapper-website-performance-optimaliseren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-website-performance-optimaliseren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.intro-section-website-performance-optimaliseren {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

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

.intro-text-wrapper-website-performance-optimaliseren {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .intro-text-wrapper-website-performance-optimaliseren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-website-performance-optimaliseren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-website-performance-optimaliseren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.intro-text-website-performance-optimaliseren:last-child {
  margin-bottom: 0;
}

.intro-image-wrapper-website-performance-optimaliseren {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
  .intro-image-wrapper-website-performance-optimaliseren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-website-performance-optimaliseren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.metrics-section-website-performance-optimaliseren {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.metrics-content-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

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

.metrics-text-wrapper-website-performance-optimaliseren {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .metrics-text-wrapper-website-performance-optimaliseren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.metrics-title-website-performance-optimaliseren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.metrics-text-website-performance-optimaliseren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.metrics-list-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.metric-item-website-performance-optimaliseren {
  padding: var(--space-md);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.metric-label-website-performance-optimaliseren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-family: var(--font-primary);
}

.metric-desc-website-performance-optimaliseren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.metrics-image-wrapper-website-performance-optimalisieren {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
  .metrics-image-wrapper-website-performance-optimalisieren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.metrics-image-website-performance-optimaliseren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.optimization-section-website-performance-optimaliseren {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.optimization-content-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.optimization-header-website-performance-optimaliseren {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.optimization-title-website-performance-optimaliseren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.optimization-subtitle-website-performance-optimaliseren {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.steps-container-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .steps-container-website-performance-optimaliseren {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

@media (min-width: 1024px) {
  .steps-container-website-performance-optimaliseren {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step-card-website-performance-optimaliseren {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.step-card-website-performance-optimaliseren:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

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

.step-body-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.step-title-website-performance-optimaliseren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: var(--space-sm);
}

.step-text-website-performance-optimalisieren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.tools-section-website-performance-optimalisieren {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-website-performance-optimalisieren {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

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

.tools-text-wrapper-website-performance-optimalisieren {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .tools-text-wrapper-website-performance-optimalisieren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.tools-title-website-performance-optimalisieren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.tools-text-website-performance-optimalisieren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.tools-list-website-performance-optimalisieren {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.tool-item-website-performance-optimalisieren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-md);
  position: relative;
}

.tool-item-website-performance-optimalisieren:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.tool-item-website-performance-optimalisieren strong {
  color: var(--color-text-light-primary);
}

.tools-image-wrapper-website-performance-optimalisieren {
  flex: 1 1 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 1024px) {
  .tools-image-wrapper-website-performance-optimalisieren {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.tools-image-website-performance-optimalisieren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.conclusion-section-website-performance-optimalisieren {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a2332 100%);
  color: var(--color-text-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-website-performance-optimaliseren {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-website-performance-optimalisieren {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-website-performance-optimaliseren {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
}

.conclusion-text-website-performance-optimalisieren:last-of-type {
  margin-bottom: var(--space-lg);
}

.conclusion-highlight-website-performance-optimalisieren {
  background: rgba(255, 107, 53, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.highlight-text-website-performance-optimalisieren {
  color: var(--color-text-dark-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

.highlight-text-website-performance-optimalisieren strong {
  color: var(--color-primary);
}

.related-section-website-performance-optimalisieren {
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-website-performance-optimalisieren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-wrapper-website-performance-optimalisieren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 768px) {
  .related-cards-wrapper-website-performance-optimalisieren {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.related-card-website-performance-optimalisieren {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  border: 1px solid #e2e8f0;
}

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

.related-card-image-website-performance-optimalisieren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-tertiary);
}

.related-card-img-website-performance-optimalisieren {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-website-performance-optimalisieren {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-website-performance-optimalisieren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.3rem);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-tight);
}

.related-card-text-website-performance-optimalisieren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
  flex: 1;
}

.related-card-link-website-performance-optimalisieren {
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  margin-top: auto;
}

.related-card-link-website-performance-optimalisieren:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.disclaimer-section-website-performance-optimalisieren {
  background: var(--color-bg-tertiary);
  color: var(--color-text-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-website-performance-optimalisieren {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.disclaimer-title-website-performance-optimalisieren {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
}

.disclaimer-text-website-performance-optimalisieren {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.025rem);
  line-height: var(--leading-relaxed);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-content-website-performance-optimalisieren {
    flex-direction: column;
  }

  .intro-content-website-performance-optimalisieren {
    flex-direction: column;
  }

  .metrics-content-website-performance-optimalisieren {
    flex-direction: column;
  }

  .tools-content-website-performance-optimalisieren {
    flex-direction: column;
  }

  .hero-text-wrapper-website-performance-optimalisieren,
  .intro-text-wrapper-website-performance-optimalisieren,
  .metrics-text-wrapper-website-performance-optimalisieren,
  .tools-text-wrapper-website-performance-optimalisieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-wrapper-website-performance-optimalisieren,
  .intro-image-wrapper-website-performance-optimalisieren,
  .metrics-image-wrapper-website-performance-optimalisieren,
  .tools-image-wrapper-website-performance-optimalisieren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .steps-container-website-performance-optimalisieren {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-website-performance-optimalisieren {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .hero-section-website-performance-optimalisieren,
  .intro-section-website-performance-optimalisieren,
  .metrics-section-website-performance-optimalisieren,
  .optimization-section-website-performance-optimalisieren,
  .tools-section-website-performance-optimalisieren,
  .conclusion-section-website-performance-optimalisieren,
  .related-section-website-performance-optimalisieren,
  .disclaimer-section-website-performance-optimalisieren {
    padding: var(--space-lg) 0;
  }

  .optimization-header-website-performance-optimalisieren {
    margin-bottom: var(--space-lg);
  }
}

.main-hoe-zoekmachines-website-lezen {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
}

.hero-section-hoe-zoekmachines-website-lezen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.breadcrumbs-hoe-zoekmachines-website-lezen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

.breadcrumbs-hoe-zoekmachines-website-lezen a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumbs-hoe-zoekmachines-website-lezen a:hover {
  color: #ff6b35;
}

.breadcrumb-divider-hoe-zoekmachines-website-lezen {
  color: #64748b;
}

.breadcrumb-current-hoe-zoekmachines-website-lezen {
  color: #cbd5e1;
}

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

.hero-text-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle-hoe-zoekmachines-website-lezen {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-meta-hoe-zoekmachines-website-lezen {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: #94a3b8;
}

.meta-item-hoe-zoekmachines-website-lezen {
  display: inline-block;
}

.meta-divider-hoe-zoekmachines-website-lezen {
  color: #64748b;
}

.hero-image-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .hero-text-block-hoe-zoekmachines-website-lezen,
  .hero-image-block-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-title-hoe-zoekmachines-website-lezen {
    font-size: 1.75rem;
  }

  .hero-subtitle-hoe-zoekmachines-website-lezen {
    font-size: 1rem;
  }
}

.intro-section-hoe-zoekmachines-website-lezen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.intro-text-body-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.intro-text-body-hoe-zoekmachines-website-lezen:last-child {
  margin-bottom: 0;
}

.intro-image-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .intro-text-hoe-zoekmachines-website-lezen,
  .intro-image-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-hoe-zoekmachines-website-lezen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-header-hoe-zoekmachines-website-lezen {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.process-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.process-subtitle-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.6;
}

.process-steps-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.process-step-hoe-zoekmachines-website-lezen {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step-number-hoe-zoekmachines-website-lezen {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ff6b35;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step-content-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
}

.step-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.process-image-hoe-zoekmachines-website-lezen {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.process-image-element-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .process-steps-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .process-step-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.signals-section-hoe-zoekmachines-website-lezen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.signals-content-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.signals-text-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.signals-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.signals-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.signals-list-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.signal-item-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #ff6b35;
}

.signal-item-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}

.signal-item-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.signals-image-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.signals-image-element-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .signals-content-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .signals-text-block-hoe-zoekmachines-website-lezen,
  .signals-image-block-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-hoe-zoekmachines-website-lezen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.content-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.content-checklist-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.checklist-item-hoe-zoekmachines-website-lezen {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.checklist-number-hoe-zoekmachines-website-lezen {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ff6b35;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.checklist-text-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}

.checklist-desc-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.content-image-block-hoe-zoekmachines-website-lezen {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-element-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .content-text-block-hoe-zoekmachines-website-lezen,
  .content-image-block-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-hoe-zoekmachines-website-lezen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-hoe-zoekmachines-website-lezen {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #ff6b35;
  background: rgba(255, 107, 53, 0.05);
  border-radius: 8px;
}

.quote-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.quote-author-hoe-zoekmachines-website-lezen {
  display: block;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #cbd5e1;
  margin-top: 1rem;
  font-style: normal;
}

.conclusion-section-hoe-zoekmachines-website-lezen {
  background: #ffffff;
  color: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-hoe-zoekmachines-website-lezen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

.conclusion-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #475569;
  line-height: 1.75;
}

.conclusion-cta-hoe-zoekmachines-website-lezen {
  margin-top: 1rem;
  display: inline-block;
}

.btn-cta-hoe-zoekmachines-website-lezen {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  background: #ff6b35;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
}

.btn-cta-hoe-zoekmachines-website-lezen:hover {
  background: #ff5520;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(255, 107, 53, 0.2);
}

.disclaimer-section-hoe-zoekmachines-website-lezen {
  background: #f8fafc;
  color: #0f172a;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-hoe-zoekmachines-website-lezen {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #004e89;
}

.disclaimer-icon-hoe-zoekmachines-website-lezen {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6f0ff;
  color: #004e89;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
}

.disclaimer-text-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disclaimer-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
}

.disclaimer-body-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

.related-section-hoe-zoekmachines-website-lezen {
  background: #0a0f1e;
  color: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-hoe-zoekmachines-website-lezen {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

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

.related-card-hoe-zoekmachines-website-lezen {
  flex: 1 1 300px;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.related-card-hoe-zoekmachines-website-lezen:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ff6b35;
  transform: translateY(-4px);
}

.related-card-image-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-hoe-zoekmachines-website-lezen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-hoe-zoekmachines-website-lezen:hover .related-card-img-hoe-zoekmachines-website-lezen {
  transform: scale(1.05);
}

.related-card-body-hoe-zoekmachines-website-lezen {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-hoe-zoekmachines-website-lezen {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  font-family: 'Playfair Display', serif;
}

.related-card-text-hoe-zoekmachines-website-lezen {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}

.related-card-link-hoe-zoekmachines-website-lezen {
  display: inline-block;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.related-card-link-hoe-zoekmachines-website-lezen:hover {
  color: #ff8560;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-cards-hoe-zoekmachines-website-lezen {
    flex-direction: column;
  }

  .related-card-hoe-zoekmachines-website-lezen {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title-hoe-zoekmachines-website-lezen {
    font-size: 1.5rem;
  }

  .process-title-hoe-zoekmachines-website-lezen,
  .signals-title-hoe-zoekmachines-website-lezen,
  .content-title-hoe-zoekmachines-website-lezen,
  .conclusion-title-hoe-zoekmachines-website-lezen {
    font-size: 1.35rem;
  }

  .step-number-hoe-zoekmachines-website-lezen {
    font-size: 2rem;
  }

  .featured-quote-hoe-zoekmachines-website-lezen {
    padding: 1.5rem;
  }

  .quote-text-hoe-zoekmachines-website-lezen {
    font-size: 1.25rem;
  }
}

.main-semantische-html-seo {
width: 100%;
overflow: hidden;
}

.hero-section-semantische-html-seo {
background: #0a0f1e;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

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

.hero-text-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.hero-text-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.hero-title-semantische-html-seo {
color: #ffffff;
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
font-weight: 700;
line-height: 1.2;
}

.hero-subtitle-semantische-html-seo {
color: #94a3b8;
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
line-height: 1.6;
margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-semantische-html-seo {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.75rem;
margin-bottom: 1.5rem;
}

.meta-item-semantische-html-seo {
color: #64748b;
font-size: 0.9rem;
}

.meta-divider-semantische-html-seo {
color: #475569;
}

.hero-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.hero-image-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.hero-img-semantische-html-seo {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

.intro-section-semantische-html-seo {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

@media (min-width: 768px) {
.intro-content-semantische-html-seo {
flex-direction: row;
}
}

.intro-text-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.intro-text-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.intro-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
line-height: 1.75;
margin-bottom: 1.25rem;
}

.intro-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.intro-image-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.intro-img-semantische-html-seo {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.concept-section-semantische-html-seo {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

@media (min-width: 768px) {
.concept-content-semantische-html-seo {
flex-direction: row-reverse;
}
}

.concept-text-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.concept-text-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.concept-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.concept-paragraph-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
line-height: 1.75;
margin-bottom: 1.25rem;
}

.concept-highlight-semantische-html-seo {
background: #f1f5f9;
padding: clamp(1rem, 2vw, 1.5rem);
border-left: 4px solid #ff6b35;
border-radius: 8px;
color: #0f172a;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

.concept-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.concept-image-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.concept-img-semantische-html-seo {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.impact-section-semantische-html-seo {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

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

@media (min-width: 768px) {
.impact-content-semantische-html-seo {
flex-direction: row;
}
}

.impact-text-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.impact-text-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.impact-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.impact-paragraph-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
line-height: 1.75;
margin-bottom: 1.25rem;
}

.impact-list-semantische-html-seo {
list-style: none;
padding: 0;
margin: 1.5rem 0;
}

.list-item-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
line-height: 1.75;
padding-left: 1.5rem;
margin-bottom: 0.75rem;
position: relative;
}

.list-item-semantische-html-seo:before {
content: "";
position: absolute;
left: 0;
color: #ff6b35;
font-weight: bold;
}

.impact-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

@media (min-width: 768px) {
.impact-image-semantische-html-seo {
flex: 1 1 50%;
max-width: 50%;
}
}

.impact-img-semantische-html-seo {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.implementation-section-semantische-html-seo {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.implementation-header-semantische-html-seo {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.implementation-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 1rem;
}

.implementation-subtitle-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

.steps-container-semantische-html-seo {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
.steps-container-semantische-html-seo {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: clamp(1.5rem, 3vw, 2.5rem);
}
}

@media (min-width: 1024px) {
.steps-container-semantische-html-seo {
display: grid;
grid-template-columns: repeat(4, 1fr);
}
}

.step-card-semantische-html-seo {
background: #ffffff;
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
gap: 1rem;
}

.step-card-semantische-html-seo:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.step-number-semantische-html-seo {
font-size: 2.5rem;
font-weight: 800;
color: #ff6b35;
line-height: 1;
}

.step-content-semantische-html-seo {
flex: 1;
}

.step-title-semantische-html-seo {
color: #0f172a;
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.75rem;
}

.step-text-semantische-html-seo {
color: #475569;
font-size: 0.95rem;
line-height: 1.6;
}

.quote-section-semantische-html-seo {
background: #0a0f1e;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.featured-quote-semantische-html-seo {
max-width: 800px;
margin: 0 auto;
padding: clamp(2rem, 4vw, 3rem);
border-left: 4px solid #ff6b35;
border-radius: 8px;
background: rgba(255, 255, 255, 0.05);
}

.quote-text-semantische-html-seo {
color: #ffffff;
font-size: clamp(1.1rem, 2vw + 0.5rem, 1.5rem);
font-style: italic;
line-height: 1.8;
margin-bottom: 1.5rem;
}

.quote-author-semantische-html-seo {
color: #94a3b8;
font-size: 0.95rem;
}

.conclusion-section-semantische-html-seo {
background: #ffffff;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.conclusion-content-semantische-html-seo {
max-width: 800px;
margin: 0 auto;
}

.conclusion-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: clamp(1rem, 2vw, 1.5rem);
text-align: center;
}

.conclusion-text-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
line-height: 1.75;
margin-bottom: 1.5rem;
text-align: left;
}

.conclusion-cta-semantische-html-seo {
text-align: center;
margin-top: clamp(2rem, 4vw, 3rem);
}

.btn-conclusion-semantische-html-seo {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.875rem 2rem;
background: #ff6b35;
color: #ffffff;
border-radius: 8px;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(255, 107, 53, 0.2);
}

.btn-conclusion-semantische-html-seo:hover {
background: #ff5520;
box-shadow: 0 10px 15px rgba(255, 107, 53, 0.3);
transform: translateY(-2px);
}

.related-section-semantische-html-seo {
background: #f8fafc;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-header-semantische-html-seo {
text-align: center;
margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-semantische-html-seo {
color: #0f172a;
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
margin-bottom: 0.75rem;
}

.related-subtitle-semantische-html-seo {
color: #475569;
font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
}

.related-cards-semantische-html-seo {
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
.related-cards-semantische-html-seo {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(1.5rem, 3vw, 2.5rem);
}
}

.related-card-semantische-html-seo {
background: #ffffff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
text-decoration: none;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
}

.related-card-semantische-html-seo:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.related-image-semantische-html-seo {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-image-semantische-html-seo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.3s ease;
}

.related-card-semantische-html-seo:hover .related-image-semantische-html-seo img {
transform: scale(1.05);
}

.related-card-content-semantische-html-seo {
padding: clamp(1.25rem, 2vw, 1.5rem);
flex: 1;
display: flex;
flex-direction: column;
}

.related-card-title-semantische-html-seo {
color: #0f172a;
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 0.75rem;
}

.related-card-text-semantische-html-seo {
color: #475569;
font-size: 0.9rem;
line-height: 1.6;
flex: 1;
}

.disclaimer-section-semantische-html-seo {
background: #0a0f1e;
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.disclaimer-content-semantische-html-seo {
max-width: 800px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.03);
padding: clamp(2rem, 4vw, 3rem);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-title-semantische-html-seo {
color: #ffffff;
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1rem;
}

.disclaimer-text-semantische-html-seo {
color: #94a3b8;
font-size: 0.95rem;
line-height: 1.7;
}

.breadcrumbs-semantische-html-seo {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 0.5rem;
margin-bottom: 2rem;
font-size: 0.9rem;
}

.breadcrumbs-semantische-html-seo a {
color: #ff6b35;
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-semantische-html-seo a:hover {
color: #ff8560;
text-decoration: underline;
}

.breadcrumbs-semantische-html-seo span {
color: #64748b;
}

@media (max-width: 768px) {
.hero-content-semantische-html-seo {
flex-direction: column;
}

.hero-text-semantische-html-seo,
.hero-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

.intro-content-semantische-html-seo {
flex-direction: column;
}

.intro-text-semantische-html-seo,
.intro-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

.concept-content-semantische-html-seo {
flex-direction: column;
}

.concept-text-semantische-html-seo,
.concept-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

.impact-content-semantische-html-seo {
flex-direction: column;
}

.impact-text-semantische-html-seo,
.impact-image-semantische-html-seo {
flex: 1 1 100%;
max-width: 100%;
}

.related-cards-semantische-html-seo {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-title-semantische-html-seo {
font-size: 1.5rem;
}

.intro-title-semantische-html-seo,
.concept-title-semantische-html-seo,
.impact-title-semantische-html-seo {
font-size: 1.25rem;
}

.implementation-title-semantische-html-seo,
.related-title-semantische-html-seo,
.conclusion-title-semantische-html-seo {
font-size: 1.25rem;
}

.steps-container-semantische-html-seo {
grid-template-columns: 1fr;
}
}

.main-responsive-design-basis {
  width: 100%;
  overflow: hidden;
}

.hero-section-responsive-design-basis {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-responsive-design-basis {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-responsive-design-basis a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-responsive-design-basis a:hover {
  color: #ff8560;
  text-decoration: underline;
}

.breadcrumbs-responsive-design-basis span {
  color: #64748b;
}

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

.hero-text-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-responsive-design-basis {
  color: #ffffff;
  font-size: clamp(2rem, 8vw, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle-responsive-design-basis {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-responsive-design-basis {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
}

.meta-item-responsive-design-basis {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.875rem;
}

.meta-item-responsive-design-basis i {
  color: #ff6b35;
}

.hero-image-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-responsive-design-basis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-responsive-design-basis {
    flex-direction: column;
  }

  .hero-text-responsive-design-basis,
  .hero-image-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-responsive-design-basis {
    font-size: 0.75rem;
  }
}

.intro-section-responsive-design-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-paragraph-responsive-design-basis {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-responsive-design-basis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-responsive-design-basis {
    flex-direction: column;
  }

  .intro-text-responsive-design-basis,
  .intro-image-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-responsive-design-basis {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-content-responsive-design-basis {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.fundamentals-text-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.fundamentals-paragraph-responsive-design-basis {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.fundamentals-image-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-img-responsive-design-basis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .fundamentals-content-responsive-design-basis {
    flex-direction: column;
  }

  .fundamentals-text-responsive-design-basis,
  .fundamentals-image-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.breakpoints-section-responsive-design-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-content-responsive-design-basis {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.breakpoints-text-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.breakpoints-paragraph-responsive-design-basis {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.breakpoints-list-responsive-design-basis {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.breakpoint-item-responsive-design-basis {
  background: #f8fafc;
  padding: 1.25rem;
  border-left: 4px solid #ff6b35;
  border-radius: 8px;
}

.breakpoint-label-responsive-design-basis {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.breakpoint-description-responsive-design-basis {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.breakpoints-image-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.breakpoints-img-responsive-design-basis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .breakpoints-content-responsive-design-basis {
    flex-direction: column;
  }

  .breakpoints-text-responsive-design-basis,
  .breakpoints-image-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-responsive-design-basis {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-content-responsive-design-basis {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.implementation-paragraph-responsive-design-basis {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.implementation-steps-responsive-design-basis {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.step-responsive-design-basis {
  display: flex;
  gap: 1.25rem;
}

.step-number-responsive-design-basis {
  color: #ff6b35;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  min-width: 60px;
  line-height: 1;
}

.step-text-responsive-design-basis {
  flex: 1;
}

.step-title-responsive-design-basis {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description-responsive-design-basis {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.implementation-image-responsive-design-basis {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-img-responsive-design-basis {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .implementation-content-responsive-design-basis {
    flex-direction: column;
  }

  .implementation-text-responsive-design-basis,
  .implementation-image-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-responsive-design-basis {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-content-responsive-design-basis {
  display: flex;
  flex-direction: column;
}

.best-practices-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

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

.practice-card-responsive-design-basis {
  flex: 1 1 300px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
  transition: all 0.3s ease;
  text-align: center;
}

.practice-card-responsive-design-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #ff6b35;
}

.practice-icon-responsive-design-basis {
  font-size: clamp(2.5rem, 4vw, 3rem);
  color: #ff6b35;
  margin-bottom: 1rem;
}

.practice-card-title-responsive-design-basis {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.practice-card-text-responsive-design-basis {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.quote-section-responsive-design-basis {
  background: linear-gradient(135deg, #0a0f1e 0%, #1a1f3a 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.quote-content-responsive-design-basis {
  display: flex;
  justify-content: center;
}

.featured-quote-responsive-design-basis {
  max-width: 800px;
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #ff6b35;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.quote-text-responsive-design-basis {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  margin: 0 0 1.5rem 0;
}

.quote-author-responsive-design-basis {
  color: #94a3b8;
  font-size: 0.95rem;
  display: block;
  margin: 0;
}

.conclusion-section-responsive-design-basis {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-responsive-design-basis {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  line-height: 1.2;
}

.conclusion-paragraph-responsive-design-basis {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-responsive-design-basis {
  background: #ffffff;
  border: 2px solid #ff6b35;
  border-radius: 12px;
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-top: 2rem;
}

.cta-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

.cta-text-responsive-design-basis {
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-responsive-design-basis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #ff6b35;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-responsive-design-basis:hover {
  background: #ff5520;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(255, 107, 53, 0.3);
}

.disclaimer-section-responsive-design-basis {
  background: #ffffff;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-responsive-design-basis {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-responsive-design-basis {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-design-basis {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.related-section-responsive-design-basis {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-responsive-design-basis {
  display: flex;
  flex-direction: column;
}

.related-title-responsive-design-basis {
  color: #0f172a;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 1.2;
}

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

.related-card-responsive-design-basis {
  flex: 1 1 300px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.related-card-responsive-design-basis:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.related-image-responsive-design-basis {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-responsive-design-basis {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-responsive-design-basis:hover .related-card-img-responsive-design-basis {
  transform: scale(1.05);
}

.related-card-content-responsive-design-basis {
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-responsive-design-basis {
  color: #0f172a;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.related-card-text-responsive-design-basis {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  margin: 0 0 1.25rem 0;
}

.related-card-link-responsive-design-basis {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.related-card-link-responsive-design-basis:hover {
  color: #ff5520;
}

@media (max-width: 768px) {
  .practices-grid-responsive-design-basis,
  .related-cards-responsive-design-basis {
    flex-direction: column;
    align-items: stretch;
  }

  .practice-card-responsive-design-basis,
  .related-card-responsive-design-basis {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-content-responsive-design-basis,
  .intro-content-responsive-design-basis,
  .fundamentals-content-responsive-design-basis,
  .breakpoints-content-responsive-design-basis,
  .implementation-content-responsive-design-basis {
    gap: 1rem;
  }

  .hero-title-responsive-design-basis,
  .intro-title-responsive-design-basis,
  .fundamentals-title-responsive-design-basis,
  .breakpoints-title-responsive-design-basis,
  .implementation-title-responsive-design-basis,
  .best-practices-title-responsive-design-basis,
  .related-title-responsive-design-basis {
    font-size: 1.5rem;
  }

  .step-number-responsive-design-basis {
    font-size: 1.75rem;
    min-width: 50px;
  }

  .breadcrumbs-responsive-design-basis {
    gap: 0.25rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
}

.seo-design-narrative-about {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-header-about {
  text-align: center;
  max-width: 800px;
}

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 2rem;
}

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

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 3vw, 3rem);
  width: 100%;
}

.stat-item-about {
  text-align: center;
  flex: 0 1 auto;
}

.stat-number-about {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-about {
  display: block;
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  font-weight: 500;
}

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

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

.section-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-light-primary);
  font-weight: 800;
  line-height: var(--leading-tight);
  margin-bottom: 1rem;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1.5vw + 0.3rem, 1.1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
}

.expertise-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.expertise-card-about {
  flex: 1 1 clamp(250px, 100%, 380px);
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

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

.card-icon-about {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 107, 53, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.card-title-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: var(--color-text-light-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: var(--leading-tight);
}

.card-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
}

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

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

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

.foundation-text-about {
  flex: 1 1 clamp(280px, 100%, 500px);
}

.foundation-image-about {
  flex: 1 1 clamp(280px, 100%, 500px);
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-md);
}

.foundation-text-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  color: var(--color-text-light-primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: var(--leading-tight);
}

.foundation-text-about p {
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1.05rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}

.foundation-text-about p:last-child {
  margin-bottom: 0;
}

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

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

.methodology-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

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

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

.step-number-about {
  flex-shrink: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: clamp(60px, 8vw, 100px);
}

.step-content-about {
  flex: 1;
  padding-top: 0.25rem;
}

.step-title-about {
  font-size: clamp(1.1rem, 1.8vw + 0.3rem, 1.35rem);
  color: var(--color-text-light-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: var(--leading-tight);
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.featured-quote-about {
  max-width: 800px;
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.25rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  line-height: var(--leading-relaxed);
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
}

.approach-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto 0;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.value-item-about {
  flex: 1 1 clamp(200px, 100%, 320px);
  text-align: center;
}

.value-icon-about {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 78, 137, 0.1);
  border-radius: 50%;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: var(--color-secondary);
}

.value-title-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.2rem);
  color: var(--color-text-light-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: var(--leading-tight);
}

.value-description-about {
  font-size: clamp(0.875rem, 1vw + 0.3rem, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-bg-tertiary);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  font-size: 1.25rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.disclaimer-title-about {
  font-size: clamp(1rem, 1.5vw + 0.3rem, 1.15rem);
  color: var(--color-text-light-primary);
  font-weight: 700;
  line-height: var(--leading-tight);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.2rem, 0.95rem);
  color: var(--color-text-light-secondary);
  line-height: var(--leading-relaxed);
}

@media (max-width: 768px) {
  .foundation-split-about {
    flex-direction: column;
  }

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

  .process-step-about {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-about {
    min-width: auto;
  }

  .hero-stats-about {
    gap: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .expertise-card-about {
    flex: 1 1 clamp(250px, 45%, 380px);
  }

  .values-item-about {
    flex: 1 1 clamp(200px, 45%, 320px);
  }
}

@media (min-width: 1025px) {
  .foundation-split-about {
    gap: clamp(3rem, 5vw, 4rem);
  }

  .expertise-card-about {
    flex: 1 1 clamp(280px, 30%, 380px);
  }

  .values-item-about {
    flex: 1 1 clamp(240px, 30%, 320px);
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-sm) 0;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--leading-normal);
  margin: 0;
}

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

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 4rem 0;
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-project-card {
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: grid;
  grid-template-columns: 1fr;
}

.portfolio-project-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.portfolio-project-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
}

.portfolio-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-project-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}

.portfolio-project-meta {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.portfolio-project-category {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-primary);
  letter-spacing: 0.05em;
}

.portfolio-project-year {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  color: var(--color-text-dark-muted);
}

.portfolio-project-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-project-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--leading-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) 0;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-project-card {
    grid-template-columns: 1fr;
  }

  .portfolio-project-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: 4rem 0;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-project-image {
    height: 300px;
  }

  .portfolio-project-card:hover .portfolio-project-image img {
    transform: scale(1.03);
  }

  .portfolio-project-image img {
    transition: transform var(--transition-base);
  }
}

.portfolio-cta {
  background-color: var(--color-secondary);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-md) 0;
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-lg) 0;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.portfolio-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.portfolio-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) 0;
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: 4rem 0;
  }
}

.services-page {
  width: 100%;
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-hero__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.services-hero__subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: 4rem var(--space-lg);
  }
}

.services-content {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.services-content__container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .services-content {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
  }
  
  .services-content {
    padding: 4rem var(--space-lg);
  }
}

.service-card {
  background-color: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  flex-shrink: 0;
}

.service-card__icon i {
  color: var(--color-primary);
  font-size: 28px;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.service-card__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: var(--leading-relaxed);
  flex-grow: 1;
}

.service-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card__features li {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-light-secondary);
  padding-left: var(--space-md);
  position: relative;
  line-height: var(--leading-normal);
}

.service-card__features li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-accent-tertiary);
  font-weight: 700;
}

.services-cta {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-sm);
  overflow: hidden;
}

.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, 2.25rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.services-cta__text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: var(--color-text-dark-secondary);
  margin: 0 0 var(--space-xl) 0;
  line-height: var(--leading-normal);
}

.services-cta__button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
}

.services-cta__button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-3xl) var(--space-md);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: 4rem var(--space-lg);
  }
}

.legal-docs {
  background-color: var(--color-bg-secondary);
  color: var(--color-text-light-primary);
  font-family: var(--font-primary);
  padding: var(--space-lg) 0;
}

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

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.legal-docs .update-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-light-muted);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-light-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--leading-tight);
}

.legal-docs section {
  margin-bottom: var(--space-2xl);
}

.legal-docs ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-light-primary);
  line-height: var(--leading-relaxed);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  position: relative;
}

.legal-docs li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-docs .contact-section {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-2xl);
}

.legal-docs .contact-section h2 {
  color: var(--color-text-light-primary);
  margin-top: 0;
}

.legal-docs .contact-section p {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-sm);
}

.legal-docs .contact-section strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs {
    padding: var(--space-2xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-2xl);
  }

  .legal-docs h1 {
    margin-bottom: var(--space-lg);
  }

  .legal-docs h2 {
    margin-top: var(--space-3xl);
  }

  .legal-docs section {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs {
    padding: var(--space-3xl) 0;
  }

  .legal-docs .container {
    padding: 0 var(--space-lg);
  }

  .legal-docs p {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
  }

  .legal-docs li {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
  }
}

.thank-you-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.thank-section {
  width: 100%;
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

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

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.thank-icon {
  width: clamp(60px, 15vw, 100px);
  height: clamp(60px, 15vw, 100px);
  margin-bottom: var(--space-lg);
  color: var(--color-accent-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-accent-tertiary);
}

.thank-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  line-height: var(--leading-tight);
}

.thank-content .lead {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.2s both;
  line-height: var(--leading-normal);
}

.thank-content .message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.3s both;
  line-height: var(--leading-relaxed);
}

.thank-content .message:last-of-type {
  margin-bottom: var(--space-2xl);
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .thank-content {
    padding: var(--space-2xl) 0;
  }

  .thank-icon {
    margin-bottom: var(--space-xl);
  }

  .thank-content h1 {
    margin-bottom: var(--space-lg);
  }

  .thank-content .lead {
    margin-bottom: var(--space-xl);
  }

  .thank-content .message {
    margin-bottom: var(--space-lg);
  }

  .thank-content .message:last-of-type {
    margin-bottom: var(--space-3xl);
  }
}

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

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

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

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-you-page {
    padding: var(--space-lg);
  }

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

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

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  .thank-content h1 {
    margin-bottom: var(--space-xl);
  }

  .thank-content .lead {
    margin-bottom: var(--space-xl);
  }

  .thank-content .message {
    margin-bottom: var(--space-lg);
  }

  .thank-content .message:last-of-type {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  overflow: hidden;
}

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

.error-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.error-visual {
  position: relative;
  margin-bottom: var(--space-3xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  position: relative;
  z-index: 2;
  letter-spacing: -0.02em;
}

.error-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: var(--space-lg) 0 var(--space-md) 0;
  line-height: var(--leading-tight);
}

.error-message {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--leading-relaxed);
  margin: var(--space-md) 0 var(--space-lg) 0;
}

.error-subtitle {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-dark-muted);
  line-height: var(--leading-relaxed);
  margin: var(--space-md) 0 var(--space-2xl) 0;
  font-style: italic;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-primary);
  color: var(--color-text-dark-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  margin: var(--space-xl) 0;
  cursor: pointer;
  border: 2px solid var(--color-primary);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

.error-hint {
  margin-top: var(--space-2xl);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--color-bg-card-dark);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.hint-text {
  font-size: clamp(0.85rem, 0.9vw + 0.4rem, 0.95rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: var(--leading-normal);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-content {
    padding: var(--space-lg);
  }

  .error-code {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 768px) {
  .error-page {
    padding: var(--space-xl);
  }

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

  .error-content {
    padding: var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-title {
    margin: var(--space-xl) 0 var(--space-lg) 0;
  }

  .btn-primary {
    padding: var(--space-md) calc(var(--space-lg) * 1.5);
  }

  .error-hint {
    padding: var(--space-lg) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .error-page {
    padding: var(--space-2xl);
  }

  .container {
    padding: 0;
  }

  .error-content {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .error-code {
    margin-bottom: var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }
}

.contact-write-to-us {
  background-color: var(--color-bg-primary);
  width: 100%;
  overflow: hidden;
}

.contact-write-to-us-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-write-to-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: var(--leading-tight);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.contact-write-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-dark-secondary);
  line-height: var(--leading-relaxed);
  font-weight: 400;
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: 7rem 2rem;
  }
}

.contact-write-to-us-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 1rem 4rem 1rem;
  overflow: hidden;
}

.contact-write-to-us-main-content {
  width: 100%;
}

.contact-write-to-us-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.contact-write-to-us-form-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

.contact-write-to-us-info-wrapper {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .contact-write-to-us-grid {
    gap: 3rem;
  }

  .contact-write-to-us-form-wrapper {
    flex: 1 1 400px;
    max-width: 550px;
  }

  .contact-write-to-us-info-wrapper {
    flex: 1 1 400px;
    max-width: 550px;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: 4rem 2rem;
  }

  .contact-write-to-us-grid {
    gap: 4rem;
  }
}

.contact-write-to-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.75rem;
  line-height: var(--leading-tight);
}

.contact-write-to-us-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-write-to-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  letter-spacing: 0.3px;
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
  transition: all var(--transition-base);
  box-sizing: border-box;
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: var(--color-text-dark-muted);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
  max-height: 300px;
}

.contact-write-to-us-privacy-notice {
  margin-top: 0.5rem;
}

.contact-write-to-us-privacy-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.contact-write-to-us-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.contact-write-to-us-privacy-link:hover,
.contact-write-to-us-privacy-link:focus {
  color: var(--color-primary-hover);
  outline: none;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  box-sizing: border-box;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.contact-write-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.contact-write-to-us-submit:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

.contact-write-to-us-submit:active {
  transform: translateY(0);
}

.contact-write-to-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 2rem;
  line-height: var(--leading-tight);
}

.contact-write-to-us-info-group {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-write-to-us-info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-write-to-us-info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-label {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.contact-write-to-us-info-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
}

.contact-write-to-us-info-extra {
  padding: 1.75rem;
  background-color: var(--color-bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.contact-write-to-us-info-extra-title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
  line-height: var(--leading-tight);
}

.contact-write-to-us-info-extra-text {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 1024px) {
  .contact-write-to-us-grid {
    flex-wrap: nowrap;
  }

  .contact-write-to-us-form-wrapper,
  .contact-write-to-us-info-wrapper {
    flex: 1;
    max-width: none;
  }
}

@media (max-width: 767px) {
  .contact-write-to-us-main {
    padding: 2rem 1rem 3rem 1rem;
  }

  .contact-write-to-us-form,
  .contact-write-to-us-info-group {
    gap: 1.25rem;
  }

  .contact-write-to-us-submit {
    padding: 0.875rem 1.25rem;
  }

  .contact-write-to-us-info-item {
    gap: 1rem;
  }

  .contact-write-to-us-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
}
