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

:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-accent-tertiary: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

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

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
}

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

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: none;
}

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

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

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

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

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

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

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(191, 219, 254, 0.2);
  border-radius: var(--radius-md);
  background: rgba(22, 45, 80, 0.5);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

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

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(22, 45, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

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

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(191, 219, 254, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
}

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

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

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

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

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

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

.highlight {
  color: var(--color-primary);
  font-weight: 600;
}

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

.accent-tertiary {
  color: var(--color-accent-tertiary);
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
}

.icon-xl {
  width: 3.5rem;
  height: 3.5rem;
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-tertiary);
}

.section-spacing {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-spacing-sm {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.section-spacing-lg {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.divider {
  height: 1px;
  background: rgba(191, 219, 254, 0.1);
  margin: var(--space-3xl) 0;
}

.list {
  list-style: none;
}

.list-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.list-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.list-content {
  flex: 1;
}

.list-content h4 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

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

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shadow-glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.shadow-glow-secondary {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
}

.blur-background {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

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

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

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex {
    flex-direction: column;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .card {
    padding: var(--space-lg);
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:wght@600;700&display=swap');

/* Header Wrapper */
.header-designvault {
  width: 100%;
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 100;
}

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

/* Brand/Logo Section */
.header-designvault-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.header-designvault-brand:hover {
  opacity: 0.85;
}

.header-designvault-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
  display: block;
}

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

/* Desktop Navigation */
.header-designvault-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex: 1;
  margin-left: 2rem;
}

.header-designvault-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.header-designvault-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-designvault-nav-link:hover {
  color: var(--color-text-primary);
}

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

/* CTA Button */
.header-designvault-cta-button {
  display: none;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-designvault-cta-button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.header-designvault-cta-button:active {
  transform: translateY(0);
}

/* Mobile Toggle Button */
.header-designvault-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  transition: color 300ms ease;
  padding: 0;
  margin-left: auto;
}

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

/* Mobile Menu */
.header-designvault-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding-top: clamp(60px, 10vw, 80px);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.header-designvault-mobile-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  height: clamp(60px, 10vw, 80px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  z-index: 101;
}

.header-designvault-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  padding: 0;
  transition: color 300ms ease;
}

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

.header-designvault-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.5rem, 4vw, 2rem);
}

.header-designvault-mobile-link {
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1rem, 3vw, 1.5rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 300ms ease;
}

.header-designvault-mobile-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-text-primary);
  padding-left: clamp(1.5rem, 3vw, 2rem);
}

.header-designvault-mobile-cta {
  margin: 1.5rem clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  text-align: center;
  width: auto;
}

