.workspace-hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 40%, #f0f9ff 100%);
}

.workspace-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(47, 79, 79, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 165, 0, 0.04) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(47, 79, 79, 0.02) 50%, transparent 51%);
  background-size: 100px 100px, 150px 150px, 200px 200px;
}

.workspace-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.workspace-hero__content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

.workspace-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  border: 2px solid rgba(47, 79, 79, 0.15);
  border-radius: 30px;
  padding: 14px 28px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(47, 79, 79, 0.08);
  transition: all 0.3s ease;
}

.workspace-hero__badge:hover {
  box-shadow: 0 8px 25px rgba(47, 79, 79, 0.15);
  transform: translateY(-2px);
}

.workspace-hero__title {
  margin-bottom: 28px;
  color: var(--main-color);
  font-weight: 900;
  font-size: 3.8rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.workspace-hero__accent {
  position: relative;
  color: var(--accent-color);
}

.workspace-hero__accent::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-color) 0%, rgba(255, 165, 0, 0.4) 100%);
}

.workspace-hero__description {
  margin-bottom: 50px;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.25rem;
  line-height: 1.7;
}

.workspace-hero__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(47, 79, 79, 0.08);
  border-radius: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.hero-feature:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
}

.hero-feature__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--accent-color), #ff8a00);
}

.hero-feature__title {
  margin-bottom: 6px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-feature__description {
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.5;
}

.workspace-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.workspace-hero__visual {
  position: relative;
}

.workspace-hero__image-wrapper {
  position: relative;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(47, 79, 79, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease;
}

.workspace-hero__image-wrapper:hover {
  transform: translateY(-12px);
}

.workspace-hero__image {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}

.workspace-hero__image-wrapper:hover .workspace-hero__image {
  transform: scale(1.02);
}

.workspace-hero__stats {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 20px;
}

.workspace-stat {
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  transition: transform 0.3s ease;
}

.workspace-stat:hover {
  transform: translateY(-4px);
}

.workspace-stat__number {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
}

.workspace-stat__label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.8rem;
}

.workspace-stat__label i {
  color: var(--accent-color);
  font-size: 0.7rem;
}


.ergonomic-checklist {
  padding: 120px 0;
  background: var(--bg-color);
}

.ergonomic-checklist__header {
  margin-bottom: 80px;
  text-align: center;
}

.ergonomic-checklist__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 2.8rem;
}

.ergonomic-checklist__subtitle {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.assessment-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.assessment-category {
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  background: white;
  transition: all 0.4s ease;
}

.assessment-category:hover {
  border-color: rgba(255, 165, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.assessment-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(47, 79, 79, 0.1);
  padding-bottom: 20px;
}

.assessment-category__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
}

.assessment-category__title {
  flex: 1;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.assessment-category__progress {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
}

.progress-bar {
  width: 100px;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(47, 79, 79, 0.1);
}

.progress-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ff8a00);
  transition: width 0.4s ease;
}

.progress-score {
  color: var(--main-color);
  font-weight: 700;
  font-size: 0.9rem;
}

.assessment-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.assessment-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(47, 79, 79, 0.02);
  transition: all 0.3s ease;
}

.assessment-item:hover {
  background: rgba(47, 79, 79, 0.04);
  transform: translateX(4px);
}

.assessment-item--checked {
  border: 1px solid rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.05);
}

.assessment-item--checked:hover {
  background: rgba(34, 197, 94, 0.08);
}

.assessment-item__checkbox {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 4px;
  color: white;
  font-size: 0.8rem;
  background: var(--main-color);
}

.assessment-item--checked .assessment-item__checkbox {
  background: #22c55e;
}

.assessment-item__content {
  flex: 1;
}

