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

:root {
  
  --color-bg-primary: #fffbeb;
  --color-bg-secondary: #fef3c7;
  --color-bg-tertiary: #ffffff;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(29, 185, 168, 0.05);
  
  
  --color-text-primary: #1c1917;
  --color-text-secondary: #57534e;
  --color-text-muted: #a8a29e;
  
  
  --color-primary: #0d9488;
  --color-primary-hover: #0f766e;
  --color-primary-light: #d1faf0;
  --color-secondary: #f59e0b;
  --color-secondary-hover: #d97706;
  
  
  --font-primary: 'Sora', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-mono: 'Courier New', monospace;
  
  
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
  
  
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  
  
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

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

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

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

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

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

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

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

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

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: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

em {
  font-style: italic;
}

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

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

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

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

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

.btn-primary:active {
  transform: translateY(0);
}

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

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

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

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

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

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

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

.btn-lg {
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  border: 2px solid #e7e5e4;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-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 var(--color-primary-light);
}

textarea {
  resize: vertical;
  font-family: var(--font-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-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-col {
  flex-direction: column;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-semibold {
  font-weight: var(--font-weight-semibold);
}

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

.text-base {
  font-size: 1rem;
}

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--font-weight-semibold);
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

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

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.divider {
  height: 1px;
  background: rgba(13, 148, 136, 0.1);
  margin: var(--space-lg) 0;
}

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

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

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

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

th {
  background: var(--color-bg-secondary);
  padding: var(--space-md);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  border-bottom: 2px solid rgba(13, 148, 136, 0.1);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid rgba(13, 148, 136, 0.1);
  color: var(--color-text-secondary);
}

tr:hover {
  background: var(--color-bg-overlay);
}

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

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

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

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

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

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

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

.animate-slideInUp {
  animation: slideInUp var(--transition-slow) ease-out;
}

.animate-slideInDown {
  animation: slideInDown var(--transition-slow) ease-out;
}

.animate-slideInLeft {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slideInRight {
  animation: slideInRight var(--transition-slow) 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;
}

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

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }

  .hide-desktop {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}
.header-startup-hub {
  background: var(--color-bg-tertiary);
  border-bottom: 1px solid var(--color-primary-light);
  position: relative;
  z-index: var(--z-sticky);
  box-shadow: var(--shadow-sm);
}

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

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

.header-startup-hub-brand:hover {
  opacity: 0.85;
}

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

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

.header-startup-hub-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: clamp(2rem, 5vw, 4rem);
}

.header-startup-hub-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.header-startup-hub-nav-link:hover {
  color: var(--color-primary);
}

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

.header-startup-hub-nav-link:hover::after {
  width: 100%;
}

.header-startup-hub-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-startup-hub-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-startup-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.header-startup-hub-mobile-toggle:hover {
  color: var(--color-primary-hover);
}

.header-startup-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-tertiary);
  display: flex;
  flex-direction: column;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  overflow-y: auto;
}

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

.header-startup-hub-mobile-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: clamp(1rem, 4vw, 1.5rem);
  border-bottom: 1px solid var(--color-primary-light);
}

.header-startup-hub-mobile-close {
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-startup-hub-mobile-close:hover {
  color: var(--color-primary-hover);
}

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

.header-startup-hub-mobile-link {
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 4vw, 2rem);
  color: var(--color-text-primary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--font-weight-medium);
  border-bottom: 1px solid var(--color-primary-light);
  transition: all var(--transition-fast);
}

.header-startup-hub-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-primary);
  padding-left: clamp(1.5rem, 5vw, 2.5rem);
}