.header-designvault-mobile-cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Desktop Breakpoint */
@media (min-width: 768px) {
  .header-designvault-mobile-toggle {
    display: none;
  }

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

  .header-designvault-desktop-nav {
    display: flex;
  }

  .header-designvault-cta-button {
    display: inline-flex;
  }

  .header-designvault-container {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .header-designvault-container {
    gap: 2rem;
  }

  .header-designvault-desktop-nav {
    gap: 2.5rem;
  }
}

/* Prevent scroll when mobile menu is open */
body.header-designvault-menu-open {
  overflow: hidden;
}

    .design-tools-portal {
  width: 100%;
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0c1929;
}

.hero-gradient-field {
  position: absolute;
  top: -100px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-orb-primary {
  position: absolute;
  top: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  top: 60%;
  right: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-shape-organic {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 200px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 0 0 0 100%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1 1 300px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  flex: 1 1 300px;
  margin-bottom: 1.5rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  margin-bottom: 2rem;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  flex: 1 1 300px;
  margin-top: 1rem;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.hero-stat-label {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-wrapper {
  flex: 1 1 400px;
  position: relative;
  z-index: 10;
  min-height: 350px;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #06b6d4;
  color: #06b6d4;
}

.btn-secondary:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #0891b2;
  color: #0891b2;
  transform: translateY(-3px);
}

.tools-features-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.tools-feature-glow-1 {
  position: absolute;
  top: -100px;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.tools-feature-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.tools-feature-shape-1 {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.tools-feature-shape-2 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.tools-feature-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.tools-feature-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-feature-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-feature-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.tools-feature-cards {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tools-feature-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tools-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.tools-feature-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tools-feature-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.tools-feature-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.learning-path-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
}

.learning-path-glow-1 {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-shape-1 {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.learning-path-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.learning-path-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.learning-path-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.learning-path-steps {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.learning-path-step {
  display: flex;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  align-items: flex-start;
}

.learning-path-step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.learning-path-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.learning-path-step-text {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.featured-posts-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.featured-posts-glow-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-glow-2 {
  position: absolute;
  bottom: 15%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.featured-posts-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.featured-posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  color: #059669;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.featured-posts-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.featured-posts-cards {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.featured-posts-card {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-posts-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.featured-posts-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.featured-posts-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
}

.featured-posts-card-text {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.featured-posts-card-link {
  display: inline-flex;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 300ms ease;
}

.featured-posts-card-link:hover {
  color: #2563eb;
}

.featured-posts-cta {
  position: relative;
  z-index: 10;
  text-align: center;
}

.featured-posts-cta-text {
  font-size: 1.125rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.principles-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
}

.principles-glow-1 {
  position: absolute;
  top: -100px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.principles-shape {
  position: absolute;
  top: 40%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 60% 40% / 70% 30% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.principles-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.principles-text-block {
  flex: 1 1 400px;
}

.principles-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #38bdf8;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.principles-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.principles-description {
  font-size: 1rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.principles-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.principles-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.25rem;
}

.principles-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.principles-item-text {
  font-size: 0.875rem;
  color: #93c5fd;
  line-height: 1.6;
}

.principles-image-wrapper {
  flex: 1 1 400px;
  position: relative;
  min-height: 350px;
}

.principles-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.about-glow-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-1 {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-accent-line {
  position: absolute;
  top: 30%;
  left: 0;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: flex-start;
}

.about-text-block {
  flex: 1 1 400px;
}

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

.about-description {
  font-size: 1.0625rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-text {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #1e293b;
}

.about-feature i {
  color: #059669;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-quote-block {
  flex: 1 1 400px;
}

.about-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.about-quote-text {
  font-size: 1.0625rem;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-quote-author {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
}

.contact-glow-1 {
  position: absolute;
  top: -100px;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  bottom: 5%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 50% 50% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-form-wrapper {
  flex: 1 1 400px;
}

.contact-form-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.contact-form-subtitle {
  font-size: 0.9375rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(191, 219, 254, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 300ms ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: #93c5fd;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form-submit {
  width: 100%;
  padding: 1rem;
  background: #3b82f6;
  color: #0f172a;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-submit:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

.contact-form-submit:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.contact-form-privacy {
  font-size: 0.75rem;
  color: #93c5fd;
  margin-top: 1rem;
  line-height: 1.5;
}

.contact-form-privacy-link {
  color: #38bdf8;
  text-decoration: none;
  transition: color 300ms ease;
}

.contact-form-privacy-link:hover {
  color: #0ea5e9;
}

.contact-info-block {
  flex: 1 1 400px;
}

.contact-info-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-faq-item {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(191, 219, 254, 0.1);
}

.contact-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-faq-question {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.contact-faq-answer {
  font-size: 0.875rem;
  color: #bfdbfe;
  line-height: 1.6;
}

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

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

.cookie-banner-text {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin: 0;
  flex: 1 1 auto;
  line-height: 1.5;
  min-width: 250px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

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

.cookie-btn-decline:hover {
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.5);
}

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

  .hero-image-wrapper {
    order: -1;
  }

  .tools-feature-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .learning-path-step {
    flex-direction: column;
    gap: 1rem;
  }

  .featured-posts-card {
    flex: 1 1 100%;
    max-width: none;
  }

  .principles-content {
    flex-direction: column;
  }

  .principles-image-wrapper {
    order: -1;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

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

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

@media (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }

  .hero-stat-item {
    flex: 1 1 100px;
  }

  .learning-path-step-number {
    min-width: 50px;
    font-size: 1.75rem;
  }

  .about-quote {
    padding: 1.25rem;
  }
}

    /* Footer Container */
  .footer {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-primary);
    padding: clamp(3rem, 6vw, 5rem) 0;
    color: var(--color-text-secondary);
    margin-top: 0;
  }

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

  /* Main Content Layout */
  .footer-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
      gap: clamp(1.5rem, 3vw, 2rem);
    }
  }

  /* About Section */
  .footer-about {
    grid-column: 1;
  }

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

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.7;
    color: var(--color-text-muted);
  }

  /* Navigation Section */
  .footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-nav-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
  }

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

  .footer-nav-link {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

  .footer-nav-link:hover {
    color: var(--color-primary);
  }

  /* Contact Section */
  .footer-contact-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-contact-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
  }

  .footer-contact-label {
    display: block;
    color: var(--color-text-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
  }

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

  /* Legal Section */
  .footer-legal-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-legal-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
  }

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

  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

  .footer-legal-link:hover {
    color: var(--color-secondary);
  }

  /* Copyright Section */
  .footer-copyright {
    position: relative;
    z-index: 10;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
  }

  .footer-copyright-text {
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--color-text-muted);
    margin: 0;
    letter-spacing: 0.3px;
  }

  /* Decorative Elements */
  .footer-deco-glow-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }

  .footer-deco-glow-2 {
    position: absolute;
    bottom: 50px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
  }

  .footer-deco-accent {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: rgba(16, 185, 129, 0.04);
    border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
    z-index: 1;
    pointer-events: none;
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .footer {
      padding: clamp(2rem, 4vw, 3rem) 0;
    }

    .footer-content {
      grid-template-columns: 1fr;
    }

    .footer-deco-glow-1 {
      width: 200px;
      height: 200px;
      top: -50px;
      right: -50px;
    }

    .footer-deco-glow-2 {
      width: 180px;
      height: 180px;
      bottom: 20px;
      left: -40px;
    }

    .footer-deco-accent {
      width: 100px;
      height: 100px;
    }
  }

  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .footer-nav-link,
    .footer-legal-link {
      transition: none;
    }
  }

  /* Focus States */
  .footer-nav-link:focus-visible,
  .footer-legal-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 2px;
  }
    

/* Category Page Styles */
.category-page-web-design-kazakhstan {
  width: 100%;
}

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

.hero-ambient-glow-web-design {
  position: absolute;
  top: -20%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field-web-design {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 65%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-web-design {
  position: absolute;
  bottom: 10%;
  left: 20%;
  width: 280px;
  height: 320px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-web-design {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element-web-design {
  position: absolute;
  bottom: 30%;
  right: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-content-web-design-kazakhstan {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero-category-tag-web-design-kazakhstan {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title-web-design-kazakhstan {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-web-design-kazakhstan {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.hero-description-web-design-kazakhstan {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.hero-stats-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
}

.stat-item-web-design {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-web-design {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-web-design {
  font-size: 0.875rem;
  color: #93c5fd;
  opacity: 0.9;
}

.posts-section-web-design-kazakhstan {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.posts-header-web-design-kazakhstan {
  text-align: center;
  margin-bottom: 4rem;
}

.posts-category-tag-web-design-kazakhstan {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-web-design-kazakhstan {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.posts-subtitle-web-design-kazakhstan {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.card-web-design-kazakhstan {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-web-design-kazakhstan:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-primary);
}

.card-image-web-design-kazakhstan {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

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

.card-description-web-design-kazakhstan {
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-web-design-kazakhstan {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.meta-badge-web-design-kazakhstan {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-primary);
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-web-design-kazakhstan i {
  font-size: 0.75rem;
  color: var(--color-primary);
}

.card-link-web-design-kazakhstan {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.card-link-web-design-kazakhstan:hover {
  gap: 0.75rem;
  color: #2563eb;
}

.principles-section-web-design-kazakhstan {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.principles-glow-accent-web-design {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-shape-element-web-design {
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.principles-header-web-design-kazakhstan {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.principles-title-web-design-kazakhstan {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.principles-subtitle-web-design-kazakhstan {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 700px;
  margin: 0 auto;
}

.principles-steps-web-design-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.principle-step-web-design-kazakhstan {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  transition: all 0.3s ease;
}

.principle-step-web-design-kazakhstan:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: var(--color-primary);
}

.principle-number-web-design-kazakhstan {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.principle-content-web-design-kazakhstan {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.principle-title-web-design-kazakhstan {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.principle-text-web-design-kazakhstan {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
}

.tools-section-web-design-kazakhstan {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.tools-gradient-mesh-web-design {
  position: absolute;
  top: -5%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.tools-accent-glow-web-design {
  position: absolute;
  bottom: 15%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.tools-header-web-design-kazakhstan {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.tools-category-tag-web-design-kazakhstan {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.tools-title-web-design-kazakhstan {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tools-subtitle-web-design-kazakhstan {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

.tools-grid-web-design-kazakhstan {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.tool-card-web-design-kazakhstan {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.tool-card-web-design-kazakhstan:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
  background: #ffffff;
}

.tool-icon-web-design-kazakhstan {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.75rem;
}

.tool-name-web-design-kazakhstan {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
}

.tool-description-web-design-kazakhstan {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

.quote-section-web-design-kazakhstan {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  position: relative;
  overflow: hidden;
}

.quote-ambient-glow-web-design {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.featured-quote-web-design-kazakhstan {
  position: relative;
  z-index: 10;
  padding: 3rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-web-design-kazakhstan {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quote-author-web-design-kazakhstan {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
  display: block;
}

.insights-content-web-design-kazakhstan {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.insights-title-web-design-kazakhstan {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.insights-text-web-design-kazakhstan {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-stats-web-design {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .principle-step-web-design-kazakhstan {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .principle-number-web-design-kazakhstan {
    min-width: auto;
  }

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

  .tool-card-web-design-kazakhstan {
    flex: 1 1 100%;
    max-width: none;
  }

  .featured-quote-web-design-kazakhstan {
    padding: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Post Page 1 Styles */
.main-metody-ux-issledovanij {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.hero-content-metody-ux-issledovanij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.hero-text-block-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-metody-ux-issledovanij {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-metody-ux-issledovanij {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
}

.hero-image-block-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-metody-ux-issledovanij {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.hero-meta-metody-ux-issledovanij {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-metody-ux-issledovanij {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}

.hero-stats-metody-ux-issledovanij {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(191, 219, 254, 0.1);
}

.stat-item-metody-ux-issledovanij {
  flex: 0 1 auto;
}

.stat-number-metody-ux-issledovanij {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-metody-ux-issledovanij {
  display: block;
  font-size: 0.875rem;
  color: #bfdbfe;
  opacity: 0.9;
}

.breadcrumbs-metody-ux-issledovanij {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumbs-metody-ux-issledovanij a {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.breadcrumbs-metody-ux-issledovanij a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-metody-ux-issledovanij span {
  color: #bfdbfe;
}

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

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

.intro-text-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-metody-ux-issledovanij {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.intro-description-metody-ux-issledovanij {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-metody-ux-issledovanij {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.methods-header-metody-ux-issledovanij {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.section-tag-metody-ux-issledovanij {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-metody-ux-issledovanij {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.methods-subtitle-metody-ux-issledovanij {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methods-steps-metody-ux-issledovanij {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.method-step-metody-ux-issledovanij {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.method-step-metody-ux-issledovanij:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
}

.method-number-metody-ux-issledovanij {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.method-content-metody-ux-issledovanij {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.method-title-metody-ux-issledovanij {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}

.method-text-metody-ux-issledovanij {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.quantitative-content-metody-ux-issledovanij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.quantitative-text-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.quantitative-title-metody-ux-issledovanij {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.quantitative-description-metody-ux-issledovanij {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.quantitative-list-metody-ux-issledovanij {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.list-item-metody-ux-issledovanij {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.list-icon-metody-ux-issledovanij {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-content-metody-ux-issledovanij {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-title-metody-ux-issledovanij {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.list-text-metody-ux-issledovanij {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.quantitative-image-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.quantitative-img-metody-ux-issledovanij {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.best-practices-section-metody-ux-issledovanij {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-header-metody-ux-issledovanij {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.practices-title-metody-ux-issledovanij {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.practices-cards-metody-ux-issledovanij {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-metody-ux-issledovanij {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.practice-card-metody-ux-issledovanij:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.card-icon-metody-ux-issledovanij {
  font-size: 2rem;
  line-height: 1;
}

.card-title-metody-ux-issledovanij {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.card-text-metody-ux-issledovanij {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

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

.tools-content-metody-ux-issledovanij {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-image-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-metody-ux-issledovanij {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.tools-text-metody-ux-issledovanij {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-metody-ux-issledovanij {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.tools-description-metody-ux-issledovanij {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.tools-list-metody-ux-issledovanij {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tool-item-metody-ux-issledovanij {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.tool-item-metody-ux-issledovanij::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.tool-name-metody-ux-issledovanij {
  color: #ffffff;
  font-weight: 600;
}

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

.conclusion-content-metody-ux-issledovanij {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-metody-ux-issledovanij {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-quote-metody-ux-issledovanij {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  margin: clamp(2rem, 4vw, 3rem) 0;
  border-radius: var(--radius-md);
}

.quote-text-metody-ux-issledovanij {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

.conclusion-text-metody-ux-issledovanij {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-cta-metody-ux-issledovanij {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-btn-metody-ux-issledovanij {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #0c1929;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn-metody-ux-issledovanij:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-metody-ux-issledovanij {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-metody-ux-issledovanij {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
}

.disclaimer-title-metody-ux-issledovanij {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-metody-ux-issledovanij {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-metody-ux-issledovanij {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-metody-ux-issledovanij {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-metody-ux-issledovanij {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.related-card-metody-ux-issledovanij {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-metody-ux-issledovanij:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.related-card-image-metody-ux-issledovanij {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-metody-ux-issledovanij {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-metody-ux-issledovanij {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-metody-ux-issledovanij {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-metody-ux-issledovanij,
  .intro-content-metody-ux-issledovanij,
  .quantitative-content-metody-ux-issledovanij,
  .tools-content-metody-ux-issledovanij {
    flex-direction: column;
  }

  .hero-text-block-metody-ux-issledovanij,
  .hero-image-block-metody-ux-issledovanij,
  .intro-text-metody-ux-issledovanij,
  .intro-image-metody-ux-issledovanij,
  .quantitative-text-metody-ux-issledovanij,
  .quantitative-image-metody-ux-issledovanij,
  .tools-image-metody-ux-issledovanij,
  .tools-text-metody-ux-issledovanij {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-metody-ux-issledovanij {
    flex-direction: column;
    gap: 1.5rem;
  }

  .practices-cards-metody-ux-issledovanij {
    flex-direction: column;
  }

  .practice-card-metody-ux-issledovanij {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-cards-metody-ux-issledovanij {
    flex-direction: column;
  }

  .related-card-metody-ux-issledovanij {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-meta-metody-ux-issledovanij,
  .breadcrumbs-metody-ux-issledovanij {
    flex-direction: column;
    gap: 0.75rem;
  }

  .method-step-metody-ux-issledovanij {
    flex-direction: column;
  }

  .method-number-metody-ux-issledovanij {
    min-width: auto;
  }
}

/* Post Page 2 Styles */
.main-figma-dlya-nachinayushchikh {
  width: 100%;
}

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

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

.hero-text-block-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-meta-figma-dlya-nachinayushchikh {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-figma-dlya-nachinayushchikh {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.meta-badge-figma-dlya-nachinayushchikh i {
  color: #3b82f6;
}

.hero-image-block-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-figma-dlya-nachinayushchikh {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.breadcrumbs-figma-dlya-nachinayushchikh {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-figma-dlya-nachinayushchikh a {
  color: #bfdbfe;
  transition: color 0.2s ease;
}

.breadcrumbs-figma-dlya-nachinayushchikh a:hover {
  color: #3b82f6;
}

.breadcrumbs-figma-dlya-nachinayushchikh span {
  color: #64748b;
}

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

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

.intro-text-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-text-body-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.intro-image-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-figma-dlya-nachinayushchikh {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.fundamentals-section-figma-dlya-nachinayushchikh {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-header-figma-dlya-nachinayushchikh {
  text-align: center;
  margin-bottom: 3rem;
}

.fundamentals-tag-figma-dlya-nachinayushchikh {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fundamentals-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.fundamentals-steps-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.fundamentals-step-number-figma-dlya-nachinayushchikh {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.fundamentals-step-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

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

.components-wrapper-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.components-text-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.components-text-body-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.components-highlight-figma-dlya-nachinayushchikh {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.components-quote-figma-dlya-nachinayushchikh {
  margin: 0;
}

.components-quote-text-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.6;
}

.components-image-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-image-img-figma-dlya-nachinayushchikh {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

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

.prototyping-header-figma-dlya-nachinayushchikh {
  text-align: center;
  margin-bottom: 3rem;
}

.prototyping-tag-figma-dlya-nachinayushchikh {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.prototyping-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.prototyping-cards-figma-dlya-nachinayushchikh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.prototyping-card-figma-dlya-nachinayushchikh {
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.prototyping-card-figma-dlya-nachinayushchikh:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.prototyping-card-icon-figma-dlya-nachinayushchikh {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.prototyping-card-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.prototyping-card-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

.collaboration-section-figma-dlya-nachinayushchikh {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.collaboration-wrapper-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.collaboration-image-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.collaboration-image-img-figma-dlya-nachinayushchikh {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.collaboration-text-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.collaboration-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.collaboration-text-body-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.workflow-header-figma-dlya-nachinayushchikh {
  text-align: center;
  margin-bottom: 3rem;
}

.workflow-tag-figma-dlya-nachinayushchikh {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.workflow-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.workflow-content-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.workflow-list-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workflow-item-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.workflow-item-number-figma-dlya-nachinayushchikh {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.workflow-item-content-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.workflow-item-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.workflow-item-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

.workflow-image-figma-dlya-nachinayushchikh {
  flex: 1 1 50%;
  max-width: 50%;
}

.workflow-image-img-figma-dlya-nachinayushchikh {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

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

.learning-header-figma-dlya-nachinayushchikh {
  text-align: center;
  margin-bottom: 3rem;
}

.learning-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.learning-subtitle-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
}

.learning-resources-figma-dlya-nachinayushchikh {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.learning-resource-figma-dlya-nachinayushchikh {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  text-align: center;
}

.learning-resource-icon-figma-dlya-nachinayushchikh {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.75rem;
  margin: 0 auto;
}

.learning-resource-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.learning-resource-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

.conclusion-section-figma-dlya-nachinayushchikh {
  background: var(--color-bg-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-figma-dlya-nachinayushchikh {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.conclusion-highlight-figma-dlya-nachinayushchikh {
  margin-top: 2rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.15);
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
}

.conclusion-highlight-text-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #ffffff;
  line-height: 1.7;
  margin: 0;
}

.disclaimer-section-figma-dlya-nachinayushchikh {
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-figma-dlya-nachinayushchikh {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
}

.disclaimer-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.disclaimer-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-figma-dlya-nachinayushchikh {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.related-subtitle-figma-dlya-nachinayushchikh {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
}

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

.related-card-figma-dlya-nachinayushchikh {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card-figma-dlya-nachinayushchikh:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-image-figma-dlya-nachinayushchikh {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-figma-dlya-nachinayushchikh {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-figma-dlya-nachinayushchikh {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.related-card-text-figma-dlya-nachinayushchikh {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .hero-content-figma-dlya-nachinayushchikh,
  .intro-content-figma-dlya-nachinayushchikh,
  .components-wrapper-figma-dlya-nachinayushchikh,
  .collaboration-wrapper-figma-dlya-nachinayushchikh,
  .workflow-content-figma-dlya-nachinayushchikh {
    flex-direction: column;
  }

  .hero-text-block-figma-dlya-nachinayushchikh,
  .hero-image-block-figma-dlya-nachinayushchikh,
  .intro-text-figma-dlya-nachinayushchikh,
  .intro-image-figma-dlya-nachinayushchikh,
  .components-text-figma-dlya-nachinayushchikh,
  .components-image-figma-dlya-nachinayushchikh,
  .collaboration-image-figma-dlya-nachinayushchikh,
  .collaboration-text-figma-dlya-nachinayushchikh,
  .workflow-list-figma-dlya-nachinayushchikh,
  .workflow-image-figma-dlya-nachinayushchikh {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .prototyping-card-figma-dlya-nachinayushchikh,
  .learning-resource-figma-dlya-nachinayushchikh,
  .related-card-figma-dlya-nachinayushchikh {
    flex: 1 1 100%;
    max-width: none;
  }

  .fundamentals-step-figma-dlya-nachinayushchikh {
    flex-direction: column;
    align-items: flex-start;
  }

  .workflow-item-figma-dlya-nachinayushchikh {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .hero-meta-figma-dlya-nachinayushchikh {
    flex-direction: column;
    gap: 0.5rem;
  }

  .breadcrumbs-figma-dlya-nachinayushchikh {
    flex-wrap: wrap;
  }
}

/* Post Page 3 Styles */
.main-sozdanie-effektivnykh-prototipov {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

.hero-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
}

.breadcrumbs-sozdanie-effektivnykh-prototipov a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.breadcrumbs-sozdanie-effektivnykh-prototipov a:hover {
  color: var(--color-primary-hover);
}

.breadcrumbs-sozdanie-effektivnykh-prototipov span {
  color: var(--color-text-secondary);
}

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

.hero-text-wrapper-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-meta-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-sozdanie-effektivnykh-prototipov {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-sozdanie-effektivnykh-prototipov i {
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-image-wrapper-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

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

  .hero-text-wrapper-sozdanie-effektivnykh-prototipov,
  .hero-image-wrapper-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.intro-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.intro-wrapper-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-element-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-sozdanie-effektivnykh-prototipov {
    flex-direction: column;
  }

  .intro-text-sozdanie-effektivnykh-prototipov,
  .intro-image-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.types-section-sozdanie-effektivnykh-prototipov {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.types-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.types-header-sozdanie-effektivnykh-prototipov {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-sozdanie-effektivnykh-prototipov {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.types-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.types-subtitle-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.types-cards-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.types-card-sozdanie-effektivnykh-prototipov {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(191, 219, 254, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.types-card-sozdanie-effektivnykh-prototipov:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.types-card-icon-sozdanie-effektivnykh-prototipov {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.types-card-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.types-card-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .types-card-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.process-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.process-header-sozdanie-effektivnykh-prototipov {
  margin-bottom: 3rem;
}

.process-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.process-wrapper-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.process-steps-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191, 219, 254, 0.1);
}

.process-step-number-sozdanie-effektivnykh-prototipov {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.process-image-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-image-element-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .process-wrapper-sozdanie-effektivnykh-prototipov {
    flex-direction: column;
  }

  .process-steps-sozdanie-effektivnykh-prototipov,
  .process-image-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.tools-header-sozdanie-effektivnykh-prototipov {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tools-subtitle-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.tools-wrapper-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-content-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-list-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-item-sozdanie-effektivnykh-prototipov {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(191, 219, 254, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.tools-item-sozdanie-effektivnykh-prototipov:hover {
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.12);
  transform: translateX(4px);
}

.tools-item-header-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.tools-item-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.tools-item-badge-sozdanie-effektivnykh-prototipov {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  color: var(--color-accent-tertiary);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.tools-item-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.tools-image-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-image-element-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .tools-wrapper-sozdanie-effektivnykh-prototipov {
    flex-direction: column;
  }

  .tools-content-sozdanie-effektivnykh-prototipov,
  .tools-image-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-sozdanie-effektivnykh-prototipov {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.best-practices-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.best-practices-header-sozdanie-effektivnykh-prototipov {
  text-align: center;
  margin-bottom: 2rem;
}

.best-practices-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

.best-practices-quote-sozdanie-effektivnykh-prototipov {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-secondary);
  margin: 2rem 0 3rem 0;
  border-radius: var(--radius-md);
}

.quote-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quote-cite-sozdanie-effektivnykh-prototipov {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.practices-list-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.practice-item-sozdanie-effektivnykh-prototipov {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.practice-icon-sozdanie-effektivnykh-prototipov {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.practice-content-sozdanie-effektivnykh-prototipov {
  flex: 1;
}

.practice-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.practice-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-item-sozdanie-effektivnykh-prototipov {
    flex-direction: column;
    gap: 1rem;
  }

  .practice-icon-sozdanie-effektivnykh-prototipov {
    margin-top: 0;
  }
}

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

.conclusion-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-cta-sozdanie-effektivnykh-prototipov {
  margin-top: 2rem;
}

.cta-button-sozdanie-effektivnykh-prototipov {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button-sozdanie-effektivnykh-prototipov:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.conclusion-image-sozdanie-effektivnykh-prototipov {
  flex: 1 1 50%;
  max-width: 50%;
}

.conclusion-image-element-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-sozdanie-effektivnykh-prototipov,
  .conclusion-image-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.disclaimer-section-sozdanie-effektivnykh-prototipov {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.disclaimer-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-sozdanie-effektivnykh-prototipov {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(191, 219, 254, 0.15);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.disclaimer-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.disclaimer-text-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.related-section-sozdanie-effektivnykh-prototipov {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.related-section-sozdanie-effektivnykh-prototipov .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-header-sozdanie-effektivnykh-prototipov {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
}

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

.related-card-sozdanie-effektivnykh-prototipov {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border: 1px solid rgba(191, 219, 254, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-sozdanie-effektivnykh-prototipov:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-card-image-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.1);
}

.related-card-img-sozdanie-effektivnykh-prototipov {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-sozdanie-effektivnykh-prototipov {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-sozdanie-effektivnykh-prototipov {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.related-card-description-sozdanie-effektivnykh-prototipov {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-card-sozdanie-effektivnykh-prototipov {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-sozdanie-effektivnykh-prototipov {
    font-size: 0.75rem;
  }

  .process-step-sozdanie-effektivnykh-prototipov,
  .tools-item-sozdanie-effektivnykh-prototipov {
    padding: 1rem;
  }

  .practice-item-sozdanie-effektivnykh-prototipov {
    gap: 1rem;
  }
}

/* Post Page 4 Styles */
.main-dostupnost-v-veb-dizajne {
  width: 100%;
}

.hero-section-dostupnost-v-veb-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.hero-text-block-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero-subtitle-dostupnost-v-veb-dizajne {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-meta-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.meta-badge-dostupnost-v-veb-dizajne {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-text-secondary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.meta-badge-dostupnost-v-veb-dizajne i {
  color: var(--color-primary);
}

.hero-description-dostupnost-v-veb-dizajne {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: var(--color-text-muted);
}

.hero-image-block-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-dostupnost-v-veb-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.breadcrumbs-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-dostupnost-v-veb-dizajne {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-dostupnost-v-veb-dizajne:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.breadcrumb-separator-dostupnost-v-veb-dizajne {
  color: var(--color-text-muted);
}

.breadcrumb-current-dostupnost-v-veb-dizajne {
  color: var(--color-text-secondary);
}

.hero-stats-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: flex-start;
}

.stat-item-dostupnost-v-veb-dizajne {
  flex: 1 1 auto;
}

.stat-number-dostupnost-v-veb-dizajne {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.stat-label-dostupnost-v-veb-dizajne {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.intro-section-dostupnost-v-veb-dizajne {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.intro-description-dostupnost-v-veb-dizajne {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.intro-highlight-dostupnost-v-veb-dizajne {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.intro-highlight-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.6;
}

.intro-image-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-dostupnost-v-veb-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.standards-section-dostupnost-v-veb-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.standards-header-dostupnost-v-veb-dizajne {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-dostupnost-v-veb-dizajne {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.standards-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.standards-subtitle-dostupnost-v-veb-dizajne {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.standards-cards-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.standards-card-dostupnost-v-veb-dizajne {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(191, 219, 254, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.standards-card-dostupnost-v-veb-dizajne:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.card-number-dostupnost-v-veb-dizajne {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.card-title-dostupnost-v-veb-dizajne {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.card-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.contrast-section-dostupnost-v-veb-dizajne {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.contrast-wrapper-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.contrast-text-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.contrast-description-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.contrast-levels-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0;
}

.contrast-level-dostupnost-v-veb-dizajne {
  background: rgba(59, 130, 246, 0.08);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.level-title-dostupnost-v-veb-dizajne {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.level-text-dostupnost-v-veb-dizajne {
  font-size: 0.875rem;
  color: #475569;
}

.contrast-tip-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.6;
}

.contrast-image-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.contrast-image-img-dostupnost-v-veb-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.navigation-section-dostupnost-v-veb-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.navigation-header-dostupnost-v-veb-dizajne {
  text-align: center;
  margin-bottom: 3rem;
}

.navigation-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.navigation-subtitle-dostupnost-v-veb-dizajne {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 0.5rem;
}

.navigation-steps-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.navigation-step-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.step-number-dostupnost-v-veb-dizajne {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-dostupnost-v-veb-dizajne {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.step-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.images-alt-section-dostupnost-v-veb-dizajne {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.images-alt-wrapper-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.images-alt-text-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.images-alt-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.images-alt-description-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.images-alt-tips-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.images-alt-tip-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1e293b;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
}

.images-alt-image-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.images-alt-image-img-dostupnost-v-veb-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.testing-section-dostupnost-v-veb-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testing-header-dostupnost-v-veb-dizajne {
  text-align: center;
  margin-bottom: 3rem;
}

.testing-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.testing-tools-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.testing-tool-dostupnost-v-veb-dizajne {
  flex: 1 1 350px;
}

.tool-title-dostupnost-v-veb-dizajne {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.tool-list-dostupnost-v-veb-dizajne {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tool-item-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  padding-left: 1.5rem;
  position: relative;
}

.tool-item-dostupnost-v-veb-dizajne::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

.testing-quote-dostupnost-v-veb-dizajne {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.quote-text-dostupnost-v-veb-dizajne {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.7;
}

.practical-section-dostupnost-v-veb-dizajne {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practical-wrapper-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practical-image-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-img-dostupnost-v-veb-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-lg);
}

.practical-text-dostupnost-v-veb-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.practical-description-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
}

.practical-checklist-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checklist-item-dostupnost-v-veb-dizajne {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: #1e293b;
  line-height: 1.6;
}

.checklist-icon-dostupnost-v-veb-dizajne {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
}

.checklist-text-dostupnost-v-veb-dizajne {
  flex: 1;
}

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

.conclusion-content-dostupnost-v-veb-dizajne {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-dostupnost-v-veb-dizajne {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-highlight-dostupnost-v-veb-dizajne {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.conclusion-highlight-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  color: var(--color-text-primary);
  line-height: 1.7;
}

.disclaimer-section-dostupnost-v-veb-dizajne {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-dostupnost-v-veb-dizajne {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-dostupnost-v-veb-dizajne {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #475569;
}

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

.related-header-dostupnost-v-veb-dizajne {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-dostupnost-v-veb-dizajne {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.related-subtitle-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.related-cards-dostupnost-v-veb-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-dostupnost-v-veb-dizajne {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-dostupnost-v-veb-dizajne:hover {
  transform: translateY(-4px);
}

.related-card-image-dostupnost-v-veb-dizajne {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.related-image-dostupnost-v-veb-dizajne {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-dostupnost-v-veb-dizajne {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.5rem;
  position: relative;
}

.related-card-title-dostupnost-v-veb-dizajne {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.related-card-dostupnost-v-veb-dizajne:hover .related-card-title-dostupnost-v-veb-dizajne {
  color: var(--color-primary);
}

.related-card-text-dostupnost-v-veb-dizajne {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.related-card-arrow-dostupnost-v-veb-dizajne {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
}

.related-card-dostupnost-v-veb-dizajne:hover .related-card-arrow-dostupnost-v-veb-dizajne {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .hero-text-block-dostupnost-v-veb-dizajne,
  .hero-image-block-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-dostupnost-v-veb-dizajne {
    gap: 1.5rem;
  }

  .intro-wrapper-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .intro-text-dostupnost-v-veb-dizajne,
  .intro-image-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contrast-wrapper-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .contrast-text-dostupnost-v-veb-dizajne,
  .contrast-image-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .images-alt-wrapper-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .images-alt-text-dostupnost-v-veb-dizajne,
  .images-alt-image-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-wrapper-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .practical-image-dostupnost-v-veb-dizajne,
  .practical-text-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .testing-tools-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .testing-tool-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
  }

  .standards-cards-dostupnost-v-veb-dizajne,
  .related-cards-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }

  .standards-card-dostupnost-v-veb-dizajne,
  .related-card-dostupnost-v-veb-dizajne {
    flex: 1 1 100%;
    max-width: none;
  }

  .navigation-step-dostupnost-v-veb-dizajne {
    flex-direction: column;
    gap: 1rem;
  }

  .step-number-dostupnost-v-veb-dizajne {
    min-width: auto;
  }

  .contrast-levels-dostupnost-v-veb-dizajne {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title-dostupnost-v-veb-dizajne {
    margin-bottom: 0.75rem;
  }

  .breadcrumbs-dostupnost-v-veb-dizajne {
    font-size: 0.75rem;
  }

  .disclaimer-content-dostupnost-v-veb-dizajne {
    padding: 1.5rem;
  }

  .conclusion-text-dostupnost-v-veb-dizajne {
    text-align: left;
  }
}

/* Post Page 5 Styles */
.main-komandnaya-rabota-v-dizajne {
  width: 100%;
}

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

.hero-content-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-komandnaya-rabota-v-dizajne {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-link-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.breadcrumbs-link-komandnaya-rabota-v-dizajne:hover {
  color: var(--color-primary);
}

.breadcrumbs-separator-komandnaya-rabota-v-dizajne {
  color: var(--color-text-muted);
}

.breadcrumbs-current-komandnaya-rabota-v-dizajne {
  color: var(--color-primary);
}

.hero-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-description-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-meta-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-komandnaya-rabota-v-dizajne {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.meta-badge-komandnaya-rabota-v-dizajne i {
  color: var(--color-primary);
}

.hero-image-komandnaya-rabota-v-dizajne {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

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

.intro-wrapper-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .intro-wrapper-komandnaya-rabota-v-dizajne {
    flex-direction: column;
  }

  .intro-text-komandnaya-rabota-v-dizajne,
  .intro-image-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.roles-section-komandnaya-rabota-v-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.roles-header-komandnaya-rabota-v-dizajne {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.roles-tag-komandnaya-rabota-v-dizajne {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.roles-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.roles-subtitle-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.roles-cards-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.roles-card-komandnaya-rabota-v-dizajne {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.roles-card-komandnaya-rabota-v-dizajne:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.roles-card-icon-komandnaya-rabota-v-dizajne {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.roles-card-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.roles-card-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .roles-card-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.process-header-komandnaya-rabota-v-dizajne {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.process-tag-komandnaya-rabota-v-dizajne {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.process-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
}

.process-wrapper-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.process-steps-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-komandnaya-rabota-v-dizajne {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.process-step-number-komandnaya-rabota-v-dizajne {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.process-step-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.process-image-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.process-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .process-wrapper-komandnaya-rabota-v-dizajne {
    flex-direction: column;
  }

  .process-steps-komandnaya-rabota-v-dizajne,
  .process-image-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-komandnaya-rabota-v-dizajne {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-content-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tools-text-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.tools-description-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tools-list-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tool-item-komandnaya-rabota-v-dizajne {
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
}

.tool-item-title-komandnaya-rabota-v-dizajne {
  color: var(--color-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tool-item-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

.tools-image-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .tools-content-komandnaya-rabota-v-dizajne {
    flex-direction: column;
  }

  .tools-text-komandnaya-rabota-v-dizajne,
  .tools-image-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.practices-section-komandnaya-rabota-v-dizajne {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-header-komandnaya-rabota-v-dizajne {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.practices-tag-komandnaya-rabota-v-dizajne {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-tertiary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.practices-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.practices-subtitle-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.practices-cards-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practice-card-komandnaya-rabota-v-dizajne {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.practice-card-komandnaya-rabota-v-dizajne:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
  transform: translateY(-4px);
}

.practice-card-icon-komandnaya-rabota-v-dizajne {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  font-size: 1.75rem;
}

.practice-card-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.practice-card-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .practice-card-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.challenges-wrapper-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.challenges-image-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.challenges-text-komandnaya-rabota-v-dizajne {
  flex: 1 1 50%;
  max-width: 50%;
}

.challenges-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.challenges-paragraph-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.challenges-list-komandnaya-rabota-v-dizajne {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item-komandnaya-rabota-v-dizajne {
  padding: 1.25rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
}

.challenge-item-title-komandnaya-rabota-v-dizajne {
  color: var(--color-secondary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.challenge-item-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-wrapper-komandnaya-rabota-v-dizajne {
    flex-direction: column;
  }

  .challenges-image-komandnaya-rabota-v-dizajne,
  .challenges-text-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.quote-section-komandnaya-rabota-v-dizajne {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-komandnaya-rabota-v-dizajne {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-cite-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  font-style: normal;
}

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

.conclusion-content-komandnaya-rabota-v-dizajne {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.conclusion-cta-komandnaya-rabota-v-dizajne {
  text-align: center;
  margin-top: 2rem;
}

.conclusion-btn-komandnaya-rabota-v-dizajne {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.conclusion-btn-komandnaya-rabota-v-dizajne:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-komandnaya-rabota-v-dizajne {
  background: var(--color-bg-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-komandnaya-rabota-v-dizajne {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.disclaimer-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

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

.related-header-komandnaya-rabota-v-dizajne {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.related-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.related-subtitle-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}

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

.related-card-komandnaya-rabota-v-dizajne {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-komandnaya-rabota-v-dizajne:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.related-card-image-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.related-card-img-komandnaya-rabota-v-dizajne {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-content-komandnaya-rabota-v-dizajne {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-komandnaya-rabota-v-dizajne {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-komandnaya-rabota-v-dizajne {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .related-card-komandnaya-rabota-v-dizajne {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .hero-section-komandnaya-rabota-v-dizajne {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .intro-section-komandnaya-rabota-v-dizajne,
  .roles-section-komandnaya-rabota-v-dizajne,
  .process-section-komandnaya-rabota-v-dizajne,
  .tools-section-komandnaya-rabota-v-dizajne,
  .practices-section-komandnaya-rabota-v-dizajne,
  .challenges-section-komandnaya-rabota-v-dizajne,
  .conclusion-section-komandnaya-rabota-v-dizajne,
  .related-section-komandnaya-rabota-v-dizajne {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-komandnaya-rabota-v-dizajne {
    padding: 5rem 0 6rem;
  }

  .intro-section-komandnaya-rabota-v-dizajne,
  .roles-section-komandnaya-rabota-v-dizajne,
  .process-section-komandnaya-rabota-v-dizajne,
  .tools-section-komandnaya-rabota-v-dizajne,
  .practices-section-komandnaya-rabota-v-dizajne,
  .challenges-section-komandnaya-rabota-v-dizajne,
  .conclusion-section-komandnaya-rabota-v-dizajne,
  .related-section-komandnaya-rabota-v-dizajne {
    padding: 6rem 0;
  }
}

/* About Page Styles */
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-accent-tertiary: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Sora', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.ux-platform-about {
  width: 100%;
}

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

.hero-section-about .container {
  display: flex;
  flex-direction: column !important;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

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

.stat-item-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

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

.hero-visual-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1rem, 3vw, 2rem);
}

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

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

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.vision-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
}

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

.vision-description-about {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #475569;
  line-height: 1.7;
  max-width: 650px;
}

.vision-highlight-about {
  color: var(--color-primary);
  font-weight: 600;
}

.vision-image-about {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

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

.principles-section-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}

.principles-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.principles-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto;
}

.principles-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.principles-subtitle-about {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.principles-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.principle-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.principle-number-about {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
}

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

.principle-text-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.journey-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.journey-header-about {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--color-accent-tertiary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto;
}

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

.journey-subtitle-about {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.timeline-item-about {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-tertiary);
}

.timeline-marker-about {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-accent-tertiary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.timeline-year-about {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.timeline-heading-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.timeline-description-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.expertise-header-about {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expertise-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 auto;
}

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.expertise-subtitle-about {
  font-size: clamp(0.9375rem, 1vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.expertise-features-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.expertise-item-about {
  flex: 1 1 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  text-align: center;
}

.expertise-icon-about {
  font-size: clamp(2.25rem, 4vw, 3rem);
  color: var(--color-secondary);
  line-height: 1;
}

.expertise-name-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.expertise-detail-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.featured-quote-author-about {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 500;
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-about .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

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

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: #475569;
  line-height: 1.7;
  max-width: 800px;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  
  .principle-card-about,
  .expertise-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .timeline-item-about {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-about .container {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
  }
  
  .hero-content-about {
    flex: 1;
  }
  
  .hero-visual-about {
    flex: 1;
    margin-top: 0;
  }
}

/* Privacy Page Styles */
.docs-portal {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.docs-portal section {
  width: 100%;
  overflow: hidden;
}

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

/* Hero Section */
.hero-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  position: relative;
}

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

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.last-updated {
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5rem 0;
  }

  .hero-title {
    font-size: clamp(2.25rem, 6vw + 0.5rem, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0;
  }
}

/* Content Section */
.content-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
}

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

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

.content-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-left: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.content-block strong {
  color: var(--color-secondary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .content-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .content-section {
    padding: 5rem 0;
  }
}

/* Contact Section */
.contact-section {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-tertiary);
}

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

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  background: rgba(59, 130, 246, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-primary);
}

.contact-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-label {
  font-weight: 600;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-details {
    gap: 1rem;
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 5rem 0;
  }
}

/* Thank You Page Styles */
/* Thank You Page Component */
.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Thank Section */
.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

/* Success Icon */
.thank-icon {
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-accent-tertiary);
}

@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

/* Thank You Title */
.thank-title {
  color: var(--color-text-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.6s ease-out 0.1s both;
  margin: 0;
  padding: 0;
}

/* Lead Text */
.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
  animation: fadeInUp 0.6s ease-out 0.2s both;
  margin: 0;
  padding: 0;
}

/* Main Message */
.thank-message {
  color: var(--color-text-secondary);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

/* Next Steps */
.thank-next-steps {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  padding: 0;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  transition: all 0.3s ease;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.5);
  }
}

/* Large Desktop Breakpoint */
@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .thank-icon,
  .thank-title,
  .thank-lead,
  .thank-message,
  .thank-next-steps,
  .btn {
    animation: none;
  }

  .btn-primary:hover {
    transform: none;
  }
}

/* Print Styles */
@media print {
  .thank-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .btn {
    display: none;
  }
}

/* 404 Page Styles */
/* Error page component */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error section styles */
.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Error content wrapper */
.error-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Decorative elements */
.error-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.error-decoration-1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.error-decoration-2 {
  width: 200px;
  height: 200px;
  background: var(--color-secondary);
  bottom: 10%;
  right: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

.error-decoration-3 {
  width: 150px;
  height: 150px;
  background: var(--color-accent-tertiary);
  top: 30%;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Error inner container */
.error-inner {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 3;
}

/* Error code wrapper */
.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1rem);
}

/* Error code number */
.error-code {
  font-size: clamp(3.5rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error icon */
.error-icon {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--color-secondary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Error title */
.error-title {
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error subtitle */
.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.6;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Error description */
.error-description {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-muted);
  margin: 0 0 clamp(2rem, 5vw, 3rem) 0;
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

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

.btn-large {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Suggestions section */
.error-suggestions {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.suggestions-title {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Suggestions list */
.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-accent-tertiary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-decoration-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
  }

  .error-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: -100px;
  }

  .error-suggestions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .suggestions-title {
    grid-column: 1 / -1;
  }

  .suggestions-list {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .suggestions-list li {
    flex: 1;
    min-width: 200px;
  }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .error-code {
    text-shadow: 0 30px 60px rgba(59, 130, 246, 0.25);
  }

  .btn-primary {
    padding: 1.125rem 2.5rem;
  }

  .btn-primary:hover {
    transform: translateY(-4px);
  }

  .suggestions-list li {
    font-size: 1rem;
  }
}

/* Large desktop breakpoint */
@media (min-width: 1440px) {
  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.75rem;
  }
}