.assessment-item__title {
  margin-bottom: 6px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.assessment-item__description {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.5;
}

.assessment-item__status {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
}

.assessment-item__status--good {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

.assessment-item__status--needs-attention {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
}

.assessment-item__status--critical {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.assessment-summary {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 50px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--main-color), #1a3333);
}

.assessment-summary__title {
  margin-bottom: 30px;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
}

.assessment-summary__score {
  margin-bottom: 30px;
}

.score-circle {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.score-circle__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.score-circle__number {
  display: block;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.score-circle__label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.assessment-summary__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.recommendations__title {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: left;
}

.recommendations__list {
  text-align: left;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.recommendation-item i {
  color: var(--accent-color);
  font-size: 0.8rem;
}


.product-recommendations {
  padding: 120px 0;
  background: var(--secondary-bg-color);
}

.product-recommendations__header {
  margin-bottom: 80px;
  text-align: center;
}

.product-recommendations__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 2.8rem;
}

.product-recommendations__subtitle {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.workspace-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.workspace-type {
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: white;
  transition: all 0.4s ease;
}

.workspace-type:hover {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.workspace-type--featured {
  position: relative;
  border: 2px solid var(--accent-color);
}

.workspace-type--featured::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #ff8a00);
}

.workspace-type__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: rgba(47, 79, 79, 0.02);
}

.workspace-type__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  background: var(--accent-color);
}

.workspace-type__badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 8px 16px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--accent-color);
}

.workspace-type__content {
  padding: 30px;
}

.workspace-type__title {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.5rem;
}

.workspace-type__description {
  margin-bottom: 24px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.workspace-type__image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.workspace-type__photo {
  width: 100%;
  transition: transform 0.4s ease;
}

.workspace-type:hover .workspace-type__photo {
  transform: scale(1.05);
}

.workspace-type__products {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.recommended-product {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(47, 79, 79, 0.02);
  transition: all 0.3s ease;
}

.recommended-product:hover {
  background: rgba(47, 79, 79, 0.04);
  transform: translateX(4px);
}

.recommended-product__image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.recommended-product__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recommended-product__info {
  flex: 1;
}

.recommended-product__name {
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.recommended-product__price {
  margin-bottom: 8px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.recommended-product__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  padding: 2px 8px;
  color: var(--main-color);
  font-weight: 500;
  font-size: 0.7rem;
  background: rgba(47, 79, 79, 0.1);
}

.feature-tag i {
  font-size: 0.6rem;
}

.recommended-product__actions {
  flex-shrink: 0;
}

.workspace-type__stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid rgba(47, 79, 79, 0.1);
  padding-top: 20px;
}

.workspace-stat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.workspace-stat-item i {
  color: var(--accent-color);
}

.product-recommendations__cta {
  text-align: center;
}

.recommendations-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 50px;
  color: white;
  background: linear-gradient(135deg, var(--main-color), #1a3333);
}

.recommendations-cta__title {
  margin-bottom: 12px;
  color: white;
  font-weight: 700;
  font-size: 1.6rem;
}

.recommendations-cta__description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.recommendations-cta__actions {
  display: flex;
  flex-shrink: 0;
  gap: 16px;
}

.recommendations-cta__button {
  padding: 16px 24px;
  font-weight: 600;
}


.office-design-tips {
  padding: 120px 0;
  background: var(--bg-color);
}

.office-design-tips__header {
  margin-bottom: 80px;
  text-align: center;
}

.office-design-tips__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 2.8rem;
}

.office-design-tips__subtitle {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.design-articles {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.design-article {
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: white;
  transition: all 0.4s ease;
}

.design-article:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.design-article--featured {
  grid-row: 1 / 3;
}

.design-article__image {
  position: relative;
  overflow: hidden;
}

.design-article__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.design-article--featured .design-article__photo {
  height: 300px;
}

.design-article:hover .design-article__photo {
  transform: scale(1.05);
}

.design-article__category {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.design-article__category i {
  color: var(--accent-color);
}

.design-article__content {
  padding: 30px;
}

.design-article__title {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.3rem;
}

.design-article--featured .design-article__title {
  font-size: 1.5rem;
}

.design-article__excerpt {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.design-article__infographic {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(47, 79, 79, 0.02);
}

.infographic-item {
  text-align: center;
}

.infographic-item__icon {
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.infographic-item__value {
  display: block;
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.infographic-item__label {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.8rem;
}

.design-article__highlights {
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--text-color);
  font-size: 0.9rem;
}

.highlight-item i {
  color: #22c55e;
  font-size: 0.8rem;
}

.design-article__color-palette {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.design-article__metrics {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.metric-label {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.8rem;
}

.design-article__stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.article-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.85rem;
}

.article-stat i {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.design-tips__newsletter {
  max-width: 800px;
  margin: 0 auto;
}

.tips-newsletter {
  display: flex;
  gap: 40px;
  border: 2px solid rgba(47, 79, 79, 0.1);
  border-radius: 24px;
  padding: 50px;
  background: linear-gradient(135deg, var(--secondary-bg-color), #e0f4f7);
}

.tips-newsletter__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: white;
  font-size: 2rem;
  background: var(--accent-color);
}

.tips-newsletter__title {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.tips-newsletter__description {
  margin-bottom: 24px;
  opacity: 0.9;
  color: var(--text-color);
  line-height: 1.6;
}

.newsletter-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-input {
  flex: 1;
  border: 2px solid rgba(47, 79, 79, 0.1);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.newsletter-submit {
  padding: 14px 24px;
  font-size: 0.9rem;
}

.newsletter-benefits {
  display: flex;
  gap: 20px;
}

.newsletter-benefit {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--main-color);
  font-weight: 500;
  font-size: 0.85rem;
}

.newsletter-benefit i {
  color: #22c55e;
  font-size: 0.8rem;
}


.case-studies {
  padding: 120px 0;
  background: var(--secondary-bg-color);
}

.case-studies__header {
  margin-bottom: 80px;
  text-align: center;
}

.case-studies__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 2.8rem;
}

.case-studies__subtitle {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.case-study--featured {
  margin-bottom: 60px;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
  background: white;
}

.case-study__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.case-study__photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-study:hover .case-study__photo {
  transform: scale(1.02);
}

.case-study__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

.case-study__category {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  padding: 12px 20px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.case-study__category i {
  color: var(--accent-color);
}

.case-study__impact {
  text-align: center;
}

.impact-metric {
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.impact-metric__value {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
}

.impact-metric__label {
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.8rem;
}

.case-study__header {
  margin-bottom: 30px;
}

.case-study__title {
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
}

.case-study__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.case-study__client,
.case-study__location,
.case-study__duration {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.case-study__client i,
.case-study__location i,
.case-study__duration i {
  color: var(--accent-color);
}

.case-study__challenge,
.case-study__solution,
.case-study__results {
  margin-bottom: 30px;
}

.case-study__section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.case-study__section-title i {
  color: var(--accent-color);
}

.case-study__text {
  opacity: 0.9;
  color: var(--text-color);
  line-height: 1.7;
}

.solution-highlights {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.solution-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.solution-highlight i {
  color: var(--accent-color);
  font-size: 1rem;
}

.case-study__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.case-metric {
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  background: rgba(47, 79, 79, 0.02);
}

.case-metric__value {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
}

.case-metric__label {
  margin-bottom: 6px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1rem;
}

.case-metric__description {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.85rem;
}

.case-study__testimonial {
  border-radius: 16px;
  padding: 30px;
  background: rgba(47, 79, 79, 0.02);
}

.testimonial-quote__text {
  margin-bottom: 20px;
  color: var(--text-color);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-quote__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote__name {
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-quote__title {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.case-study--compact {
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: white;
  transition: all 0.4s ease;
}

.case-study--compact:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.case-study--compact .case-study__photo {
  height: 200px;
}

.case-study--compact .case-study__content {
  padding: 30px;
}

.case-study--compact .case-study__title {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.case-study__client-info {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(47, 79, 79, 0.1);
  padding-bottom: 16px;
}

.case-study__client-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1rem;
}

.case-study__client-name i {
  color: var(--accent-color);
}

.case-study__client-role {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
}

.case-study__client-location {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.8rem;
}

.case-study__client-location i {
  color: var(--accent-color);
}

.case-study__summary {
  margin-bottom: 20px;
  opacity: 0.9;
  color: var(--text-color);
  line-height: 1.6;
}

.case-study__quick-results {
  display: flex;
  gap: 20px;
}

.quick-result {
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  background: rgba(47, 79, 79, 0.02);
}

.quick-result__value {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
}

.quick-result__label {
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.8rem;
}

.case-studies__cta {
  text-align: center;
}

.case-studies-cta {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 50px;
  color: white;
  background: linear-gradient(135deg, var(--main-color), #1a3333);
}

.case-studies-cta__title {
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
}

.case-studies-cta__description {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
}

.case-studies-cta__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.cta-stat {
  text-align: center;
}

.cta-stat__number {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-color);
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}

.cta-stat__label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
}

.case-studies-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.case-studies-cta__button {
  padding: 16px 28px;
  font-weight: 600;
}


.resource-library {
  padding: 120px 0;
  background: var(--bg-color);
}

.resource-library__header {
  margin-bottom: 80px;
  text-align: center;
}

.resource-library__title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-weight: 800;
  font-size: 2.8rem;
}

.resource-library__subtitle {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--text-color);
  font-size: 1.2rem;
  line-height: 1.6;
}

.resource-categories {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

.resource-category {
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
  background: white;
  transition: all 0.4s ease;
}

.resource-category:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.resource-category--featured {
  border: 2px solid var(--accent-color);
}

.resource-category__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(47, 79, 79, 0.1);
  padding-bottom: 20px;
}

.resource-category__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--main-color), var(--accent-color));
}

.resource-category__title {
  flex: 1;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.4rem;
}

.resource-category__count {
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 0.85rem;
  background: rgba(47, 79, 79, 0.1);
}

.resource-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.resource-item {
  display: flex;
  gap: 20px;
  border-radius: 16px;
  padding: 24px;
  background: rgba(47, 79, 79, 0.02);
  transition: all 0.3s ease;
}

.resource-item:hover {
  background: rgba(47, 79, 79, 0.04);
  transform: translateX(4px);
}

.resource-item__preview {
  position: relative;
  flex-shrink: 0;
}

.resource-item__thumbnail {
  width: 80px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.resource-item__type {
  position: absolute;
  right: -8px;
  bottom: -8px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  padding: 4px 8px;
  color: white;
  font-weight: 600;
  font-size: 0.7rem;
  background: var(--accent-color);
}

.resource-item__content {
  flex: 1;
}

.resource-item__title {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.1rem;
}

.resource-item__description {
  margin-bottom: 12px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.5;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.resource-meta__item {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.8rem;
}

.resource-meta__item i {
  color: var(--accent-color);
  font-size: 0.7rem;
}

.resource-item__actions {
  display: flex;
  align-items: flex-end;
}

.resource-item__download {
  padding: 10px 16px;
  font-size: 0.85rem;
}

.resource-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.resource-video {
  display: flex;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
  background: rgba(47, 79, 79, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.resource-video:hover {
  background: rgba(47, 79, 79, 0.04);
  transform: translateX(4px);
}

.resource-video__thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.resource-video__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-video__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.resource-video:hover .resource-video__overlay {
  opacity: 1;
}

.resource-video__play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  background: var(--accent-color);
}

.resource-video__duration {
  position: absolute;
  right: 6px;
  bottom: 6px;
  border-radius: 4px;
  padding: 2px 6px;
  color: white;
  font-weight: 600;
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.7);
}

.resource-video__title {
  margin-bottom: 8px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1rem;
}

.resource-video__description {
  margin-bottom: 10px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.85rem;
  line-height: 1.4;
}

.resource-video__stats {
  display: flex;
  gap: 12px;
}

.video-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.75rem;
}

.video-stat i {
  color: var(--accent-color);
  font-size: 0.7rem;
}

.resource-tools {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.resource-tool {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 12px;
  padding: 24px;
  background: rgba(47, 79, 79, 0.02);
  transition: all 0.3s ease;
}

.resource-tool:hover {
  background: rgba(47, 79, 79, 0.04);
  transform: translateX(4px);
}

.resource-tool__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  background: var(--accent-color);
}

.resource-tool__content {
  flex: 1;
}

.resource-tool__title {
  margin-bottom: 6px;
  color: var(--main-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.resource-tool__description {
  margin-bottom: 8px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.5;
}

.resource-tool__format {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.85rem;
}

.resource-tool__format i {
  color: var(--accent-color);
}

.resource-tool__actions {
  flex-shrink: 0;
}

.resource-library__newsletter {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.resource-newsletter {
  border: 2px solid rgba(47, 79, 79, 0.1);
  border-radius: 24px;
  padding: 50px;
  background: linear-gradient(135deg, var(--secondary-bg-color), #e0f4f7);
}

.resource-newsletter__icon {
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 2.5rem;
}

.resource-newsletter__title {
  margin-bottom: 12px;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.6rem;
}

.resource-newsletter__description {
  margin-bottom: 30px;
  opacity: 0.9;
  color: var(--text-color);
  line-height: 1.6;
}

.resource-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 20px;
}

.resource-newsletter__input {
  flex: 1;
  border: 2px solid rgba(47, 79, 79, 0.1);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}

.resource-newsletter__input:focus {
  border-color: var(--accent-color);
  outline: none;
}

.resource-newsletter__submit {
  flex-shrink: 0;
  padding: 14px 24px;
  font-size: 0.9rem;
}

.resource-newsletter__guarantee {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.8rem;
}

.resource-newsletter__guarantee i {
  color: #22c55e;
}


.progress-bar__fill--80 {
  width: 80% !important;
}

.progress-bar__fill--60 {
  width: 60% !important;
}

.progress-bar__fill--90 {
  width: 90% !important;
}

.color-swatch--blue {
  background-color: #4a90e2 !important;
}

.color-swatch--green {
  background-color: #7ed321 !important;
}

.color-swatch--orange {
  background-color: #f5a623 !important;
}

.color-swatch--purple {
  background-color: #9013fe !important;
}

.policy-checkbox-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 10px 0 !important;
}

.policy-checkbox {
  width: 16px !important;
  height: 16px !important;
}

.policy-label {
  font-size: 14px !important;
}


@media (max-width: 1024px) {
  .workspace-hero__content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .resource-item {
    flex-direction: column;
  }

  .hero-feature,
  .workspace-hero__actions {
    justify-content: center;
    text-align: center;
  }

  .workspace-hero__title,
  .ergonomic-checklist__title,
  .product-recommendations__title,
  .office-design-tips__title,
  .case-studies__title,
  .resource-library__title {
    font-size: 2.4rem;
  }

  .workspace-hero__stats {
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }

  .assessment-categories {
    grid-template-columns: 1fr;
  }

  .workspace-types {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }

  .design-articles {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .design-article--featured {
    grid-row: auto;
  }

  .case-study--featured {
    padding: 30px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
  }

  .recommendations-cta,
  .tips-newsletter {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .case-studies-cta__stats {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .workspace-hero,
  .ergonomic-checklist,
  .product-recommendations,
  .office-design-tips,
  .case-studies,
  .resource-library {
    padding: 80px 0;
  }

  .workspace-hero__title,
  .ergonomic-checklist__title,
  .product-recommendations__title,
  .office-design-tips__title,
  .case-studies__title,
  .resource-library__title {
    font-size: 2rem;
  }

  .workspace-hero__features {
    gap: 16px;
  }

  .hero-feature {
    padding: 20px;
  }

  .hero-feature:hover {
    transform: none;
  }

  .workspace-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .assessment-category {
    padding: 30px;
  }

  .assessment-category__header {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .assessment-summary {
    padding: 30px;
  }

  .workspace-types {
    grid-template-columns: 1fr;
  }

  .workspace-type__content {
    padding: 20px;
  }

  .design-article__content {
    padding: 20px;
  }

  .design-article__infographic {
    flex-direction: column;
    gap: 16px;
  }

  .case-study__meta {
    flex-direction: column;
    gap: 12px;
  }

  .solution-highlights {
    flex-direction: column;
    gap: 12px;
  }

  .case-study__metrics {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .case-studies-cta__stats {
    flex-direction: column;
    gap: 30px;
  }

  .resource-items {
    grid-template-columns: 1fr;
  }

  .resource-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .resource-videos {
    grid-template-columns: 1fr;
  }

  .resource-video {
    flex-direction: column;
  }

  .resource-video__thumbnail {
    width: 100%;
    height: 150px;
  }

  .resource-newsletter__form {
    flex-direction: column;
    max-width: 100%;
  }
}

@media (max-width: 480px) {

  .workspace-hero,
  .ergonomic-checklist,
  .product-recommendations,
  .office-design-tips,
  .case-studies,
  .resource-library {
    padding: 60px 0;
  }

  .workspace-hero__container {
    padding: 0 15px;
  }

  .workspace-hero__title,
  .ergonomic-checklist__title,
  .product-recommendations__title,
  .office-design-tips__title,
  .case-studies__title,
  .resource-library__title {
    font-size: 1.8rem;
  }

  .workspace-hero__stats {
    flex-direction: column;
    gap: 16px;
  }

  .assessment-category,
  .workspace-type__content,
  .design-article__content,
  .case-study--featured,
  .case-study--compact .case-study__content,
  .resource-category,
  .resource-newsletter {
    padding: 20px;
  }

  .recommendations-cta,
  .case-studies-cta,
  .assessment-summary,
  .tips-newsletter {
    padding: 30px;
  }

  .recommendations-cta__actions,
  .case-studies-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 425px) {
  .resource-categories {
    grid-template-columns: 1fr;
  }

  .resource-tool,
  .resource-category__header {
    flex-direction: column;
  }
}