.header-startup-hub-mobile-cta {
  margin: clamp(1rem, 4vw, 2rem);
  padding: clamp(0.875rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
  background: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.header-startup-hub-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .header-startup-hub-mobile-toggle {
    display: none;
  }

  .header-startup-hub-mobile-menu {
    display: none;
  }

  .header-startup-hub-desktop-nav {
    display: flex;
  }

  .header-startup-hub-cta-button {
    display: inline-block;
  }
}

    .design-studio-index {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-index {
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 100%);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
  position: relative;
}

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

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

.hero-title-index {
  color: #1c1917;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  font-weight: 700;
}

.hero-subtitle-index {
  color: #57534e;
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-stats-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(13, 148, 136, 0.2);
}

.stat-item-index {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

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

.stat-label-index {
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

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

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

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

@media (min-width: 768px) {
  .hero-image-block-index {
    display: block;
  }

  .hero-content-index {
    flex-direction: row;
  }
}

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

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

.pricing-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pricing-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.pricing-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 148, 136, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.pricing-card-index:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-icon-index {
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.card-title-index {
  color: #1c1917;
  font-size: 1.25rem;
  margin: 0;
}

.card-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.partners-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.partners-description-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.partners-list-index {
  list-style: none;
  margin-left: 0;
  margin-bottom: var(--space-lg);
  padding: 0;
}

.list-item-index {
  color: #1c1917;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

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

.partners-note-index {
  color: #57534e;
  font-size: 0.9rem;
  font-style: italic;
  margin: 0;
}

.partners-image-block-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: none;
}

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

@media (min-width: 768px) {
  .partners-image-block-index {
    display: block;
  }

  .partners-content-index {
    flex-direction: row;
  }
}

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

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

.how-it-works-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.how-it-works-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.how-it-works-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-steps-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.process-step-index {
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 148, 136, 0.1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all var(--transition-base);
}

.process-step-index:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

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

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

.step-title-index {
  color: #1c1917;
  font-size: 1.25rem;
  margin: 0;
}

.step-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.statistics-section-index {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f766e 100%);
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.statistics-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.statistics-title-index {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.statistics-description-index {
  color: #d1faf0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.statistics-grid-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stat-card-index {
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all var(--transition-base);
}

.stat-card-index:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.stat-value-index {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-name-index {
  color: #d1faf0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.stat-detail-index {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

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

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

.benefits-header-index {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.benefits-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0;
}

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.benefit-title-index {
  color: #1c1917;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  margin-top: 0;
}

.benefit-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

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

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

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

.features-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.features-description-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

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

.feature-item-index {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  color: #1c1917;
  font-size: 0.95rem;
}

.feature-check-index {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-name-index {
  flex: 1;
  line-height: 1.5;
}

.features-image-block-index {
  flex: 1 1 45%;
  min-width: 280px;
  display: none;
}

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

@media (min-width: 768px) {
  .features-image-block-index {
    display: block;
  }

  .features-content-index {
    flex-direction: row;
  }
}

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

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

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

.blog-title-index {
  color: #1c1917;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
}

.blog-subtitle-index {
  color: #57534e;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.blog-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: var(--space-lg);
}

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

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

.blog-image-index {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

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

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

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

.blog-card-title-index {
  color: #1c1917;
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
}

.blog-card-text-index {
  color: #57534e;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.blog-link-index {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  align-self: flex-start;
}

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

.blog-footer-index {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
}

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

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

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0f766e 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}

.cta-title-index {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.cta-text-index {
  color: #d1faf0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cookie-banner-index {
  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 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text-index {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

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

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

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.section-tag-index {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

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

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

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

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

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

  .partners-image-block-index {
    flex: 1 1 100%;
    display: block;
  }

  .features-content-index {
    flex-direction: column;
  }

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

  .features-image-block-index {
    flex: 1 1 100%;
    display: block;
  }

  .statistics-grid-index {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-cards-index {
    flex-direction: column;
  }

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

  .cookie-banner-index {
    flex-direction: column;
    padding-bottom: clamp(1rem, 2vw, 1.5rem);
  }

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

  .cookie-banner-buttons-index {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .hero-title-index {
    font-size: 1.75rem;
  }

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

  .how-it-works-steps-index {
    grid-template-columns: 1fr;
  }

  .statistics-grid-index {
    grid-template-columns: 1fr;
  }

  .benefits-cards-index {
    flex-direction: column;
  }

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

  .pricing-cards-index {
    flex-direction: column;
  }

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

    .footer {
  background: var(--color-bg-primary);
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem) 0;
  color: var(--color-text-secondary);
  overflow: hidden;
}

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

.footer-content {
  display: flex;
  flex-direction: column !important;
  gap: clamp(2.5rem, 5vw, 4rem);
}

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

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

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

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: -0.3px;
}

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

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
}

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

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

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

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

.footer-copyright {
  border-top: 1px solid rgba(13, 148, 136, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

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

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

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }

  .footer-nav-list,
  .footer-legal-list {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(2rem, 3vw, 3rem);
  }

  .footer-about {
    flex: 0 1 300px;
  }

  .footer-nav,
  .footer-legal,
  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-copyright {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .footer-nav-list,
  .footer-legal-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: auto auto;
    gap: 0.75rem 1.5rem;
  }
}
    

.category-page-startup-web-design {
  background: var(--color-bg-primary);
}

.hero-section-startup-web-design {
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-title-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-startup-web-design {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-featured-startup-web-design {
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.card-featured-startup-web-design {
  flex: 1 1 100%;
  max-width: 550px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.card-featured-startup-web-design img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-featured-startup-web-design h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-featured-startup-web-design p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-meta-startup-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.card-meta-startup-web-design i {
  color: var(--color-primary);
  margin-right: 0.4rem;
}

.posts-section-startup-web-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.posts-title-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.posts-subtitle-startup-web-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.card-startup-web-design {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 1.5rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(13, 148, 136, 0.08);
  transition: all var(--transition-base);
}

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

.card-startup-web-design img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-startup-web-design h3 {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  margin-bottom: 0.5rem;
  line-height: 1.35;
  font-weight: 600;
}

.card-startup-web-design p {
  color: var(--color-text-secondary);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  margin-bottom: 1rem;
  line-height: 1.5;
}

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

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

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

.insights-title-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.insights-body-startup-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
}

.insights-text-startup-web-design {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.insights-text-startup-web-design p {
  color: var(--color-text-secondary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 0;
}

.insights-quote-startup-web-design {
  background: var(--color-bg-tertiary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
}

.quote-text-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-style: italic;
}

.quote-author-startup-web-design {
  color: var(--color-text-muted);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin-bottom: 0;
}

.checklist-section-startup-web-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.checklist-title-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.checklist-subtitle-startup-web-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  max-width: 600px;
  margin: 0 auto;
}

.checklist-items-startup-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
}

.checklist-item-startup-web-design {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.checklist-item-startup-web-design i {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-text-startup-web-design {
  flex: 1;
}

.checklist-item-title-startup-web-design {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.checklist-item-desc-startup-web-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-section-startup-web-design {
    padding: 2.5rem 0;
  }

  .posts-section-startup-web-design {
    padding: 2.5rem 0;
  }

  .insights-section-startup-web-design {
    padding: 2.5rem 0;
  }

  .checklist-section-startup-web-design {
    padding: 2.5rem 0;
  }

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

  .card-featured-startup-web-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-startup-web-design {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .card-startup-web-design {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .card-startup-web-design {
    flex: 1 1 300px;
  }
}

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

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

a[data-post-link] {
  text-decoration: none;
  transition: all var(--transition-base);
}

a[data-post-link]:hover {
  text-decoration: none;
}

.main-professioneel-website-design {
  width: 100%;
  background: var(--color-bg-primary);
}

.hero-section-professioneel-website-design {
  background: var(--color-bg-tertiary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.hero-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.breadcrumbs-professioneel-website-design a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumbs-professioneel-website-design a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-professioneel-website-design span {
  color: var(--color-text-muted);
}

.breadcrumbs-professioneel-website-design span:last-child {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

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

.hero-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-professioneel-website-design {
  font-size: clamp(1.75rem, 5vw, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.hero-subtitle-professioneel-website-design {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-professioneel-website-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: var(--space-lg);
}

.meta-item-professioneel-website-design {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-item-professioneel-website-design i {
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

  .hero-meta-professioneel-website-design {
    flex-direction: column;
    gap: 0.75rem;
  }
}

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

.intro-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.content-one-section-professioneel-website-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-one-wrapper-professioneel-website-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-one-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.content-one-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-one-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-one-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-one-wrapper-professioneel-website-design {
    flex-direction: column;
  }

  .content-one-text-professioneel-website-design,
  .content-one-image-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-two-section-professioneel-website-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-two-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-two-wrapper-professioneel-website-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-two-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-two-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-two-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.content-two-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .content-two-wrapper-professioneel-website-design {
    flex-direction: column;
  }

  .content-two-image-professioneel-website-design,
  .content-two-text-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-three-section-professioneel-website-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-three-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-three-wrapper-professioneel-website-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-three-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.content-three-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-three-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-three-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-three-wrapper-professioneel-website-design {
    flex-direction: column;
  }

  .content-three-text-professioneel-website-design,
  .content-three-image-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-four-section-professioneel-website-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-four-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-four-wrapper-professioneel-website-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-four-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.content-four-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-four-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.content-four-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .content-four-wrapper-professioneel-website-design {
    flex-direction: column;
  }

  .content-four-image-professioneel-website-design,
  .content-four-text-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-five-section-professioneel-website-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-five-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.content-five-wrapper-professioneel-website-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-five-text-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-five-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: var(--space-md);
}

.content-five-paragraph-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-five-image-professioneel-website-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-five-img-professioneel-website-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .content-five-wrapper-professioneel-website-design {
    flex-direction: column;
  }

  .content-five-text-professioneel-website-design,
  .content-five-image-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.conclusion-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-professioneel-website-design {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
}

.conclusion-text-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  line-height: 1.7;
  text-align: center;
}

.conclusion-cta-professioneel-website-design {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

.cta-button-professioneel-website-design {
  display: inline-flex;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.cta-button-professioneel-website-design:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.disclaimer-section-professioneel-website-design {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-professioneel-website-design {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: var(--space-md);
}

.disclaimer-text-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.85rem, 0.95vw, 1rem);
  line-height: 1.7;
}

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

.related-section-professioneel-website-design .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.related-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

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

.related-card-professioneel-website-design {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-tertiary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

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

.card-img-professioneel-website-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-base);
}

.related-card-professioneel-website-design:hover .card-img-professioneel-website-design {
  transform: scale(1.05);
}

.card-content-professioneel-website-design {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.card-title-professioneel-website-design {
  color: var(--color-text-primary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0;
}

.card-description-professioneel-website-design {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.card-link-professioneel-website-design {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  width: fit-content;
}

.card-link-professioneel-website-design:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

  .related-card-professioneel-website-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

  .hero-meta-professioneel-website-design {
    gap: 0.5rem;
  }

  .card-content-professioneel-website-design {
    padding: var(--space-md);
  }
}

.main-website-bouwblokken-essentials {
  width: 100%;
  overflow: hidden;
}

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

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

.hero-section-website-bouwblokken-essentials {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breadcrumbs-website-bouwblokken-essentials {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumbs-website-bouwblokken-essentials a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.breadcrumbs-website-bouwblokken-essentials a:hover {
  color: #e2e8f0;
  text-decoration: underline;
}

.breadcrumbs-website-bouwblokken-essentials span {
  color: #64748b;
}

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

.hero-text-wrapper-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-website-bouwblokken-essentials {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-website-bouwblokken-essentials {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero-meta-website-bouwblokken-essentials {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: #94a3b8;
}

.meta-item-website-bouwblokken-essentials {
  color: #94a3b8;
}

.meta-divider-website-bouwblokken-essentials {
  color: #64748b;
}

.hero-image-wrapper-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-website-bouwblokken-essentials {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-content-website-bouwblokken-essentials {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-text-wrapper-website-bouwblokken-essentials,
  .hero-image-wrapper-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-website-bouwblokken-essentials {
    max-width: 100%;
  }
}

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

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

.intro-text-block-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.intro-highlight-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.highlight-box-website-bouwblokken-essentials {
  background: #f8fafc;
  border-left: 4px solid #0d9488;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.highlight-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.highlight-list-website-bouwblokken-essentials {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-item-website-bouwblokken-essentials {
  color: #334155;
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.highlight-item-website-bouwblokken-essentials::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0d9488;
  font-weight: bold;
}

@media (max-width: 768px) {
  .intro-content-website-bouwblokken-essentials {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .intro-text-block-website-bouwblokken-essentials,
  .intro-highlight-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.foundations-section-website-bouwblokken-essentials {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundations-content-website-bouwblokken-essentials {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.foundations-text-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.foundations-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.foundations-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.foundations-image-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foundations-image-file-website-bouwblokken-essentials {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .foundations-content-website-bouwblokken-essentials {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .foundations-text-website-bouwblokken-essentials,
  .foundations-image-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .foundations-image-file-website-bouwblokken-essentials {
    max-width: 100%;
  }
}

.clarity-section-website-bouwblokken-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.clarity-content-website-bouwblokken-essentials {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.clarity-image-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clarity-image-file-website-bouwblokken-essentials {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

.clarity-text-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.clarity-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.clarity-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .clarity-content-website-bouwblokken-essentials {
    flex-direction: column-reverse;
    gap: var(--space-lg);
  }

  .clarity-image-website-bouwblokken-essentials,
  .clarity-text-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .clarity-image-file-website-bouwblokken-essentials {
    max-width: 100%;
  }
}

.content-blocks-section-website-bouwblokken-essentials {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-blocks-header-website-bouwblokken-essentials {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.content-blocks-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-blocks-subtitle-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.blocks-cards-wrapper-website-bouwblokken-essentials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.block-card-website-bouwblokken-essentials {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.block-card-header-website-bouwblokken-essentials {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.block-number-website-bouwblokken-essentials {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0d9488;
  line-height: 1;
  flex-shrink: 0;
}

.block-card-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin: 0;
  flex: 1;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.block-card-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.block-card-text-website-bouwblokken-essentials:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .block-card-website-bouwblokken-essentials {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .block-card-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-website-bouwblokken-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.implementation-text-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.implementation-image-website-bouwblokken-essentials {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.implementation-image-file-website-bouwblokken-essentials {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .implementation-content-website-bouwblokken-essentials {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .implementation-text-website-bouwblokken-essentials,
  .implementation-image-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implementation-image-file-website-bouwblokken-essentials {
    max-width: 100%;
  }
}

.cta-section-website-bouwblokken-essentials {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-website-bouwblokken-essentials {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-website-bouwblokken-essentials {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-website-bouwblokken-essentials {
  color: #e2e8f0;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cta-button-website-bouwblokken-essentials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: #ffffff;
  color: #0d9488;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-website-bouwblokken-essentials:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: #f1f5f9;
}

@media (max-width: 768px) {
  .cta-button-website-bouwblokken-essentials {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

.disclaimer-section-website-bouwblokken-essentials {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-website-bouwblokken-essentials {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.disclaimer-text-website-bouwblokken-essentials {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.related-section-website-bouwblokken-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-header-website-bouwblokken-essentials {
  text-align: center;
}

.related-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-website-bouwblokken-essentials {
  color: #475569;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

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

.related-card-website-bouwblokken-essentials {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 350px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  transition: all var(--transition-base);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

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

.related-card-image-website-bouwblokken-essentials {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-image-website-bouwblokken-essentials img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

.related-card-website-bouwblokken-essentials:hover .related-card-image-website-bouwblokken-essentials img {
  transform: scale(1.05);
}

.related-card-content-website-bouwblokken-essentials {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-title-website-bouwblokken-essentials {
  color: #0f172a;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-text-website-bouwblokken-essentials {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .related-card-website-bouwblokken-essentials {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-website-bouwblokken-essentials {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-website-bouwblokken-essentials {
    font-size: 0.75rem;
    gap: var(--space-xs);
  }

  .hero-meta-website-bouwblokken-essentials {
    font-size: 0.8rem;
    gap: var(--space-xs);
  }

  .block-card-header-website-bouwblokken-essentials {
    gap: var(--space-sm);
  }

  .block-number-website-bouwblokken-essentials {
    font-size: 1.75rem;
  }
}

.main-website-paginas-converteren {
  width: 100%;
  background: #fffbeb;
  overflow: hidden;
}

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

.hero-section-website-paginas-converteren {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.breadcrumbs-website-paginas-converteren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw, 0.9rem);
}

.breadcrumbs-website-paginas-converteren a {
  color: #94a3b8;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-website-paginas-converteren a:hover {
  color: #f59e0b;
}

.breadcrumbs-website-paginas-converteren span {
  color: #475569;
}

.hero-title-website-paginas-converteren {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-website-paginas-converteren {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
}

.hero-meta-website-paginas-converteren {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: #94a3b8;
}

.meta-item-website-paginas-converteren {
  color: #cbd5e1;
}

.meta-separator-website-paginas-converteren {
  color: #475569;
}

.hero-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.hero-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

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

  .hero-text-wrapper-website-paginas-converteren,
  .hero-image-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-website-paginas-converteren {
  background: #fffbeb;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-website-paginas-converteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.intro-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

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

  .intro-text-wrapper-website-paginas-converteren,
  .intro-image-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principle-one-section-website-paginas-converteren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principle-one-content-website-paginas-converteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principle-one-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-one-title-website-paginas-converteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-one-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.principle-one-highlight-website-paginas-converteren {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 8px;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-website-paginas-converteren {
  color: #92400e;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  font-style: italic;
}

.principle-one-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.principle-one-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

@media (max-width: 768px) {
  .principle-one-content-website-paginas-converteren {
    flex-direction: column;
  }

  .principle-one-text-wrapper-website-paginas-converteren,
  .principle-one-image-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principle-two-section-website-paginas-converteren {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principle-two-content-website-paginas-converteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principle-two-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.principle-two-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

.principle-two-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-two-title-website-paginas-converteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-two-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .principle-two-content-website-paginas-converteren {
    flex-direction: column;
  }

  .principle-two-image-wrapper-website-paginas-converteren,
  .principle-two-text-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.principle-three-section-website-paginas-converteren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principle-three-content-website-paginas-converteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principle-three-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-three-title-website-paginas-converteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-three-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.principle-three-stats-website-paginas-converteren {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.stat-item-website-paginas-converteren {
  flex: 1 1 30%;
  min-width: 100px;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #fffbeb;
  border-radius: 8px;
  border-left: 4px solid #0d9488;
  text-align: center;
}

.stat-number-website-paginas-converteren {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #0d9488;
  font-family: 'Poppins', sans-serif;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label-website-paginas-converteren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #57534e;
  font-weight: 500;
  display: block;
}

.principle-three-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.principle-three-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

@media (max-width: 768px) {
  .principle-three-content-website-paginas-converteren {
    flex-direction: column;
  }

  .principle-three-text-wrapper-website-paginas-converteren,
  .principle-three-image-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .principle-three-stats-website-paginas-converteren {
    flex-direction: column;
  }

  .stat-item-website-paginas-converteren {
    flex: 1 1 100%;
  }
}

.principle-four-section-website-paginas-converteren {
  background: #fef3c7;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.principle-four-content-website-paginas-converteren {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principle-four-image-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
  border-radius: 12px;
  overflow: hidden;
}

.principle-four-image-website-paginas-converteren {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(13, 148, 136, 0.15);
}

.principle-four-text-wrapper-website-paginas-converteren {
  flex: 1 1 50%;
  max-width: 50%;
}

.principle-four-title-website-paginas-converteren {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.principle-four-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #57534e;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .principle-four-content-website-paginas-converteren {
    flex-direction: column;
  }

  .principle-four-image-wrapper-website-paginas-converteren,
  .principle-four-text-wrapper-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-website-paginas-converteren {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-website-paginas-converteren {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-website-paginas-converteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-text-website-paginas-converteren {
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  color: #cbd5e1;
  line-height: 1.8;
}

.conclusion-cta-box-website-paginas-converteren {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.cta-title-website-paginas-converteren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-website-paginas-converteren {
  color: #e0f2f1;
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.cta-button-website-paginas-converteren {
  display: inline-block;
  background: #ffffff;
  color: #0d9488;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button-website-paginas-converteren:hover {
  background: #f0fdf4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
}

.disclaimer-section-website-paginas-converteren {
  background: #fffbeb;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-website-paginas-converteren {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-website-paginas-converteren {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #1c1917;
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-website-paginas-converteren {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: #57534e;
  line-height: 1.8;
}

.related-section-website-paginas-converteren {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-website-paginas-converteren {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  color: #1c1917;
  font-weight: 700;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.related-card-website-paginas-converteren {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.related-card-website-paginas-converteren:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
}

.related-card-image-website-paginas-converteren {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

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

.related-card-body-website-paginas-converteren {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

.related-card-title-website-paginas-converteren {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1c1917;
  font-weight: 700;
  line-height: 1.3;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-website-paginas-converteren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-website-paginas-converteren {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.related-card-link-website-paginas-converteren:hover {
  color: #0f766e;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .related-card-website-paginas-converteren {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (max-width: 768px) {
  .related-card-website-paginas-converteren {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.main-mobile-first-responsive-design {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  overflow-x: hidden;
}

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

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

@media (min-width: 768px) {
  .hero-content-mobile-first-responsive-design {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.hero-text-block-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-text-block-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-image-block-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-image-block-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.hero-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.hero-meta-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .hero-meta-mobile-first-responsive-design {
    flex-direction: row;
    gap: var(--space-xl);
  }
}

.meta-item-mobile-first-responsive-design {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.meta-item-mobile-first-responsive-design i {
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-image-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

.breadcrumbs-mobile-first-responsive-design {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  flex-wrap: wrap;
}

.breadcrumb-link-mobile-first-responsive-design {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-link-mobile-first-responsive-design:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-mobile-first-responsive-design {
  color: var(--color-text-muted);
}

.breadcrumb-current-mobile-first-responsive-design {
  color: var(--color-text-secondary);
}

.intro-section-mobile-first-responsive-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .intro-content-mobile-first-responsive-design {
    flex-direction: row;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.intro-text-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-text-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-image-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .intro-image-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.intro-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.intro-img-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

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

.statistics-content-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.statistics-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stats-grid-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

@media (min-width: 768px) {
  .stats-grid-mobile-first-responsive-design {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.stat-card-mobile-first-responsive-design {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1 1 100%;
  min-width: 200px;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .stat-card-mobile-first-responsive-design {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.stat-card-mobile-first-responsive-design:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number-mobile-first-responsive-design {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.stat-label-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.statistics-insight-mobile-first-responsive-design {
  background: var(--color-primary-light);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.statistics-text-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

.content-one-section-mobile-first-responsive-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-one-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .content-one-wrapper-mobile-first-responsive-design {
    flex-direction: row;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.content-one-text-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-one-text-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-one-image-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-one-image-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-one-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-one-paragraph-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.content-one-highlight-mobile-first-responsive-design {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
}

.highlight-text-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  font-weight: var(--font-weight-semibold);
}

.content-one-img-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.content-two-section-mobile-first-responsive-design {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-two-wrapper-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 768px) {
  .content-two-wrapper-mobile-first-responsive-design {
    flex-direction: row-reverse;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.content-two-text-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-two-text-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-two-image-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .content-two-image-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.content-two-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-two-img-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.steps-container-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: var(--space-lg);
}

.step-item-mobile-first-responsive-design {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
}

.step-number-mobile-first-responsive-design {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.step-content-mobile-first-responsive-design {
  flex: 1;
  padding-top: var(--space-sm);
}

.step-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
}

.step-text-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

.features-section-mobile-first-responsive-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-mobile-first-responsive-design {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.features-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.features-subtitle-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.features-cards-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .features-cards-mobile-first-responsive-design {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.feature-card-mobile-first-responsive-design {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  text-align: center;
  flex: 1 1 100%;
  min-width: 250px;
  transition: all var(--transition-base);
}

@media (min-width: 768px) {
  .feature-card-mobile-first-responsive-design {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .feature-card-mobile-first-responsive-design {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

.feature-card-mobile-first-responsive-design:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-mobile-first-responsive-design {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.feature-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
}

.feature-text-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin: 0;
}

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

.quote-content-mobile-first-responsive-design {
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-quote-mobile-first-responsive-design {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
}

.quote-text-mobile-first-responsive-design {
  color: #ffffff;
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.quote-author-mobile-first-responsive-design {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
}

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

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

@media (min-width: 768px) {
  .implementation-content-mobile-first-responsive-design {
    flex-direction: row;
    gap: clamp(2rem, 6vw, 4rem);
  }
}

.implementation-text-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .implementation-text-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.implementation-image-mobile-first-responsive-design {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .implementation-image-mobile-first-responsive-design {
    flex: 1 1 50%;
    max-width: 50%;
  }
}

.implementation-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.implementation-paragraph-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.implementation-list-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  margin-left: var(--space-lg);
  margin-bottom: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
}

.list-item-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.list-item-mobile-first-responsive-design strong {
  color: var(--color-text-primary);
  font-weight: var(--font-weight-semibold);
}

.implementation-img-mobile-first-responsive-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  display: block;
}

.conclusion-section-mobile-first-responsive-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin: 0;
}

.cta-box-mobile-first-responsive-design {
  background: linear-gradient(135deg, var(--color-primary), #0f766e);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  text-align: center;
  color: #ffffff;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.cta-title-mobile-first-responsive-design {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.cta-text-mobile-first-responsive-design {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

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

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

.related-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-subtitle-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  text-align: center;
  margin: 0;
}

.related-cards-mobile-first-responsive-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .related-cards-mobile-first-responsive-design {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.related-card-mobile-first-responsive-design {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1 1 100%;
  min-width: 250px;
}

@media (min-width: 768px) {
  .related-card-mobile-first-responsive-design {
    flex: 1 1 calc(33.333% - 1rem);
  }
}

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

.related-card-image-mobile-first-responsive-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-mobile-first-responsive-design img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.related-card-mobile-first-responsive-design:hover .related-card-image-mobile-first-responsive-design img {
  transform: scale(1.05);
}

.related-card-text-mobile-first-responsive-design {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.related-card-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  margin: 0;
  line-height: 1.4;
}

.related-card-desc-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.disclaimer-section-mobile-first-responsive-design {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 2px solid rgba(13, 148, 136, 0.1);
}

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

.disclaimer-box-mobile-first-responsive-design {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
}

.disclaimer-title-mobile-first-responsive-design {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
}

.disclaimer-text-mobile-first-responsive-design {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
}

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

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

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

section {
  overflow: hidden;
}

a, .related-card-mobile-first-responsive-design {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.designflow-story-about {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.hero-opening-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.hero-intro-about {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  line-height: 1.6;
}

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

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

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

.section-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(13, 148, 136, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.3rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.section-subtitle-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

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

.story-block-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw + 0.4rem, 1.5rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.story-block-about p {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: 1.7;
}

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

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

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

.approach-intro-about p {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.step-number-about {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  min-width: 80px;
  flex-shrink: 0;
}

.step-content-about {
  flex: 1;
  padding-top: 0.5rem;
}

.step-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

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

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-primary);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.expertise-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.card-icon-about {
  width: 50px;
  height: 50px;
  background: rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.card-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 1.5vw + 0.3rem, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.card-text-about {
  font-size: clamp(0.85rem, 1vw + 0.35rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.values-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.value-item-about {
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
}

.value-icon-about {
  width: 60px;
  height: 60px;
  background: rgba(13, 148, 136, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.value-name-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.value-desc-about {
  font-size: clamp(0.85rem, 1vw + 0.35rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.quote-container-about {
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  font-style: italic;
}

.quote-text-about {
  font-size: clamp(1.05rem, 2vw + 0.4rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.05rem);
  color: var(--color-primary);
  font-style: normal;
  font-weight: 600;
}

.cta-section-about {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-about {
  background: linear-gradient(135deg, var(--color-primary), #10b981);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw + 0.4rem, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-box-about p {
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-about {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.35rem, 1.05rem);
  transition: all var(--transition-base);
  border: 2px solid #ffffff;
}

.btn-about:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw + 0.3rem, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.disclaimer-text-about {
  font-size: clamp(0.85rem, 1vw + 0.35rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.approach-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto;
  box-shadow: var(--shadow-md);
}

.story-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 2vw, 2rem) auto;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
  .process-step-about {
    gap: 1rem;
  }

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

  .expertise-card-about:hover {
    transform: translateY(-2px);
  }

  .value-item-about {
    flex: 1 1 100%;
  }
}

@media (min-width: 1024px) {
  .journey-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .expertise-section-about {
    padding: 6rem 0;
  }

  .values-section-about {
    padding: 6rem 0;
  }
}

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

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.portfolio-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: var(--space-lg);
}

.portfolio-card-meta {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.portfolio-card-category {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: 0.25rem var(--space-xs);
  border-radius: var(--radius-sm);
}

.portfolio-card-year {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-card-image {
    height: 280px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 320px;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.portfolio-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
  line-height: 1.6;
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  background-color: var(--color-primary);
  color: var(--color-bg-tertiary);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-fast);
  border: none;
  cursor: pointer;
}

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

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.services-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.services-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

.service-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 148, 136, 0.08);
}

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

.service-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-primary-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: 1.75rem;
  color: var(--color-primary);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.3;
}

.service-card-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-md) 0;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-card-list li {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
}

.service-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}

@media (min-width: 768px) {
  .services-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-content {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-process {
  background-color: var(--color-bg-tertiary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-process-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  text-align: center;
  margin: 0 0 var(--space-3xl) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

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

.process-step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.process-step-text {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .services-process {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-process {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.services-cta {
  background-color: var(--color-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.services-cta .services-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 768px) {
  .services-cta .services-container {
    grid-template-columns: 1fr 1fr;
  }
}

.services-cta-content {
  color: var(--color-bg-primary);
}

.services-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-bg-primary);
  margin: 0 0 var(--space-md) 0;
  line-height: 1.2;
}

.services-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-bg-secondary);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}

.services-cta-button {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.services-cta-button:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
}

.services-cta-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.services-cta-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-cta {
    padding: var(--space-4xl) var(--space-xl);
  }

  .services-cta-image {
    margin: 0;
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.legal-docs .updated-date {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-weight: var(--font-weight-regular);
}

.legal-docs h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-weight: var(--font-weight-regular);
}

.legal-docs ul,
.legal-docs ol {
  margin: var(--space-md) 0 var(--space-md) var(--space-lg);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-docs li {
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-regular);
}

.legal-docs strong {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.legal-docs .contact-section h2 {
  margin-top: 0;
  color: var(--color-text-primary);
}

.legal-docs .contact-section p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.legal-docs .contact-info {
  margin-top: var(--space-md);
}

.legal-docs .contact-info p {
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) var(--space-lg);
  }

  .legal-docs .contact-section {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-primary);
}

.thank-you-section {
  width: 100%;
  padding: var(--space-lg) var(--space-sm);
  overflow: hidden;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-you-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-xl);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon svg {
  width: 80px;
  height: 80px;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.lead-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.description-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.next-steps {
  background-color: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.next-steps h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.steps-list li {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  padding-left: var(--space-lg);
  position: relative;
  line-height: 1.6;
}

.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  font-size: 1.25rem;
}

.waiting-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.8;
}

.btn-home {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  background-color: var(--color-primary);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  font-weight: var(--font-weight-semibold);
  transition: background-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  text-align: center;
}

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

.btn-home:active {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .thank-you-section {
    padding: var(--space-xl) var(--space-md);
  }

  .thank-you-card {
    padding: var(--space-3xl) var(--space-2xl);
  }

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

@media (min-width: 768px) {
  .thank-you-section {
    padding: var(--space-2xl) var(--space-lg);
  }

  .thank-you-card {
    padding: var(--space-4xl) var(--space-3xl);
  }

  .success-icon svg {
    width: 100px;
    height: 100px;
  }

  h1 {
    margin-bottom: var(--space-lg);
  }

  .lead-text {
    margin-bottom: var(--space-lg);
  }

  .description-text {
    margin-bottom: var(--space-2xl);
  }

  .next-steps {
    margin-bottom: var(--space-2xl);
  }

  .waiting-text {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .thank-you-section {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .thank-you-card {
    padding: var(--space-4xl) var(--space-4xl);
  }
}

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

html,
body {
  width: 100%;
  height: 100%;
}

.error-page {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

.error-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

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

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

.content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.error-visual {
  margin-bottom: var(--space-2xl);
  animation: float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .error-visual {
    margin-bottom: var(--space-3xl);
  }
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(4rem, 12vw, 8rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 50vw, 400px);
  height: clamp(200px, 50vw, 400px);
  background-color: var(--color-primary-light);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.6;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.4;
  }
}

.error-message {
  width: 100%;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .error-title {
    margin-bottom: var(--space-lg);
  }
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .error-description {
    margin-bottom: var(--space-2xl);
  }
}

.error-suggestions {
  background-color: var(--color-bg-card);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

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

.suggestions-label {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-heading);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.suggestions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.suggestions-list li {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: var(--space-md);
  position: relative;
}

.suggestions-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: var(--font-weight-semibold);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  text-align: center;
  padding: var(--space-md) var(--space-xl);
}

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

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  padding: var(--space-md) var(--space-2xl);
}

@media (min-width: 768px) {
  .btn-large {
    padding: var(--space-lg) var(--space-3xl);
  }
}

@media (max-width: 480px) {
  .error-visual {
    margin-bottom: var(--space-xl);
  }

  .error-decoration {
    width: 150px;
    height: 150px;
  }

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

  .suggestions-list li {
    padding-left: var(--space-sm);
  }

  .suggestions-list li::before {
    width: 5px;
    height: 5px;
  }
}

.contact-page-sayhello {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
  }

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

  .contact-page-hero {
    background-color: var(--color-bg-primary);
    padding: var(--space-2xl) 0;
    overflow: hidden;
  }

  .contact-page-hero-content {
    text-align: center;
  }

  .contact-page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-md) 0;
    letter-spacing: -0.5px;
  }

  .contact-page-hero-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-page-main {
    background-color: var(--color-bg-tertiary);
    padding: var(--space-3xl) 0;
    overflow: hidden;
  }

  .contact-page-main-content {
    width: 100%;
  }

  .contact-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3xl);
  }

  .contact-page-form-wrapper {
    flex: 1 1 100%;
    min-width: 0;
  }

  .contact-page-info-wrapper {
    flex: 1 1 100%;
    min-width: 0;
  }

  .contact-page-form-header {
    margin-bottom: var(--space-2xl);
  }

  .contact-page-form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-sm) 0;
  }

  .contact-page-form-description {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .contact-page-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .contact-page-form-row {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
  }

  .contact-page-label {
    font-family: var(--font-primary);
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    display: block;
  }

  .contact-page-input,
  .contact-page-textarea {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    padding: 0.875rem 1rem;
    background-color: var(--color-bg-secondary);
    border: 2px solid var(--color-bg-secondary);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    transition: all var(--transition-base);
    width: 100%;
    box-sizing: border-box;
  }

  .contact-page-input::placeholder,
  .contact-page-textarea::placeholder {
    color: var(--color-text-muted);
  }

  .contact-page-input:focus,
  .contact-page-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-bg-tertiary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
  }

  .contact-page-textarea {
    min-height: 140px;
    resize: vertical;
    font-family: var(--font-primary);
  }

  .contact-page-submit {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: var(--font-weight-semibold);
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: var(--color-bg-tertiary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: var(--space-sm);
  }

  .contact-page-submit:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .contact-page-submit:active {
    transform: translateY(0);
  }

  .contact-page-form-privacy {
    font-family: var(--font-primary);
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    text-align: center;
  }

  .contact-page-privacy-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-base);
  }

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

  .contact-page-info-header {
    margin-bottom: var(--space-2xl);
  }

  .contact-page-info-title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-sm) 0;
  }

  .contact-page-info-description {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .contact-page-info-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .contact-page-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
  }

  .contact-page-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
  }

  .contact-page-info-content {
    flex: 1;
  }

  .contact-page-info-label {
    font-family: var(--font-primary);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-xs) 0;
  }

  .contact-page-info-link {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
  }

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

  .contact-page-info-text {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }

  .contact-page-info-extra {
    background-color: var(--color-bg-secondary);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .contact-page-extra-title {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin: 0 0 var(--space-md) 0;
  }

  .contact-page-extra-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  .contact-page-extra-item {
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    line-height: 1.6;
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
  }

  .contact-page-extra-check {
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
  }

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

    .contact-page-main {
      padding: var(--space-4xl) 0;
    }

    .contact-page-grid {
      gap: var(--space-4xl);
    }

    .contact-page-form-wrapper {
      flex: 1 1 45%;
      max-width: 500px;
    }

    .contact-page-info-wrapper {
      flex: 1 1 45%;
      max-width: 500px;
    }
  }

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

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

    .contact-page-main {
      padding: var(--space-4xl) 0;
    }
  }

  @media (min-width: 1440px) {
    .container {
      padding: 0;
    }
  }